Re: How to disable JSR 250 annotations processor ?

2011-02-27 Thread Stevo Slavić
If I understood spec (servlet-3_0-final-spec.pdf) well, this service is required only for servlets, filters, and listeners (Table 15-1 Components and Interfaces supporting Annotations and Dependency Injection, chapter 15, page 179 of specification, page 201 of pdf). Yevgen, on which beans did you e

Re: AccessLogValve pattern (timestamp, bytes sent and time taken)

2011-02-27 Thread Konstantin Kolinko
2011/2/21 Antonios Kogias : > Thank you very much for the detailed answer. Now there's just one more thing > to ask. > If we use tomcat 7.0.8, the "timing for the whole request processing cycle" > will incorporate transmit time? > e.g. if using HTTP/1.0, will it represent the total time until the t

Re: Where are my compiled jsp's?

2011-02-27 Thread Konstantin Kolinko
2011/2/25 : > Hi, > > I have an expanded webapp moved into a directory out of tomcats webapps-dir. > I have changed the docbase in server.xml (I know, bad practice). But now the > compiled jsp's are no longer in tomcats work directory. Where are they now? > Try ServletContext.getAttribute("javax.

Re: [OT] Memory Leak in Tomcat

2011-02-27 Thread הילה
Original: Does this happen all the time? Under what conditions? Are you able to build a patched version of Tomcat in a test environment to test a fix I have? What version of Java and Tomcat are you running? Hey I'm not sure if you refer the question to me, since the whole topic shifted to an off t

Re: request.getParameter() not working in Tomcat 7.0.8

2011-02-27 Thread Mark Thomas
On 27/02/2011 07:11, Michael McCutcheon wrote: > I've got a simple problem where: > > request.getQueryString() returns this: > > "title%3Dtesttitle%26categoryAccessLabel%3Dtestcategoryaccesslabel%26valueAccessLabel%3DtestvalueAccessLabel" > > > but request.getParameter("title") returns null. >

Re: request.getParameter() not working in Tomcat 7.0.8

2011-02-27 Thread Konstantin Kolinko
2011/2/27 Mark Thomas : > On 27/02/2011 16:14, André Warnier wrote: >> ma...@apache.org wrote: >> ... >> >>> >>> What you are missing is that query parameters and values are parsed >>> before %nn decoding so the names and values can contain reserved >>> characters. >>> >> Mark, >> are you sure ? >

Re: request.getParameter() not working in Tomcat 7.0.8

2011-02-27 Thread Mark Thomas
On 27/02/2011 16:14, André Warnier wrote: > ma...@apache.org wrote: > ... > >> >> What you are missing is that query parameters and values are parsed >> before %nn decoding so the names and values can contain reserved >> characters. >> > Mark, > are you sure ? I may be talking nonsense - it was e

Re: request.getParameter() not working in Tomcat 7.0.8

2011-02-27 Thread André Warnier
ma...@apache.org wrote: ... What you are missing is that query parameters and values are parsed before %nn decoding so the names and values can contain reserved characters. Mark, are you sure ? - To unsubscribe, e-mail: use

Re: datasource & persistenceUnit configuration

2011-02-27 Thread Martin Mucha
Christopher, I'm sorry. I do read too much of walkthroughs and tutorials messing with tomcat configuration which ended badly, that I got myself into some mindless frenzy mode. I check everything once again in setup with resource-local transaction and found out, that I've overlooked misconfigured o

Re: Login page not showing up with configured realm.

2011-02-27 Thread Konstantin Kolinko
2011/2/27 Josh Gooding : > My Main.jsp is in the root directory of the webapps/[my proj] folder and the > Login.jsp is in /webapps/[my proj]/private.  So now for the issues.  When I > login with j_security_check, I get no errors, so as much as I hate making > assumptions, I'm going to assume that n

Login page not showing up with configured realm.

2011-02-27 Thread Josh Gooding
ok, I swore I wasn't going to bother you guys again on the weekend, but I am running into a little quirk here. I'm running 6.0.29. Here is my webapp's context.xml: WEB-INF/web.xml My Database credentials are fine. When I do a select * from users where user_name="JGooding" I get

Re: request.getParameter() not working in Tomcat 7.0.8

2011-02-27 Thread
Michael McCutcheon wrote: >I've got a simple problem where: > >request.getQueryString() returns this: > >"title%3Dtesttitle%26categoryAccessLabel%3Dtestcategoryaccesslabel%26valueAccessLabel%3DtestvalueAccessLabel" > >but request.getParameter("title") returns null. > >Am I missing something obvio