RE: antlib.xml vs catalina.tasks (was: Re: r1346638)

2012-06-24 Thread Williams, Nick
-Original Message- From: Konstantin Kolinko [mailto:knst.koli...@gmail.com] Sent: Sunday, June 24, 2012 11:15 AM To: Tomcat Developers List Subject: antlib.xml vs catalina.tasks (was: Re: r1346638) 2012/6/6 Mark Thomas : > On 06/06/2012 00:22, Konstantin Kolinko wrote: >> 2012/6/6 Mark Tho

Tomcat 8 question

2013-01-19 Thread Williams, Nick
Back in August 2011 (a long time ago, I know) Mark wrote a blog posting about Tomcat 8 and Java 7: http://www.tomcatexpert.com/blog/2011/08/25/apache-tomcat-8-and-java-7-will-they-work-together In it, he said "We create a new major version of Tomcat when there are new versions of three specific

Compiling JSPs with JDK 1.8 in Tomcat 8

2013-01-21 Thread Williams, Nick
I'm running an experimental environment with JDK 1.8 and Tomcat 8.0 (trunk). I understand, of course, that there are some inherent instabilities associated with doing this, but something just doesn't seem quite right. I want JSPs to compile with Java 8, not Java 7. I understand that the Eclipse

RE: Tomcat 8 question

2013-01-21 Thread Williams, Nick
Thanks, Mark. Also, thanks Violeta for pointing out Mark's slides where he mentions JSP 2.3. Nick On 20/01/2013 07:14, Violeta Georgieva wrote: > Hi, > > 2013/1/20 Williams, Nick > >> So, will Tomcat 8 be targeted for EE 7, or will it wait until >> JSP-next comes o

RE: Compiling JSPs with JDK 1.8 in Tomcat 8

2013-01-22 Thread Williams, Nick
rs for the lambda expression in my JSP. The same lambda expression compiles fine in my JDK compiler. So, is there any way to use the JDK compiler to compile JSPs? Or, am I stuck compiling JSPs at Java 7 until either Eclipse or Ant starts supporting Java 8? Thanks, Nick -Original Message-

RE: Compiling JSPs with JDK 1.8 in Tomcat 8

