active questions tagged ssl - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T17:04:59Zhttp://stackoverflow.com/feeds/tag/sslhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1845906/how-to-cache-ssl-client-certificate-password-in-client-application-using-libcurl0How to cache SSL client certificate password in client application using libcurlLong Cheng2009-12-04T09:43:50Z2009-12-04T09:43:50Z
<p>We have a (multi-os) application which communicates with a https server using libcurl and uses SSL client certification. When the client certification is password protected, the application must ask the user to input password. The application sends hundreds of different https request to the server, so we can not ask the user to input password each time a new connection is going to be created. Now we simply prompt the user to input password once when the application starts then set the password to curllib through "CURLOPT_KEYPASSWD" option. But I'm worrying about malicious user could easily hack into the running process and read the client certification password. Is there anyway I can cache the client certification password and also prevent it from being easily read from memory?</p>
http://stackoverflow.com/questions/1842007/ssl-wrapper-stream-in-c0SSL wrapper stream in CMichael Weller2009-12-03T18:44:47Z2009-12-04T02:12:53Z
<p>I have a simple <code>stream_t</code> type in C with your basic read/write operations, and support for multiple underlying implementations using function pointers. So a stream could be backed by a file, a char buffer, etc.</p>
<p>One stream type is a standard POSIX socket, and I would like to code a wrapper stream that will add SSL support to an existing stream, similar to .NET's <a href="http://msdn.microsoft.com/en-us/library/system.net.security.sslstream.aspx" rel="nofollow">SslStream</a>. So I could write something like this:</p>
<pre>
stream_t *socket = something();
// wrap existing stream and perform handshake as client
stream_t *ssl_stream = ssl_stream_create(socket);
ssl_stream_authenticate_as_user(ssl_stream);
// now all read/writes are encrypted and passed through to the wrapped stream
</pre>
<p>I have written some SSL socket code before using OpenSSL's <code>BIO_new_connect(...)</code> etc. but this is a higher level API than what I need. Does OpenSSL expose the functions I would need to manually perform the handshake and encryption? Or is there some other library I can use?</p>
http://stackoverflow.com/questions/1487874/securing-wcf-rest-service-for-use-with-iphone-application0Securing WCF REST service for use with iPhone applicationzippod2009-09-28T16:04:08Z2009-12-04T01:00:03Z
<p>Hi all,</p>
<p>I've a created a simple WCF REST service which I intend to consume from an iPhone application.
The service works fine but now I'd like to secure it.</p>
<p>In my test enviornment (IIS on Windows 7) I already setup a self signed certificate using makecert.exe.</p>
<p>I also overridden the validate() method so I can use a custom username & password (since windows authentication is out of the question).</p>
<p>Now I'm stuck for more than two days figuring out how to configure everything so it can work.</p>
<p>My goal now is to be able to do a simple GET request via the browser, something like: </p>
<p><code>https://localhost/testservice/service1.svc/sayHello</code></p>
<p>When this will work I'll continue on to all iPhone related stuff.</p>
<p>Any help / examples will be highly appreciated!</p>
<p>Here's my web.config:</p>
<pre><code> <system.serviceModel>
<services>
<service name="IphoneWcf.Service1" behaviorConfiguration="IphoneWcf.Service1Behavior">
<!-- Service Endpoints -->
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="webBinding" behaviorConfiguration="webBehavior" contract="IphoneWcf.IService1">
<!--
Upon deployment, the following identity element should be removed or replaced to reflect the
identity under which the deployed service runs. If removed, WCF will infer an appropriate identity
automatically.
-->
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<!--<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> -->
<host>
<baseAddresses>
<add baseAddress="https://localhost/iphonewcf" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<endpointBehaviors>
<behavior name="webBehavior">
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="IphoneWcf.Service1Behavior">
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpsGetEnabled="false" />
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceCredentials>
<serviceCertificate findValue="localhost" storeLocation="LocalMachine" storeName="My" x509FindType="FindBySubjectName" />
</serviceCredentials>
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<basicHttpBinding>
<binding name="webBinding">
<security mode="Transport">
<transport clientCredentialType="Basic" />
</security>
</binding>
</basicHttpBinding>
</bindings>
</code></pre>
<p></p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/275878/firefox-and-ssl-secerrorunknownissuer0Firefox and SSL: sec_error_unknown_issuerOverbeeke2008-11-09T12:37:49Z2009-12-03T20:38:27Z
<p>My client gets a <code>sec_error_unknown_issuer</code> error message when visiting <a href="https://mediant.ipmail.nl" rel="nofollow">https://mediant.ipmail.nl</a> with firefox.
I can't reproduce the error myself. I installed ff on a vista and a xp machine and had no problems. FF on Ubuntu also works fine.</p>
<p>Does anyone get the same error and does anyone have some clues for me so i can tell my isp to change some settings?
The certificate is a so called wild-card ssl certificate that works for all subdomains (*.ipmail.nl). Was i wrong to pick the cheapest one?</p>
<p>Regards, Pieter</p>
http://stackoverflow.com/questions/1840725/python3-ssl-cert-information0Python3: ssl cert informationMadSc13ntist2009-12-03T15:38:57Z2009-12-03T16:09:28Z
<p>I have been trying to get information regarding expired ssl certificates using python 3 but it would be nice to be able to get as verbose a workup as possible. any takers?
So far i have been trying to use urllib.request to get this info (to no avail), does this strike anyone as foolish?</p>
<p>I have seen some examples of similar work using older versions of python, but nothing using v3.
<a href="http://objectmix.com/python/737581-re-urllib-getting-ssl-certificate-info.html" rel="nofollow">http://objectmix.com/python/737581-re-urllib-getting-ssl-certificate-info.html</a>
<a href="http://www.mail-archive.com/python-list@python.org/msg208150.html" rel="nofollow">http://www.mail-archive.com/python-list@python.org/msg208150.html</a></p>
http://stackoverflow.com/questions/1381991/is-there-a-way-for-iis6-to-do-http-and-https-together-in-the-same-site0Is there a way for IIS6 to do http and https together in the same site?puffpio2009-09-04T23:53:30Z2009-12-03T15:00:04Z
<p>The site needs to be accessible both from HTTP and HTTPS (in case the client wants the form submissions to be secure or not)</p>
<p>The site is hosted in IIS6 and ideally I'd like to be able to just have one website in there and it can handle both http and https..is this possible?</p>
<p>alternatively i was thinking maybe creating a "secure" subdirectory in the site and duplicating everything in there as well..is that feasible?</p>
<p>this is further complicated that it is using asp.net 3.5's routing ability to do url rewrites
so even if I create a secure subdirectory, i dunno if it will actually pick up that it's supposed to be SSL approved</p>
http://stackoverflow.com/questions/1840211/setup-ssl-for-form-login-only-on-tomcat-webapp0Setup SSL for form login only on Tomcat webappBrabster2009-12-03T14:30:34Z2009-12-03T14:55:10Z
<p>Can I set Tomcat (or my webapp if it's done that way) to require SSL for confidentiality of the built-in Form-Based Login mechanism?</p>
<p>i.e. to protect the users credentials, and use standard http for any other transactions?</p>
http://stackoverflow.com/questions/1839191/ssl-with-apache-6-on-fedora-100SSL with Apache 6 on Fedora 10jamiebarrow2009-12-03T10:54:44Z2009-12-03T10:54:44Z
<p>Hi all,</p>
<p>I had some trouble setting up SSL on Tomcat 6 on Fedora 10.</p>
<p>I removed OpenJDK and installed the SUN JDK (jdk-6u18-ea-bin-b05-linux-i586-18_nov_2009.bin).</p>
<p>I'm using Apache Tomcat 6.0.20 (apache-tomcat-6.0.20.tar.gz). I extracted it and ran it using the startup.sh script, and it worked fine. I then tried enabling SSL.</p>
<p>I created the keystore as follows:</p>
<pre><code>keytool -genkey -alias localhost -keyalg RSA -keystore my-keystore.jks
</code></pre>
<p>... and placed it in $CATALINA_HOME/</p>
<p>I then configured SSL using the below snippet from server.xml:</p>
<pre><code><Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="my-keystore.jks" keystorePass="password" />
</code></pre>
<p>And started up Tomcat. But this time it wasn't loading correctly, complaining about the keystore, and also telling me that it couldn't use port 98 (which wasn't in use before Tomcat started up - confirmed using nmap, as well as trying to telnet to the port).</p>
<p>I'm not sure of the exact errors as I'm not at the machine right now, the machine is at home all alone :B But will perhaps edit this at a later stage to give more detail.</p>
<p>If anyone has any idea why this would be happening though, it would be GREATLY appreciated.</p>
<p>On a separate note, anyone got some good resources on using secure Java JAX-WS Web Services hosted on Tomcat, that will be used by a .NET 2.0 client? :) This is my end goal: creating a (hopefully secure) web service on Linux that a .NET 2.0 client can speak to.</p>
<p>Thanks,</p>
<p>James</p>
http://stackoverflow.com/questions/1837627/is-basic-auth-with-ssl-secure-enough0Is basic auth with SSL secure enough?TP2009-12-03T04:23:58Z2009-12-03T04:34:23Z
<p>I am developing an application which need to handle a massive amount of REST requests. Using basic auth will save a lot of computing resources since I don't have to compute the signatures. Also, the documentation will be a lot simpler. What are your thoughts?</p>
http://stackoverflow.com/questions/1824119/blazeds-data-push-over-ssl0BlazeDS data push over SSLpratimarao2009-12-01T05:11:53Z2009-12-02T20:06:38Z
<p>I have an application that uses the data push technology of blazeDS to send data to a Flex Client event 5 seconds. The application works fine when I run it via HTTP with or without a proxy. When I run it via https the data push doesn't work anymore. I get the following error </p>
<pre><code>rootCause [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2
text="Error #2032: Stream Error.
URL: https://localhost/admin/messagebroker/streamingamfsecure?command=open&version=1
</code></pre>
<p>Has anyone successfully got streaming to work over SSL? </p>
<p>Thanks,
Pratima</p>
http://stackoverflow.com/questions/1094137/zend-mail-gmail-smtp0Zend Mail Gmail SMTPFabian2009-07-07T18:55:38Z2009-12-02T17:53:15Z
<p>Hi I'm trying to send some emails via gmail from the Zend_Mail module.
This is my code:</p>
<pre><code>$config = array(
'ssl' => 'tls',
'port' => 587,
'auth' => 'login',
'username' => 'webmaster@mydomain.com',
'password' => 'password'
);
$smtpConnection = new Zend_Mail_Transport_Smtp('smtp.gmail.com', $config);
</code></pre>
<p>Error:</p>
<p><em>Warning: stream_socket_enable_crypto() [streams.crypto]: this stream does not support SSL/crypto in /library/Zend/Mail/Protocol/Smtp.php on line 206
Unable to connect via TLS</em></p>
<p>I tried telling my hosting provider to enable the openssl.dll in phi.ini </p>
<p>But they say that isn't necessary since the server is in Linux and it doesn't need to enable the openssl.dll to work with TLS or SSL.</p>
<p>Is my hosting provider wrong or I'm I doing something wrong in my code.</p>
<p>Thanks in advance</p>
<p>Fabian </p>
http://stackoverflow.com/questions/1819228/what-is-this-exception-cipher-buffering-error-in-jce-provider-jsafejce1What is this exception: Cipher buffering error in JCE provider JsafeJCETom Hubbard2009-11-30T11:18:56Z2009-12-02T10:25:57Z
<p>We are getting this error when trying to change a password in ColdFusion through LDAP.</p>
<p>Despite the error, everything seems to be completing as requested.</p>
<p>The stack trace ends at the start of a thread so I can't tell the exact trigger point.</p>
<p><b>EDIT:</B></p>
<p>We started getting these errors when we moved from CFMX7 to ColdFusion 9.</p>
<p>Here is the stack trace.</p>
<blockquote>
Exception in thread "Thread-5244" java.lang.RuntimeException: Cipher buffering error in JCE provider JsafeJCE
at com.sun.net.ssl.internal.ssl.CipherBox.encrypt(CipherBox.java:144)
at com.sun.net.ssl.internal.ssl.OutputRecord.encrypt(OutputRecord.java:197)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecordInternal(SSLSocketImpl.java:733)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(SSLSocketImpl.java:722)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.sendAlert(SSLSocketImpl.java:1720)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1606)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1574)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:1538)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:1483)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:86)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:258)
at java.io.BufferedInputStream.read(BufferedInputStream.java:317)
at com.sun.jndi.ldap.Connection.run(Connection.java:767)
at java.lang.Thread.run(Thread.java:619)
</blockquote>
http://stackoverflow.com/questions/1830912/how-to-load-css-on-ssl-pages1How to load css on ssl pages?zsharp2009-12-02T05:53:01Z2009-12-02T05:59:52Z
<p>I am using relative paths to my css document, but on the ssl pages the document will not load. Navigating back to the non-ssl pages brings ssl back. How to I overcome this?</p>
http://stackoverflow.com/questions/1824579/sql-server-encryption-using-self-signed-ssl-certificate-querying-from-asp-net-30SQL Server encryption using self signed SSL certificate. Querying from ASP.NET 3.5.nailitdown2009-12-01T07:35:05Z2009-12-02T05:00:33Z
<p>I've created a self-signed cert for testing encryption between my web application and the SQL Server.</p>
<p>When attempting to query the database using "Encrypt=Yes;" in the connection string, I receive the following message:</p>
<blockquote>
<p>A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: SSL Provider, error: 0 - The certificate chain was issued by an authority that is not trusted.) </p>
</blockquote>
<p><strong>Background</strong><br>
I received an identical message when first attempting an encrypted connection from management studio. This was resolved by installing the self-signed cert into my Trusted Certificate Authorities.</p>
<p><strong>Question</strong><br>
Is there a way I can get ASP.NET to trust the certificate the same way my user account does?</p>
http://stackoverflow.com/questions/616904/ihttpmodule-to-switch-between-http-and-https-in-asp-net2IHTTPModule to switch between HTTP and HTTPS in ASP.NETGeorge Durzi2009-03-05T22:17:46Z2009-12-02T03:41:19Z
<p>I'm working on a web site which contains sections that need to be secured by SSL. </p>
<p>I have the site configured so that it runs fine when it's always in SSL, I see the SSL padlock in IE7/IE8/FireFox/Safari/Chrome</p>
<p>To implement the SSL switching, I created a class that implemented IHTTPModule and wired up HTTPApplication.PreRequestHandlerExecute.</p>
<p>I go through some custom logic to determine whether or not my request should use SSL, and then I redirect. I have to deal with two scenarios:</p>
<ul>
<li>Currently in SSL and request doesn't require SSL</li>
<li>Currently not in SSL but request requires SSL</li>
</ul>
<p>I end up doing the followng (where ctx is HttpContext.Current and pathAndQuery is ctx.Request.Url.PathAndQuery)</p>
<pre><code>// SSL required and current connection is not SSL
if (requestRequiresSSL & !ctx.Request.IsSecureConnection)
ctx.Response.Redirect("https://www.myurl.com" + pathAndQuery);
// SSL not required but current connection is SSL
if (!requestRequiresSSL & ctx.Request.IsSecureConnection)
ctx.Response.Redirect("http://www.myurl.com" + pathAndQuery);
</code></pre>
<p>The switching back and forth now works fine. However, when I go into SSL mode, FireFox and IE8 warns me that my request isn't entirely encrypted. </p>
<p>It looks like my module is short circuiting my request somehow, would appreciate any thoughts. </p>
http://stackoverflow.com/questions/1828775/httpclient-and-ssl0HttpClient and SSLrauch2009-12-01T20:40:31Z2009-12-01T21:52:39Z
<p>I know, there are many different questions and so many answers about this problem... But I can't understand...
I have: ubuntu-9.10-desktop-amd64 + NetBeans6.7.1 installed "as is" from off. rep.
I need connecting to some site over the HTTPS. For this I use Apache's HttpClient.
From tutorial I read:
"Once you have JSSE correctly installed, secure HTTP communication over SSL should be as simple as plain HTTP communication." And some example:</p>
<pre><code>
HttpClient httpclient = new HttpClient();
GetMethod httpget = new GetMethod("https://www.verisign.com/");
try {
httpclient.executeMethod(httpget);
System.out.println(httpget.getStatusLine());
} finally {
httpget.releaseConnection();
} </code></pre>
<p>By now, I write this:</p>
<pre><code>
HttpClient client = new HttpClient();
HttpMethod get = new GetMethod("https://mms.nw.ru");
//get.setDoAuthentication(true);
try {
int status = client.executeMethod(get);
System.out.println(status);
BufferedInputStream is = new BufferedInputStream(get.getResponseBodyAsStream());
int r=0;byte[] buf = new byte[10];
while((r = is.read(buf)) > 0) {
System.out.write(buf,0,r);
}
} catch(Exception ex) {
ex.printStackTrace();
}
</code></pre>
<p>As a result I have a set of errors:</p>
<pre><code>
javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
at sun.security.ssl.Alerts.getSSLException(Alerts.java:192)
at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1627)
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:204)
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:198)
at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:994)
at sun.security.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:142)
at sun.security.ssl.Handshaker.processLoop(Handshaker.java:533)
at sun.security.ssl.Handshaker.process_record(Handshaker.java:471)
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:904)
at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1132)
at sun.security.ssl.SSLSocketImpl.writeRecord(SSLSocketImpl.java:643)
at sun.security.ssl.AppOutputStream.write(AppOutputStream.java:78)
at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:82)
at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:140)
at org.apache.commons.httpclient.HttpConnection.flushRequestOutputStream(HttpConnection.java:828)
at org.apache.commons.httpclient.HttpMethodBase.writeRequest(HttpMethodBase.java:2116)
at org.apache.commons.httpclient.HttpMethodBase.execute(HttpMethodBase.java:1096)
at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:398)
at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171)
at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397)
at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:323)
at simpleapachehttp.Main.main(Main.java:41)
Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:302)
at sun.security.validator.PKIXValidator.engineValidate(PKIXValidator.java:205)
at sun.security.validator.Validator.validate(Validator.java:235)
at sun.security.ssl.X509TrustManagerImpl.validate(X509TrustManagerImpl.java:147)
at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:230)
at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:270)
at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:973)
... 17 more
Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(SunCertPathBuilder.java:191)
at java.security.cert.CertPathBuilder.build(CertPathBuilder.java:255)
at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:297)
... 23 more
</code></pre>
<p>==========================================================
What have I to do to create simplest SSL connection?
(Probably without KeyManager and Trust manager etc. while.)</p>
http://stackoverflow.com/questions/1826535/android-https-ssl-tls1Android https/ssl/tlsAO2009-12-01T14:29:10Z2009-12-01T17:08:33Z
<p>SSLContext context = SSLContext.getInstance("SSL");</p>
<p>The above line results in the exception: </p>
<p>java.security.NoSuchAlgorithmException: SSLContext SSL implementation not found</p>
<p>I'm using Android 2.0 SDK and when specifying TLS, it is accepted.</p>
<p>How come I get the exception? Doesn't Android support SSL?</p>
http://stackoverflow.com/questions/1716628/losing-connection-to-a-webservice-via-https-no-x509trustmanager-implementation-a0Losing connection to a webservice via https "No X509TrustManager implementation available"Snorri2009-11-11T17:06:08Z2009-12-01T17:00:05Z
<p>Hi</p>
<p>I have a really weird issue with Java and SSL certificates. Hope someone can help. </p>
<ul>
<li>A web is running in a cluster of 3 identical servers</li>
<li>All servers contain "Application A" which is a JSR-168 portlet.</li>
<li>"Application A" uses a web service that runs on httpS://webservices.domain.com/</li>
<li>"Application B" also uses a web service on httpS://webservices.domain.com/</li>
<li>All 3 server have the SSL cert from webservices.domain.com in the keystore. </li>
</ul>
<p>When I boot the server. Application A & B work fine on all servers. After a while (no specific timing tho) Application A goes nuts one one server, not always the same server, and stops working.</p>
<p><strong>Server #1</strong>
Application A loses connection to the webservice saying that "No X509TrustManager implementation available" (see dump below) but Application B, talking to the same server keeps on rocking. </p>
<p><strong>Server #2</strong>
Application A & B work perfectly. </p>
<p><strong>Server #3</strong>
Application A & B work perfectly. </p>
<p>After I restart Server #1 everything returns to normal until Application A (or B) looses connection again. </p>
<p>Anyone know a solution?</p>
<pre><code>13.10.2009 17:21:45 org.apache.cxf.transport.https.SSLUtils getCiphersuites
INFO: The cipher suites have not been configured, falling back to cipher suite filters.
13.10.2009 17:21:45 org.apache.cxf.transport.https.SSLUtils getCiphersuites
INFO: The cipher suite filters have not been configured, falling back to default filters.
13.10.2009 17:21:45 org.apache.cxf.transport.https.SSLUtils getCiphersFromList
INFO: The cipher suites have been set to SSL_RSA_WITH_RC4_128_MD5, SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA, SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA, SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA, TLS_KRB5_WITH_RC4_128_SHA, TLS_KRB5_WITH_RC4_128_MD5, TLS_KRB5_WITH_3DES_EDE_CBC_SHA, TLS_KRB5_WITH_3DES_EDE_CBC_MD5, TLS_KRB5_WITH_DES_CBC_SHA, TLS_KRB5_WITH_DES_CBC_MD5, TLS_KRB5_EXPORT_WITH_RC4_40_SHA, TLS_KRB5_EXPORT_WITH_RC4_40_MD5, TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA, TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5.
13.10.2009 17:21:46 org.apache.cxf.phase.PhaseInterceptorChain doIntercept
INFO: Interceptor has thrown exception, unwinding now
org.apache.cxf.interceptor.Fault: Could not send Message.
at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:64)
at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:220)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:466)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:299)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:251)
at org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:73)
at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:124)
at $Proxy406.getRobbaPlanFree(Unknown Source)
at is.somestuff.companyx.ut.radgjafar.radgjafi.services.GSMRobbiServiceManager.getRobbaPlanFree(GSMRobbiServiceManager.java:153)
at is.somestuff.companyx.ut.radgjafar.radgjafi.controller.radgjafiController.populatePreferences(radgjafiController.java:179)
at is.somestuff.companyx.ut.radgjafar.radgjafi.controller.radgjafiController.view(radgjafiController.java:76)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.doInvokeMethod(HandlerMethodInvoker.java:421)
at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.invokeHandlerMethod(HandlerMethodInvoker.java:136)
at org.springframework.web.portlet.mvc.annotation.AnnotationMethodHandlerAdapter.invokeHandlerMethod(AnnotationMethodHandlerAdapter.java:271)
at org.springframework.web.portlet.mvc.annotation.AnnotationMethodHandlerAdapter.doHandle(AnnotationMethodHandlerAdapter.java:259)
at org.springframework.web.portlet.mvc.annotation.AnnotationMethodHandlerAdapter.handleRender(AnnotationMethodHandlerAdapter.java:218)
at org.springframework.web.portlet.DispatcherPortlet.doRenderService(DispatcherPortlet.java:811)
at org.springframework.web.portlet.FrameworkPortlet.processRequest(FrameworkPortlet.java:483)
at org.springframework.web.portlet.FrameworkPortlet.doDispatch(FrameworkPortlet.java:453)
at javax.portlet.GenericPortlet.render(GenericPortlet.java:175)
at org.exoplatform.services.portletcontainer.impl.aop.PortletMethodCommand.render(PortletMethodCommand.java:15)
at org.exoplatform.services.portletcontainer.impl.aop.BaseCommandUnit.execute(BaseCommandUnit.java:24)
at org.exoplatform.container.component.ExecutionContext.executeNextUnit(ExecutionContext.java:26)
at org.exoplatform.services.portletcontainer.impl.aop.PortletContentCommand.render(PortletContentCommand.java:19)
at org.exoplatform.services.portletcontainer.impl.aop.BaseCommandUnit.execute(BaseCommandUnit.java:24)
at org.exoplatform.container.component.ExecutionContext.executeNextUnit(ExecutionContext.java:26)
at org.exoplatform.services.portletcontainer.impl.aop.PortletCacheCommand.render(PortletCacheCommand.java:35)
at org.exoplatform.services.portletcontainer.impl.aop.BaseCommandUnit.execute(BaseCommandUnit.java:24)
at org.exoplatform.container.component.ExecutionContext.executeNextUnit(ExecutionContext.java:26)
at org.exoplatform.services.portletcontainer.impl.aop.PortletSecurityCommand.render(PortletSecurityCommand.java:27)
at org.exoplatform.services.portletcontainer.impl.aop.BaseCommandUnit.execute(BaseCommandUnit.java:24)
at org.exoplatform.container.component.ExecutionContext.executeNextUnit(ExecutionContext.java:26)
at org.exoplatform.services.portletcontainer.impl.aop.BaseCommandUnit.render(BaseCommandUnit.java:31)
at org.exoplatform.services.portletcontainer.impl.aop.BaseCommandUnit.execute(BaseCommandUnit.java:24)
at org.exoplatform.container.component.ExecutionContext.execute(ExecutionContext.java:20)
at org.exoplatform.services.portletcontainer.impl.aop.PortletCommandChain.doRender(PortletCommandChain.java:29)
at org.exoplatform.services.portletcontainer.impl.PortletApplicationHandler.process(PortletApplicationHandler.java:234)
at org.exoplatform.services.portletcontainer.impl.servlet.ServletWrapper.service(ServletWrapper.java:91)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:679)
at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:584)
at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:497)
at org.exoplatform.services.portletcontainer.impl.PortletContainerDispatcher.dispatch(PortletContainerDispatcher.java:390)
at org.exoplatform.services.portletcontainer.impl.PortletContainerDispatcher.process(PortletContainerDispatcher.java:329)
at org.exoplatform.services.portletcontainer.impl.PortletContainerDispatcher.render(PortletContainerDispatcher.java:276)
at org.exoplatform.services.portletcontainer.impl.PortletContainerServiceImpl.render(PortletContainerServiceImpl.java:122)
at vyre.publishing.portal.Portal.renderPortlet(Portal.java:413)
at vyre.publishing.PortletInstance.render(PortletInstance.java:221)
at org.apache.jsp.WEB_002dINF.generated_005ffiles.pub_005fmodule.page.page17138_jsp._jspService(page17138_jsp.java:300)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:679)
at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:461)
at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:399)
at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
at vyre.delivery.MainFilter.doFilter(MainFilter.java:338)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
at vyre.content.search.permissions.ViewPermissionFilter.doFilter(ViewPermissionFilter.java:27)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
at org.springframework.orm.hibernate.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:170)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:200)
at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:283)
at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:773)
at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:703)
at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:895)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
at java.lang.Thread.run(Thread.java:595)
Caused by: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No X509TrustManager implementation available
at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:150)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1476)
at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Handshaker.java:174)
at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Handshaker.java:168)
at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:847)
at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:106)
at com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Handshaker.java:495)
at com.sun.net.ssl.internal.ssl.Handshaker.process_record(Handshaker.java:433)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:815)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1025)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1038)
at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:402)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:170)
at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:836)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(HttpsURLConnectionImpl.java:230)
at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleHeadersTrustCaching(HTTPConduit.java:1836)
at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.onFirstWrite(HTTPConduit.java:1794)
at org.apache.cxf.io.AbstractWrappedOutputStream.write(AbstractWrappedOutputStream.java:42)
at org.apache.cxf.io.AbstractThresholdOutputStream.write(AbstractThresholdOutputStream.java:69)
at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1854)
at org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:66)
at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:595)
at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:62)
... 89 more
Caused by: java.security.cert.CertificateException: No X509TrustManager implementation available
at com.sun.net.ssl.internal.ssl.JsseX509TrustManager.checkServerTrusted(SSLContextImpl.java:322)
at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:840)
... 107 more
ERROR [TP-Processor15]: Got unknown error - is.somestuff.companyx.ut.radgjafar.radgjafi.controller.radgjafiController - 2009-10-13 17:21:46,355
javax.xml.ws.soap.SOAPFaultException: Could not send Message.
at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:145)
at $Proxy406.getRobbaPlanFree(Unknown Source)
at is.somestuff.companyx.ut.radgjafar.radgjafi.services.GSMRobbiServiceManager.getRobbaPlanFree(GSMRobbiServiceManager.java:153)
at is.somestuff.companyx.ut.radgjafar.radgjafi.controller.radgjafiController.populatePreferences(radgjafiController.java:179)
at is.somestuff.companyx.ut.radgjafar.radgjafi.controller.radgjafiController.view(radgjafiController.java:76)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.doInvokeMethod(HandlerMethodInvoker.java:421)
at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.invokeHandlerMethod(HandlerMethodInvoker.java:136)
at org.springframework.web.portlet.mvc.annotation.AnnotationMethodHandlerAdapter.invokeHandlerMethod(AnnotationMethodHandlerAdapter.java:271)
at org.springframework.web.portlet.mvc.annotation.AnnotationMethodHandlerAdapter.doHandle(AnnotationMethodHandlerAdapter.java:259)
at org.springframework.web.portlet.mvc.annotation.AnnotationMethodHandlerAdapter.handleRender(AnnotationMethodHandlerAdapter.java:218)
at org.springframework.web.portlet.DispatcherPortlet.doRenderService(DispatcherPortlet.java:811)
at org.springframework.web.portlet.FrameworkPortlet.processRequest(FrameworkPortlet.java:483)
at org.springframework.web.portlet.FrameworkPortlet.doDispatch(FrameworkPortlet.java:453)
at javax.portlet.GenericPortlet.render(GenericPortlet.java:175)
at org.exoplatform.services.portletcontainer.impl.aop.PortletMethodCommand.render(PortletMethodCommand.java:15)
at org.exoplatform.services.portletcontainer.impl.aop.BaseCommandUnit.execute(BaseCommandUnit.java:24)
at org.exoplatform.container.component.ExecutionContext.executeNextUnit(ExecutionContext.java:26)
at org.exoplatform.services.portletcontainer.impl.aop.PortletContentCommand.render(PortletContentCommand.java:19)
at org.exoplatform.services.portletcontainer.impl.aop.BaseCommandUnit.execute(BaseCommandUnit.java:24)
at org.exoplatform.container.component.ExecutionContext.executeNextUnit(ExecutionContext.java:26)
at org.exoplatform.services.portletcontainer.impl.aop.PortletCacheCommand.render(PortletCacheCommand.java:35)
at org.exoplatform.services.portletcontainer.impl.aop.BaseCommandUnit.execute(BaseCommandUnit.java:24)
at org.exoplatform.container.component.ExecutionContext.executeNextUnit(ExecutionContext.java:26)
at org.exoplatform.services.portletcontainer.impl.aop.PortletSecurityCommand.render(PortletSecurityCommand.java:27)
at org.exoplatform.services.portletcontainer.impl.aop.BaseCommandUnit.execute(BaseCommandUnit.java:24)
at org.exoplatform.container.component.ExecutionContext.executeNextUnit(ExecutionContext.java:26)
at org.exoplatform.services.portletcontainer.impl.aop.BaseCommandUnit.render(BaseCommandUnit.java:31)
at org.exoplatform.services.portletcontainer.impl.aop.BaseCommandUnit.execute(BaseCommandUnit.java:24)
at org.exoplatform.container.component.ExecutionContext.execute(ExecutionContext.java:20)
at org.exoplatform.services.portletcontainer.impl.aop.PortletCommandChain.doRender(PortletCommandChain.java:29)
at org.exoplatform.services.portletcontainer.impl.PortletApplicationHandler.process(PortletApplicationHandler.java:234)
at org.exoplatform.services.portletcontainer.impl.servlet.ServletWrapper.service(ServletWrapper.java:91)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:679)
at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:584)
at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:497)
at org.exoplatform.services.portletcontainer.impl.PortletContainerDispatcher.dispatch(PortletContainerDispatcher.java:390)
at org.exoplatform.services.portletcontainer.impl.PortletContainerDispatcher.process(PortletContainerDispatcher.java:329)
at org.exoplatform.services.portletcontainer.impl.PortletContainerDispatcher.render(PortletContainerDispatcher.java:276)
at org.exoplatform.services.portletcontainer.impl.PortletContainerServiceImpl.render(PortletContainerServiceImpl.java:122)
at vyre.publishing.portal.Portal.renderPortlet(Portal.java:413)
at vyre.publishing.PortletInstance.render(PortletInstance.java:221)
at org.apache.jsp.WEB_002dINF.generated_005ffiles.pub_005fmodule.page.page17138_jsp._jspService(page17138_jsp.java:300)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:679)
at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:461)
at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:399)
at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
at vyre.delivery.MainFilter.doFilter(MainFilter.java:338)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
at vyre.content.search.permissions.ViewPermissionFilter.doFilter(ViewPermissionFilter.java:27)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
at org.springframework.orm.hibernate.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:170)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:200)
at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:283)
at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:773)
at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:703)
at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:895)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
at java.lang.Thread.run(Thread.java:595)
Caused by: org.apache.cxf.interceptor.Fault: Could not send Message.
at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:64)
at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:220)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:466)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:299)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:251)
at org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:73)
at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:124)
... 83 more
Caused by: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No X509TrustManager implementation available
at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:150)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1476)
at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Handshaker.java:174)
at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Handshaker.java:168)
at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:847)
at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:106)
at com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Handshaker.java:495)
at com.sun.net.ssl.internal.ssl.Handshaker.process_record(Handshaker.java:433)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:815)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1025)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1038)
at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:402)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:170)
at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:836)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(HttpsURLConnectionImpl.java:230)
at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleHeadersTrustCaching(HTTPConduit.java:1836)
at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.onFirstWrite(HTTPConduit.java:1794)
at org.apache.cxf.io.AbstractWrappedOutputStream.write(AbstractWrappedOutputStream.java:42)
at org.apache.cxf.io.AbstractThresholdOutputStream.write(AbstractThresholdOutputStream.java:69)
at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1854)
at org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:66)
at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:595)
at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:62)
... 89 more
Caused by: java.security.cert.CertificateException: No X509TrustManager implementation available
at com.sun.net.ssl.internal.ssl.JsseX509TrustManager.checkServerTrusted(SSLContextImpl.java:322)
at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:840)
... 107 more
</code></pre>
http://stackoverflow.com/questions/250742/who-sells-the-cheapest-ev-ssl-certificate10Who sells the cheapest EV SSL certificate?Zack Peterson2008-10-30T16:00:36Z2009-12-01T10:21:03Z
<p>I want a SSL certificate for my web site that will not only be accepted without warning by all popular browsers (at least accepted by <a href="http://www.mozilla.org/projects/security/certs/included/#DigiCert" rel="nofollow">Firefox</a> and <a href="http://support.microsoft.com/kb/931125" rel="nofollow">Internet Explorer</a>), but also give my visitors the green address bar.</p>
<p>Which certificate authority is selling the least expensive <a href="http://en.wikipedia.org/wiki/Extended_Validation_Certificate" rel="nofollow">extended validation</a> SSL certificates?</p>
<p><img src="http://img204.imageshack.us/img204/4838/ebayssliequ5.gif" alt="SSL EV in Microsoft Internet Explorer" /></p>
<p><img src="http://img517.imageshack.us/img517/4854/ebaysslffyc0.gif" alt="SSL EV in Mozilla Firefox" /></p>
http://stackoverflow.com/questions/599048/http-digest-authentication-versus-ssl2HTTP Digest Authentication versus SSLGili2009-03-01T01:18:55Z2009-11-30T21:52:33Z
<p>What is the difference between <code>HTTP Digest Authentication</code> and <code>SSL</code> from a performance, security and flexibility point of view?</p>
http://stackoverflow.com/questions/1821349/how-to-connect-to-a-queue-manager-with-ssl-enabled-server-connection-channel-when0How to connect to a queue manager with ssl enabled server connection channel when authentication is required.Xray2009-11-30T17:57:41Z2009-11-30T21:34:36Z
<p>I am trying to write a java application connecting to server connection channel with SSL enabled. </p>
<p>So far, I have been successfully connected to the channel by setting authentication to 'optional'. However, when I set it to be 'required', the connection fails.</p>
<p>Here is what I did: </p>
<ol>
<li>Create key db for queue manager and keystore for the java client user. </li>
<li>Create key/self-signed certificates for the queue manager and the client user, with names prefixed ibmwebspheremq. </li>
<li>Export, exchange and import certificates for the queue manager and the client. (I did answered 'yes' when being asked whether I trust the queue manager cert). </li>
<li>The location and password to the truststore and keystore are set to point to the same keystore at the client side, where the orgininal created client user key and the imported queue manager key are.</li>
</ol>
<p>With other settings being the same, if I switch back to 'optional' authentication, the connection works. </p>
<p>I think there is something I understand incorrectly about this ssl authenticaion but cannot figure out what. </p>
<p>Could someone kindly help me? </p>
http://stackoverflow.com/questions/1812683/ssl-reverse-proxy-for-legacy-application-binary-transfers-on-sockets0SSL reverse proxy for legacy application binary transfers on socketsbua2009-11-28T14:52:17Z2009-11-30T20:34:54Z
<p>Hello </p>
<p>I'm struggling to find a reverse proxy http->https like for binary sockets.</p>
<p>There is a <a href="http://www.apsis.ch/pound/" rel="nofollow">Pound</a> server which offers this kind of SSL tunneling but just for the http protocol.
Basically I work on 4'th layer TCP/IP with binary data. Between flex/AIR client and c++ server.
I can wrap sockets in C++ without problems, but this is a problem for flex side.</p>
<p>Any advice welcomed.</p>
http://stackoverflow.com/questions/1814803/api-security-sending-cc-info0API Security - Sending CC infoFaisal Abid2009-11-29T06:10:40Z2009-11-29T11:10:08Z
<p>Im trying to design a payments API, and it requires the sending of CC info over the wire. So for this I was thinking of using a public key to encrypt the CC info and decrypt it on the server. Keep in mind that the connection is https also. Any suggestions on the topic?</p>
http://stackoverflow.com/questions/1529657/godaddys-ssl-certificates-and-https-connection0GoDaddy's SSL certificates and https connection [closed]Steve2009-10-07T05:30:36Z2009-11-29T02:55:21Z
<p>I want to buy and setup a SSL certificate one of my domain names. However, since SSL Certs involve purchases, I would like to get others opinions before I actually go out and buy something.</p>
<p>I would like to know two things:
(a) Can I purchase a simple SSL certificate (I'm looking at GoDaddy's 1 year offer on a Standard SSL Certificate (<a href="http://www.godaddy.com/Compare/gdcompare%5Fssl.aspx?isc=sslqgo002b" rel="nofollow">http://www.godaddy.com/Compare/gdcompare%5Fssl.aspx?isc=sslqgo002b</a> - on sale for $12.99) which as I understand it, once installed, provides "Domain-Only Validation". I <em>think</em> that means that if someone types in "https://mydomain.com", it will still show up with a "locked" symbol in IE and a blue-bar in FF. Am I correct in this assessment? (looking for someone who's done exactly this before to give his/her opinion please)</p>
<p>(b) At the programming-end, I need to form an https connection to a third party server. In my PHP based website, I have been forming connections to a http server (both http and https are available), but I want to connect to the https one to offer better security to my users. I have no clue if a "SSL Certificate" by GoDaddy will allow that or not, and if so, how I should go about doing that. I would like someone's opinion if they've done something like this before (again, with the "GoDaddy SSL Certificate" please).</p>
<p>Thanks!
S</p>
http://stackoverflow.com/questions/1407815/setting-up-ssl-for-sql-server-2005-as-localsystem0Setting Up SSL for SQL Server 2005 as LocalSystemNeil2009-09-10T21:25:51Z2009-11-29T02:00:04Z
<p>Due to some restrictions, we have to run the service as LocalSystem. I have generated a certificate and placed them in the following stores:</p>
<p>Certificates (Local Computer)
Certificates - Service (SQL Server (MSSQLSERVER))
Certificates - Service (SQL Server (MSSQLSERVER))
Certificates - Current User</p>
<p>I am a domain admin. Everytime I go to SQL Server Configuration Manager -> SQL Server 2005 Network Configuration -> Protocols for MSSQLServer, right-click-> properties -> certificates, the drop down has no certs listed! </p>
<p>According to <a href="http://blogs.msdn.com/jorgepc/archive/2008/02/19/enabling-certificates-for-ssl-connection-on-sql-server-2005-clustered-installation.aspx" rel="nofollow">this</a>, I'm doing everything right. I tried running as a local admin as well, no dice.</p>
<blockquote>
<p>unless the service is running as
LocalSystem, NetworkService, or
LocalService, in which case you may
use an administrative account.</p>
</blockquote>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1481317/extending-ssl-services-to-subdomain0Extending SSL services to subdomainkrishna2009-09-26T14:26:38Z2009-11-28T17:00:04Z
<p>Dear Experts,<br>
I am encountered with a special requirement. I really dont know weather this is possible or not. But any suggestions or alternative solutions are greatly appreciated.<br>
I have a main domain say <b><i>www.example.com</b></i> written in asp.net with a collection of static pages with no much functionality in it and have a regular SSL on it. Everything works great till this pont.<br>
Now I need to have a new subdomain <b><i>myTools.example.com</i></b> which have credentials to get along.<br>
So, is there any way to show the webforms in the subdomain use the main domain SSL.<br>
or<br>
Is it possible to show the webforms of the subdomain in the main domain with fully using the SSL services.<br>
Can some body help me with some ideas that matches to this problem.
<br><br>
Thank you in advance.<br></p>
http://stackoverflow.com/questions/1778042/pop3-help-for-a-c-implementation1Pop3 help for a C++ implementation!shawnjan2009-11-22T06:53:29Z2009-11-28T15:40:18Z
<p>Alright, so this is absolutely killing me... If anyone could help me, I would be the happiest man on the face of the earth...</p>
<p>So, I need to create a C++ email client for a project at school, and I've been using the POCO open source C++ library, and I've been fine for working with email servers that do not need SSL authentication, but anything that DOES require SSL, I've had no luck...</p>
<p>Here is the documentation for POCO: <a href="http://pocoproject.org/docs/" rel="nofollow">http://pocoproject.org/docs/</a></p>
<p>When you go there, you have to click on POCO:Net, and then in the bottom left frame, there is a bunch of documentation for different NET objects... I've particularly been using POP3ClientSession.</p>
<p>I've installed OpenSSL and compiled the library with SSL support, but nothing seems to work... I've also followed this tutorial:
<a href="http://pocoproject.org/wiki/index.php/NetSSL" rel="nofollow">http://pocoproject.org/wiki/index.php/NetSSL</a></p>
<p>If ANYONE has experience with POCO, or is just 1337 at SSL/C++, if you could help me get this working I would very much appreciate it! I've been working on this for the past 12 hours straight just to get SSL working, and have had 0 luck.</p>
<p>Well one of the things I'm not even quite sure about is if I compiled it with SSL correctly... I installed OpenSSH on my machine, and recompiled everything (took an hour!!!). I seemed to have everything compiled, but when I went to use it with the following include statement: </p>
<pre><code>#include "Poco/Net/SecureStreamSocket.h"
</code></pre>
<p>Which is what the documentation told me to do, I got an error... They compiled in a folder called NetSSL_OpenSSL, so i took the headers and sources and copied them into the appropriate place in the Net folder, hoping for it to work. Afterwords I got another error:</p>
<pre><code>fatal error C1083: Cannot open include file: 'Poco/Crypto/X509Certificate.h': No such file or directory I dont see Crypto anywhere...
</code></pre>
<p>But I do have the X509Certificate.h file... I even went as far as changing Crypto in the source to Net (because its the net folder that is now holding this file), but as I expect, that blew up in my face...</p>
<p>So, I guess the main question would be the following:</p>
<p>How can I send emails using POP3 with SSL sockets instead of the standard sockets used by the POP3ClientSession?</p>
http://stackoverflow.com/questions/991540/apache-virtualhost-with-mod-proxy-and-ssl0Apache VirtualHost with mod-proxy and SSLJean-Marc Dressler2009-06-13T21:25:07Z2009-11-27T20:40:28Z
<p>I am trying to setup a server with multiple web applications which will all be served through apache VirtualHost (apache running on the same server). My main constrain is that each web application must use SSL encryption. After googling for a while and looking other questions on stackoverflow, I wrote the following configuration for the VirtualHost:</p>
<pre><code><VirtualHost 1.2.3.4:443>
ServerName host.domain.org
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
SSLProxyEngine On
ProxyRequests Off
ProxyPreserveHost On
ProxyPass / https://localhost:8443/
ProxyPassReverse / https://localhost:8443/
</VirtualHost>
</code></pre>
<p>Even though https://host.domain.org:8443 is accessible, https://host.domain.org is not, which defeats the purpose of my virtual host configuration. Firefox complains that even though it successfully connected to the server, the connection was interrupted. Chrome return an error 107: net::ERR_SSL_PROTOCOL_ERROR.</p>
<p>Finally I should also mention that the virtual host works perfectly fine when I do not use SSL.</p>
<p>How can I make this work ?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1039556/tibco-soap-request-over-https-ssl-certificate-verification-problem0Tibco SOAP request over https - SSL certificate verification problemNathan2009-06-24T16:44:48Z2009-11-27T13:53:22Z
<p>Hello,</p>
<p>I'm using Tibco BusinessWorks to consume a soap web service over an HTTPS connection.</p>
<p>The instructions boil down to:</p>
<ol>
<li>Export certificates using a web browser.</li>
<li>Use the Tools->Trusted Certificates->Import PEM format to folder within the project.</li>
<li>In the SSL Config of the Transport Details tab, point to the trusted certs folder you imported them to.</li>
</ol>
<p>--OR--</p>
<p>Use the BW_GLOBAL_TRUSTED_CA_STORE global variable to point to an external folder (file:///c:/tibco/certs) and put the certs there in pem format.</p>
<p>I've tried both ways, and still end up with the error below:</p>
<p><code>iaik.security.ssl.SSLException: Server certificate rejected by ChainVerifier</code></p>
<p>I've tried exporting them via firefox and IE. In different formats including all keys and individually, yet the error still persists.</p>
<p>Is there something more specific that I need to do or is there a way to turn up the debugging for the cert verifier? I've tried turning up the debug level for designer, but I'm not sure I'm doing that correctly.</p>
<p>Any help would be wonderful.</p>
<p>Thanks much!</p>
http://stackoverflow.com/questions/1807398/how-to-send-email-via-ssl-and-indy-in-delphi-71How to send email via SSL and Indy in Delphi 7Tofig Hasanov2009-11-27T08:22:34Z2009-11-27T08:59:45Z
<p>I want to send email to Yahoo mail using Indy. But Yahoo uses 465 port with SSL connection. I don't know how to implement that in my program. I have read about TIdSSLIOHandlerSocketOpenSSL component on internet, but couldn't find such component in Delphi 7. Can anyone help?</p>