Re: nginx + Tomcat 9

2018-07-11 Thread Simon De Uvarow
On Wed, Jul 11, 2018 at 10:41 AM Giacomo Arru - BETA Technologies wrote: > I tried to enable debug logging for org.apache.tomcat.websocket but > without success > > here is my logging.properties > > > > handlers = java.util.logging.ConsoleHandler > > .handlers =

Re: A tomcat log output problem

2018-04-04 Thread Simon De Uvarow
On Mon, Apr 2, 2018 at 9:41 AM 张钧荣 <1024238...@qq.com> wrote: > Hello ! > My project reported an error related to tomcat logging module. The > exception information is as follows: > Apr 2 11:31:27 knowledgebase java: Exception in thread "main" > java.lang.reflect.InvocationTargetException >

Re: asgard tomcat application 404

2018-02-20 Thread Simon De Uvarow
I don't know about Spring, but according to your exception, and my short experience, could be a database connection issue. grails.web.context.GrailsContextLoaderError initializing Grails: Error creating bean with name 'pluginManager' defined in ServletContext resource

Re: Monitoring Tomcat JDBC Connection Pool with JConsole?

2018-01-11 Thread Simon De Uvarow
"No olvides, no traiciones, lo que llevas bien dentro de ti. No olvides, no traiciones, lo que siempre te ha hecho vivir." On Thu, Jan 11, 2018 at 6:47 PM, Jerry Malcolm wrote: > I followed the instructions to enable JMX on Tomcat. I added the > following lines to java

Re: Tomcat 8.5 justification (UNCLASSIFIED)

2017-11-16 Thread Simon De Uvarow
Hi, do you want to compare tomcat 8.5.last with what version ? "No olvides, no traiciones, lo que llevas bien dentro de ti. No olvides, no traiciones, lo que siempre te ha hecho vivir." On Thu, Nov 16, 2017 at 8:52 PM, Lueders, Paul T CIV USARMY NGIC (US) < paul.t.lueders@mail.mil> wrote:

Re: Tomcat 8.5.16 cuts end of body after 10485761 bytes

2017-08-29 Thread Simon De Uvarow
Hi, "No olvides, no traiciones, lo que llevas bien dentro de ti. No olvides, no traiciones, lo que siempre te ha hecho vivir." On Tue, Aug 29, 2017 at 11:42 AM, Felix Schumacher < felix.schumac...@internetallee.de> wrote: > Am 29.08.2017 um 04:44 schrieb Simon De Uvar

Tomcat 8.5.16 cuts end of body after 10485761 bytes

2017-08-28 Thread Simon De Uvarow
Hi, I have to respond a big json file: return Response.status(Status.OK).entity(new SimpleDataMessageResponse("TASK_FINISH", str)).build(); The tomcat logs correctly the size in the access log file: 127.0.0.1 - - [29/Aug/2017:02:26:07 +] "GET /./interactiveTask/

Re: Detect client disconnect in Tomcat

2017-08-23 Thread Simon De Uvarow
"No olvides, no traiciones, lo que llevas bien dentro de ti. No olvides, no traiciones, lo que siempre te ha hecho vivir." On Wed, Aug 23, 2017 at 8:33 AM, André Warnier (tomcat) wrote: > On 23.08.2017 09:48, Grigor Aleksanyan wrote: > >> Hi Simon, >> >> If I understood your

Re: Detect client disconnect in Tomcat

2017-08-22 Thread Simon De Uvarow
"No olvides, no traiciones, lo que llevas bien dentro de ti. No olvides, no traiciones, lo que siempre te ha hecho vivir." On Tue, Aug 22, 2017 at 11:36 AM, André Warnier (tomcat) wrote: > On 22.08.2017 10:50, Grigor Aleksanyan wrote: > >> Hi, >> >> I have a web application

Re: Source Package file path location in Tomcat

2017-05-30 Thread Simon De Uvarow
http://tomcat.apache.org/download-70.cgi Check the left side menu .. you will find downloads for all versions of Tomcat. In the download page you can download binary distributions and also source code. "No olvides, no traiciones, lo que llevas bien dentro de ti. No olvides, no traiciones, lo

Re: Automatic deploy : java.util.zip.ZipException on macosx

2017-05-24 Thread Simon De Uvarow
rect. My bad. But try searching why your war file doesn't contain the META-INF folder. "No olvides, no traiciones, lo que llevas bien dentro de ti. No olvides, no traiciones, lo que siempre te ha hecho vivir." On Wed, May 24, 2017 at 8:35 AM, Simon De Uvarow <sdeuva...@gmail.com> wr

Re: Automatic deploy : java.util.zip.ZipException on macosx

2017-05-24 Thread Simon De Uvarow
Hi Ricardo, it looks like your war files doesn't contain the META-INF folder. Check here: https://en.wikipedia.org/wiki/WAR_(file_format) "A WAR file may be digitally signed in the same way as a JAR

Re: WebSocket - Client doesn't receive server messages

2017-05-23 Thread Simon De Uvarow
vides, no traiciones, lo que siempre te ha hecho vivir." On Mon, May 22, 2017 at 9:52 PM, Simon De Uvarow <sdeuva...@gmail.com> wrote: > Hi, I'm having a strange issue: > > I'm developing a frontend with WebSockets, (my first WebSocket! ). To test > the code I'm also developing

WebSocket - Client doesn't receive server messages

2017-05-22 Thread Simon De Uvarow
Hi, I'm having a strange issue: I'm developing a frontend with WebSockets, (my first WebSocket! ). To test the code I'm also developing some tests to run in Eclipse. So, I create a Client in the Test, connect to the server, and want to have some communication. I added lot of logs to debug the