Hi all!
I have to pass a SOAP message to a server, and I know only server IP
and
the port number. I was gonna do it from a form, using WebRequest Class
and
StreamWriter to fetch the result. What I don't know is how to pass
this port and
server IP instead of URL?
Should I do this some other way instead?
Thanx in advance
Eliyahu Goldin - 30 Jul 2007 14:56 GMT
Use something like
HttpWebRequest myReq
=(HttpWebRequest)WebRequest.Create("http://10.10.10.10:4567");

Signature
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
> Hi all!
>
[quoted text clipped - 9 lines]
>
> Thanx in advance