[RESOLVED] Is possible to consume webservices in windows application?
Hi friends,
I have an experience in web services middleware using asp.net web application. we have a new product to implement the code in windows web services. I am new and i dont have worked in windows application.I have a doubt that Is it possible to consume web service in windows application like web application? Is anything need to do that to consume web services in windows application?
If it is yes please tell the details and if any useful links available, send the link also.
Thanks
Re: Is possible to consume webservices in windows application?
Hey,
Sure you can.
In the same way that you create a reference to a Web Service in your ASP.Net Application, you can create a reference to the Web Service from your Windows Application, and you can make calls to the Web Service and return data.
The "magic" is in the generation of the "proxy" class when you create the reference. This essentially downloads all the information that your application needs to use the Web Service.
In your Windows Application, simply right click on references, and select Add Web Reference, the rest will be exactly the same as you have done before.
Gary
Re: Is possible to consume webservices in windows application?
hi dude,
Thanks for your reply . I got it exactly what you are telling.
Thanks
Re: Is possible to consume webservices in windows application?
Hey,
Not a problem at all.
If your question has been answered, remember to mark it as resolved.
Gary