Re: Struts 2 Twitter Bootstrap Plugin

2012-03-01 Thread Jeffrey Black
Thank you Lukasz. I didn't see it on the Plug-in page. Shall I add it? Best, JB On Mar 1, 2012, at 1:13 AM, Łukasz Lenart lukasz.len...@googlemail.com wrote: Here [1], enjoy :-) [1] http://code.google.com/p/struts2-bootstrap/ Regards -- Łukasz http://www.lenart.org.pl/ mobile

Re: Struts 2 Twitter Bootstrap Plugin

2012-03-01 Thread Łukasz Lenart
2012/3/1 Jeffrey Black jeffblac...@gmail.com: Thank you Lukasz. I didn't see it on the Plug-in page.  Shall I add it? It is up to Johannes Geppert, but he should not complain ;-) Regards -- Łukasz http://www.lenart.org.pl/ mobile +48 606 323 122, office +27 11 0838747 Warszawa JUG

Generate docx, odt report with Struts2 XDocReport Result

2012-03-01 Thread Angelo zerr
Hi Struts2 User, If you need to generate docx (MS Word), odt (OpenOffice) report with Struts2 (like Jasper), you can use XDocReporthttp://code.google.com/p/xdocreport/ where you can design your odt, docx report with MS Word or OpenOffice by using Velocity/Freemarker syntax to set fields to

Re: Validation doesn’t honor the bundle attribute in http://jakarta.apache.org/commons/dtds/validator_1_3_0.dtd

2012-03-01 Thread Jeffrey Black
Hi Joann, Can you please confirm what version of Struts you are using? You appear to be using Struts 2 for your application [1]; however it appears you are referencing Struts 1.x validation information. Perhaps I'm missing something? [1]

Re: Validation doesn’t honor the bundle attribute in http://jakarta.apache.org/commons/dtds/validator_1_3_0.dtd

2012-03-01 Thread joann luo
Hello, I am sorry about the confusion before. I searched web app's component.xml file and found the following, therefore, we are actually using Struts1.2.4 in this project. dependency name=prereqs.sn/struts.minimal type=jar version=1.2.4 / dependency name=prereqs.sn/struts.extra type=jar

Re: Validation doesn’t honor the bundle attribute in http://jakarta.apache.org/commons/dtds/validator_1_3_0.dtd

2012-03-01 Thread Dave Newton
You can't just update a validation DTD and expect everything to suddenly use a later version of the validation libraries. S1.2.4, AFAIK, uses validator 1.1.3. Hence all S1.2.4 code will be written assuming commons-validator 1.1.3. Capabilities introduced in later versions of commons-validator

Re: Validation doesn’t honor the bundle attribute in http://jakarta.apache.org/commons/dtds/validator_1_3_0.dtd

2012-03-01 Thread joann luo
Hello, Dave: Thanks for pointing this out. I am working on a customer issue reported from a project that we released quite a while ago. I won't be able to upgrade the struts JAR in this case. Since I have to stay with validator 1.1.3 is there any other way to provide customized error message

Re: Validation doesn’t honor the bundle attribute in http://jakarta.apache.org/commons/dtds/validator_1_3_0.dtd

2012-03-01 Thread Dave Newton
http://struts.apache.org/1.2.4/userGuide/dev_validator.html#i18n On Thu, Mar 1, 2012 at 4:02 PM, joann luo joannlu...@gmail.com wrote: Hello, Dave: Thanks for pointing this out. I am working on a customer issue reported from a project that we released quite a while ago. I won't be able to

struts 2 exception - SEVERE: Exception starting filter struts2

2012-03-01 Thread jay
I have created simple struts 2 app with latest struts2 jar files. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org

Re: struts 2 exception - SEVERE: Exception starting filter struts2

2012-03-01 Thread Dave Newton
We may need to know slightly more in order to help... Dave (pardon brevity and typos, on cell) On Mar 1, 2012 10:25 PM, jay rmani1...@yahoo.com wrote: I have created simple struts 2 app with latest struts2 jar files. - To

struts 2 - excepting starting filter

2012-03-01 Thread jay
I downloaded from google code Basic_Struts2_Ant and modified web.xml, added struts.xml and index.jsp along with log4j stuff according to instructions on struts website for this example. The app does not work on tomcat 7.0 I built with ant and deployed on tomcat jars I am using

Re: struts 2 - excepting starting filter

2012-03-01 Thread Dave Newton
What's in the startup log? Have you turned on devMode? Logging at debug level? IMO doing this via Ant will end up being a pain. IIRC there was done other issue with this particular project, too, although I'd have to dig to try to recall. Dave (pardon brevity and typos, on cell) On Mar 1, 2012

Re: struts 2 - excepting starting filter

2012-03-01 Thread jay
Here is log with the error jars I am using commons-fileupload-1.2.2.jar commons-io-2.0.1.jar commons-lang-2.5.jar commons-logging-1.1.1.jar commons-logging-api-1.1.jar freemarker-2.3.18.jar javassist-3.11.0.GA.jar ognl-3.0.4.jar struts2-core-2.3.1.2.jar xwork-core-2.3.1.2.jar log4j-1.2.14.jar

Re: struts 2 - excepting starting filter

2012-03-01 Thread Dave Newton
The error message says it all, you need to remove the struts/etc. libs you put in the tomcat lib directory and deploy only the application's copies. Dave (pardon brevity and typos, on cell) On Mar 1, 2012 11:16 PM, jay rmani1...@yahoo.com wrote: Here is log with the error jars I am using

Re: struts 2 - excepting starting filter

2012-03-01 Thread jay
Thanks for your help! I found a struts jar in my tomcat\lib folder Dave Newton davelnewton at gmail.com writes: The error message says it all, you need to remove the struts/etc. libs you put in the tomcat lib directory and deploy only the application's copies. Dave