Jump to content

Sending/Receiving soap


Guest Joanaaaa

Recommended Posts

Guest Joanaaaa

HiI'm develloping a b2b solution and i need to exchange soap messages with a business partner.I am now able to post xml with a webservice to their webserver, using httpwebrequest and i also can receive their response.

 HttpWebRequest req = (HttpWebRequest)WebRequest.Create("http://www.someurl.com/receive");

I now need the inverse operation. I need to suply them a url so they can post/get their xml messages to me. How do i do that? I've been reading a lot, but i'm confused! i guess i don't need a webservice, i just want them to post their requests like i do, and send them a response like the one i'm getting...

         HttpWebResponse wr = (HttpWebResponse)req.GetResponse();

Any help will be highly apreciated..... i'm getting a little desperate here! :)TIA

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...