AW: Handle dynamic contents using map backed form

2003-12-11 Thread Oliver Thiel
approach? Thanks Oliver Thiel -Ursprüngliche Nachricht- Von: Sharad Acharya [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 11. Dezember 2003 05:47 An: [EMAIL PROTECTED] Betreff: Handle dynamic contents using map backed form Hi all; From Ted and others comments, it looks like some

AW: XML Resource Bundle

2003-12-12 Thread Oliver Thiel
Hi Chris, Take a look at: http://it.cappuccinonet.com/strutscx/index.php StrutsCX is Struts with XSLT - as alternative to JSP. StrutsCX overcomes the limitations of the Struts Framework by enabling you to utilize XML, XSLT, and XPath technologies instead of its standard JavaServer Pages. They

AW: [OT] Best HTML book for Beginners

2003-12-12 Thread Oliver Thiel
Hi Craig, I would recommend: creative html design.2 (2nd Edition) by Lynda Weinman (Author), William Weinman (Author) http://www.htmlbook.com/ An easy to read step-by-step guide. Another opportunity would be the video ;) Learning HTML CD-ROM

AW: Flash Flex w/ Struts article

2003-12-17 Thread Oliver Thiel
Read the article ;) http://blueprints.macromedia.com/PetMarket/flashstore.html Doesn't look to bad ... Oliver -Ursprüngliche Nachricht- Von: Daniel Joshua [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 17. Dezember 2003 09:11 An: 'Struts Users Mailing List' Betreff: RE: Flash Flex w/

Re: Possible to add or change Validatorrules at runtime?

2003-12-18 Thread Oliver Thiel
Hi Martin, I try achieve something comparable. But I did not use the xml validation, cause as far as I know you have to reload the xml files - which means you have to change the web.xml timestamp so that the server is aware of the change and reloads . bla bla. Here you are two articles

bean:write AND logic:iterate

2003-12-27 Thread Oliver Thiel
Hi @ll; In my Form I define an Array, which contains some message resource keys. I'm able to print out the values, but what I want to archive is that it prints out the value from the application resource properties and also I wanted to use an logic:iterate to print them out, so it should be

bean:write AND logic:iterate

2003-12-27 Thread Oliver Thiel
Hi, In my Form I define an Array, which contains some message resource keys. I'm able to print out the values, but what I want to archive is that it prints out the value from the application resource properties and also I wanted to use an logic:iterate to print them out, so it should be

AW: *.do mapping using JRun

