Hi,
I have added a WSDL web server to my windows application call WebService.In that service I need to pass 2 values and get the result.Here I have written in like this
NL - Country
33264 - Customer No
private void DetailsCheck_Load(object sender, EventArgs e)
{
WebService.checkDetailsService cdat = new checkDetailsService ();
cdat.checkDetailsAsync("NL", "33264");
}
This will return me a SOAP envelope.But I am not sure how to display that in windows form.Can any one point me out
in above code how to display the return data.
Thanks
Loading
Saineshwar BageriPosted Feb 8, 2015, 11:52 PM
http://www.c-sharpcorner.com/UploadFile/4d9083/how-to-create-basic-http-binding-in-wcf/
There is another link which is Consuming
http://www.c-sharpcorner.com/UploadFile/4d9083/how-to-consume-basic-http-binding-in-windows-application/
This will help you for reference