Alex
Alex

Reputation: 673

Calling a web service in a windows application form

EDIT. I was adding it as a service reference instead of a web service reference (found by when adding a service refererence, go into advanced and down the bottom it should say "add web reference") , I didn't know that option existed as it's hidden away.

I made a web service in c# .net. Initially it wasn't calling because I thought that the web form didn't like the codebehind for the web form that is created in VS2012, so I took that out and just included the web service file itself.

I'm pretty sure the libraries were included when I visit the url of the service with wsdl, but it still won't seem to call the service to the form.

It displays some XML data and shows TestCypher as a workable service, so it should be working? I'm not entirely sure where the wsdl file should be hosted if I take the web service out of the solution

Upvotes: 6

Views: 28871

Answers (1)

Ragesh Puthiyedath Raju
Ragesh Puthiyedath Raju

Reputation: 3939

Please see the below link

http://www.codeproject.com/Articles/26941/Consuming-Webservice-In-A-Windows-Application

you can use this method in your application. I just post this example in your requirement.

please note : i have no guarantee about the perfomrnce area in this method.

So please consider this element when your application is use a wide number of users.

Hope it help.

Upvotes: 3

Related Questions