RE: reloading issue SOLVED

2001-03-21 Thread Ali Ozoren
As Craig pointed out, I moved to Tomcat/4 beta and reloading issue is solved. Changes to actions and action forms are refreshed automatically by Tomcat itself. A tip for Jbuilder, instead of compiling and copying class files, just change the output directory to ../WEB-INF/classes and

Re: bean: access to the session

2001-03-21 Thread hunkpapa
"Craig R. McClanahan" schrieb: On Fri, 4 Jan 1980, hunkpapa wrote: Hi, I've a problem with beans. I can use a bean with the writeTag and this works out well. But how can this bean access the session ? I want to read values I placed in the session to use them in the getter

Confusion : Usage of Struts

2001-03-21 Thread Tewathia, Atul
Title: Confusion : Usage of Struts I am new to struts. I have gone thru the theoretical part of struts and found the concept interesting. Even read thru some examples. But there are some doubts like... What happens to javascript validations? Where do we fit them in the comlete picture?

Re: Confusion : Usage of Struts

2001-03-21 Thread Jim Richards
What happens to javascript validations? Where do we fit them in the comlete picture? They don't happen at the moment. Part of the Struts 1.1 plan is to look at some forms of autogeneration of JavaScript validation. A few people have implemented their own system for this. Who takes care of

RE: Alternative Frameworks - continued

2001-03-21 Thread Jim Richards
At 10:25 PM 20/03/01 -0800, you wrote: Eric, Have you looked into ASP.net vs ...? The main problem there is that a lot of the development tools are beta, and finding an ISP that will host it is also difficult. It will be at least 12 months before it has settled down. -- Kumera - a new Open

RE: How do I really bypass the deficient of a HTM editor?

2001-03-21 Thread James Cook
It appears that bean:message makes this call at the end of its doStartTag() method: return (SKIP_BODY); while html:input makes this call: return (EVAL_BODY_TAG); I suppose that is forcing the error message to be displayed. Too bad since it really aids in prototyping to be able to

Re: getter methods ...

2001-03-21 Thread Maya Muchnik
Hi, I think you need to change or property name to view or change getter/setter and other stuff. See below in red. Maya "G.L. Grobe" wrote: I'm new to struts and trying to get my index.jsp to show up, but instead I get the following error: 500 Internal Server Error

Re: Confusion : Usage of Struts

2001-03-21 Thread Ted Husted
"Tewathia, Atul" wrote: What happens to javascript validations? Where do we fit them in the comlete picture? Client-side validation using Javascript is on the list for Struts 1.1. David Winterfeldt has a very nice start on a package that does this at

Re: Struts, Trubine, Velocity, Expresso

2001-03-21 Thread Maya Muchnik
You can find some analysis and comparison by searching, for example, "Velocity" or "Trubine" in our archieve emails. Muhammad Aamir wrote: Hi, I recently explored the Struts Application framework features and developed an small application using Struts. Recently I

iPlanet support

2001-03-21 Thread Cecil Pang
Will Struts run on iPlanet Applicaiton Server 6.0? I am using Struts on WebLogic 6.0 now but we will switch to iPlanet soon. Thanks.

Struts Action Graphs

2001-03-21 Thread Derek Longmuir
Title: Struts Action Graphs Hi everyone, I have created some XSL that takes the (old) action.xml and (new) struts-config.xml files and produces a graph showing the various forwards, forms, actions, etc. You can then use dot to convert the graph into an image. I threw together a website

Re: Locales and images

2001-03-21 Thread Maya Muchnik
I am trying to use this for different "look". But my principle is simple. In one application a.gif - is a blank, in other - it is some picture. And so on... Change your property file to point to a different directory for different "look". But in this approach you have one match between

Re: Confusion : Usage of Struts

2001-03-21 Thread Craig R. McClanahan
On Wed, 21 Mar 2001, Tewathia, Atul wrote: I am new to struts. I have gone thru the theoretical part of struts and found the concept interesting. Even read thru some examples. But there are some doubts like... What happens to javascript validations? Where do we fit them in the

Re: Error in struts-form.tld

2001-03-21 Thread Craig R. McClanahan
On Wed, 21 Mar 2001, Tewathia, Atul wrote: I get the following erroe on using the struts-form.tld in my program. Error also occurs for attribute 'isKey'. It works on removing those attributes from struts-form.tld. Is it okay if i continue doing so. I wonder where this will stop.

Re: Locales and images

2001-03-21 Thread Craig R. McClanahan
On Wed, 21 Mar 2001, Nick Afshartous wrote: On Tue, 20 Mar 2001, Maya Muchnik wrote: Can I put a.gif into the property file too, and have the second statement as this: html:image src="a.image"/ Or I can have html:image srcKey="a.image.dir"/ Craig R.

RE: Alternative Frameworks - continued

2001-03-21 Thread Eric Brown
You are locked into a single vendor solution with that. ASP does a really poor job of separating UI from business logic. I don't recommend it. -Original Message- From: malcolm davis [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 20, 2001 10:25 PM To: [EMAIL PROTECTED] Subject: RE:

ServletException: org/apache/struts/action/ActionForm

2001-03-21 Thread Manuel Alzola
Hello. I´m having a problem with a project I started modifying struts-example from beta 1.0 I renamed the webapp and changed the LogonAction and LogonForm to a different package. This classes are available under the directory /WEB-INF/classess. I also changed the package and class names in

Re: Locales and images

