I&#39;ve been making use of the very clever recipe outlined at<br>&nbsp; <a href="http://schemecookbook.org/Cookbook/WebFetchingHttpsUrl">http://schemecookbook.org/Cookbook/WebFetchingHttpsUrl</a><br>for making use of https://... URLs.<br>
<br>Today I wanted to route the requests through a debugging proxy server (<a href="http://www.fiddlertool.com/">http://www.fiddlertool.com/</a>) to see why they were failing, but for some reason, setting the current-proxy-servers parameter doesn&#39;t work.<br>
<br>When I do:<br><br>(module url-test mzscheme<br>&nbsp; (require (<span style="background-color: rgb(255, 255, 0);">lib &quot;url.ss&quot; &quot;net&quot;)</span>)<br><br>&nbsp; (current-proxy-servers &#39;((&quot;http&quot; &quot;localhost&quot; 8888)))<br>
&nbsp; (define p (get-pure-port (string-&gt;url &quot;<a href="https://www.google.com/">https://www.google.com/</a>&quot;)))<br>&nbsp; (display-pure-port p))<br><br>the proxy url is used.<br><br>However, when I change the above to:<br>
<br><br>
(module url-test mzscheme<br>
&nbsp; (require<span style="background-color: rgb(255, 255, 0);">&nbsp; &quot;ssl-url.ss&quot;)&nbsp;</span> ; From: <a href="http://schemecookbook.org/Cookbook/WebFetchingHttpsUrl">http://schemecookbook.org/Cookbook/WebFetchingHttpsUrl</a><br>

&nbsp; (current-proxy-servers &#39;((&quot;http&quot; &quot;localhost&quot; 8888)))<br>
&nbsp; (define p (get-pure-port (string-&gt;url &quot;<a href="https://www.google.com/">https://www.google.com/</a>&quot;)))<br>
&nbsp; (display-pure-port p))<br><br>The program doesn&#39;t seem to run through the proxy server. It does, however, properly work.<br><br>Any suggestions for how I could tweak ssl-url.ss to leverage the proxy server?<br><br>

Thanks,<br>Ben<br><br>-- <br>Have an idea for software? I can make it happen - <a href="http://www.ideas2executables.com">http://www.ideas2executables.com</a><br>My Blog: <a href="http://benjisimon.blogspot.com">http://benjisimon.blogspot.com</a>