O
oliver.wulff
Hi
My ASP.NET application has to send https requests to other web servers
quite often. I'd like to know how I should manage the connections? Does
the method WebRequest.Create() reuses an existing https connection to the
destination server or will a new one created for each call? Can several
threads use the same instance returned by WebRequest.Create()? If yes,
will the requests be serialized or will they be called in parallel?
This is quite important to me because I have to use HTTPS and don't want
to establish a connection each time. Ideally, I'd prefer one multithreaded
HTTPS connection.
Thanks for your help!
Oli
My ASP.NET application has to send https requests to other web servers
quite often. I'd like to know how I should manage the connections? Does
the method WebRequest.Create() reuses an existing https connection to the
destination server or will a new one created for each call? Can several
threads use the same instance returned by WebRequest.Create()? If yes,
will the requests be serialized or will they be called in parallel?
This is quite important to me because I have to use HTTPS and don't want
to establish a connection each time. Ideally, I'd prefer one multithreaded
HTTPS connection.
Thanks for your help!
Oli