Reputation: 1
I've created a web service using Java (Netbeans IDE). The web service is a web service with MySQL database. and now I want to create a client application using C# Windows Form (Visual Studio IDE). I've added a web reference (wsdl link) on a client project. but I am confused about how to display the records from my database on my C# Windows Form.
Need help pleaseee,,, thx before...
Upvotes: 0
Views: 165
Reputation:
You should add a service for get a value in your web service.for example GetData
and in c# call the service.
Every service returns a specific type for example List<>
or a class like Person
.
Upvotes: 0