Re: REST call failure on newer tomcat version/update

2014-12-22 Thread Konstantin Kolinko
2014-12-19 20:49 GMT+03:00 Sean Dawson seandawson2...@gmail.com: Hello, We had a gwt app deployed and working with tomcat 7_42 and tried it recently in several configurations (Windows/Linux) with the latest update of 7 and it fails during a RestyGwt/RestEasy call to the server. Previous

Re: Tomcat 8.0.12 - unable to eliminate logs stating org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [variousURLs] to the cache because there was insufficient free sp

2014-12-22 Thread Kevin McKee
For anyone else unable to find an answer to this problem, the answer seems to be as simple as adding this to your $SERVER_HOME/conf/context.xml inside the Context tag Resources cachingAllowed=false/ Kevin McKee Application Development Architect Goodyear Canada Inc. 388 Goodyear Rd, Napanee,

Re: Tomcat 8.0.12 - unable to eliminate logs stating org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [variousURLs] to the cache because there was insufficient free sp

2014-12-22 Thread David kerber
On 12/22/2014 8:14 AM, Kevin McKee wrote: For anyone else unable to find an answer to this problem, the answer seems to be as simple as adding this to your $SERVER_HOME/conf/context.xml inside the Context tag Resources cachingAllowed=false/ As long as you don't need caching... Kevin

Re: REST call failure on newer tomcat version/update

2014-12-22 Thread Sean Dawson
Hi Konstantin, Thanks for your reply. What details do you need of our config? Do you want the full files? Essentially it's a pretty straightforward install - extract tomcat, remove all the webapps, put our war somewhere, use Catalina/localhost/ROOT.xml to point to the war. It's a gwt app that

Re: REST call failure on newer tomcat version/update

2014-12-22 Thread David kerber
On 12/22/2014 11:05 AM, Sean Dawson wrote: Hi Konstantin, Thanks for your reply. What details do you need of our config? Do you want the full files? Essentially it's a pretty straightforward install - extract tomcat, remove all the webapps, put our war somewhere, use

Re: REST call failure on newer tomcat version/update

2014-12-22 Thread Sean Dawson
I don't think so. But perhaps that's the new/current thinking and something in the latest tomcat/libraries is enforcing that? I'll double-check/look-it-up. In any case, people do it - and it was working before. On Mon, Dec 22, 2014 at 11:12 AM, David kerber dcker...@verizon.net wrote: On

Re: REST call failure on newer tomcat version/update

2014-12-22 Thread Sean Dawson
We did try adding PUT to parseBodyMethods but didn't not change the issue. On Mon, Dec 22, 2014 at 11:24 AM, Sean Dawson seandawson2...@gmail.com wrote: I don't think so. But perhaps that's the new/current thinking and something in the latest tomcat/libraries is enforcing that? I'll

Re: Initialise application once

2014-12-22 Thread Terence M. Bandoian
On 12/21/2014 9:14 AM, Fabio Ricci wrote: Yes that made it THANK YOU very much!!! Grazie mille! Cheers Fabio Am 21.12.14 um 14:10 schrieb Alessandro Manzoni: Il 21.12.2014 13.38, Fabio Ricci ha scritto: Dear community I developed a tomcat JSP servlet which - say - instantiates a class,

Re: REST call failure on newer tomcat version/update

2014-12-22 Thread Konstantin Kolinko
2014-12-22 19:05 GMT+03:00 Sean Dawson seandawson2...@gmail.com: Hi Konstantin, Thanks for your reply. Rules: http://tomcat.apache.org/lists.html#tomcat-users - 6. When replying, please write your text below the quoted one. What details do you need of our config? Do you want the full

Re: REST call failure on newer tomcat version/update

2014-12-22 Thread Terence M. Bandoian
On 12/22/2014 6:02 AM, Konstantin Kolinko wrote: 2014-12-19 20:49 GMT+03:00 Sean Dawson seandawson2...@gmail.com: Hello, We had a gwt app deployed and working with tomcat 7_42 and tried it recently in several configurations (Windows/Linux) with the latest update of 7 and it fails during a

Re: REST call failure on newer tomcat version/update

2014-12-22 Thread Hassan Schroeder
On Mon, Dec 22, 2014 at 8:24 AM, Sean Dawson seandawson2...@gmail.com wrote: In any case, people do it - and it was working before. Uh, people do lots of objectively wrong things in web development, and works in some circumstances ≠ adheres to the spec :-) My reading of the RFC

Re: REST call failure on newer tomcat version/update

2014-12-22 Thread Sean Dawson
Am working on testing the 8 versions between the one that works and the one that doesn't. We use tomcat to host our gwt/restygwt app - gwt rpc calls work (as far as we've tested) - restygwt REST calls to another process (jetty server - RestEasy) work up to the point of that PUT request (which

Re: REST call failure on newer tomcat version/update

2014-12-22 Thread Sean Dawson
So it works with all of them up to _52 but fails for all of them after that. I had a theory related to tomcat creating a webapps/ROOT dir in the newer versions that it didn't in the older one (when pointing to the war from Catalina/local/ROOT.xml) as a possible difference/change but _52 does this

Re: REST call failure on newer tomcat version/update

2014-12-22 Thread David kerber
On 12/22/2014 2:56 PM, Sean Dawson wrote: So it works with all of them up to _52 but fails for all of them after that. I had a theory related to tomcat creating a webapps/ROOT dir in the newer versions that it didn't in the older one (when pointing to the war from Catalina/local/ROOT.xml) as a

Re: REST call failure on newer tomcat version/update

2014-12-22 Thread Sean Dawson
On Mon, Dec 22, 2014 at 3:01 PM, David kerber dcker...@verizon.net wrote: On 12/22/2014 2:56 PM, Sean Dawson wrote: So it works with all of them up to _52 but fails for all of them after that. I had a theory related to tomcat creating a webapps/ROOT dir in the newer versions that it didn't

Re: REST call failure on newer tomcat version/update

2014-12-22 Thread Konstantin Kolinko
2014-12-22 23:29 GMT+03:00 Sean Dawson seandawson2...@gmail.com: On Mon, Dec 22, 2014 at 3:01 PM, David kerber dcker...@verizon.net wrote: On 12/22/2014 2:56 PM, Sean Dawson wrote: So it works with all of them up to _52 but fails for all of them after that. I had a theory related to tomcat

Re: REST call failure on newer tomcat version/update

2014-12-22 Thread André Warnier
Sean Dawson wrote: Am working on testing the 8 versions between the one that works and the one that doesn't. We use tomcat to host our gwt/restygwt app - gwt rpc calls work (as far as we've tested) - restygwt REST calls to another process (jetty server - RestEasy) work up to the point of that

Re: Help! Tomcat crashing on takeoff

2014-12-22 Thread James H. H. Lampert
On the Tomcat Users List, Pete Helgren wrote: Also, are you sure that Java 6 on this box is current with PTF's and that the profile this is running under is picking up the correct JVM version when it runs? My money is on a J9 JVM PTF but an issue with permissions or JVM version could be a

Re: REST call failure on newer tomcat version/update

2014-12-22 Thread Sean Dawson
Ok after many hours, here's all the information as I know it - as clearly and thoroughly as I can give it... One physical machine - Windows 7 Gwt 2.6.1 App deployed to tomcat 7 (either 52 or 53) built with maven 3.1.1 uses RestyGwt 1.4 uses ProxyServlet to pass REST calls to other process