Re: embedded, not local

2021-02-15 Thread Christopher Schultz
Rob, On 2/15/21 13:41, Rob Sargent wrote: openssl s_client -showcerts -connect k1:16004 CONNECTED(0003) 139674280387904:error:1408F10B:SSL routines:ssl3_get_record:wrong version number:../ssl/record/ssl3_record.c:331: --- no peer certificate available --- No client certificate CA names

Re: embedded, not local

2021-02-15 Thread Rob Sargent
Thanks again, Chris, On 2/15/21 1:32 PM, Christopher Schultz wrote: Try this: $ openssl s_client -showcerts -connect k1:16004 -tls1_2 openssl s_client -showcerts -connect k1:16004 -tls1_2 CONNECTED(0003) 140444510528832:error:1408F10B:SSL routines:ssl3_get_record:wrong version

Re: embedded, not local

2021-02-15 Thread Rob Sargent
I added a CORS filter to my /sgs/WEB-INF/web.xml.  [1] In hopes of getting some logs out of tomcat I have added a Valve to /sgs/META-INF/context.xml [2] Neither of these has had in affect.  I see no logs and I still hit the maybe-cors problem. I have two tomcat connectivity checks: one is a

Re: embedded, not local

2021-02-15 Thread Luis Rodríguez Fernández
mmm, I see... - May I ask you to run ` openssl s_client -showcerts -connect localhost:16004` to check that your tomcat connector has started? You should get an output like `Verify return code: 18 (self signed certificate)` - Having a look at what your browser is saying I have the feeling that

Re: embedded, not local

2021-02-15 Thread Rob Sargent
openssl s_client -showcerts -connect k1:16004 CONNECTED(0003) 139674280387904:error:1408F10B:SSL routines:ssl3_get_record:wrong version number:../ssl/record/ssl3_record.c:331: --- no peer certificate available --- No client certificate CA names sent --- SSL handshake has read 5 bytes and

java.lang.ClassNotFoundException: javax.servlet.Filter

2021-02-15 Thread Jason Wee
Using Apache Tomcat 10.0.2, build owb and cxf and placed into lib directory tomcat-cxf-3.4.1.jar tomcat-owb-2.0.20.jar reading reference, https://tomcat.apache.org/tomcat-10.0-doc/cdi.html and when i start tomcat, I get the following exception ==> localhost.2021-02-15.log <== 15-Feb-2021

Re: embedded, not local

2021-02-15 Thread Luis Rodríguez Fernández
Hello Rob, Do you have a stacktrace or error message that you can share? Cheers, Luis El lun, 15 feb 2021 a las 1:26, Rob Sargent () escribió: > Yep, me again. > > Inching along here, unable as yet to re-create ssl traffic when not on > localhost. Moving from my basement (localhost) where

Re: java.lang.ClassNotFoundException: javax.servlet.Filter

2021-02-15 Thread Mark Thomas
On 15/02/2021 08:26, Jason Wee wrote: > Using Apache Tomcat 10.0.2, build owb and cxf and placed into lib directory > > tomcat-cxf-3.4.1.jar > tomcat-owb-2.0.20.jar > > reading reference, https://tomcat.apache.org/tomcat-10.0-doc/cdi.html > > and when i start tomcat, I get the following

Re: java.lang.ClassNotFoundException: javax.servlet.Filter

2021-02-15 Thread Jason Wee
okay, currently there is no custom application code, I just build two of the libs and place into tomcat lib using the tomcat documentation. Do you mean I have to change the reference? Example

Re: embedded, not local

2021-02-15 Thread Rob Sargent
Luis, Not a peep.  Not in IntelliJ, nor from startup script (with zero output redirects). It works (on localhost:16004 and on k1:16004 (fully qualified), but only http, not https.  The browser shows "This site can’t provide a secure connection" and not much from chrome inspect: request:

Re: java.lang.ClassNotFoundException: javax.servlet.Filter

2021-02-15 Thread Jason Wee
No problem, just wanna understand better if this will tackle in the near future. On another note, I did custom patch on one of the lib, https://github.com/jasonwee/jakarta-taglibs-mailer for my own usage. I guess I will do the same for this lib if I found time. If you want a custom or specific

Re: java.lang.ClassNotFoundException: javax.servlet.Filter

2021-02-15 Thread Woonsan Ko
On Mon, Feb 15, 2021 at 7:19 AM Jason Wee wrote: > > okay, currently there is no custom application code, I just build two > of the libs and place into tomcat lib using the tomcat documentation. > > Do you mean I have to change the reference? Example >