I'm writing an application for connecting to the Amazon S3 REST service. This means I need to follow their custom authentication mechanism and construct an "Authorization" header based upon the "Date" and "Content-Type" headers among other things. Unfortunately the HttpConverter class does not allow me to manipulate standard headers or even read the Date and Content-Type headers prior to transmission.
Is it possible to use custom authentication schemes in client requests or will I need to go back to using HttpUrlConnection class for low-level control? Best regards, Mikkel