2013-01-23 Thread Williams, Nick
e.org] Sent: Tuesday, January 22, 2013 6:14 PM To: Tomcat Developers List Subject: Re: Compiling JSPs with JDK 1.8 in Tomcat 8 On 22/01/2013 22:40, Williams, Nick wrote: > As you can see from my testing and comment in bug 54461 > (https://issues.apache.org/bugzilla/show_bug.cgi?id=54461), af

OT: Servlet 3.1 / JSP 2.3

2013-02-07 Thread Williams, Nick
This is only slightly related to Tomcat, in that Servlet 3.1 / JSP 2.3 work is happening in trunk/8.0. Hence the "OT." I was looking through the JSRs for EE 7 last night and realized I couldn't find anything about JSP 2.3 in any of them. I know JSP 2.3 exists because of Mark Thomas's presentat

RE: OT: Servlet 3.1 / JSP 2.3

2013-02-07 Thread Williams, Nick
> There is no JSR and no Expert Group. > JSP 2.3 will be handled as a maintenance release of 2.2. Well that explains why I couldn't find it the JSR. :-P > The changes are (as far as I am aware): > - fix typos > - limit HTTP methods that JSPs respond to (to HEAD, GET, POST) > - changes required as

RE: OT: Servlet 3.1 / JSP 2.3

2013-02-07 Thread Williams, Nick
> It looks like a work-in-progress to me. The only change I see to the public > API is dropping some runtime exceptions from a handful of method declarations. Interesting. It sure would be nice if the Maven artifact had SOME indication of this, like "beta" in the version or something similar lik

EL 3.0, HttpSessionIdListener, HttpServletRequest#changeSessionId()

2013-02-10 Thread Williams, Nick
As some of you know, I've been experimenting with Tomcat trunk (8.0) and the latest specs. I understand, of course, that this is all far from complete. While playing around this weekend, I noticed three things: - Tomcat trunk still has EL 2.2 instead of the new EL 3.0 - javax

RE: EL 3.0, HttpSessionIdListener, HttpServletRequest#changeSessionId()

2013-02-11 Thread Williams, Nick
> On 11/02/2013 01:05, Williams, Nick wrote: >> As some of you know, I've been experimenting with Tomcat trunk (8.0) >> and the latest specs. I understand, of course, that this is all far >> from complete. While playing around this weekend, I noticed three >> th

RE: EL 3.0, HttpSessionIdListener, HttpServletRequest#changeSessionId()

2013-02-11 Thread Williams, Nick
-Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: Monday, February 11, 2013 10:46 AM To: Tomcat Developers List Subject: Re: EL 3.0, HttpSessionIdListener, HttpServletRequest#changeSessionId() >> 1) Where do y'all get the javax.* code that's in your repository? > >The so

RE: EL 3.0, HttpSessionIdListener, HttpServletRequest#changeSessionId()

2013-02-11 Thread Williams, Nick
-Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: Monday, February 11, 2013 10:46 AM To: Tomcat Developers List Subject: Re: EL 3.0, HttpSessionIdListener, HttpServletRequest#changeSessionId() > For WebSocket I automate it a little by using javap on the spec repository

RE: EL 3.0, HttpSessionIdListener, HttpServletRequest#changeSessionId()

2013-02-11 Thread Williams, Nick
(I'm replying to both your emails here. Forgive me.) -Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: Monday, February 11, 2013 2:38 PM To: Tomcat Developers List Subject: Re: EL 3.0, HttpSessionIdListener, HttpServletRequest#changeSessionId() >> Fascinating. Years ago

When to notify of changed session IDs?

2013-02-11 Thread Williams, Nick
After discussing with Mark T, I'm working on implementing HttpServletRequest.changeSessionId() and the calling of HttpSessionIdListeners as introduced in the Servlet 3.1 specification. I'd like to help and it seemed like a trivial enough item for me to tackle (I may regret saying that :-P). Tom

RE: When to notify of changed session IDs?

2013-02-11 Thread Williams, Nick
-Original Message- From: Williams, Nick [mailto:nicholas.willi...@ul.com] Sent: Monday, February 11, 2013 5:24 PM To: Tomcat Developers List (dev@tomcat.apache.org) Subject: When to notify of changed session IDs? >After discussing with Mark T, I'm working on impl

RE: When to notify of changed session IDs?

2013-02-12 Thread Williams, Nick
-Original Message- From: Rainer Jung [mailto:rainer.j...@kippdata.de] Sent: Tuesday, February 12, 2013 3:07 AM To: dev@tomcat.apache.org Subject: Re: When to notify of changed session IDs? >On 12.02.2013 06:03, Williams, Nick wrote: >> I have attached a diff file for my changes,

RE: When to notify of changed session IDs?

2013-02-12 Thread Williams, Nick
-Original Message- From: Rainer Jung [mailto:rainer.j...@kippdata.de] Sent: Tuesday, February 12, 2013 4:32 AM To: dev@tomcat.apache.org Subject: Re: When to notify of changed session IDs? >>On 12.02.2013 06:03, Williams, Nick wrote: >>I tried to run all of the Junit tests

RE: When to notify of changed session IDs?

2013-02-12 Thread Williams, Nick
-Original Message- From: Greg Turnquist [mailto:greg.l.turnqu...@gmail.com] Sent: Tuesday, February 12, 2013 8:14 AM To: Tomcat Developers List Subject: Re: When to notify of changed session IDs? >An alternative idea would be to checkout another copy of svn, pointed at the >version where

RE: When to notify of changed session IDs?

2013-02-12 Thread Williams, Nick
-Original Message- From: Williams, Nick [mailto:nicholas.willi...@ul.com] Sent: Tuesday, February 12, 2013 12:54 PM To: Tomcat Developers List Subject: RE: When to notify of changed session IDs? >>An alternative idea would be to checkout another copy of svn, pointed at the >