RE: SSL error [EXTERNAL]

2020-06-26 Thread Beard, Shawn M.
problem maybe? Shawn Beard Sr. Systems Engineer BTS +1-515-564-2528 -Original Message- From: john.e.gr...@wellsfargo.com.INVALID Sent: Friday, June 26, 2020 1:32 PM To: users@tomcat.apache.org Subject: RE: SSL error [EXTERNAL] ** CAUTION: External message Shawn, -Original Message

RE: SSL error [EXTERNAL]

2020-06-26 Thread John.E.Gregg
Shawn, -Original Message- From: Beard, Shawn M. Sent: Friday, June 26, 2020 11:57 AM To: Tomcat Users List Subject: RE: SSL error [EXTERNAL] The code is calling a new webservice. It has godaddy as its ca signer. It was getting the error before I added those java options. Those java

RE: SSL error [EXTERNAL]

2020-06-26 Thread Beard, Shawn M.
Shawn Beard Sr. Systems Engineer BTS +1-515-564-2528 -Original Message- From: calder Sent: Friday, June 26, 2020 11:45 AM To: Tomcat Users List Subject: Re: SSL error [EXTERNAL] ** CAUTION: External message In Fri, Jun 26, 2020, 10:37 Beard, Shawn M. wrote: > We are running tomca

Re: SSL error

2020-06-26 Thread calder
In Fri, Jun 26, 2020, 10:37 Beard, Shawn M. wrote: > We are running tomcat-7.0.52(old I know) and java 1.7.0_80. > yea, BOTH are very old. When the app makes calls to an external webservice. It keeps throwing this > error: > > javax.net.ssl.SSLException : javax.net.ssl.SSLException: > java.lang

SSL error

2020-06-26 Thread Beard, Shawn M.
We are running tomcat-7.0.52(old I know) and java 1.7.0_80. When the app makes calls to an external webservice. It keeps throwing this error: javax.net.ssl.SSLException : javax.net.ssl.SSLException: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException:

Re: APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-21 Thread Eric Kemp
Problem resolved! Thanks so much for all the helpful hints. I had been going to the end of the catalina.out file and seeing this error message in the last ~60 lines of text, and thought it represented the latest restart errors. What I failed to notice, was that there WERE previous errors above t

Re: APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-21 Thread Jeremy
I understand you want to use APR, but just for troubleshooting purposes, try using the same server.xml but changing the SSL connector from protocol="org.apache.coyote.http11.Http11AprProtocol" to protocol="org.apache.coyote.http11.Http11NioProtocol" If that works, then your problem is with APR,

Re: APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-21 Thread Konstantin Kolinko
2011/11/21 Eric Kemp : > Below is my entire server.xml (minus commented lines) > Good to know. Can you post the logs? (catalina..log file). Clear them first then try starting Tomcat. Best regards, Konstantin Kolinko - To unsubs

Re: APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-21 Thread Pid *
sl/myDomain.com.key" > SSLCACertificateFile="/etc/apache2/ssl/myDomain.com.ca.crt" /> > > > > className="org.apache.catalina.realm.UserDatabaseRealm" > resourceName="UserDatabase"/> > > name="localhost" > a

Re: APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-20 Thread Eric Kemp
Below is my entire server.xml (minus commented lines) Thanks On Sun, Nov 20, 2011 at 4:18 PM, Caldarale, Charles R wrote: >> From: Eric Kemp [mailto:cruisingat90...@gmail.com] >> Subject: Re: APR SSL error:

RE: APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-20 Thread Caldarale, Charles R
> From: Eric Kemp [mailto:cruisingat90...@gmail.com] > Subject: Re: APR SSL error: "Socket bind failed: [98] Address already in use" > Any other ideas would still be appreciated. As others have noted, the conflict is likely on some port other than 8443. Post your entire ser

Re: APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-20 Thread Eric Kemp
Changing from jdk1.7.0_01 to 1.6.0_20 still results in the same error. I use the following commands to stop and start Tomcat: sudo /etc/init.d/tomcat6 stop sudo /etc/init.d/tomcat6 start I have verified that the Tomcat process DOES shut down when initiating a "stop" command via "ps -ef | grep jav

