Re: Singleton vs ServletContext

2002-04-23 Thread Johannes Wolfgang Woger
Hi, since I will have to implement a database access, I would like to know what the problems are with PoolMan. And I would be happy to see that code too. Thanks in advance Wolfgang Kipnis, Adam schrieb: I wouldn't recommend Poolman since I have found it to be pretty problematic. As for the

Re: logic-tags related to beans not derived from ActionForm?

2002-04-15 Thread Johannes Wolfgang Woger
, April 15, 2002 1:25 PM To: [EMAIL PROTECTED] Subject: logic-tags related to beans not derived from ActionForm? Subject: logic-tags related to beans not derived from ActionForm? From: Johannes Wolfgang Woger [EMAIL PROTECTED] === Hallo, I need logic:equal/present etc. etc in my

Re: logic-tags related to beans not derived from ActionForm?

2002-04-15 Thread Johannes Wolfgang Woger
Thanks, missing comercial support is often a argument against open source software , some decition maker think that way. They should have visited this wonderfull newsgroup Wolfgang - Original Message - From: Maris Orbidans [EMAIL PROTECTED] Newsgroups: Struts Sent: Monday, April 15, 2002

Link in iterate

2002-04-11 Thread Johannes Wolfgang Woger
Hello, can anyone show me how to manage that I can do the following: under out_put there is an ArrayList of OutDataForms that take the records of a ResultSet. logic:interate id=myForm name=out_put scope=request type=org.apache.struts.example.OutDataForm bean:write

one Action with more ActionForms ?

2002-04-11 Thread Johannes Wolfgang Woger
Hi, a very newbee question, I know. Can one Action be assoziated with more ActionForms? like: action path=/needMore type=orgNeedMoreAction name=a_Form name=b_Form name=c_Form scope=request validate=false /action I am sure

Re: Link in iterate

2002-04-11 Thread Johannes Wolfgang Woger
Thank you, I tried it but an ServletException told me: Cannot find bean myFrom in scope null Everything was put into request scope, so at the moment it is displayed, myForm should still be alive. Any idea? Wolfgang this is a JSP limitation, not a struts limitation. Hopefully Struts will

Re: one Action with more ActionForms ?

2002-04-11 Thread Johannes Wolfgang Woger
Thank you Oliver, that sounds great. I have to handle two forms per Action. One form that acts as a designForm which tells the next JSP-side how to look like, depending on the roles of the currunt user and a workhorseForm to handle the data the user submits or wants to receive. I suppose the

Re: Connection pool behaviour

2002-04-05 Thread Johannes Wolfgang Woger
Hi, it turned out that my problem is not related to connnection pooling, it even appears with Class.forName(interbase.interclient.Driver); con = Drivermanager(url,user,passwd). An other strange behavior ocurrs. If I manually remove all data from the database, they all get written back with the

connection pool not refreshing

2002-04-04 Thread Johannes Wolfgang Woger
Hi, I have a small struts application that writes into and reads from an InterBase Database via an interclient jdbc driver. I tried both PoolMan and the DataSource provided by ActionServlet itself. In both cases the real state of the database is not shown up in the application if the table was

Re: Connection pool behaviour

2002-04-04 Thread Johannes Wolfgang Woger
:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 2:55 AM To: [EMAIL PROTECTED] Subject: Connection pool behaviour Subject: Connection pool behaviour From: Johannes Wolfgang Woger [EMAIL PROTECTED] === Hi, I notized that both PoolMan and struts-DataSource do not refresh their output from

html:link to Action

2002-04-02 Thread Johannes Wolfgang Woger
Hi, How can i bind a html:link to an Action derived class ? html:link action(or page)=/myAction dit not work Wolfgang -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Is anyone else having trouble with Tomcat 4?

2002-03-27 Thread Johannes Wolfgang Woger
Hi, I had this sort of problems too. I had servlet.jar in $JAVA_HOME/jre/lib/ext, Tomcat33a accepted it , Catalina not. I put it into $CATALINA_HOME/common/lib , it worked. Everytime I try to switch a webapp to Tomcat 4, I get exceptions. Since it works on Tomcat 3 I usually just switch back