I have simple web method like the following:
[WebMethod(Description = "Gets an instance of the Person class.",
MessageName = "Person")]
public Person GetPerson()
{
return CreatePerson();
}
When I compile the web service, it generates the following WSDL snippet:
<s:element name="...
more >>
Hello everybody.
I came across this question before but there was no suitable answer. Since I
have the same problem, I will repeat it here.
this is a simple web servive:
using System;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.IO;
u...
more >>
Hi guys,
I'm currently working on an application that is heavily dependant on
web services. The web services are being run on an Apache Service
through Axis. We'll be using mod_gzip to get the server side of things
to compress the response (given that the header request specfies that
it acc...
more >>
Hi,
We have a web service (developed in C# framework 1) that run for some time
on Windows 2000. Recently we upgraded it to framework 2 and run successfully
on Windows 2000 and XP. However, we cannot run it on our new Windows 2003
box. The service runs and we can even instantiate it but the...
more >>