Click here to Skip to main content
15,886,052 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
How do I use webservice in ASP.NET C# 2.0 application?



[Agent_Spock]
- Added appropriate tag
Posted
Updated 23-Jun-14 17:09pm
v4

my suggestion, first you search in search engines, after you can proceed from particular level
 
Share this answer
 
If you're calling it, you add a reference just like any other project. As someone else said, tons of info on the web. Be careful, tho, if you make a lot of web service calls, make sure they won't take so long that your page times out.
 
Share this answer
 
A simple search in codepriject itself provided this:

How to make a simple WebService and consume it.[^]

Pls search it yourself before posting questions next time.
 
Share this answer
 
1. create web service
2. publish web service
3. Add this web service in your project(via add Add web Reference)
4.create object web service (<web reference="" name=""> .Service obj= new <web reference="" name="">s.Service();
5. set web service URL (obj.Url=<web service="" address="">)
6.call web methods (obj.<method>)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900