Re: What can you do with S2?

2008-06-17 Thread Al Sutton
How about a Jacking Struts Day? Dave Newton wrote: --- On Mon, 6/16/08, dusty [EMAIL PROTECTED] wrote: For sure, but since we are Java developers with a captial J, then we can call it something other than hackfest which suits the script kitties well. ;-) No thanks; as a founding

Re: What can you do with S2?

2008-06-17 Thread Dave Newton
--- On Tue, 6/17/08, Al Sutton [EMAIL PROTECTED] wrote: How about a Jacking Struts Day? That's... a little disturbing ;) Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: What can you do with S2?

2008-06-16 Thread Ian Roughley
I was thinking about this myself the other day. One of the interesting things that the ruby/rails community has (perhaps others, but ruby/rails seems to push it more) is the idea of a hackfest - a night(usually a few hours) or a weekend, where people get together to get something useful done.

Re: What can you do with S2?

2008-06-16 Thread dusty
PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/What-can-you-do-with-S2--tp17828202p17866472.html Sent from

Re: What can you do with S2?

2008-06-16 Thread Dave Newton
--- On Mon, 6/16/08, dusty [EMAIL PROTECTED] wrote: For sure, but since we are Java developers with a captial J, then we can call it something other than hackfest which suits the script kitties well. ;-) No thanks; as a founding member of The Society for Preserving the True Hacking Heritage

Re: What can you do with S2?

2008-06-15 Thread Al Sutton
I think it's more a case of Tomcat doesn't pass the jsessionid down to the filters webapp, whereas jetty does. The jsessionid is still appended onto the URL in the browser, but with Tomcat the app works, with Jetty the error occurs. Al. Wendy Smoak wrote: On Sat, Jun 14, 2008 at 3:48 PM,

Re: What can you do with S2?

2008-06-15 Thread Al Sutton
It's been pointed out to me that people couldn't see the full demo of lifefeed.info because registration was broken, but it's now fixed. Al. For those that are interested; OpenSuSE installs gnu-javamail when you install the tomcat55 package and symlinks to gnu-javamail from common-lib. This

Re: What can you do with S2?

2008-06-15 Thread Al Sutton
Many moons ago I started out using Tomcat, but moved to Jetty because I work with at a company along with Greg Wilkins and imho he had the righ attitude towards doing things (get it right rather than just get it out the door), and I had seen people encounter some problems with Tomcat (such as

Re: What can you do with S2?

2008-06-15 Thread Musachy Barroso
Yes, I just wasn't sure about the semicolon, but I guess it is fine. REST needs to be fixed then. musachy On Sun, Jun 15, 2008 at 1:31 AM, Wendy Smoak [EMAIL PROTECTED] wrote: On Sat, Jun 14, 2008 at 3:48 PM, Dave Newton [EMAIL PROTECTED] wrote: Not sure about WAS, but don't (at least) Tomcat

Re: What can you do with S2?

2008-06-14 Thread Al Sutton
Is it a REST thing or a Jetty thing? My view would be that as Jetty is adding the jsessionid Jetty should also recognize it, strip it off, and not pass it to the underlying webapp because it's part of the webapp magic of session to request mapping. Al. Musachy Barroso wrote: I just hit the

Re: What can you do with S2?

2008-06-14 Thread Musachy Barroso
I haven't looked into it yet, but I don't like how it uses a colon (;jsessionid=xwy), which might be valid, not sure. For the moment I am using glassfish, which starts really quick: https://maven-glassfish-plugin.dev.java.net/ musachy On 6/14/08, Al Sutton [EMAIL PROTECTED] wrote: Is it a REST

Re: What can you do with S2?

2008-06-14 Thread Frank W. Zammetti
Musachy Barroso wrote: I haven't looked into it yet, but I don't like how it uses a colon (;jsessionid=xwy), which might be valid, not sure. For the moment I am using glassfish, which starts really quick: https://maven-glassfish-plugin.dev.java.net/ musachy I don't think use of a semicolon

Re: What can you do with S2?

2008-06-14 Thread Dave Newton
PROTECTED] Subject: Re: What can you do with S2? To: Struts Users Mailing List user@struts.apache.org Date: Saturday, June 14, 2008, 2:05 PM Musachy Barroso wrote: I haven't looked into it yet, but I don't like how it uses a colon (;jsessionid=xwy), which might be valid, not sure

Re: What can you do with S2?

2008-06-14 Thread Wendy Smoak
On Sat, Jun 14, 2008 at 3:48 PM, Dave Newton [EMAIL PROTECTED] wrote: Not sure about WAS, but don't (at least) Tomcat and Resin do that (a) before it knows if cookies are enabled, and (b) if cookies aren't enabled? It's part of the Servlet spec. Tracking by cookies is required. If the

What can you do with S2?

2008-06-13 Thread Al Sutton
Well, OK, S2.1 (but the title wouldn't sound so catchy). A push is being made for a high quality 2.1 GA release, and in order to do this the codebase needs a jolly good thrashing in every way imaginable, and the best way of doing this is to write S2.1 apps (and don't worry, the codebase loves

Re: What can you do with S2?

2008-06-13 Thread Al Sutton
OK, small hitch atm, Jetty in it's infinite wisdom is adding a jsessionid to all requests which is screwing over the REST plugin argggh!! Al Sutton wrote: Well, OK, S2.1 (but the title wouldn't sound so catchy). A push is being made for a high quality 2.1 GA release, and in

Re: What can you do with S2?

2008-06-13 Thread Al Sutton
OK, Problem solved (switched to using apache and tomcat). Now, as I was saying... can you do better that http://www.lifefeed.info/ ? Al. Al Sutton wrote: OK, small hitch atm, Jetty in it's infinite wisdom is adding a jsessionid to all requests which is screwing over the REST plugin

Re: What can you do with S2?

2008-06-13 Thread Owen Berry
Just so you know that there is some kind of response to this; although I can't show you what I'm working on because it's an intranet type application for work, I am using version 2.1.2 and will file any bugs I come across. Actually, I've already filed one and it's already marked as fixed in 2.1.3.

Re: What can you do with S2?

2008-06-13 Thread Musachy Barroso
I just hit the same problem, I think the REST plugin doesn't handle that case very well. musachy On Fri, Jun 13, 2008 at 2:15 PM, Al Sutton [EMAIL PROTECTED] wrote: OK, Problem solved (switched to using apache and tomcat). Now, as I was saying... can you do better that