XMLHTTPRequest in .NETCF?

  • Thread starter Thread starter Rob Hughes
  • Start date Start date
R

Rob Hughes

I am upgrading an eVB application to .NET and I just ran into a
problem. The eVB application uses the XMLHTTPRequest object and I'm
not sure what the equivalent is in .NETCF if there is one? The
XMLHTTPRequest object is being used to send some XML to the server and
then check the response. Does anyone have any ideas what direction I
should go with this?

Thanks.
 
Hi,

You can use WebRequest and WebResponse object in System.NET namespace as
equivalent to XMLHTTPRequest object.

Girish.
 
Back
Top