I've created a web service which receives a xml file like this:
- <ns0:Root xmlns:ns0="http://SimpleBizTalkOrchestration.ReceiveSchema"> <FirstName>Ron</FirstName> <LastName>Swan</LastName> </ns0:Root> and passes it to an BizTalk Orchestration.
This is the webservice i need to call.
http://localhost/BizTalkWcfService/SimpleService.svc My question is how do you call a WCF web service and pass data to it?
I've seen many tutorials which request data from the web service but cant find any that pass information to the service.
Thanks in advance for any advice.