Re: APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-20 Thread Pid *
On 20 Nov 2011, at 12:49, Igor Cicimov wrote: > Isnt 8005 shutdown port for tomcat? I can see sshd bound to that port > already. I think that's the line above... There is a java process holding 8005 > On Nov 20, 2011 6:33 PM, "Konstantin Kolinko" > wrote: > >> 2011/11/19 Eric Kemp : >>> Summa

Re: APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-20 Thread Igor Cicimov
Isnt 8005 shutdown port for tomcat? I can see sshd bound to that port already. On Nov 20, 2011 6:33 PM, "Konstantin Kolinko" wrote: > 2011/11/19 Eric Kemp : > > Summary: I'm looking for ideas on how to resolve this "Address already > > in use" error when configuring SSL in Tomcat APR. > > > > Env

Re: APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-20 Thread Pid *
On 19 Nov 2011, at 18:44, Eric Kemp wrote: > Summary: I'm looking for ideas on how to resolve this "Address already > in use" error when configuring SSL in Tomcat APR. > > Environment: > Running Apache Tomcat/6.0.24 > on OS is Ubuntu 10.04.2 LTS > with JVM 1.7.0_01-b08 > > // > // Prior to config

Re: APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-19 Thread Konstantin Kolinko
2011/11/19 Eric Kemp : > Summary: I'm looking for ideas on how to resolve this "Address already > in use" error when configuring SSL in Tomcat APR. > > Environment: >  Running Apache Tomcat/6.0.24 That one is old. Maybe you can upgrade to 6.0.33? >  on OS is Ubuntu 10.04.2 LTS >  with JVM 1.7.0_0

Re: APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-19 Thread Eric Kemp
I've seen several places where people say [98] is the error message number - not the port number. Also, I'm not doing anything with port 98. Thanks On Sat, Nov 19, 2011 at 8:03 PM, Talal Rabaa wrote: > Looks like you have another service (not necessarily Tomcat) running on port > 98. > > On 2

Re: APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-19 Thread Talal Rabaa
Looks like you have another service (not necessarily Tomcat) running on port 98. On 2011-11-19, at 1:44 PM, Eric Kemp wrote: > Summary: I'm looking for ideas on how to resolve this "Address already > in use" error when configuring SSL in Tomcat APR. > > Environment: > Running Apache Tomcat/6.0.2

APR SSL error: "Socket bind failed: [98] Address already in use"

2011-11-19 Thread Eric Kemp
Summary: I'm looking for ideas on how to resolve this "Address already in use" error when configuring SSL in Tomcat APR. Environment: Running Apache Tomcat/6.0.24 on OS is Ubuntu 10.04.2 LTS with JVM 1.7.0_01-b08 // // Prior to configuring SSL, and after starting Tomcat I run "netstat -tulpn"

Re: [us...@httpd] SSL error reported from windows socket

2010-01-25 Thread Tony Anecito
Jr. > Subject: Re: [us...@httpd] SSL error reported from windows socket > To: us...@httpd.apache.org > Cc: "Tony Anecito" , "Tomcat Users Group" > > Date: Monday, January 25, 2010, 11:14 AM > On 1/25/2010 10:05 AM, Tony Anecito > wrote: > > Hi All, &g

SSL error reported from windows socket

2010-01-25 Thread Tony Anecito
Hi All, I am getting intermittant windows ssl error regarding connections. Something like socket error code 12157 ERROR_INTERNET_SECURITY_CHANNEL_ERROR. It is intermittant and I am load testing against Apache web server using loadrunner 9.0. We are using SSLV3 for Apache 2.2. There is some

Re: SSL error & certificate question

2009-08-18 Thread Mark Thomas
BJ Selman wrote: > First of all, is there a specific extension required for SSL certificates on > an Apache/Tomcat server? i.e. Does it have to be a "crt" or a "cert" or ? > Seems like I read that it needs to be "PEM-encoded" - that's about all I > could find. > > Also, my error log is showin

SSL error & certificate question

2009-08-18 Thread BJ Selman
First of all, is there a specific extension required for SSL certificates on an Apache/Tomcat server? i.e. Does it have to be a "crt" or a "cert" or ? Seems like I read that it needs to be "PEM-encoded" - that's about all I could find. Also, my error log is showing the below... Where should I

Re: SSL error when invoking web service

