Hi All,

Sending an http request through our corporate proxy works as follows for http 
requests ->

(define-values (x y z)
  (http-sendrecv "10.0.0.200" "http://www.example.com";
                 #:port 8080
                 #:headers '(
                                         "Proxy-Authorization: Basic 
base64encodedcredentials"
                                         "Proxy-Connections: keep-alive"
                                         )
                 #:ssl? #f
                 #:method "GET"))

However fails for HTTPS requests (as expected).

What I need to do is make a request like the above using the #:method "CONNECT" 
and then make a secondary request through a returned connection.

Does anyone know how I would go about doing that in Racket?

Kind regards,
Sean

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to