Re: [OT] WSAD problems with Struts

2004-03-26 Thread Rouven Gehm
Which version of WSAD are you using ? I don't have problems with 5.0 + updates or 5.1. Rouven - Original Message - From: Oliver Thiel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 26, 2004 2:09 PM Subject: [OT] WSAD problems with Struts Hi, I read that some of you

[OT] Distribute a Struts Application on CD ??

2004-01-29 Thread Rouven Gehm
Just want to know if its possible to run Tomcat/Resin + Java + StrutsApplication from a CD ? If yes, what have i to do ? (Precompile the JSPs i think, but what more ?) Thanx Rouven - To unsubscribe, e-mail: [EMAIL PROTECTED]

[OT] WSAD Struts

2004-01-06 Thread Rouven Gehm
Just want to know if someone knows how to customize the templates for Actions and ActionForms, which are created by WSAD, when i add a new action in the struts-config.xml. As i now use Struts 1.2 Nightly Build, i get these annoying deprecated warnings for e.g. ActionErrors, ActionError ... I

Solved: Re: Problems with Tomcat and nested:iterate + jsp:include

2003-12-12 Thread Rouven Gehm
Thanx a lot, i have updated to the Struts 1.1 final version, i was first afraid to exchange it in WSAD cause WSAD causes sometimes very weird bugs. And now my application also works with Tomcat ;-) Rouven - Original Message - From: Arron Bates [EMAIL PROTECTED] To: Struts Users

Re: Validation: Problem with datePattern and JavaScript

2003-12-11 Thread Rouven Gehm
[mailto:[EMAIL PROTECTED] Sent: Tuesday, December 10, 2002 12:00 PM To: Struts Users Mailing List Subject: Re: Validation: Problem with datePattern and JavaScript Hi, Do u have an example of using validate-rules.xml in a JSP file. Thanks - Original Message - From: Rouven Gehm [EMAIL

Re: Problems with Tomcat and nested:iterate + jsp:include

2003-12-11 Thread Rouven Gehm
Well the WSAD build in version, which is 1.1beta2. But is it a Struts problem, cause why does it work with Resin WSAD, but not with Tomcat ??? Thanx Rouven - Original Message - From: Arron Bates [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday,

Problems with Tomcat and nested:iterate + jsp:include

2003-12-10 Thread Rouven Gehm
Hi there, hope someone has a clue, why this doesn't work with Tomcat, but works with Resin : I have a tile, where i want to show a treelike menu based on the monkey example for the struts-nested taglibs, see my code at the bottom. On the Resin and WSAD server, the tree is shown correctly, but

Problem with Struts-Validation : datePattern and JavaScript

2003-12-08 Thread Rouven Gehm
I want to know if someone has updated the javascript code for the date validation in the validate-rules.xml ? Because the datePattern option, doesn't work correctly, only datePatternStrict will be validated. I have searched the user mailing list, for this problem, but have not found any

Re: [OT] Re: Printing PDF Files in java

2003-12-04 Thread Rouven Gehm
BTW what is a good tool, to create PDF with Java ? Thanx Rouven - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Validation: Problem with datePattern and JavaScript

2003-12-04 Thread Rouven Gehm
I want to know if someone has updated the javascript code in the validate-rules.xml, for the datePattern option ? Because the code i have from the Struts 1.1 zip only work with datePatternStrict !!! I have searched the user mailing list, for this problem, but not found any solution. Thanx

Re: Validator: Unwanted Client side AND Server side validation

2003-12-03 Thread Rouven Gehm
Well i have to set validate false of the action in the struts-config.xml, then i only have client side validation without submitting, but then i have to call the .validate Method in the action to do the server-side validation, if i disable JavaScript. Any more ideas to this problem ? -

Struts-Validator Websphere

2003-12-02 Thread Rouven Gehm
Hi, i'm working with WSAD 5.0 to program some webapps with the builtin Struts 1.1 Beta. Now i want to use the Struts Validator, but as the builtin WSAD Struts Version doesn't support it and doesn't give me a validator-rules.xml, i want to replace it with the latest Struts release. Does anyone

[OT] : FormatKey how to set a format

2003-11-21 Thread Rouven Gehm
Hi, its a little bit of topic, i have the problem, i want to show doubles on my jsps. I now use following format : #,## which works quite good, but it cuts of the 0 at the end. E.g. i have 17,56546546 it show 17,57 i have 17,50001 it shows 17,5 but i want 17,50. Is there another format i can use

Re: [OT] : FormatKey how to set a format

2003-11-21 Thread Rouven Gehm
Hi, it works not quite well, but if i actually have a 17,5 it still only shows 17,5 not 17,50. I can of course add 0.1 to 17,5 but thats hmm a hell of a hack. As i want to use it to show currencys, i wonder if i can use the NumberFormat.Field CURRENCY ??? Thanx - Original Message

Problems with search on the mail archive

2003-09-26 Thread Rouven Gehm
Just want to know why ? When searching on the struts user mail archive i get no results, but via google i get some ? I just searched for bean:write format to get some infos about how to set a format, but within the mail archive i got no results, with google i got some hits from the struts-user

What's the best way to do calculations ?

2003-09-10 Thread Rouven Gehm
Hi, well i just wonder, in which class i should do my calculations. E.g. : I have a JSP, where i have a form for input values, and output values. Now i can do the math within the validate Method of the according ActionForm, or i do it in the execute Method of the Action where i have access to

Three questions

2003-09-05 Thread Rouven Gehm
Hi, i'm new to Struts and have some minor questions which haven't been answered by Dr. Google, book or tutorial i've found and done so far, so maybe someone here can give me a fast answer. I've started working on a small application, where i nearly try to use everything Struts offers me,