2004-01-01 Thread Oliver Thiel
Hi Mike, Have you updated the web.xml file? !-- Action Servlet Mapping -- servlet-mapping servlet-nameaction/servlet-name url-pattern*.do/url-pattern /servlet-mapping According to the 'Fast Track Struts' book by Vic Cekvenich the “/*.do” pattern for the action servlet could cause difficulties

[OT] Stress Test Tool

2004-01-01 Thread Oliver Thiel
Did anyone know a good tool for stress testing a struts app? I already tried dieseltest_1_0_21, jakarta-jmeter-1.9.1, jspider-0.5.0-dev, Microsoft Web Application Stress Tool but none of these tools fits my needs. Why is search for a stress test tool? 1. I wrote a simple registration form,

AW: ServletMapping for ActionServlet and firewalls

2004-01-08 Thread Oliver Thiel
Hi Matthias, Book: Struts Fast Track Major contributions by: Vic Cekvenich Copyright: 2002 BaseBeans Engineering Page: 74 NOTE: Noticed that I modified the url-pattern for the “action” servlet-name to “/do/*”. Struts normally has the “/*.do” pattern for the action servlet but I’ve had

iterate DynaActionForm values from a HashMap

2004-01-10 Thread Oliver Thiel
Hi all, I have some troubles out print some DynaActionForm values from a map - using the iterate tag! Can anyone help me? Thanks Oliver CreateForm: DynaActionForm mappedForm2 = (DynaActionForm) form; HashMap mappedForm = new HashMap(); mappedForm.put(username, );

AW: iterate DynaActionForm values from a HashMap

2004-01-10 Thread Oliver Thiel
elegant ways of achieving what you want. input name=bean:write name=mappedForm property=key / type=text On 10 Jan 2004, at 15:51, Oliver Thiel wrote: Hi all, I have some troubles out print some DynaActionForm values from a map - using the iterate tag! Can anyone help me? Thanks Oliver

Real Dynamic Forms - Using DynaBeans MapBackedForms

2004-01-12 Thread Oliver Thiel
Hi @all, I am relative new to Strut, but I have to | want to do a struts project for my studies at the university of applied science. I try to build a 'real' dynamic registration form using DynaBeans and Maps (all HashMaps will be filled by a database call later). What I have so far is:

AW: All values null after Validate

2004-01-15 Thread Oliver Thiel
Hi Søren, IF you use [extends ActionForm] you can use: input type=text name=username value=bean:write name=basicForm property=username / (in your jsp) OR: IF you use [extends ValidatorForm] you can use: html:text property=username/ (in your jsp) Hope that helps Oliver -Ursprüngliche

Collection problem - for dynamic content with MapBackedForms

2004-01-16 Thread Oliver Thiel
Hi all! I still try to implement a ,real' dynamic form. So far I can build the Form dynamically. Perform the validation dynamically. All changes can be made by adding or deleting a database field. So you don't have to edit the jsp or java files to change the form. But at the moment this things

Tomcat -- IBM WebSphere Application Server 4.x

2004-01-16 Thread Oliver Thiel
Hi all, I use the StrutsStudio (based on eclipse) to develop my Struts app. The StrutsStudio uses Ant to build the WAR file. If I deploy my app in Tomcat anything works fine, but I am not able to use my WAR file within the WAServer from IBM. There I always get a massage that this is not an

AW: Tomcat -- IBM WebSphere Application Server 4.x

2004-01-16 Thread Oliver Thiel
this myself. Perhaps the IBM website can help you out. re Jaap -Original Message- From: Oliver Thiel [mailto:[EMAIL PROTECTED] Sent: Friday, January 16, 2004 11:37 To: [EMAIL PROTECTED] Subject: Tomcat -- IBM WebSphere Application Server 4.x Hi all, I use the StrutsStudio (based

AW: AW: Tomcat -- IBM WebSphere Application Server 4.x

2004-01-16 Thread Oliver Thiel
Oliver Thiel [EMAIL PROTECTED] 16/01/04 14:18 Please respond to Struts Users Mailing List [EMAIL PROTECTED] To [EMAIL PROTECTED] cc Subject AW: Tomcat -- IBM WebSphere Application Server 4.x Thanks for your replay! But that was not exactly what I was looking for ;) Maybe my description wasn't

bean:message WITH bean:write ?!?

2004-01-19 Thread Oliver Thiel
Hi all, In my HashMap (which defines the form) I save something like that: setField(username, oliver); Know I want to the output of the message to be dynamic. For a static version this works fine: bean:message key=form.username/ For a dynamic version I think I need some thing like that:

AW: bean:message WITH bean:write ?!?

2004-01-19 Thread Oliver Thiel
. Its just a quick hack of the struts code. Greetings Jimmy -Original Message- From: Oliver Thiel [mailto:[EMAIL PROTECTED] Sent: maandag 19 januari 2004 9:14 To: [EMAIL PROTECTED] Subject: bean:message WITH bean:write ?!? Hi all, In my HashMap (which defines the form) I save

AW: bean:message WITH bean:write ?!?

2004-01-20 Thread Oliver Thiel
key. but you cannot combine the two. What i have done is to extend the bean:message tag to implement this kind of functionality. Let me know if you are interested in the code. Its just a quick hack of the struts code. Greetings Jimmy -Original Message- From: Oliver Thiel [mailto

LDAP + DataSource

2004-01-23 Thread Oliver Thiel
Hi all, Is it possible to set up a DataSource for LDAP? If yes how can I do this? And how do I retrieve a connection? Thanks Oliver

AW: LDAP + DataSource

2004-01-23 Thread Oliver Thiel
(http://www.onjava.com/pub/a/onjava/2001/05/21/jndi.html) HTH, Ian Oliver Thiel thiel.oliver@ To: [EMAIL PROTECTED

DynaBean -HashMap

2004-01-25 Thread Oliver Thiel
Hi all, I created some sort of mapBacked form. First I defined my DynaBean in the Struts config. Then I call an Action which fills the HashMap with data. Then I display the form (JSP) and forward it to an DynaActionForm and try to validate it. BUT I'm not able to get the data! ANY IDEAS

session timeout -- time limit

2004-01-30 Thread Oliver Thiel
Hi all, where can I set a time limit for a session? I want the session's to be invalid after 10 minutes! How can i archive this? Thanks Oliver -- +++ GMX - die erste Adresse für Mail, Message, More +++ Bis 31.1.: TopMail + Digicam für nur 29 EUR http://www.gmx.net/topmail

[SOLVED] RE: session timeout -- time limit

2004-01-30 Thread Oliver Thiel
, in seconds, between client requests before the servlet container will invalidate this session. A negative time indicates the session should never timeout -Original Message- From: Oliver Thiel [mailto:[EMAIL PROTECTED] Sent: Friday, January 30, 2004 11:31 AM To: [EMAIL PROTECTED

AW: Navigating back

2004-02-01 Thread Oliver Thiel
Hi Sudhakar, If you can/want use JavaScript: html:link href=javascript:history.back() titleKey=back.title previous page /html:link Oliver -Ursprüngliche Nachricht- Von: Namasivayam, Sudhakar (Cognizant) [mailto:[EMAIL PROTECTED] Gesendet: Sonntag, 1. Februar 2004 11:30 An:

AW: action executed and input ignored (?)

2004-02-01 Thread Oliver Thiel
Hi Timo, If you want to load search.jsp just call it from another jsp with html:link href=search.jspSearch/html:link (or use a global forward or what ever you like ...) In your search.jsp you probably should have something like that: html:form action=search.do : : /html:form which calls the

Global Variable - SetupServlet

2004-02-05 Thread Oliver Thiel
Hi all, I wrote a struts app with database 'driven' forms using iBatis. For this purpose I wrote a 'SetupServlet' which creates some LinkedHashMaps e.g. register == {username=, password=, ..} and sets them into the Servlet Context servletContext.setAttribute(register, register); In the

REPOST: Global Variable - SetupServlet

2004-02-05 Thread Oliver Thiel
My mail client seams to make trouble, so I repost my mail. SORRY if you get it twice! -Ursprüngliche Nachricht- Von: Oliver Thiel [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 5. Februar 2004 17:06 An: '[EMAIL PROTECTED]' Betreff: Global Variable - SetupServlet Hi all, I wrote

SOLVED AW: Global Variable - SetupServlet

2004-02-05 Thread Oliver Thiel
. Then you fetch that global object and give it to request2... where (should be obvious why, by now) you will see the stuff done in request1... hth Alexander -Original Message- From: Oliver Thiel [mailto:[EMAIL PROTECTED] Sent: Donnerstag, 5. Februar 2004 17:06 To: [EMAIL PROTECTED

logic:notMatch - TagLib

2004-02-08 Thread Oliver Thiel
Hi @all, I iterate over a HashMap (mapped) to create my (register) form. logic:iterate id=field name=mapped input type=text name=field(bean:write name=field property=key /) value=bean:write name=field property=value / /logic:iterate Now I want some of the input fields to be text and

Re: Struts and XSL ?

2004-02-09 Thread Oliver Thiel
Hi Andrew, StrutsCX is Struts with XSLT - as alternative to JSP. StrutsCX overcomes the limitations of the Struts Framework by enabling you to utilize XML, XSLT, and XPath technologies instead of its standard JavaServer Pages. http://it.cappuccinonet.com/strutscx/index.php I just took a

Struts Tag

2004-02-09 Thread Oliver Thiel
Hi, does anyone know a tag like logic:Match or logic:equals beside that it should be able to handel more than one property! thanks Oliver -- GMX ProMail (250 MB Mailbox, 50 FreeSMS, Virenschutz, 2,99 EUR/Monat...) jetzt 3 Monate GRATIS + 3x DER SPIEGEL +++ http://www.gmx.net/derspiegel +++

SOLVED RE: Struts Tag

2004-02-09 Thread Oliver Thiel
Thanks Shirishchandra and Tim! The JSLT Tag works fine for me. does anyone know a tag like logic:Match or logic:equals beside that it should be able to handel more than one property! Use the JSTL c:if test=... tag. You can use a quite complex expression involving as many variables as

AW: Orkut

2004-02-09 Thread Oliver Thiel
... me too ... thanks! -Ursprüngliche Nachricht- Von: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 10. Februar 2004 00:22 An: Struts Users Mailing List Betreff: RE: Orkut add me too :-) -R -Original Message- From: Babu, Bharathi [mailto:[EMAIL

Re: Dynamic generation of forms out of a config table in a database

2004-02-11 Thread Oliver Thiel
Hi Tom I use a quite similar approach, beside that I don`t use DynaActionForms, cause I read about some drawbacks (e.g. performence). Never the less what I did is I added a validation table (id/regexp). In my config-table I connect every form item to a regular expression. I then use IBatis to

AW: [OT] - Request against Session

2004-02-11 Thread Oliver Thiel
Hi Pani, I store the registration values in a DTO/VTO and put them in session scope. For the registration process the session is (called: REGISTER:), when the registration process is completed I invalid this session and create a new session (called: USER), which is necessary to see the other

Re: Using a java.util.List with a HTML:SELECT

2004-02-13 Thread Oliver Thiel
Hi, You can try something like this: 1. Instead of return r --- request.setAttribute(formprop,r); 2. In your JSP select name=formprop logic:iterate id=field name=formprop option value=bean:write name=field property=formprop[]/bean:write name=field property=formprop[]//option

[OT] Display TagLib Struts

2004-02-14 Thread Oliver Thiel
Hi, did anyone use the Display TagLib [www.displaytaglib.org]? And can guide my - BETTER - send me some sample code on how to use it with struts! I got the examples running in my struts app - using the provided TestList's, but as soon as I start creating my one from a resultSet I got some

Re: [OT] Display TagLib Struts

2004-02-15 Thread Oliver Thiel
expecting now. Only one bug i saw till now, if cell value has character in it. But i will work with that So, what kind of error you have, what you want to do ?? - Original Message - From: Oliver Thiel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, February 14, 2004 11:38 AM

Re: persistent data storage - the right way

2004-02-15 Thread Oliver Thiel
Hi, you can use iBatis [http://www.ibatis.com/] and take a look at this example/tutorial: http://www.reumann.net/do/struts/ibatisLesson1 (using: Struts - DAO - iBatis ) I think this is what your looking for. Oliver hello, i have been looking (in vain) for a description how to implement

[OFFLIST]

2004-02-17 Thread Oliver Thiel
: java.lang.NoSuchMethodError:org.apache.commons.collections.Ite ratorUtils .arrayIterator Any leads to the same would be useful. Thanks and Regards Unmesh N -Original Message- From: Oliver Thiel [mailto:[EMAIL PROTECTED] Sent: Sunday, February 15, 2004 6:00 PM To: Struts Users

[OT] WSAD problems with Struts

2004-03-26 Thread Oliver Thiel
Hi, I read that some of you had some problems to run Struts apps on WSAD and as I run into that problem too i wanted to know how you solved it! I as far as I understand some turned of different validations including the on concerning Struts, but where couldn't fide the right place to do that!

Re: [OT] WSAD problems with Struts

2004-03-26 Thread Oliver Thiel
is controlled through the menu option Window Preferences Validation Susan Bradeen Oliver Thiel [EMAIL PROTECTED] wrote on 03/26/2004 08:09:34 AM: Hi, I read that some of you had some problems to run Struts apps on WSAD and as I run into that problem too i wanted to know how you