I have a web service with one exposed method GetData. It takes a string as input parameter and returns another string. I am able to invoke the web method using test tools with the below request.
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<GetData xmlns="http://tempuri.org/">
<value>Enter my value</value>
</GetData>
</s:Body>
</s:Envelope>
Can I get some help on how to invoke the same in a C# windows Application with out having a proxy reference and by using the end point details . (Ex:http://mymachine:1415/MyService.svc)
EDIT