Sankar M
Sankar M

Reputation: 4779

how to Create web services | asp.net 2.0 | C# | web services

Below is my requirement ...please guide me to do well...

ServiceName: Login

Invoke URL:

http://mysite.com/api/loginuser.asp?mechineid=2We3fght5#&[email protected]&password=welcome

XML return format:

PS: i need to return in XML format....

How to create webservices explain me in detail....

ragards,

shankar.M

Upvotes: 0

Views: 1029

Answers (2)

Sankar M
Sankar M

Reputation: 4779

[ScriptMethod(UseHttpGet = true)] [WebMethod] public string HelloWorld() { return "Hello World"; }

in web.config...

Upvotes: 2

Related Questions