Sending http without waiting for reply.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Is there a way to send a http message without waiting for the reply. I just
want a server to register some information if its up and running.

thanks Jesper.
 
You could try using the async calls (BeginXXX and EndXXX) in the
HttpWebRequest class, then just ignore the callback. I have not tried this
but it might work.
 
You can just do the POST. However the generates an ok or other reply anyway
so you may as well check the reply is ok and terminate the protocol nicely.
 
Back
Top