all groups > asp.net webservices > january 2008 > threads for january 22 - 28, 2008
Filter by week: 1 2 3 4 5
Public a Web Service property
Posted by Eyder at 1/27/2008 11:05:02 AM
Hello,
I'd like to know how can I public a property from my web services.
When I want to public a method from my web services I use the attribute
[WebMethod], but I don't know what I can use to public a Property from my web
services.
Thanks.... more >>
WCF Newbie Problem
Posted by Tina at 1/26/2008 8:57:05 AM
I'm going through this book on WCF and the first example has me writing a
WCF host in the form of a console app. The code is as follows:
using System.ServiceModel;
namespace Host
{
class Program
{
static void Main(string[] args)
{
using (ServiceHost ho... more >>
Problems deserialzing XML document with special characters
Posted by Norbert_Pürringer at 1/24/2008 7:27:21 AM
Has anyone an advice for me how to deserialize an XML document
containing special characters?
My deserializer looks like following:
public static MyObject Deserialize(XmlDocument xmlRequest)
{
MemoryStream requestStream = new MemoryStream();
xmlReque... more >>
client in 1.1, server in 3.5
Posted by dan at 1/22/2008 8:25:32 PM
I've posted also in microsoft.public.dotnet.framework.webservices.
Hi, I have the following problem:
- the client application (asp.net website) is written in .net 1.1.
- the server is being written in 3.5
they need to communicate automatically.
so I'm using wcf as webservices.
I've add... more >>
Changing the webservice default temp directory?
Posted by jerry4@gmail.com at 1/22/2008 1:18:23 PM
I'm getting the error:
Unable to generate a temporary class (result=1).
error CS2001: Source file 'C:\WINDOWS\TEMP\2dzvwfyi.0.cs' could not be
found
error CS2008: No inputs specified
It happens when the constructor for my webservice is called. I've
already figured out that I can give my u... more >>
|