how to access the web service which has been developed in PHP in C#.
Here is the link: http://xxx.in/WS/getCities.php?wsdl
I just want to call the getCities()
method from that.
I written code in C# like this:
Chanllange.LocationInformationService ls = new Chanllange.LocationInformationService();
t1.Text= ls.getCities();
I have got the output in json format, how to show the value in c#.
Please let me know if you need more information.