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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top