Re: Problem with URL-Rewriting in WebSphere

2007-01-15 Thread Roberto Flores
If I manually take out the ;jsessionid=132mksvl213:-1 from the url the action is found (but the session is lost of course). There's something wrong with the URL parser but I don't know what it is or if it's a struts or websphere problem/ 2007/1/15, Gary VanMatre <[EMAIL PROTECTED]>: >From: "Ro

[S2] DWR Integration

2007-01-15 Thread Ted Husted
Has anyone tried the WW DWR integration with Struts 2? * http://getahead.ltd.uk/dwr/server/webwork -Ted. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [S2] Ajax form and file submission with s:a

2007-01-15 Thread Dariusz Wojtas
Thanks for the tips. Looks like string is the only option for now with timepicker. It's not a serious issue once you understand the limitation. Most of the issues that were really hurting me are gone. The most important issue is now the remote form submission problem ... Even simple remote forms

Re: [S2] Ajax form and file submission with s:a

2007-01-15 Thread Musachy Barroso
Sorry for the name misspelling :) musachy Musachy Barroso wrote: Dariouz There are two problems with the time picker tag, one is that xwork doesn't support dates in RFC3399 format (only the SHORT, MEDIUM and LONG from DateFormat), for that I attached a patch here: https://issues.apache.org

Re: [S2] Ajax form and file submission with s:a

2007-01-15 Thread Musachy Barroso
Dariouz There are two problems with the time picker tag, one is that xwork doesn't support dates in RFC3399 format (only the SHORT, MEDIUM and LONG from DateFormat), for that I attached a patch here: https://issues.apache.org/struts/browse/WW-1643 xwork was just released, so I don't think th

[ANNOUNCEMENT] Apache Tiles Top Level Project

2007-01-15 Thread Greg Reddin
The Struts team is pleased to announce that Tiles has been promoted to its own Top Level Project. This move will allow us to stabilize the development of the Tiles 2 framework and push it towards its first final release. The website for the new project has not yet been published so here are the

Re: [S2-ish] deploying exploded webapps with maven2 and cargo

