Re: Capturing response of dynamically generated form

2002-04-21 Thread Arron Bates
There's a tutorial to do just this... http://www.keyboardmonkey.com/pilotlight Arron. Don Saxton wrote: I put the form in session which effectively persists the structure until you get the response. I used nested tag so modifications are already made when response is received. My data

Struts and MyCGIServer

2002-04-21 Thread Alex Jones
Hello all, I'm trying to upload my Struts application to www.mycgiserver.com http://www.mycgiserver.com/ . Has anyone had any success in doing this? I have named my classes as they suggest but I do not know how to initialise the ActionServlet with the correct parameters without the web.xml

Re: How do I disable struts-validator on first call using the do

2002-04-21 Thread Reynaldo Timonera
I'm using session forms. I did some code to solve this problem, though I'm not sure if this is the best way: Before forwarding to the next page this code sets the mapping validate of the next page to false and then I just turn on validate in the next page's action class.

ActionForward to another Action bean

2002-04-21 Thread @Basebeans.com
Subject: ActionForward to another Action bean From: Harsh [EMAIL PROTECTED] === In Struts:Fast Track book, chapter 7 has explained how to pass data from one action bean to another. I am trying same thing except instead of using /do/* action servlet mapping I am using *.do Here is how my

Re: ActionForward to another Action bean

2002-04-21 Thread rob
I don't typically use *.do however. Struts Newsgroup (@Basebeans.com) wrote: Subject: ActionForward to another Action bean From: Harsh [EMAIL PROTECTED] === In Struts:Fast Track book, chapter 7 has explained how to pass data from one action bean to another. I am trying same thing except

Re: ActionForward to another Action bean

2002-04-21 Thread Reynaldo Timonera
Try placing a 'do' and the end of /searchresultaction: forward name=searchresultaction path=/searchresultaction.do/ - Original Message - From: Struts Newsgroup @[EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, April 21, 2002 11:55 AM Subject: ActionForward to another Action

Why form content is put into the url

2002-04-21 Thread Ingo Bruell
Hi, is ir normal that the parameters of a form are put into the url and the GET method is used ? Is it possible to use the POST method ? so long Ingo Bruell --- [EMAIL PROTECTED] [EMAIL PROTECTED] ICQ# 40377720 OldenburgPGP-Fingerprint: CB01 AE12 B359 87C4 BF1C 953C 8FE7 C648 169E E5FC

Using Global Forwards for all entry points to application?

2002-04-21 Thread jfc100
Hi, Can somebody please explain this suggestion (from the struts catalog) to me as I think I must be missing something. Here is the excerpt: Use Global Forwards for all entry points to application All links in the application should be to ActionMappings. Rather than embed the

JSPException: ActionMappings or ActionFormBeans collection

2002-04-21 Thread Shawn Catoe
I am getting the following error: javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection at org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:773) at org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:481) at

I have entered the struts twilight zone --

2002-04-21 Thread Team Gasoline
I am reposting my request for help regarding null 's showing up when my page is rendered. It is happening when i have validation errors returning to the page. The error message is showing up exactly how I want it, except for the fact that is surrounded by null ex: Password: |_|

Re: I have entered the struts twilight zone --

2002-04-21 Thread Adrian Brown
Hi Team Gasoline, I found that I had to change the ErrorsTag to fix this. Try changing the following lines in the doStartTag() method of org.apache.struts.taglib.hmtl.ErrorsTag // Render header iff this is a global tag or there is an error for this property boolean

Re: Re[2]: Why form content is put into the url

2002-04-21 Thread Joel Rees
Ingo Bruell clarified: No, that is not realy true, the doc says POST is the default. But if i set it explicitly to POST the Attributes are set also in the URL. I am using Struts1.1 Do you have cookies enabled in the browsers being used for test? I seem to recall that Tomcat will negotiate