Hi Chris
You can try httpWebRequest
HttpWebRequest req = (HttpWebRequest)HttpWebRequest .Create(http://myurl) ;
I assume you will pass the parameters on the URL or using headers ?
Eitherway, this class might help
You can then use
HttpWebResponse resp = (HttpWebResponse)req.GetResponse() ;
StreamReader sr = new StreamReader(resp.GetResponseStream,Encoding.ASCII);
Console.WriteLine(sr.ReadToEnd())
sr.Close();
To read the results back or something.
Hope this helps
Henk
>I have an ASP.NET Web Service which receives an XMLDocument which is then
> parsed. The values in the XML file need to be sent to a Java servlet on
[quoted text clipped - 3 lines]
>
> Many thanks for your assistance!
Chris Harris - 20 Mar 2005 14:27 GMT
Thanks Hank, that's just what I needed!
> Hi Chris
>
[quoted text clipped - 26 lines]
> >
> > Many thanks for your assistance!
Chris Harris - 20 Mar 2005 14:27 GMT
Thanks Hank - that's just what I needed!
> Hi Chris
>
[quoted text clipped - 26 lines]
> >
> > Many thanks for your assistance!