2007-01-15 Thread Joe Germuska
On 1/12/07, Wendy Smoak <[EMAIL PROTECTED]> wrote: On 1/12/07, Joe Germuska <[EMAIL PROTECTED]> wrote: > (I sent the below to the cargo users list, but haven't gotten a response in > several days, so I'm going to be gauche and send it to struts; now that > Struts2 uses Maven2, some Struts folks

Re: [S2] Struts2 portlet app on JDK 1.4.2 - problem

2007-01-15 Thread Dariusz Wojtas
Thanks for the tip Taras. It finally started to work. It is important to use the -advanced switch as you advised. At first I forgot about it and it did not work. After using the switch it started and i could run my simple portlet. Yes, Struts2 portlets do work with Websphere Portal 6.0 (WAS 6

Re: Problem with URL-Rewriting in WebSphere

2007-01-15 Thread Gary VanMatre
>From: "Roberto Flores" <[EMAIL PROTECTED]> > > Greetings, > > I can't use cookies since this app is for cellphones. On Tomcat there's no > problem, but in WebSphere enabling only url-rewriting causes 404 errors on > every page transition. > > Upon further inspection, the jsessionid values g

Re: Export an image to MS Excel through Apache POI

2007-01-15 Thread Don Don
Hi You might want to give jasper reports a try. It can create anything you want... from reports to image generation and layout...to custom letters, templates etc and it exports into various formats e.g. word, excel, pdf, html, csv etc Anjishnu Bandyopadhyay <[EMAIL PROTECTED]> wrote: Hi all,

RE: [S2] Struts2 portlet app on JDK 1.4.2 - problem

2007-01-15 Thread Dave Newton
From: Taras Puchko [mailto:[EMAIL PROTECTED] > The ThreadLocal.remove() method should work if you translate Struts by > Retrotranslator 1.2.0 with the -advanced option. Ooo! I wish someone had posted this when I asked the same question. Now I'm locked in to S1 for yet another project :( :(

Export an image to MS Excel through Apache POI

2007-01-15 Thread Anjishnu Bandyopadhyay
Hi all, I am trying to write an application which will open an MS Excel sheet, and display an image in one of the cells. I am using Apache POI for opening, and populating values in the Excel sheet. Here, the image path will be somewhere in my server, or hard disk. Any pointers regarding the s

Re: Problem with URL-Rewriting in WebSphere

2007-01-15 Thread Roberto Flores
IBM WebSphere Application Server - Express, 6.0.0.1 2007/1/16, Nuwan Chandrasoma <[EMAIL PROTECTED]>: what is the WebShpere version you are using? Nuwan. - Original Message - From: "Roberto Flores" <[EMAIL PROTECTED]> To: Sent: Monday, January 15, 2007 9:44 AM Subject: Problem with UR

Re: Problem with URL-Rewriting in WebSphere

2007-01-15 Thread Nuwan Chandrasoma
what is the WebShpere version you are using? Nuwan. - Original Message - From: "Roberto Flores" <[EMAIL PROTECTED]> To: Sent: Monday, January 15, 2007 9:44 AM Subject: Problem with URL-Rewriting in WebSphere Greetings, I can't use cookies since this app is for cellphones. On Tomcat

Re: does Not handle exceptions in JSP file?

2007-01-15 Thread Nuwan Chandrasoma
Hi, you can use, normal jsp exception handling mechanism where you specify a error page and forward it to that eg:- <%@ page errorPage="ExceptionHandler.jsp" %> Thanks, Nuwan. - Original Message - From: "Liam Brady" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Monda

Re: [S2] dropdowndatetimepicker not working

2007-01-15 Thread Alexandre Mendonça Lima
Hi Musachy, I'll try to build version 2.0.3 . Thanks for you help! Alexandre - Original Message - From: "Musachy Barroso" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Friday, January 12, 2007 5:01 PM Subject: Re: [S2] dropdowndatetimepicker not working Hi Alexandre,

Re: [S2] Struts2 portlet app on JDK 1.4.2 - problem

2007-01-15 Thread Taras Puchko
Hi Dariusz! The ThreadLocal.remove() method should work if you translate Struts by Retrotranslator 1.2.0 with the -advanced option. But ensure your jars where not previously translated by Retrotranslator 1.1.0. Regards, Taras -

Problem with URL-Rewriting in WebSphere

2007-01-15 Thread Roberto Flores
Greetings, I can't use cookies since this app is for cellphones. On Tomcat there's no problem, but in WebSphere enabling only url-rewriting causes 404 errors on every page transition. Upon further inspection, the jsessionid values generated by WebSphere are drastically different than the ones us

Re: does Not handle exceptions in JSP file?

2007-01-15 Thread Liam Brady
good question - no answer? On 10/13/06, Mississippi John Hurt <[EMAIL PROTECTED]> wrote: I know setting this will handle exceptions from struts actions, but say an action forwards to a jsp, then in the jsp file you get an exception. How can you catch those exceptions? I need to use the web.xm

[S2] Struts2 portlet app on JDK 1.4.2 - problem

2007-01-15 Thread Dariusz Wojtas
I know this is rather a problem with xwork on 1.4.2, but on the nightly builds page there is statement to report problems of S2 retroweaved to 1.4. I downloaded the latest nightly JAR files (api, core, spring, xwork.2.0), retroweaved them using retrotranslator 1.1.0 and deployed it all (+ retrotr

Re: What is the Struts2's Roadmap?

2007-01-15 Thread Don Brown
On 1/14/07, Allen Young <[EMAIL PROTECTED]> wrote: Hi all, I'm want to know the roadmap of struts2, because I have a project in the short future and I want to see if I can use struts 2.0.2 or later. The "Zero Configuration" and "RESTful URL" are the most attractive features and I really want to