Thursday, July 22, 2004

Visual Studio for WebService Development - Free!


Visual Studio for WebService Development - Free!











You might have noticed but
again, the recently announced

Visual Studio 2005 Express Beta
allows doing Web Service development. Download the
Visual Web Developer
2005 Express Edition Beta
and one of the types of projects you
can create is a Web service project.

Here's the default C# Web
service project:


using
System.Web;
using System.Web.Services;
using
System.Web.Services.Protocols;

[WebServiceBinding(ConformanceClaims=WsiClaims.BP10,
EmitConformanceClaims = true)]
public class Service :
System.Web.Services.WebService {

[WebMethod]
public
string HelloWorld() {
return "Hello World";
}

}


You can even use Visual Basic
or C++.


Regards,
Mitesh Mehta
Microsoft Certified Professional
miteshvmehta@gmail.com

No comments: