Forwarding to the same page

2001-02-08 Thread Kishore Subramanian
-Original Message- From: Kishore Subramanian Sent: Wednesday, February 07, 2001 2:41 PM To: '[EMAIL PROTECTED]' Subject: Forwarding to the same page Hi, Is there a way for an Action class to find out which page/action called it ? Iam faced with a problem where the Action class

How set array of properties?

2001-02-08 Thread Michael Grushko
Hello! I want to show in my JSP some table. Number of rows form dynamically. Each row have checkbox with unique value created dynamically. How I can set properties in corresponding JavaBean automatically (not using request.getParameterValues("some_name")). Michael Grushko, RedStar Software.

AW: Forwarding to the same page

2001-02-08 Thread Seeberger, Heiko
Hi, in the ActionMapping definition there is a property "input page" which can be retrieved by the method ActionMapping.getInput(). This string can be used to create an ActionForward to the original page, which is to be returned by the perform method of your Action implementation. Bye Heiko

Re: Ted's FAQ What Web sites are already Powered by Struts?

2001-02-08 Thread Ted Husted
I believe I've added the Powered by Struts sites submitted to this thread so far. Thanks so much! I've also fleshed out more of the "kickstart" FAQ at http://husted.com/about/struts/kickstart.html . There are still three questions on my list, in case anyone wants to jump in. + What

Using custom tags

2001-02-08 Thread Dinu Jose
Title: Using custom tags Hello, Could you please help me in find the following: source code containing the textarea custom tags Thanks in advance Dinu

Re: Using custom tags

2001-02-08 Thread Peter Alfors
check in the nightly build source download: http://jakarta.apache.org/struts/index.html Dinu Jose wrote: Hello, Could you please help me in find the following: source code containing the textarea custom tags Thanks in advance Dinu begin:vcard n:; x-mozilla-html:FALSE org:BRIMG

Re: which development tool to use?

2001-02-08 Thread Steven D. Wilkinson
Dan, You still have the negative comment about Struts and weblogic. It would be nice if you corrected that before doing whatever it is your going to do with this massive thing. I believe the

Extract XML submission from another Delphi server?

2001-02-08 Thread Deping Chian
This may be a little off topic for struts. I want my JSP/struts page to accept XML data submission from another server written in Delphi/windows. I know only XML data has been sent, but I just can not get it from JSP. I tried: StringBuffer sb = new StringBuffer();

Re: Using custom tags

2001-02-08 Thread Thierry Cools
Title: Using custom tags Hi, before I evaluated UltraDev, I spent some time with HomeSite 4.5. It's true that it seems to be easier than UltraDev, but the last one is more powerful. I think that the power of Ultradev is to offer translators that will directly recognize the tags in WYSIWYG

RE: Ted's FAQ What Web sites are already Powered by Struts?

2001-02-08 Thread Dan Cancro
I'd like to hear what you have to say about Visual Slick Edit, or any other tools you use. I'm collecting this sort of thing. Dan -Original Message- From: Emaho, Ghoot [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 08, 2001 6:05 AM To: '[EMAIL PROTECTED]' Subject: RE: Ted's FAQ

Re: Using custom tags

2001-02-08 Thread Craig R. McClanahan
Peter Alfors wrote: check in the nightly build source download: http://jakarta.apache.org/struts/index.html Specifically, the source code for the html:textarea tag is "org.apache.struts.taglib.html.TextareaTag", which also has several superclasses in the same package. The textarea tag is

struts-config_1_0.dtd Question

2001-02-08 Thread Josh
The struts-config_1_0.dtd file does not contain any constraints for describing the details of a form bean. This information is supposed to be used by the Digester to create the ActionFormBean classes. Is this functionality available at this point? Thanks, Josh

Re: Struts client

2001-02-08 Thread Craig R. McClanahan
Matthias Maisch wrote: Hallo, ist there a way to use an Applett as client for a server with a Struts framework? Thanks for all answers Matthias Sure ... the applet can use java.net.HttpURLConnection to send its own requests to the controller servlet, and receive the response. There are

ActionServle Question?

2001-02-08 Thread Josh
The ActionServlet seems to be keeping a lot of state data. It is keeping collections of Action and ActionFormBean objects. When one of these objects is instantiated the ActionServlet holds onto it. Is only one copy of these objects kept for the entire application or are these objects kept per

Re: Forwarding to the same page

2001-02-08 Thread Kishore Subramanian
Hi, Is there a way for an Action class to find out which page/action called it ? Iam faced with a problem where the Action class should perform its work and forward the page back to callee page. Note - I cannot add any "forward" tags to this Action mapping because this Action is part

RE: which development tool to use?

2001-02-08 Thread Dan Cancro
Title: RE: which development tool to use? Thank you so much for checking this out. I greatly appreciate both negative and positive feedback. I suppose I forgot to emphasize how out of date and incomplete this little reference was. It was assembled by plunking in comments as I read or hear

RE: which development tool to use?

2001-02-08 Thread Malcolm Davis
Steve. 1. I agree on your comments about JBuilder 4. Great product. 2. weblogic is not the only servlet container with problems. After working with iPlanet and JRun, I am in the conclusion that most likely all containers have 'issues'. I agree that having 'issues' and being a 'hack' are two

Re: Ted's FAQ What Web sites are already Powered by Struts?

2001-02-08 Thread David Winterfeldt
+ What development tool should I use? I like UltraEdit if you're on Windows as a editor. It is pretty light, but it does syntax highlighting for java, jsp, html, perl, sql, c++, etc. Opens any file (binary, text, unix-dos-windows line returns and file types) and can open files through FTP. It

RE: Ted's FAQ What Web sites are already Powered by Struts?

2001-02-08 Thread jbirchfield
I have been hooked on Visual Slickedit since I tried it. I have been a long time lemmy/vi fan, and Slickedit is a dream come true for me. It has near perfect emulation of vi, and I love the autocomplete/symbol viewer that comes with it. James Birchfield Ironmax a better way to buy, sell and

RE: struts-config_1_0.dtd File question

2001-02-08 Thread Mike Campbell
Title: RE: struts-config_1_0.dtd File question A form bean that you write (that is, a subclass of ActionForm) need only conform to the requirements of the JavaBeans Specification -- particularly the requirements for a no-arguments constructor and the design patterns for property

Re: which development tool to use?

2001-02-08 Thread Steven D. Wilkinson
Malcolm Davis wrote: 3. Do you have a preference on Tag editors/creators? I'm looking for something that creates/edit tags like I would a bean. Does JBuilder Enterprise do this and I'm just missing something? I only have JBuilder4 Professional, so I don't know what else the Enterprise

Re: ActionServle Question?

2001-02-08 Thread Craig R. McClanahan
Josh wrote: The ActionServlet seems to be keeping a lot of state data. It is keeping collections of Action and ActionFormBean objects. When one of these objects is instantiated the ActionServlet holds onto it. Is only one copy of these objects kept for the entire application or are these

RE: struts-config_1_0.dtd File question

2001-02-08 Thread Ted Husted
http://java.sun.com/products/javabeans/docs/ *** REPLY SEPARATOR *** On 2/8/2001 at 5:42 PM Mike Campbell wrote: Can someone point me to the spec doc for JavaBeans? I'm having a bit of trouble finding it on Sun's site. -- Ted Husted, Husted dot Com, Fairport NY USA. --

RE: which development tool to use?

2001-02-08 Thread Malcolm Davis
Steve. 1. I agree on your comments about JBuilder 4. Great product. 2. weblogic is not the only servlet container with problems. After working with iPlanet and JRun, I am in the conclusion that most likely all containers have 'issues'. I agree that having 'issues' and being a 'hack' are two

jaxp.jar in latest resin snapshot breaks struts

2001-02-08 Thread Andrew Boyko
The latest resin snapshot 2001-02-07 includes a new lib/jaxp.jar, with files dated 2-1-2001. With this jaxp.jar, the attached exception occurs when struts loads its configuration. Replacing resin/lib/jaxp.jar with jaxp.jar from a previous resin snapshot, 2001-01-26 (which jar contains files

More fixes for WLS 5.1 SP8

2001-02-08 Thread Matthias Kerkhoff
Hi all, attached are some fixes for bugs still left in Weblogic 5.1 SP8. Each of these bugs has been reported two or more months ago together with a proposed fix/solution/workaround. I really don't know why these fixes have not been included in SP8, but maybe BEA has some good reasons for

Redirect problem

2001-02-08 Thread Thierry Cools
Hi, I tried today the last nightly build of struts and test it on Weblogic 6.0 Everything seems to work fine now, except one last problem with the "RedirectTag", actually the code put in the ActionServlet class path = request.getContextPath() +