Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

ServiceName: Login

Invoke URL:

http://mysite.com/api/loginuser.asp?mechineid=2We3fght5#&username=sankar@gmail.com&password=welcome

XML return format:

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

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

ragards,

shankar.M

share|improve this question
How to create web services: in detail – Ethan Cabiac Jun 13 '11 at 19:28
r u kidding.... – Shankar Jun 13 '11 at 19:31
I wish I was kidding. You are asking a community of developers to delve into detail about one of the broadest and most complex topics in the industry. There are thousands of resources out there that can tell you how to go about implementing a web service. This forum is for helping developers figure out problems after they have tried to solve it themselves, not a place to get free code dumps. – Ethan Cabiac Jun 13 '11 at 19:35
1. Please don't stuff tags into your post title, use the tags field; 2. Please don't use signatures or taglines in your posts; 3. Please read How to Ask and, in the future, try to ask specific questions about programming rather than broad "write this for me" style questions. – meagar Jun 13 '11 at 19:53

2 Answers

up vote 2 down vote accepted

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

in web.config...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.