I have the SOAP request in an XML file. I want to post the request to the web service in .net How to implement?
You need to post the data over HTTP. Use the WebRequest class to post the data. You will need to send other data with the post request to ensure you have a valid SOAP envelope. Read the SOAP spec for all of the details.