We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi all, Does any one know how can i call webservice function and get response from it? often we need SOAP library to do so with HTTP but i don't know the way. Can you tell me how can i call the webservice which is wrote with ASP.net and get the response from it?I have seen httpserver example in mcb1700 but i can't configuer it.
There is probably a ready built component available now.
If you can't find one, then you could consider using expat XML ( https://libexpat.github.io/ ). My first venture into SOAP on embedded used this and I didn't have the luxury of an ARM. It was an 8051 based core!
Thank you for reply.I found the way.We can send data over tcpip and send data to server IP and its port in the shape of XML data.Each webservice has a example for giving data in SOAP mode or HTTP.it is sufficient to replace the strings in those example with our data and receive appropriate response from server in our webservice.I do this with Arm cortex m3 LPC17 series.