2001-03-21 Thread Maya Muchnik
1/ How about several files under A directory: B.properties B_en.properties B_de.properties B_fr.properties and so on... Can you see it, that you have a problem. 2/ How about a file name as extra init parameter that has names of all properties files that you want to "combine". But this becomes

workaround for weblogic5.1 cast exception doesn´t work for HP-UNIX

2001-03-21 Thread maarten ectors
We have no problems running Struts on out NT version of weblogic but despite all suggested fixes weblogic keeps throwing the class cast exception on out HP-UNIX version. To summarize: We did no put struts in the weblogic classpath. We did add to the web.xml the code to precompile JSPs We tried

Re: Struts, Trubine, Velocity, Expresso

2001-03-21 Thread Ted Husted
The best references for Struts, Turbine, and Velocity are probably: http://www.mail-archive.com/general@jakarta.apache.org/msg00495.html http://www.mail-archive.com/struts-user@jakarta.apache.org/msg03206.html and http://jakarta.apache.org/velocity/ymtd/ymtd.html There's also an

exception handling

2001-03-21 Thread s l
Is there a way to catch exceptions throw in bean's getter methods (so we don't have to see the stack trace on web page)? __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/

Re: bean: access to the session

2001-03-21 Thread hunkpapa
thx a lot, this was my question. :-) "Craig R. McClanahan" schrieb: On Wed, 21 Mar 2001, hunkpapa wrote: "Craig R. McClanahan" schrieb: On Fri, 4 Jan 1980, hunkpapa wrote: Hi, I've a problem with beans. I can use a bean with the writeTag and this works out well.

Re: Locales and images

2001-03-21 Thread Ken Beyer
Maya Muchnik wrote: 1/ How about several files under A directory: B.properties B_en.properties B_de.properties B_fr.properties and so on... Can you see it, that you have a problem. Yeah, it's abit of a problem. The "overridden" PropertyMessageResources would need to be smart enough

config String[] with Digestor

2001-03-21 Thread Steve A Drake
I'd like to initialize a String[] contained in an object with the Digestor (i.e. in a database.xml file). Can I do that? If so, what's the syntax? Thanks.

Re: exception handling

2001-03-21 Thread Incze Lajos
On Wed, Mar 21, 2001 at 02:23:38PM -0800, s l wrote: Is there a way to catch exceptions throw in bean's getter methods (so we don't have to see the stack trace on web page)? __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail.

Back Button,

2001-03-21 Thread Nick Pellow
Hello, I have developed my own struts web-app, that invloves a form and then a confirmation screen. There is validation done on the form, in the ActionForm's, validate() method. The following behaviour is occuring: 1) A user makes a number of errors (say 3) on the form and is returned to the

Tomcat question

2001-03-21 Thread Johan Compagner
Hi, One tomcat question for this list (i know there are some tomcat developers here) Why can't i find changes.html or something like that for the tomcat versions? You got now a 3.1.x branch (doesn't seem to be in development anymore) 3.2.x branch (still development 3.2.2 beta 1 as latest mile

Re: Tomcat question

2001-03-21 Thread Craig R. McClanahan
On Thu, 22 Mar 2001, Johan Compagner wrote: Hi, One tomcat question for this list (i know there are some tomcat developers here) Why can't i find changes.html or something like that for the tomcat versions? The short answer is that most folks don't take the time to do detailed release

RE: Tomcat question

2001-03-21 Thread Niall Pemberton
Johan, I'm using Tomcat Version 3.2.1 and the readme document had the following information on Tomcat versions. There isn't info about 3.2.2 3.3 there but probably if you download those versions there will be a readme explaining the changes. Besides the differences in functionality the other

Newbie question

2001-03-21 Thread Steven Williams
Hi, I am trying to get struts-example running on Orion Server 1.4.5 on Win2K. I moved the struts-config.xml file and changed web.xml as specified in the installation instructions but I still get an error when I try to access the application (see error log below). It seems that when the

Re: From action class perform straight to servlet?

2001-03-21 Thread Craig R. McClanahan
On Wed, 21 Mar 2001, Phillip Rhodes wrote: In the action class perform method, there is a return type of a ActionForward object. But I want to go straight to a servlet in this method (FOP, generating a PDF). (Wondering, can ActionForwards refer to servlets?) I know I can return a

Re: calling getter methods

2001-03-21 Thread Craig R. McClanahan
On Wed, 21 Mar 2001, G.L. Grobe wrote: I can see that for a radio tag, the property is the name of the bean that was mapped in the struts-config.xml file. But how does the getter method in the action form bean actually get called, or how does the app know which getter method to use? I

problem of newbie

2001-03-21 Thread JeanX
Hi struts-user, I have a problem , pls help me. I have a class that extended ActionMapping class . It has a BeanName property. And I config this property in struts-config.xml like below: action-mappings action path="/queryHots"

RE: problem of newbie

2001-03-21 Thread Nigel Ainslie
..maybe you have a case-sensitivity issue. Sounds like your bean property name should be "beanName" to allow methods "getBeanName" and setBeanName"? -Original Message- From: JeanX [mailto:[EMAIL PROTECTED]] Sent: Thursday, 22 March 2001 3:29 To: struts-user Subject: problem of newbie

Re: RE: problem of newbie

2001-03-21 Thread JeanX
Hi Nigel Ainslie, Ah yes . When I rewrite "BeanName" to "beanName" in struts-config.xml , it works good. Very thx. :=) ÔÚ 2001-03-22 15:39:00 ÄúдµÀ£º ...maybe you have a case-sensitivity issue. Sounds like your bean property name should be "beanName" to allow methods "getBeanName" and