2008-01-23 Thread Bill Barker
"Rizwan Merchant" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > Thanks for the response. > The client can be any one who wants to post an XML message to this URL. > So you could create an xml message and post the request using https. > Not sure why the client would need to 'add'

Re: SSL error when invoking web service

2008-01-23 Thread Rizwan Merchant
Thanks for the response. The client can be any one who wants to post an XML message to this URL. So you could create an xml message and post the request using https. Not sure why the client would need to 'add' this certificate. We have written code to connect to many such web services and we ne

Re: SSL error when invoking web service

2008-01-22 Thread Bill Barker
"Rizwan Merchant" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > Hi, > > We have a web based application running on Tomcat 6. The server.xml file > is configured so that the application can handle incoming https requests > on port 443 (default). When a user hits the URL http://ww

SSL error when invoking web service

2008-01-22 Thread Rizwan Merchant
Hi, We have a web based application running on Tomcat 6. The server.xml file is configured so that the application can handle incoming https requests on port 443 (default). When a user hits the URL http://www.mydomain.com, it automatically redirects to https://www.mydomain.com (due to securit

RE: SSL Error : Please HELP

2005-10-17 Thread Longson, Robert
You want to put this in the Java tab under Java Options. Best regards Robert. -Original Message- From: James Rome [mailto:[EMAIL PROTECTED] Sent: 17 October 2005 16:00 To: tomcat-user@jakarta.apache.org Subject: SSL Error : Please HELP I tried putting start -Djavax.net.debug

SSL Error : Please HELP

2005-10-17 Thread James Rome
I tried putting start -Djavax.net.debug=ssl:handshake in the Windows 5.5 GUI startup tab under arguments and Tomcat will not start How does one get this to work? Jim - You can pass the option '-Djavax.net.debug=ssl:handshake' to the Tomcat startup, (either set JAVA_OPTS to it if you

Re: SSL Error : Please HELP

2005-10-15 Thread Bill Barker
a [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 12, 2005 8:43 PM > To: Tomcat Users List; Lyndon Tiu > Cc: tomcat-user@jakarta.apache.org > Subject: Re: SSL Error : Please HELP > > Yes Sir I meant Jakarta-Tomcat 5.5.9. Will really appreciate if you > could > help

Re: SSL Error : Please HELP

2005-10-12 Thread Lalit Batra
ED] > Sent: Wednesday, October 12, 2005 8:43 PM > To: Tomcat Users List; Lyndon Tiu > Cc: tomcat-user@jakarta.apache.org > Subject: Re: SSL Error : Please HELP > > Yes Sir I meant Jakarta-Tomcat 5.5.9. Will really appreciate if you > could > help now. > > > Hi Lalit, >

RE: SSL Error : Please HELP

2005-10-12 Thread Iannis Hanen
-Original Message- From: Lalit Batra [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 12, 2005 8:43 PM To: Tomcat Users List; Lyndon Tiu Cc: tomcat-user@jakarta.apache.org Subject: Re: SSL Error : Please HELP Yes Sir I meant Jakarta-Tomcat 5.5.9. Will really appreciate if you could

Re: SSL Error : Please HELP

2005-10-12 Thread Lalit Batra
Yes Sir I meant Jakarta-Tomcat 5.5.9. Will really appreciate if you could help now. On 10/12/05, Lyndon Tiu <[EMAIL PROTECTED]> wrote: > > 1) Try: > > https://localhost:8443/test.jsp > > 2) I have never heard of "server 5.5.9". I believe you meant > Jakarta-Tomcat 5.5.9. > > On Wed, 12 Oct 2005 2

Re: SSL Error : Please HELP

2005-10-12 Thread Lyndon Tiu
1) Try: https://localhost:8443/test.jsp 2) I have never heard of "server 5.5.9". I believe you meant Jakarta-Tomcat 5.5.9. On Wed, 12 Oct 2005 23:16:01 -0400 [EMAIL PROTECTED] wrote: > Hi! > We have the issue on one of our production boxes, which is running server > 5.5.9/ Windows 2003 enterpri

SSL Error : Please HELP

2005-10-12 Thread Lalit Batra
Hi! We have the issue on one of our production boxes, which is running server 5.5.9/ Windows 2003 enterprise release and our second machine is running server 5.5.9/ Windows 2003 standard release. 1) Everything is Consistent for Tomcat on both boxes, as I had copied the folders (Apache Software Foun