<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: HTTPS over SSL for the product HP-UX in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194635#M539260</link>
    <description>OK, now that looks like some good information.&lt;BR /&gt;&lt;BR /&gt;If the .pfx file required a pass phrase, it contains not only a SSL certificate, but also a SSL private key. Apparently your customer requires you, a SSL client in the context of this connection, to authenticate using a "SSL client certificate". This is a not-so-common way to use SSL, but certainly possible.&lt;BR /&gt;&lt;BR /&gt;If your "openssl pkcs12" command was successful, the .pem file should now contain two segments, like this:&lt;BR /&gt;&lt;BR /&gt;-----BEGIN RSA PRIVATE KEY-----&lt;BR /&gt;&lt;MANY lines="" with="" letters="" and="" numbers=""&gt;&lt;BR /&gt;-----END RSA PRIVATE KEY-----&lt;BR /&gt;&lt;BR /&gt;and:&lt;BR /&gt;&lt;BR /&gt;-----BEGIN CERTIFICATE-----&lt;BR /&gt;&lt;MANY lines="" with="" letters="" and="" numbers=""&gt;&lt;BR /&gt;-----END CERTIFICATE-----&lt;BR /&gt;&lt;BR /&gt;The CERTIFICATE segment may be before or after the PRIVATE KEY segment; the order is not important.&lt;BR /&gt;&lt;BR /&gt;You must now tell "openssl s_client" and "curl" that you have a client certificate that you are willing to use for authentication.&lt;BR /&gt;To do that, you must use the "-cert &lt;FILENAME.PEM&gt;" option with the "openssl s_client" command, i.e.:&lt;BR /&gt;&lt;BR /&gt;openssl s_client -cert YourCertificateFile.pem -connect host:port&lt;BR /&gt;&lt;BR /&gt;This takes care of one half of the authentication problem: when your client presents the certificate to the remote server, the remote server can be assured that you have legitimate business with it.&lt;BR /&gt;The s_client command will also display the certificate of the remote server. You can store it and use it later to confirm that you're still accessing the same server, i.e. nobody is trying to redirect your connection to a malicious server.&lt;BR /&gt;&lt;BR /&gt;But the "openssl s_client" will only allow you to confirm that the connection works; it will not actually transfer any files without a major extra effort. To transfer files, you need curl or something similar.&lt;BR /&gt;&lt;BR /&gt;To download files from the remote server, use curl like this:&lt;BR /&gt;&lt;BR /&gt;curl --cert YourCertificateFile.pem https://host:port/path/filename&lt;BR /&gt;&lt;BR /&gt;To upload files to the remote server, you need to know one more thing: which HTTP(S) method you're supposed to use in sending the data? The choices are POST and PUT. PUT is better suited for file transfer, but POST is much more widely supported. &lt;BR /&gt;&lt;BR /&gt;To upload using HTTP(S) PUT method:&lt;BR /&gt;&lt;BR /&gt;curl --cert YourCertificateFile.pem -T localfile https://host:port/path/&lt;BR /&gt;&lt;BR /&gt;or, if you want to specify the remote filename:&lt;BR /&gt;&lt;BR /&gt;curl --cert YourCertificateFile.pem -T localfile https://host:port/path/remotefile&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;To upload using the POST method, you would use:&lt;BR /&gt;&lt;BR /&gt;curl --cert YourCertificateFile.pem --data-binary @localfile https://host:port/path/destination&lt;BR /&gt;&lt;BR /&gt;If you're supposed to use the POST method in sending data, your client should have given you the *exact* destination URL to use. If you change *anything* in the POST destination URL, your data may not get processed correctly at the remote end. &lt;BR /&gt;&lt;BR /&gt;MK&lt;/FILENAME.PEM&gt;&lt;/MANY&gt;&lt;/MANY&gt;</description>
    <pubDate>Tue, 20 May 2008 02:06:34 GMT</pubDate>
    <dc:creator>Matti_Kurkela</dc:creator>
    <dc:date>2008-05-20T02:06:34Z</dc:date>
    <item>
      <title>HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194613#M539238</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Can anyone help in &lt;BR /&gt;HP-UX, that connects to an HTTPS site through SSL&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 08 May 2008 20:00:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194613#M539238</guid>
      <dc:creator>PK_1975</dc:creator>
      <dc:date>2008-05-08T20:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194614#M539239</link>
      <description>Use a Web browser or wget?&lt;BR /&gt;&lt;BR /&gt;Do you want an HTTPS client or an HTTPS&lt;BR /&gt;server on HP-UX?&lt;BR /&gt;&lt;BR /&gt;What, exactly, are you trying to do?</description>
      <pubDate>Thu, 08 May 2008 21:13:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194614#M539239</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-05-08T21:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194615#M539240</link>
      <description>Actually we are tranfering the files through ftp now we would like to tranfer files through secure site ie HTTPS through SSL.</description>
      <pubDate>Fri, 09 May 2008 12:47:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194615#M539240</guid>
      <dc:creator>PK_1975</dc:creator>
      <dc:date>2008-05-09T12:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194616#M539241</link>
      <description>Actually we are tranfering the files through ftp now we would like to tranfer files through secure site ie HTTPS through SSL.&lt;BR /&gt;&lt;BR /&gt;so we want to use web-browser. &lt;BR /&gt;&lt;BR /&gt;Can u give me the solution</description>
      <pubDate>Fri, 09 May 2008 13:03:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194616#M539241</guid>
      <dc:creator>PK_1975</dc:creator>
      <dc:date>2008-05-09T13:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194617#M539242</link>
      <description>&lt;!--!*#--&gt;If you want to replace FTP with something&lt;BR /&gt;more secure, you might look at SFTP or SCP.&lt;BR /&gt;&lt;BR /&gt;    man ssh&lt;BR /&gt;    man sftp&lt;BR /&gt;    man scp&lt;BR /&gt;&lt;BR /&gt;&amp;gt; so we want to use web-browser.&lt;BR /&gt;&lt;BR /&gt;Really?  That sounds harder than using SFTP.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Can u give me the solution&lt;BR /&gt;&lt;BR /&gt;If you really want to use HTTPS, the details&lt;BR /&gt;would depend on the answer to this old&lt;BR /&gt;question:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Do you want an HTTPS client or an HTTPS&lt;BR /&gt;&amp;gt; server on HP-UX?&lt;BR /&gt;&lt;BR /&gt;But I'd expect SFTP (or SCP) to be easier to&lt;BR /&gt;adopt.</description>
      <pubDate>Fri, 09 May 2008 17:11:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194617#M539242</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-05-09T17:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194618#M539243</link>
      <description>I want to use HTTPS &lt;BR /&gt;&lt;BR /&gt;so i need HTTPS client on HP-UX</description>
      <pubDate>Fri, 09 May 2008 17:37:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194618#M539243</guid>
      <dc:creator>PK_1975</dc:creator>
      <dc:date>2008-05-09T17:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194619#M539244</link>
      <description>The default installations of HP-UX have contained a version of Netscape/Mozilla/Firefox web browser since HP-UX 10.20. Look into /opt/netscape, /opt/mozilla and/or /opt/firefox as appropriate.&lt;BR /&gt;&lt;BR /&gt;If you don't have it installed, see:&lt;BR /&gt;&lt;A href="http://www.hp.com/go/firefox" target="_blank"&gt;http://www.hp.com/go/firefox&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Of course running a GUI-based browser requires that you have X Window System working.&lt;BR /&gt;&lt;BR /&gt;If you are planning to create a script to automate the downloading of some files, a command-line tool like wget would be a much simpler solution.&lt;BR /&gt;&lt;BR /&gt;Wget is available from the Porting Archive:&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Gnu/wget-1.11.1/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Gnu/wget-1.11.1/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Note that to make it work, you must install the packages listed as Run-Time Dependencies first.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Sat, 10 May 2008 05:44:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194619#M539244</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2008-05-10T05:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194620#M539245</link>
      <description>Thanks for ur information. &lt;BR /&gt;&lt;BR /&gt;I need some more information with OpenSSL, because we already installed on our HP-UX systems it appears, and might be able to do the command line retrieves and transmits.</description>
      <pubDate>Mon, 12 May 2008 16:04:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194620#M539245</guid>
      <dc:creator>PK_1975</dc:creator>
      <dc:date>2008-05-12T16:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194621#M539246</link>
      <description>Check out cURL at software.hp.com&lt;BR /&gt;&lt;BR /&gt;This will allow ftp over ssl ( a.k.a ftps )programatically.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 12 May 2008 16:07:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194621#M539246</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2008-05-12T16:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194622#M539247</link>
      <description>&lt;BR /&gt;As you said this will allow ftp over ssl&lt;BR /&gt;but we need https over ssl&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;"I need some more information with OpenSSL, because we already installed on our HP-UX systems it appears, and might be able to do the command line retrieves and transmits."</description>
      <pubDate>Mon, 12 May 2008 16:17:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194622#M539247</guid>
      <dc:creator>PK_1975</dc:creator>
      <dc:date>2008-05-12T16:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194623#M539248</link>
      <description>OpenSSL is a low-level SSL toolkit and is not intended to be used directly for making HTTPS client connections. You should use wget, curl, or one of the other utilities that was designed for that. Many (most?) of those tools will rely on OpenSSL's libraries for their SSL capabilities, but the OpenSSL command-line tool is really only used directly for managing keys/certificates and connection troubleshooting.</description>
      <pubDate>Mon, 12 May 2008 16:52:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194623#M539248</guid>
      <dc:creator>Heironimus</dc:creator>
      <dc:date>2008-05-12T16:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194624#M539249</link>
      <description>When i checked cURL in software.hp.com, i have seen 3 option.&lt;BR /&gt;&lt;BR /&gt;HP-UX Internet Express for HP-UX 11i v1   &lt;BR /&gt;HP-UX Internet Express for HP-UX 11i v2  &lt;BR /&gt;HPUX Internet Express for HP-UX 11i v3 &lt;BR /&gt;&lt;BR /&gt;My version of the OpenSSL is  0.9.7d &lt;BR /&gt;&lt;BR /&gt;So suggest me which one can i use</description>
      <pubDate>Mon, 12 May 2008 17:13:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194624#M539249</guid>
      <dc:creator>PK_1975</dc:creator>
      <dc:date>2008-05-12T17:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194625#M539250</link>
      <description>What version of HPUX are you running ??&lt;BR /&gt;&lt;BR /&gt;11iv1, 11iv2 or 11iv3 ??????&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 12 May 2008 17:49:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194625#M539250</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2008-05-12T17:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194626#M539251</link>
      <description>Hi &lt;BR /&gt;&lt;BR /&gt;We installed cURL, could u give me advise how to use curl to retrieve and push data to that https site?</description>
      <pubDate>Wed, 14 May 2008 17:54:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194626#M539251</guid>
      <dc:creator>PK_1975</dc:creator>
      <dc:date>2008-05-14T17:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194627#M539252</link>
      <description>Hi &lt;BR /&gt;&lt;BR /&gt;We installed cURL, could u give me advise how to use curl to retrieve and push data to the remote https site?</description>
      <pubDate>Wed, 14 May 2008 17:54:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194627#M539252</guid>
      <dc:creator>PK_1975</dc:creator>
      <dc:date>2008-05-14T17:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194628#M539253</link>
      <description>&amp;gt; [...] push data to the remote https site?&lt;BR /&gt;&lt;BR /&gt;HTTPS (Hypertext Transfer Protocol Secure, or&lt;BR /&gt;Hypertext Transfer Protocol over SSL, if you&lt;BR /&gt;prefer), like HTTP, involves a client program&lt;BR /&gt;(like a Web browser or wget or cURL) sending&lt;BR /&gt;requests to an HTTPS server (like Apache),&lt;BR /&gt;which then acts upon that request.  Unlike&lt;BR /&gt;FTP (or SFTP), it was not intended as a&lt;BR /&gt;general file transfer protocol.  Fetching a&lt;BR /&gt;file is pretty easy, but sending one requires&lt;BR /&gt;some cooperation from the HTTPS server.&lt;BR /&gt;&lt;BR /&gt;Even with FTP, most servers are more willing&lt;BR /&gt;to send a file than to accept one.  With&lt;BR /&gt;HTTP[S], it's even harder.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; What, exactly, are you trying to do?&lt;BR /&gt;&lt;BR /&gt;Still waiting for a clear answer to that one.&lt;BR /&gt;Hint: It's often more productive to list your&lt;BR /&gt;actual requirements ("I need to send files&lt;BR /&gt;securely from system X to system Y.") than it&lt;BR /&gt;is to ask how to implement some arbitrary&lt;BR /&gt;(sub-ideal) implementation of some arbitrary&lt;BR /&gt;(sub-ideal) solution ("HTTPS").</description>
      <pubDate>Wed, 14 May 2008 19:06:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194628#M539253</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-05-14T19:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194629#M539254</link>
      <description>actually i need to install any browser in machine? to transfer the file from system x to system y.&lt;BR /&gt;&lt;BR /&gt;and can u give some command on unix to access</description>
      <pubDate>Wed, 14 May 2008 19:11:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194629#M539254</guid>
      <dc:creator>PK_1975</dc:creator>
      <dc:date>2008-05-14T19:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194630#M539255</link>
      <description>Hi &lt;BR /&gt;&lt;BR /&gt;How to install .pfx files in HP-UX, could u provide the command and also how we will send file and receive file from the remote system by using curl command line&lt;BR /&gt;</description>
      <pubDate>Wed, 14 May 2008 22:08:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194630#M539255</guid>
      <dc:creator>PK_1975</dc:creator>
      <dc:date>2008-05-14T22:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194631#M539256</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;tell now no one given me the answer to my request.&lt;BR /&gt;&lt;BR /&gt;I intall the .pkx file in unix and trying to connect the remote site, but it is not connecting here is the error. Please respond to my request and give steps to resolve from this problem&lt;BR /&gt;&lt;BR /&gt;Here is the error&lt;BR /&gt;&lt;BR /&gt;29394:error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure:s3_pkt.c:1052:SSL alert number 40&lt;BR /&gt;29394:error:140790E5:SSL routines:SSL23_WRITE:ssl handshake failure:s23_lib.c:226:&lt;BR /&gt;</description>
      <pubDate>Thu, 15 May 2008 19:07:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194631#M539256</guid>
      <dc:creator>PK_1975</dc:creator>
      <dc:date>2008-05-15T19:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: HTTPS over SSL for the product HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194632#M539257</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I intall the .pkx file in unix and trying to connect the remote site, but it is not connecting here is the error. Please respond to my request and give steps to resolve from this problem&lt;BR /&gt;&lt;BR /&gt;Here is the error&lt;BR /&gt;&lt;BR /&gt;29394:error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure:s3_pkt.c:1052:SSL alert number 40&lt;BR /&gt;29394:error:140790E5:SSL routines:SSL23_WRITE:ssl handshake failure:s23_lib.c:226:&lt;BR /&gt;</description>
      <pubDate>Thu, 15 May 2008 19:08:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/https-over-ssl-for-the-product-hp-ux/m-p/4194632#M539257</guid>
      <dc:creator>PK_1975</dc:creator>
      <dc:date>2008-05-15T19:08:04Z</dc:date>
    </item>
  </channel>
</rss>

