Using the HttpWebRequest class.

Posted by Nick on Stack Overflow See other posts from Stack Overflow or by Nick
Published on 2010-03-12T17:49:54Z Indexed on 2010/03/12 18:17 UTC
Read the original article Hit count: 141

Filed under:
|
|
|

I instantiate the HttpWebRequest object:

HttpWebRequest httpWebRequest = 
    WebRequest.Create("http://game.stop.com/webservice/services/gameup")
    as HttpWebRequest;

When I "post" the data to this service, how does the service know which web method to submit the data to?

I do not have the code to this web service, all I know is that it was written in Java.

© Stack Overflow or respective owner

Related posts about .NET

Related posts about c#