Hi,
I'm wondering between httpclient and httpjob in utilsv2.
httpclient has a "InitializeAcceptAll" method, is old stuff and only supports get requests.
HttpJob is newer, accepts post request but offloads the SSL stuff to the OS, so no "AcceptAll" method.
Both support basic encryption.
What should I use to POST to Web service with self-signed cert usiing basic auth? E.g., calling a aimple web service.
Thanks
httpclient has a "InitializeAcceptAll" method, is old stuff and only supports get requests.
HttpJob is newer, accepts post request but offloads the SSL stuff to the OS, so no "AcceptAll" method.
Both support basic encryption.
I rewrote my inner workings with httpclient directly.
It would be very useful to export "InitializeAcceptAll" into HttpJob without rewriting classes, since it is already in httpclient.
Bye