Re: How to access Sessions outside of class

2014-10-29 Thread Jason Ricles
ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Jason, > > On 10/28/14 3:06 PM, Jason Ricles wrote: > > Chris, foo has to run as a daemon outside of tomcat. It will be > > interacting with low level drivers through jni. >

Re: How to access Sessions outside of class

2014-10-29 Thread Jason Ricles
of that. On Wed, Oct 29, 2014 at 1:47 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Jason, > > On 10/29/14 8:28 AM, Jason Ricles wrote: > > foo is not a webapp, it is a separate program running o

Re: Tomcat Start script not starting from init.d or rc.local

2014-10-29 Thread Jason Ricles
You can use upstart if you have that, with a .conf file. However unless you source the profile.d or wherever your environment variables are held do not use them in an init task! On Wed, Oct 29, 2014 at 1:55 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MES

Websocket @OnMessage is never firing for binary messages only text

2014-11-18 Thread Jason Ricles
I am writing a websocket communication with the client and server endpoints both in java code (using tomcat 7.0.53 as the web server) When I send a text message using the session.getbasicremote.sendText(String) method the @Onmessage function is fired and everything. However I want to send binary da

Re: Websocket @OnMessage is never firing for binary messages only text

2014-11-18 Thread Jason Ricles
2014-11-18 22:14 GMT+03:00 Jason Ricles : >> I am writing a websocket communication with the client and server >> endpoints both in java code (using tomcat 7.0.53 as the web server) >> When I send a text message using the >> session.getbasicremote.sendText(String) method th

Re: Websocket @OnMessage is never firing for binary messages only text

2014-11-18 Thread Jason Ricles
Why is the bytebuffer now filled with 0 and no data after doing a flip? On Tue, Nov 18, 2014 at 3:12 PM, Jason Ricles wrote: > Yup that flip did it and it works. Yes haha that was one of the many > reasons I didn't major in something with more writing. Luckily its > just a test me

Tomcat 6.0.43

2014-11-19 Thread Jason Schwanz
Is this going to be an official release linked from the download page? I found it on the github mirror, but would prefer to work with something from the official homepage. - Jason Schwanz

Back to back writes to websocket server weird behavior

