<br>I sort of didn&#39;t understand Yanni&#39;s difficulty. I worked through the SSL tutorial at <a href="http://squeakingalong.wordpress.com">http://squeakingalong.wordpress.com</a> and I started to see it. I have a solution, I think, as usual, it&#39;s sort of a hack.<br>
<br>It&#39;s predicated on the idea that modules don&#39;t load into the image until they&#39;re needed. My solution is sort of to just shake the image. If you put the bundle in the right place (ensuring that you don&#39;t house it in SqueakSSL-bin file folder it came in) then it looks like this: <br>
<br><a href="http://smalltalktelevision.com/ssl1.jpg">http://smalltalktelevision.com/ssl1.jpg</a><br><br>Then you try Smalltalk listLoadedModules and  it doesn&#39;t appear. It needs to be primed at this point so try one of these or both: <br>
        <br>    (WebClient httpGet: &#39;<a href="https://encrypted.google.com/">https://encrypted.google.com/</a>&#39;) content.<br>    <br>    SqueakSSL google: &#39;squeak&#39;<br><br>It complains. Save and quit. Restart. Then try Smalltalk listLoadedModules again, and SqueakSSL plugin will appear in the list. If still not there, prime again with the above in Workspace. Sufficiently shook, I proceed through the blog tutorial and set this to accept: <br>
<br><a href="http://smalltalktelevision.com/ssl2.jpg">http://smalltalktelevision.com/ssl2.jpg</a><br><br>It doesn&#39;t like that: <br><br><a href="http://smalltalktelevision.com/ssl3.jpg">http://smalltalktelevision.com/ssl3.jpg</a><br>
<br>But I&#39;m not disappointed. My knowledge of whether I&#39;m supposed to feed it the newkey.pem, newreq.pem or the demoCA/cacert.pem is not something I have. Perhaps somebody could tell me which is supposed to be the &quot;the .pem file which must include both the certificate and the private key&quot;. With the correct file offered up to the image, I think it&#39;s on its way.<br>
<br>Chris <br>