2014-12-01 Thread Jason Ricles
I have a binary queue that I am writing to a websocket server written in java from a client end point with the following code, while((bbuf = messageQueue.take()).get(0) != 0) { bbuf.position(bbuf.limit()); bbuf.flip(); for(Session session : sessi

CloseReason 1002

2014-12-01 Thread Jason Ricles
What might be causing this error on concurrent writes in a websocket, CloseReason: code [1002], reason [The client frame set the reserved bits to [2] which was not supported by this endpoint]? - To unsubscribe, e-mail: users-unsub

Re: CloseReason 1002

2014-12-02 Thread Jason Ricles
Mark, Is there any way to do two back to back writes to a websocket with a sort of blocking technique, and without using a sleep? On Mon, Dec 1, 2014 at 3:13 PM, Mark Thomas wrote: > On 01/12/2014 18:30, Jason Ricles wrote: >> What might be causing this error on concurrent writes in a

Re: CloseReason 1002

2014-12-02 Thread Jason Ricles
No luck try to find a blocking call or having the websocket server reader go off into another thread. so basically no way around this problem it seems? On Tue, Dec 2, 2014 at 9:19 AM, Mark Thomas wrote: > On 02/12/2014 13:05, Jason Ricles wrote: >> Mark, >> >> Is there any

Re: CloseReason 1002

2014-12-02 Thread Jason Ricles
problem 100% of the time. On Tue, Dec 2, 2014 at 4:08 PM, Jason Ricles wrote: > No luck try to find a blocking call or having the websocket server > reader go off into another thread. so basically no way around this > problem it seems? > > On Tue, Dec 2, 2014 at 9:19 AM, Mark Thomas wro

Re: CloseReason 1002

2014-12-03 Thread Jason Ricles
Here is the wireshark of the binary data that is being transferred over. 00 00 00 00 00 00 00 00 00 00 00 00 86 dd 60 00 ..`. 0010 00 00 5c 15 06 40 00 00 00 00 00 00 00 00 00 00 ..\..@.. 0020 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00

Error with finding of reserve bits in websocket frame tomcat 7.0.53?

2014-12-04 Thread Jason Ricles
I have tomcat 7.0.53 and have been having a problem with the following error when sending a binary message "CloseReason: code [1002], reason [The client frame set the reserved bits to [x] which was not supported by this endpoint]" where x is between 1-7 when printed out. So I remote debugged and st

Re: Error with finding of reserve bits in websocket frame tomcat 7.0.53?

2014-12-04 Thread Jason Ricles
with tomcat? On Thu, Dec 4, 2014 at 12:16 PM, Mark Thomas wrote: > On 04/12/2014 15:26, Jason Ricles wrote: >> I have tomcat 7.0.53 and have been having a problem with the following >> error when sending a binary message "CloseReason: code [1002], reason >> [The client f

Re: Error with finding of reserve bits in websocket frame tomcat 7.0.53?

2014-12-04 Thread Jason Ricles
Well the trace is fine so I will upgrade and try and see what happens. If it is not fixed I assume I should file a bug report. On Thu, Dec 4, 2014 at 1:19 PM, Mark Thomas wrote: > On 04/12/2014 18:04, Jason Ricles wrote: >> Due to some regulations out of my control right now we can

Re: Error with finding of reserve bits in websocket frame tomcat 7.0.53?

2014-12-04 Thread Jason Ricles
Yes it was a bug so we will try to get a waiver to use 7.0.57 for our environment instead of 7.0.53 On Thu, Dec 4, 2014 at 1:20 PM, Jason Ricles wrote: > Well the trace is fine so I will upgrade and try and see what happens. > If it is not fixed I assume I should file a bug report. >

Re: Error with finding of reserve bits in websocket frame tomcat 7.0.53?

2014-12-05 Thread Jason Ricles
to update tomcat since it was not in the bug database at all. On Thu, Dec 4, 2014 at 4:50 PM, David kerber wrote: > On 12/4/2014 4:32 PM, Jason Ricles wrote: >> >> Yes it was a bug so we will try to get a waiver to use 7.0.57 for our >> environment instead of 7.0.53 > > &

unit testing on tomcat with java

2014-12-11 Thread Jason Ricles
I am currently using tomcat 7.0.57 to host a website for the purpose of having a websocket serverdeployed with the page for the purpose of communicating between an external java program and the webpage. I would like to write some unit test to test that the integration between the external java prog

Re: unit testing on tomcat with java

2014-12-11 Thread Jason Ricles
, Christopher Schultz wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Jason, > > On 12/11/14 9:07 AM, Jason Ricles wrote: >> I am currently using tomcat 7.0.57 to host a website for the >> purpose of having a websocket serverdeployed with the page for t

Re: unit testing on tomcat with java

2014-12-11 Thread Jason Ricles
No no, it goes Website (GUI) > ws server --> external java program On Thu, Dec 11, 2014 at 11:25 AM, Christopher Schultz wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Jason, > > On 12/11/14 10:03 AM, Jason Ricles wrote: >> To the question, t

Re: unit testing on tomcat with java

2014-12-11 Thread Jason Ricles
To test GUI to external progam so when I say hey send this request to the program the program sets the request flags to true. On Thu, Dec 11, 2014 at 12:39 PM, Christopher Schultz wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Jason, > > On 12/11/14 12:16 PM,

Jersey 2.13 Rest running on Apache Tomcat 7.0.57

2014-12-12 Thread jason . stuart
) I have also expand the Jersey jars into the classes directory and I still get the ClassNotFoundException. I have deployed the same test on Windows 7, Apache 6.2 and Java 7 and it runs Ok. Any pointers will be welcome. Thanks Jason

Re: SSL issue in tomcat

2015-01-20 Thread Jason Y
eral hours, I failed to access my https link again. Anyone has any ideas about this? please share your suggestions...My tomcat version is 7.0.55 Thank you all very much. On Tue, Jan 20, 2015 at 3:56 PM, Jason Y wrote: > Hi folks, > > Recently my application cannot be a

Re: SSL issue in tomcat

2015-01-20 Thread Jason Y
an block the ports 8443, 8080 etc... > Is there any exception in catalina.out? > > -Utkarsh > > On Tue, Jan 20, 2015 at 2:47 PM, Jason Y wrote: > > > Hi folks, > > > > Recently my application cannot be accessible in browser with https > version. > > I

Re: SSL issue in tomcat

2015-01-20 Thread Jason Y
Thank you all. Now it is working fine. By the way, do I need "ciphers" properties here? On Tue, Jan 20, 2015 at 11:22 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Jason, > >

Re: SSL issue in tomcat

2015-01-20 Thread Jason Y
ssary to have ciphers properties but if you want to restrict > the ciphers then you can use this property. > > On Wed, Jan 21, 2015 at 6:53 AM, Jason Y wrote: > > > Thank you all. Now it is working fine. > > > > >maxThreads="150"

Re: SSL issue in tomcat

2015-01-21 Thread Jason Y
> > try to connect the server from localhost using " openssl s_client -connect > hostname:8443 -debug " may be you will found something use full. > > On Wed, Jan 21, 2015 at 11:43 AM, Jason Y wrote: > > > Got another issue...Tomcat is working fine after restart but

Re: SSL issue in tomcat

2015-01-21 Thread Jason Y
e: > > -Original Message- > > From: Jason Y [mailto:day...@gmail.com] > > Sent: Wednesday, January 21, 2015 12:44 AM > > To: Tomcat Users List > > Subject: Re: SSL issue in tomcat > > > > Got another issue...Tomcat is working fine after restart but i

Re: SSL issue in tomcat

2015-01-21 Thread Jason Y
What I changed in server.xml is adding sslEnabledProtocols="TLSv1.2,TLSv1.1,TLSv1". BUT I noticed that I am using JSSE instead of APR, so I remoeved the listener is this causing my error? On Wed, Jan 21, 2015 at 11:39 PM, Jason Y wrote: > You mean here maxThreads="1

Re: SSL issue in tomcat

2015-01-23 Thread Jason Y
h the developer's code(it is .NET code on which I have 0 knowledge), I will keep on watching this. On Thu, Jan 22, 2015 at 11:01 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > ason, > > On 1/22/15

Re: How-to disable SSL V3 on Tomcat 6.0.18.0

2015-01-30 Thread Jason Y
Hi Jammy, Please refer to https://access.redhat.com/solutions/1232233 When using Tomcat with the JSSE connectors, the SSL protocol to be used can be configured via $TOMCAT_HOME/conf/server.xml. The following example shows how the sslProtocol in an https connector is configured. Tomcat 5 and 6 (p

Re: SSL issue in tomcat

2015-02-02 Thread Jason Y
Thanks for your reply, Chris. I am providing solr search service on Linux server. My java version is 1.7_67(64bit) and tomcat version is 7.0.55 and tomcat Connector is: In my service I provide both REST and WSDL servie to call solr search by https. Everything worked well until one day(about in No

RE: [tomcat-users] How to force Tomcat to use the system clock?

2015-03-06 Thread Jason Pyeron
tick" counter. Internally all timekeeping has > been modified to be based on these "ticks". (If the system > time is being > used, then the tick count at any particular moment is calculated from > the system time rather than from the counter.) " > > Thanks

Tomcat 8.0.29-30 context root redirect changes break application

2015-12-18 Thread Jason Rivard
I'm not sure if I'm posting this in the right place, but I thought I would start here. It seems that changes to tomcat 8.0.29-30 partially described in the following bug break my application, and probably others: https://bz.apache.org/bugzilla/show_bug.cgi?id=58660 And here is my test applicatio

Re: Tomcat 8.0.29-30 context root redirect changes break application

2015-12-18 Thread Jason Rivard
On Fri, Dec 18, 2015 at 4:36 PM, Mark Thomas wrote: > On 18 December 2015 20:21:12 GMT+00:00, Jason Rivard > wrote: [snip] > > You can use sessionCookiePathUsesTrailingSlash on the Context to fix the > session problem but be aware of the security risks if you have context

Re: Zero downtime deployments

2015-12-21 Thread Jason Britton
ves for shared in-memory caches (redis), I'm not sure I want to go that route at this point. Any thoughts would be much appreciated, Jason On Tue, Dec 8, 2015 at 10:43 AM, Kevin Hale Boyes wrote: > On 4 December 2015 at 11:19, Christopher Schultz < > ch...@christopherschultz

handling tomcat failover - session transition to new node

2015-12-22 Thread Jason Britton
ssion data be updated in the session store on subsequent changes/requests? I've read about some folks configuring valves for shared in-memory caches (redis), I'm not sure I want to go that route at this point. Any thoughts would be much appreciated, happy holidays! Jason

Re: Zero downtime deployments

2015-12-22 Thread Jason Britton
On Tue, Dec 22, 2015 at 4:01 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > Jason, > > On 12/21/15 12:22 PM, Jason Britton wrote: > > Following back up after perusing Chris' very helpful presentation ( > > > http://people.apache.org/~schultz/A

Having Java websocket server in tomcat handle ISO8859_1

2016-02-08 Thread Jason Ricles
I have an application that sends binary websocket messages between a class and the web application using a websocket server written in java. The data being sent from the java class is encoded in a binary buffer with the bytes in ISO8859_1. However, when I receive the bytes on the websocket server

Re: Having Java websocket server in tomcat handle ISO8859_1

2016-02-08 Thread Jason Ricles
The message is built and sent in a javaclass connected to a websocket server for the web application also written in java then the message is passed to the webpage which uses javascript On Mon, Feb 8, 2016 at 2:25 PM, André Warnier (tomcat) wrote: > On 08.02.2016 19:41, Jason Ricles wr

Tomcat feature request

2016-02-09 Thread Jason Ricles
Is there any formal forum to make a feature request for tomcat? I noticed I was having a silent failure with a binary websocket with tomcat since I didn't flip the bytebuffer from write to read and the send kept failing down at the low level of the code without any error being thrown. With that in

Re: Tomcat feature request

2016-02-10 Thread Jason Ricles
On Wed, Feb 10, 2016 at 7:47 AM, Konstantin Kolinko wrote: > 2016-02-10 5:40 GMT+03:00 Jason Ricles : >> Is there any formal forum to make a feature request for tomcat? > > http://tomcat.apache.org/bugreport.html#How_to_submit_patches_and_enhancement_requests > > but usu

NullPointerException in MemoryRealm after upgrading to Tomcat 8.0.32 from 7.0.26

2016-03-08 Thread Jason Overland
Hi, I'm upgrading an existing Vaadin 6 application from Tomcat 7.0.26 to Tomcat 8.0.32 and have some questions. I'm using Windows 7 and debugging in Eclipse. For authentication our configuration is using a MemoryRealm with digest="SHA". We are storing usernames and passwords in a tomcat-users.xm

Re: NullPointerException in MemoryRealm after upgrading to Tomcat 8.0.32 from 7.0.26

2016-03-08 Thread Jason Overland
, principal.getPassword()); } if (validated) { On Tue, Mar 8, 2016 at 3:43 PM, Jason Overland wrote: > Hi, I'm upgrading an existing Vaadin 6 application from Tomcat 7.0.26 > to Tomcat 8.0.32 and have some questions. I'm using Windows 7 and > debugging in Eclipse. > >

Re: NullPointerException in MemoryRealm after upgrading to Tomcat 8.0.32 from 7.0.26

2016-03-09 Thread Jason Overland
ne (i.e. digest="SHA") > requires that the "digest" actually be set to something. Since that's > not happening, you get an NPE. > > Since you are willing to build your Tomcat from source, can I give you a > patch to test? > > This is definitely a bug, pl

Re: NullPointerException in MemoryRealm after upgrading to Tomcat 8.0.32 from 7.0.26

2016-03-10 Thread Jason Overland
do you think it can make it into the next Tomcat patch release? Also, yesterday I made a bug on bugzilla. https://bz.apache.org/bugzilla/show_bug.cgi?id=59154 Thanks again, Jason - To unsubscribe, e-mail: users-unsubscr...@tomcat.a

Getting confusing websocket error message on Tomcat 7

2016-05-04 Thread Jason Ricles
I am trying to send a file over a websocket in binary and keep getting this error "code [1009], reason [No async message support and buffer too small. Buffer size: [800,000], Message size: [131,170]]" I am confused since it is saying the buffer size is too small but the size is 800,000 and the me

mod_jk load balancing to Tomcats or SonicWall NetScaler?

2016-05-09 Thread Jason Britton
at. Thanks for any insight, Jason

secure_protocol_version is null when using NIO2

2016-06-10 Thread Jason Schwanz
Environment: Tomcat 8.0.33 on RHEL6 In our app we are capturing the SSL/TLS protocol being used by referencing the org.apache.tomcat.util.net.secure_protocol_version request attribute. When the connector is NIO this works beautifully, but trying this on NIO2 returns null. - Jason Schwanz

RE: [tomcat-users] Re: SSLVerifyClient="optionalNoCA" stops working in tomcat 8.0.32?

2016-06-16 Thread Jason Pyeron
is the recommended course of action in this case? > 1. Disable native io first, try again. 2. make a reproducible test case. -Jason - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Fail secure state

2016-06-23 Thread Jason Ricles
Does tomcat have a secure state if system initialization fails, shutdown fails, or aborts fail? - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: Fail secure state

2016-06-23 Thread Jason Ricles
20:21, Jason Ricles wrote: >> Does tomcat have a secure state if system initialization fails, >> shutdown fails, or aborts fail? > > Define "secure state", "system initialization", "fails", "shutdown&qu

Re: Fail secure state

2016-06-24 Thread Jason Ricles
21:43, Jason Ricles wrote: >> >> Fail-secure is a condition achieved by the application server in order >> to ensure that in the event of an operational failure, the system does >> not enter into an unsecure state where intended security properties no >> longer hold

jasper

2016-11-04 Thread Jason Hall
oblem (version 8.0.9.0) thanks, Jason - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: jasper

2016-11-08 Thread Jason Hall
va code to compile if you wish, unless you know what versions of tomcat with the associated jasper changes that may have caused this ? thanks, Jason - Original Message ----- From: "Jason Hall" To: "Tomcat Users List" Sent: Tuesday, November 8, 2016 7:22:57 A

TLS Server Accepts RSA_EXPORT Cipher Suites (FREAK)

2015-04-15 Thread Jason Jesso
I have Tomcat 6.0.41 connector set-up with: SSLProtocol="TLSv1.1,TLSv1.2" ciphers="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_CBC_SHA

RE: TLS Server Accepts RSA_EXPORT Cipher Suites (FREAK)

2015-04-15 Thread Jason Jesso
TLS Server Accepts RSA_EXPORT Cipher Suites (FREAK) On 4/15/2015 12:05 PM, Jason Jesso wrote: > I have Tomcat 6.0.41 connector set-up with: > > > SSLProtocol="TLSv1.1,TLSv1.2" > ciphers="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, >

RE: TLS Server Accepts RSA_EXPORT Cipher Suites (FREAK)

2015-04-15 Thread Jason Jesso
I also have Java 7 on the same host and got the same result. From: Jason Jesso [jje...@global-matrix.com] Sent: Wednesday, April 15, 2015 1:17 PM To: Tomcat Users List Subject: RE: TLS Server Accepts RSA_EXPORT Cipher Suites (FREAK) I am using Java 1.6

RE: TLS Server Accepts RSA_EXPORT Cipher Suites (FREAK)

2015-04-15 Thread Jason Jesso
rom: David kerber [dcker...@verizon.net] Sent: Wednesday, April 15, 2015 1:34 PM To: Tomcat Users List Subject: Re: TLS Server Accepts RSA_EXPORT Cipher Suites (FREAK) On 4/15/2015 1:17 PM, Jason Jesso wrote: > I am using Java 1.6 on AIX plaform. > > /usr/java6/bin/java -version > java ver

RE: TLS Server Accepts RSA_EXPORT Cipher Suites (FREAK)

2015-04-16 Thread Jason Jesso
d for us. Thanks for your help! From: Christopher Schultz [ch...@christopherschultz.net] Sent: Thursday, April 16, 2015 1:01 AM To: Tomcat Users List Subject: Re: TLS Server Accepts RSA_EXPORT Cipher Suites (FREAK) -BEGIN PGP SIGNED MESSAGE- Hash:

RE: TLS Server Accepts RSA_EXPORT Cipher Suites (FREAK)

2015-04-16 Thread Jason Jesso
The case made no difference. Still works. Jason Jesso | Senior Systems Programmer Direct: (905)752-8238 Toll Free: 1(800)387-1245 | Ext. 238 Fax: (905)479-5421 Web Site: global-matrix.com Blog Site: travelagentmusings.com From: Christopher Schultz [ch

RE: TLS Server Accepts RSA_EXPORT Cipher Suites (FREAK)

2015-04-16 Thread Jason Jesso
z.net] Sent: Thursday, April 16, 2015 8:45 AM To: Tomcat Users List Subject: Re: TLS Server Accepts RSA_EXPORT Cipher Suites (FREAK) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Jason, On 4/16/15 7:48 AM, Jason Jesso wrote: > My goal was to disable the EXPORT ciphers and not be able to > c

issue with application finding tomcat jars

2015-07-10 Thread Jason Ricles
I have an application that uses the websocket jars from tomcat and sometimes get this error, java.util.ServiceConfigurationError: javax.websocket.ContainerProvider: Provider org.apache.tomcat.websocket.WsContainerProvider not found Then it gets the error for a while and magically finds the jars a

Send a message from java application to a specific websocket session via Tomcat websocket server

2015-08-10 Thread Jason Ricles
Introduction: I have an application that uses a webpage as the GUI and the backend is written in Java so thuswebsockets using Apache Tomcat 7 are the way I am communicating between the GUI and the backend code that does all the grunt work. A websocket server is the go between, between the backend

Re: Send a message from java application to a specific websocket session via Tomcat websocket server

2015-08-10 Thread Jason Ricles
e users to > be re-directed to an static page not connected to the database or back-end. > And if user== administrator; then, do not redirect. Allow user to see > error. > > > On 08/10/2015 10:01 AM, Jason Ricles wrote: >> >> Introduction: >> >> I have an appl

Tomcat 8 reliability/performance on Windows 2008 R2 Server vs. RHEL/CentOS

2015-09-30 Thread Jason Britton
about why this could be problematic vs. running Tomcat on RHEL/CentOS. My gut says far more Tomcat deployments in production are done on top of Linux based OS's vs. Windows. Any thoughts on making an argument for one OS vs another in deploying Tomcat 8? Thanks for your thoughts, Jason

Re: Tomcat 8 reliability/performance on Windows 2008 R2 Server vs. RHEL/CentOS

2015-10-01 Thread Jason Britton
OP here. I really appreciate the objective well thought out responses, this community has never disappointed me. A more qualified list of respondents I will not find elsewhere. George I should have said Windows Server 2012 R2. A lot of our Windows servers are still 2008 R2 but any new ones that

Re: SSL and Virtual Hosting

2015-10-21 Thread Jason Britton
o proxy to our Tomcats and we terminate SSL at HTTPD so I'm not exactly sure on your SSL questions. Our SSL is configured through Apache HTTPD Virtual Hosts. Maybe you want to look into the cost for a wildcard SSL cert that would cover *.example.com rather than specific hosts? Jason On Wed, O

Zero downtime deployments

2015-12-02 Thread Jason Britton
ut will be using the latest versions of tomcat 8 and apache httpd 2.4. Thanks for any insights! Jason

Re: Zero downtime deployments

2015-12-02 Thread Jason Britton
Thank you Christopher, reading now and we'll see if I can swing the conference :) On Wed, Dec 2, 2015 at 4:00 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > Jason, > > On 12/2/15 4:07 PM, Jason Britton wrote: > > I was looking for information for how

Trying to find out if Windows Sever 2016 is affected by CVE-2016-3092

2017-11-15 Thread Jason Liebig
e are exclusive to Linux. Can you confirm or point me in the direction of documentation that could help us identify if certain CVE's are affecting Windows 2016? Thanks. Regards, Jason Liebig Security Engineer Hitachi Vantara 2845 Lafayette St Santa Clara, CA, 95050, USA

Re: Apache Tomcat 8.5.24 SSL Configuration

2017-12-21 Thread Jason Hall
- Original Message - From: Thomas Delaney To: Tomcat Users List Sent: Thu, 21 Dec 2017 17:24:06 -0500 (EST) Subject: Re: Apache Tomcat 8.5.24 SSL Configuration Thank you for the input so far! I have used both java versions jdk 1.7.0_79 and jdk1.8.0_152 and still receive the same result

List Ciphers - 500 Error

2018-04-03 Thread Jason Vo
(SetCharacterEncodingFilter.java:108) All other manager commands seem to work fine e.g http://localhost:8080/manager/text/serverinfo . Any ideas? Thanks Jason Vo Professional Services Manager DDI : +44 113 826 6218 | T : +44 (0) 113 388 4300 | M : +44 773 919 4858 jason...@callcreditgroup.com

Re: ecj-4.6.3 no longer required?

2019-03-26 Thread Jason Wee
which 8.5.x u were referring? i just checked 8.5.39 has ecj in lib directory. On Wed, Mar 27, 2019 at 1:58 AM David Cleary wrote: > > I'm current updating our server that is based on Tomcat 8.5.x and found that > ecj-4.6.3.jar is no longer in the distribution. The changelog does not note > that

HTTP/1.x broken with Tomcat 9, Java 11 and Http11NioProtocol

2019-03-26 Thread Jason Rivard
I'm trying to get the following configuration working: - Tomcat 9.0.17 (also tested with 9.0.16) - AdoptOpenJDK Java 11.0.2 on Linux (also tested on Windows) - Http11NioProtocol Connector - Http2Protocol ProtocolUpgrade I'm using the following connector config: With the UpgradeProtocol in

Re: HTTP/1.x broken with Tomcat 9, Java 11 and Http11NioProtocol

2019-03-27 Thread Jason Rivard
On Wed, Mar 27, 2019 at 11:21 AM Mark Thomas wrote: > > Don't know yet. Just started looking. [snip] > That didn't take long. > The fix will be in the next set of releases (expected towards the end of > next week). [snip] Wow, that was fast! Thanks for the quick response! --

Re: Does Tomcat server printout System.out.print infor?

2019-05-11 Thread Jason Wee
default tomcat , when you print, logging should goes to catalina.out. In any case, check logging.properties in tomcat directory on where the logging configured. as for realm, it can be configure in the context element, which mean in the META-INF/context.xml, see https://tomcat.apache.org/tomcat-8.

org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun

2019-08-06 Thread Jason Wee
version 8.5.43 (current latest), the exception no longer happened. We would like to understand better which patch that fix the problem above. Can anyone give links to the fixes? Thank you and apache tomcat is a great product! Jason

Tomcat 8.5.45 service error 1067

2019-09-08 Thread Jason Wong
Hi. I have an application running on tomcat 8.0.53 (32-bit) running on windows 2008R2 server (64-bit), it runs fine. I'm looking to upgrade to tomcat 8.5.45 (32-bit). I downloaded the apache-tomcat-8.5.45.exe installer, verified the signature, and ran it (no errors). But when try to start the

Re: Tomcat 8.5.45 service error 1067

2019-09-09 Thread Jason Wong
tomcat 8.5.45 with the version 1.1.0.0 service and it starts up as usual. Regards, Jason On Sunday, September 8, 2019, 4:29:59 PM GMT-4, André Warnier (tomcat) wrote: Hello Jason. Have a look at the archives of this mailing list, for the last 30 days or so. I think that there have

RE: [tomcat-users] Password encryption in Tomcat 8.5.35

2019-09-15 Thread Jason Pyeron
om TPMs, Smart Cards, networked sources, etc. v/r, Jason Pyeron > -Original Message- > From: Mohan T > Sent: Monday, September 16, 2019 12:05 AM > To: users@tomcat.apache.org > Subject: [tomcat-users] Password encryption in Tomcat 8.5.35 > > Hi, > > We are u

Re: Tomcat in Netbeans 11.1

2019-10-31 Thread Jason Hall
he correct tab and select unselect "Use IDE proxy settings". thanks, Jason - Original Message - From: "Don" To: users@tomcat.apache.org Sent: Thursday, October 31, 2019 8:10:30 AM Subject: Re: Tomcat in Netbeans 11.1 I knew about the Services tab and my pra

Re: Unable to start tomcat

2020-02-25 Thread Jason Wee
This looks informative and should give u hint and where you should begin troubleshooting. org.apache.tomcat.jni.Error: 730055: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. On Wed, Feb 26, 2020 at 2:30 PM wrote: > >

Re: Unable to start tomcat

2020-02-25 Thread Jason Wee
have you try google? https://stackoverflow.com/questions/4415175/an-operation-on-a-socket-could-not-be-performed-because-the-system-lacked-suffi On Wed, Feb 26, 2020 at 2:47 PM wrote: > > Dear Jason, > > Thank for your reply. I am unable to understand below hint. Will you > ple

Re: OpenSSL config for Tomcat 7

2020-02-28 Thread Jason Wee
when you stack them, do you mean you cat those certificates into one pem file? On Sat, Feb 29, 2020 at 8:22 AM John Beaulaurier -X (jbeaulau - ADVANCED NETWORK INFORMATION INC at Cisco) wrote: > > Hello, > > We're running Tomcat 7 and need to implement SSL. We are using APR/OpenSSL, > but I can'

Re: REG: Version stability of Tomcat 9.0.96

2025-02-07 Thread Jason Wee
https://tomcat.apache.org/tomcat-9.0-doc/api/org/apache/jasper/runtime/JspRuntimeLibrary.html#releaseTag(javax.servlet.jsp.tagext.Tag,org.apache.tomcat.InstanceManager,boolean) Anyway, your application team should know what to do...just download the tomcat source file and read the code ;) Regards, Jason W

Re: REG: Version stability of Tomcat 9.0.96

2025-02-07 Thread Jason Wee
Why not use releaseTag with 2 arguments? That 3 arguments method is deprecated in tomcat9.0.98 anyway...sooner it will be removed... Regards, Jason Wee On Fri, Feb 7, 2025 at 5:55 PM Konstantin Kolinko wrote: > > чт, 6 февр. 2025 г. в 16:42, Divyabharathi Sundaram > : > >

Re: REG: Version stability of Tomcat 9.0.96

2025-02-11 Thread Jason Wee
opsie.. I suppose they can find a workaround for their solution On Tue, Feb 11, 2025 at 8:55 PM Christopher Schultz wrote: > > Jason, > > On 2/7/25 6:53 AM, Jason Wee wrote: > > Why not use releaseTag with 2 arguments? That 3 arguments method is > > deprecated in tomc

Tomcat not releasing connector port at shutdown

2025-03-19 Thread Jason Countryman
nstance uses a Spring configuration with log4j2, camel and cxf. I'm not sure what the next troubleshooting step would be here, what to look for. Any guidance on next steps would be appreciated. Thank you, Jason T. Countryman This message and any attachments may contain informatio

Tomcat 9 on Debian 12

2025-03-10 Thread Jason Bailey
I'm running Tomcat 9 on Debian 12 to run Apache Guacamole and am trying to get the tomcat-users.xml file to take so that I can manage the service from the Tomcat Manager. So far I have not had luck getting the login dialog to the manager to accept any xml file I give it. First, where should I be p

Re: Tomcat 9 on Debian 12

2025-03-11 Thread Jason Bailey
k. Also, many Debian-specific Tomcat guides mention "admin-gui" such as this: https://www.digitalocean.com/community/tutorials/how-to-install-apache-tomcat-9-on-debian-10 But yeah, the Debian specific deviations have me confused. On 3/10/25 6:45 PM, Chuck Caldarale wrote: >> On

From Websphere to Tomcat --> New to Tomcat

2005-11-11 Thread Jason T. Slack
putting my packages and source in the work Directory 4. Where do JSP pages go? 5. I see that I need to export my project as a .war file. Where does this .war file go to run it? 6. Is there a way that I can run the .war file from directly in Eclipse? Thanks for the information. -jason

Re: Release Dates

2016-08-05 Thread Jason D. Burkert
This may help. http://tomcat.markmail.org/search/?q=Apache%20Tomcat%20released -Jason On 2016-08-05 10:37 AM, Salvatore Bellassai wrote: Hello, I was hoping someone could tell me where Release Dates can be obtained for Tomcat 7.0? Thank you. Salvatore "Trace" Bellassai Security

Re: Set up postgresql on tomcat7

2016-08-16 Thread Jason D. Burkert
the .jar file is there anything else i need to configure? Any advice is welcome Andy Andy, Have you defined a JDBC data source for your connection to postgres? This may be helpful: https://tomcat.apache.org/tomcat-7.0-doc/jndi-resources-howto.html#JDBC_Data_Sources -Jason

Re: Set up postgresql on tomcat7

2016-08-17 Thread Jason D. Burkert
;s context.xml jdbc/myPostgresConnection javax.sql.DataSource Container This will allow you to have one copy of the postgres jar deployed in Tomcat's lib directory, and each of your webapps can reference the named connection (i.e. jdbc/myPostgresConnection ) within

Re: For the purposes of matching another box, I need Tomcat 7.0.67 for Windows . . .

2016-08-24 Thread Jason D. Burkert
estion and examining 'Architecture' field. Also, scroll down on the link you provided to Packaging Details (or "What Should I Download?") -Jason -- JHHL - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.or

Question regarding config.ini 'answer file'

2023-03-28 Thread Jason Murray | ROI Solutions
Hello, Apologies if my this my first post is misdirected. In a nutshell: my goal is to automate Tomcat 8.5 upgrades on Windows Server as much as possible. More specifically, I have been looking to create a config.ini 'answer' file for installing Tomcat 8.5.x as a service on a Windows Server sy

override context path for manager application

2019-12-04 Thread Guild, Jason A (DOT)
9.0.29 with OpenJDK 1.8.0_232 on Debian Linux. Thanks, Jason [0] https://tomcat.apache.org/tomcat-9.0-doc/manager-howto.html#Introduction<https://tomcat.apache.org/tomcat-8.5-doc/manager-howto.html#Introduction>

Re: override context path for manager application

2019-12-04 Thread Guild, Jason A (DOT)
e Tomcat distribution and ran it with $CATALINA_BASE == $CATALINA_HOME and I was just adding a file to $CATALINA_HOME/conf/[engine]/[host]/dev9#manager.xml in an attempt to override the context path. Thanks again for your help, Jason On 12/4/2019 1:32 PM, Konstantin Kolinko wrote: > If y

<    1   2   3   4   5   >