RE: log4j integration

2004-01-27 Thread shankarr
Hi! In fact, I got two responses for the question as I had sent the same question twice. My mailbox was acting funny yesterday, so I had to send it twice. Well, I do have the log4j.properties file under /classes I had thought of using the PropertyConfigurator too. But, when you integrate log4j w

RE: constant url

2004-01-27 Thread Craig R. McClanahan
Quoting shankarr <[EMAIL PROTECTED]>: > Hi! > > Thanks for the response. > http://localhost:8081/log4jdemo/loginScreen.do is what I see in my url. > I would like to keep this a constant at http://localhost:8081/log4jdemo > only. > I am using both a href and html:link. > > But, even in cases wher

Reg: Exception handling through struts

2004-01-27 Thread satish ashok shukla
Hi, I am using the action errors to set the userdefinable description in the action class and setting it in the request so that the description can appear at the JSP using tag. My requirement is also to show the actual exception at the JSP how can I get this. Any pointers will be useful. Thank

RE: Disable validator framework

2004-01-27 Thread Patrick Cheng
Hi, I'm bringing up an old topic here regarding multipage form validation. In the example shown in the previous message, am I suppose to set validate="true" in struts-config? If yes, what's the value of the 'input' attribute, since there are multiple pages? Or should I set validate to false and cal

Antwort: AW: WebGroups & css

2004-01-27 Thread Manuel Lenz
After a restart of the server this version works. Thanks, Manuel

RE: log4j integration

2004-01-27 Thread Norm Deane
Do you mean changes made after the initial configuration of log4j? You can use PropertyConfigurator.configureAndWatch( cfgFile, delay ) This will load your log4j configuration file and create a thread that looks for changes to the config file reloading when necessary. --Norm -- Norm

RE: Problems Redirecting To Input Page After Vaildation Fails

2004-01-27 Thread Hubert Rabago
- resending: hope this doesn't end up as a duplicate - Another option would be to call the validate() method yourself and return the appropriate . add "validate=false" to your mapping, plus your forms as forwards so you can still configure them in your struts-config: - this way,

Re: form validation question

2004-01-27 Thread Geeta Ramani
Ok, maybe, I'd have to check into struts code to really be certain("input" surely has some significance is what i'm thinking..) So just for the heck of it though, what happens if you do say "/web/forms/orderForm.jsp" instead? Andy Kriger wrote: > OrderForm.do = /web/forms/orderForm.jsp > That

RE: Problems Redirecting To Input Page After Vaildation Fails

2004-01-27 Thread Van Riper, Mike
Ciaran, When all else fails, cut and paste. :-) Seriously, I don't know of a way to make the "input" value dynamic. I wish it could be done like tile definitions with one action mapping extending another, but, I know that is not supported. So, the simplest solution is to have two separate action

RE: Action mappings

2004-01-27 Thread struts fox
That fixed it!! Thanks. I was getting the application resource not found, which now obviously makes sense. Loving struts! "Gopalakrishnan, Jayesh" <[EMAIL PROTECTED]> wrote:Do you have web.xml configured with "/do" URLS going to struts. If so, your entry should be, Notice that the

RE: Re-deploying in JBoss3.2.3

2004-01-27 Thread Marc L. Veary
I generally explode the ear and war files creating a directory structure in the 'deploy' directory. I can then added and amend JSP's at will within the directory structure. If I have a new class or changed any of the xml's (struts-config, tiles-config) then I simply touch the application.xml and

RE: Problems Redirecting To Input Page After Vaildation Fails

2004-01-27 Thread Barnett, Brian W.
Personally, I would try to use the same page for add, update and delete, which would solve this problem. If this is not an option for you, you may have to deal with it in ClientAction. Remove the input attribute from your action mapping, add validate="false", and add a couple of forward elements.

Enter Key vs. Submit Button

2004-01-27 Thread Srinivas Kusunam
I have a .jsp page which submits through a post using SUBMIT button. If I type in a value for my one field and hit the submit button, all is well. If I type in a value and hit enter, I get an NullPointerException in my ActionForm as I am checking for which button is clicked using t

RE: Action mappings

2004-01-27 Thread Peter Abbot
Are you using something like .do for your servlet mapping in the web.xml to map requests to the ActionServlet. The forward "continue" you have defined for you action "/setUpEmployeeForm" needs to have the servlet mapping extension, so it should look something like: Cheers Pete -Origina

Re: Torque and Struts problem

2004-01-27 Thread Kris Schneider
BTW, if you can't use 1.4.2, a couple of workarounds to try: Introspector.setBeanInfoSearchPath(new String[] {}); or provide an org.ttemplating.internal.dataobjects.ComponentBeanInfo class. Quoting Kris Schneider <[EMAIL PROTECTED]>: > This appears to be fixed in Sun's 1.4.2. A quick test faile

RE: form validation question

2004-01-27 Thread Andy Kriger
orderForm was extending DynaValidatorForm. I changed this to DynaValidatorActionForm - now the form validates (though it shouldn't - there's a required field missing). Looks like I'm one step closer to a solution. Thank you for the idea. -Original Message- From: Barnett, Brian W. [mailto:

Problems Redirecting To Input Page After Vaildation Fails

2004-01-27 Thread Ciaran Hanley
Hello can anybody help me with this problem I'm having please? I am using the same action to perform two functions This is called as follows from 2 different forms: and The problem is that because I have input="/pages/addClient.jsp" ...that when a validation

Re: Validation Multiple Pages forward-Failure

2004-01-27 Thread Robert Lehner
Hello Matthias Wessendorf wrote: hi enter input="/myFormular.jsp" so validate goes back to formular there you can display action-messages (or even errors if you use) Yes this would work if I hade one JSP-Page, but I have (now) one Form(getter and setter methods), one ActionForm and seven JSP-

RE: form validation question

2004-01-27 Thread Andy Kriger
OrderForm.do = /web/forms/orderForm.jsp That shouldn't make a difference. I like to refer to actions rather than JSPs to minimize the number of things I have to change if a JSP changes to a different JSP or to another action. -Original Message- From: Geeta Ramani [mailto:[EMAIL PROTECTED]

Re: form validation question

2004-01-27 Thread Geeta Ramani
Andy: Any reason why you have the unusual "input" param..? type="MyClass" > name="orderForm" > validate="true" > input="/OrderForm.do" > scope="request"> > > > I woud have thought you'd use this instead: type="MyClass" >

RE: form validation question

2004-01-27 Thread Barnett, Brian W.
Your orderForm does extend ValidatorForm instead of ActionForm right? The struts validator plug-in relies on your forms extending ValidatorForm in order to do server-side validations. Out of curiosity, you may want to see if client-side validation works first. ... When the submit button is pr

Re: log4j integration

2004-01-27 Thread Geeta Ramani
Ritchie: Just make sure the log4j.properties is in your class path.. (like maybe right in your classes directory). that should do it.. Regards, Geeta shankarr wrote: > Hi! > I have integrated log4j with struts. > I need to know how to ensure that the changes done to log4j.properties file > is

RE: Action mappings

2004-01-27 Thread Gopalakrishnan, Jayesh
Do you have web.xml configured with "/do" URLS going to struts. If so, your entry should be, Notice that the path is the complete path with the prefix. Hope this helps -jayash -Original Message- From: struts fox [mailto:[EMAIL PROTECTED] Sent:

RE: form validation question

2004-01-27 Thread Andy Kriger
I see an empty page - no HTML, no nothing. It's as if the handoff to the input path never happens, even though the logging informs me that validation failed and the input path is being returned to. When you say 'a question of display not working right', what do you have in mind? -Original Mes

[OT] Re: populating session object

2004-01-27 Thread Guido García Bernardo
Maybe you can use the application scope: foo.Employees employees = (foo.Counter)getServletContext().getAttribute("employees"); if (employees == null) { employees = new foo.Employees(); getServletContext().setAttribute("employees", employees); } and then Be careful, because I am almost sure

RE: Validation Multiple Pages forward-Failure

2004-01-27 Thread Eric Bariaux
You need to have a value for the input attribute on your action mapping definition for your newUser action. When enabling validation, what struts does is that if validation fails, it does not give control to your action class but directly forwards to the target defined by the input attribute. So y

[OT] Re: log4j integration

2004-01-27 Thread Guido García Bernardo
This is OT. The word "struts" in a message is not the only thing it needs to be struts related... Try PropertyConfigurator.configureAndWatch, I think that is what you are searching for... You cand find a simple example at http://www.jguru.com/forums/view.jsp?EID=1130416 Un saludo, chicos. Guid

log4j with struts

2004-01-27 Thread shankarr
Hi! I am afraid I am sending this mail for the second time. Last time, I had pasted my code for some queries and I am yet to see the post. So here goes. I have integred log4j with struts1.1. I need to know how to ensure that if changes are done to log4j.properties file, they are taken into affect

RE: Action mappings

2004-01-27 Thread Barnett, Brian W.
What is the error when it "errors out"? -Original Message- From: struts fox [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 12:45 PM To: [EMAIL PROTECTED] Subject: Action mappings I t seems Struts lets you use action mappings that it figures out and forwards for you, but I have

populating session object

2004-01-27 Thread shankarr
Hello! Currently, in my design, I am using a DO class and a DOService class for my business logic. In my case, I make a db query to get a list of all employees. But, at the end, the result has to be set in a session or in a request object. Given a case where we have lots of users making a get, I

Dynamic form, initial value for String[] property?

2004-01-27 Thread Wendy Smoak
I'm trying to use a String[] property and preselect the "none" option which corresponds to an empty String. If it were a simple string property, I could do: What do I put in the 'initial' attribute for this one? Essentially, I need this: new String[] { "" }; -- Wendy Smoak Application Sy

RE: Validation Multiple Pages forward-Failure

2004-01-27 Thread Matthias Wessendorf
hi enter input="/myFormular.jsp" so validate goes back to formular there you can display action-messages (or even errors if you use) cheers, matthias -Original Message- From: Robert Lehner [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 7:13 PM To: Struts Users Mailing List

log4j integration

2004-01-27 Thread shankarr
Hi! I have integrated log4j with struts. I need to know how to ensure that the changes done to log4j.properties file is taken into account at run time. TIA, Richie "To achieve all that is possible, one must attempt the impossible" ---

Re: Action mappings

2004-01-27 Thread Brandon Goodin
Of course. >>> [EMAIL PROTECTED] 1/27/2004 12:45:01 PM >>> I t seems Struts lets you use action mappings that it figures out and forwards for you, but I have had no luck testing this. So basically SetUpEmployeeAction should be called when the user submits. Then SetUpEmployeeAction

Re: form validation question

2004-01-27 Thread Geeta Ramani
Andy: What do you see in the source of the html page..? Maybe it is just a question of display not working right..? Geeta Andy Kriger wrote: > I am having a curious problem with form validation. I submit a form, see in > the logs that the form fails to validate, however, the webapp does not > r

form validation question

2004-01-27 Thread Andy Kriger
I am having a curious problem with form validation. I submit a form, see in the logs that the form fails to validate, however, the webapp does not return to the input page (I get a blank page with no HTML in it), so I do not see the form with error messages as expected. If I put text in the field,

Re: Struts upload

2004-01-27 Thread Edgar Silva
Thanks Guys I will check this example Regards my Friends... Edgar Silva - Brazil From: "hhlow" <[EMAIL PROTECTED]> Reply-To: "hhlow" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Subject: Re: Struts upload Date: Tue, 27 Jan 2004 16:01:54 +0800 there is str

Action mappings

2004-01-27 Thread struts fox
I t seems Struts lets you use action mappings that it figures out and forwards for you, but I have had no luck testing this. So basically SetUpEmployeeAction should be called when the user submits. Then SetUpEmployeeAction forward to SteveAction and then that forwards to employeeF

Re: Validation Multiple Pages forward-Failure

2004-01-27 Thread Robert Lehner
Hallo I'm using *.do mapping in my web.xml so I must use input="/newUser" ? This does not work! Ben Anderson wrote: You want to put validate="true" for the action you are submitting to. That's also where you specify the input. The input is an application relative path beginning with a "/", so

RE: Best Practices question

2004-01-27 Thread Anderson, James H [IT]
Thanks very much, the article is just what I was looking for. jim -Original Message- From: Yee, Richard K,,DMDCWEST [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 12:22 PM To: 'Struts Users Mailing List' Subject: RE: Best Practices question Jim, Throw custom exceptions in you

RE: Best Practices question

2004-01-27 Thread Yee, Richard K,,DMDCWEST
Jim, Throw custom exceptions in your business beans and then use the struts declarative exception handling feature so that your custom exception handler class(es) handle the exceptions by populating ActionMessages and logging the error if neccessary. Check out this article by Keld H. Hansen http:/

Re: Ann: East Coast Advanced MVC Seminar: 7 Speakers

2004-01-27 Thread Vic Cekvenich
19 people signed up so far. Cool. Price goes up tmrw. .V Vic Cekvenich wrote: At nyhotel.com on April 3rd, convenient by train from Boston, NJ, Philly and DC. 1 day early registration rate at baseBeans.com now! Price will go to $495 and up as the date approaches, and there are limited seats in th

Re: WebGroups & css

2004-01-27 Thread Michael McGrady
I upload all resources (CSS, GIFs, JPEGs, SWFs, etc.) with an action class to avoid all these maddening URL problems caused by the differing perspectives of the client and server. If you get away from the URL solution, and use the .do solution, then URLs are no longer an issue. If you look at

RE: Validation Multiple Pages forward-Failure

2004-01-27 Thread Nafise Dianatizade
using DynaValidatorActionForm would be the best way, you can use attribue "page" and use one Action form for all your 7 pages. tell me if you need more info, I'll describe it in details - Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it!

RE: Validation Multiple Pages forward-Failure

2004-01-27 Thread Matthias Wessendorf
Robert, is there a reason, why you dont use DynaValidatorActionForm ? you can define in validator.xml which attributes a needed for e.g. /submit2 --> ... greetings, matthias -Original Message- From: Ben Anderson [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 5:59 P

Re: Struts upload

2004-01-27 Thread Martin Cooper
"hhlow" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > there is struts upload example in the struts download package > u also can use the commons package. You should avoid using Commons FileUpload yourself in a Struts application. You'll only run into problems. File upload function

Using ApplicationResources and changing Locale

2004-01-27 Thread Ralph Wetter
Hello I've got a strange behavior when using ApplicationResources: In web.xml I've defined the following: application ch.mera.pvs.common.Resource I've got two resource.properties (in both resources are the same properties): - Resource.properties (where i've defined all

global forwards in modules

2004-01-27 Thread Matt Bathje
Hi again - yet another question from me, sorry. I am trying to have the admin area of my project use modules, but so far it is a no go. I setup the module as: config/admin /WEB-INF/struts-config-admin.xml and if I type urls under /admin/ into the location bar, they work. If I try to use an

multiple validations on one page

2004-01-27 Thread Matt Bathje
Hi all. Still no answer to my other question regarding entities in tiles-defs.xml but now I have another question. I have 2 forms on the same page. I want javascript validations to work for both forms, but it's not happening. It looks like the first form is using the required() function from the

Re: Validation Multiple Pages forward-Failure

2004-01-27 Thread Ben Anderson
You want to put validate="true" for the action you are submitting to. That's also where you specify the input. The input is an application relative path beginning with a "/", so if you're using /do/* mapping in your web.xml you'd want something like this however, I think it's generally best

RE: Manually placing errors for display

2004-01-27 Thread Wendy Smoak
> From: Hubert Rabago [mailto:[EMAIL PROTECTED] > If these ain't it, can somebody post what is? Thanks! I'm looking for the Java code that goes in the Action to manually put an error in for display when you forward to the form. I have this in another app, but is this right for errors? I'm sure

Re: Validation Multiple Pages forward-Failure

2004-01-27 Thread Robert Lehner
Hello I saw this in the dtd, but I don't knowe what I should enter as value of input. I tried newUser, newUser.do, newUserFrom nothing worked es expected. I would to get back the form where the validation find the failure, so the User could corret his failure an procced the applikation. BTW: I

RE: Validation Multiple Pages forward-Failure

2004-01-27 Thread Ben Anderson
struts validation uses the input attribute of the action tag to send you back to where you came from if validation fails. Here's the excerpt from the dtd: input Module-relative path of the action or other resource to which control should be returned if a valida

Validation Multiple Pages forward-Failure

2004-01-27 Thread Robert Lehner
Hello, I have a MultiPageFrom with 7 seperate JSP-Pages. I want to validate all these pages. When I run the application and whould test if the validation works well, I get the following error when I hit Submit. --- type Status report message No input attribute for mapping path /newUser descript

Validation Multiple Pages forward-Failure

2004-01-27 Thread Robert Lehner
Hello, I have a MultiPageFrom with 7 seperate JSP-Pages. I want to validate all these pages. When I run the application and whould test if the validation works well, I get the following error when I hit Submit. --- type Status report message No input attribute for mapping path /newUser descriptio

Re: Manually placing errors for display

2004-01-27 Thread Hubert Rabago
Isn't it still - for messages, and - for errors? Then for messages for individual properties, the "property" attribute for is used. If these ain't it, can somebody post what is? --- Wendy Smoak <[EMAIL PROTECTED]> wrote: > > Seems there's been a lot

Setting iinitial values for Integer[] in a dynaActionForm

2004-01-27 Thread claire knowles
I can set initial values for String[] in a dynaActionForm in the struts-config.xml however when I try to set initial values for Integer[] I get the following error: 2004-01-26 13:40:49,224 [ERROR] RequestUtils: Error creating form bean of class org.apache.struts.validator.DynaValidatorForm org.a

Best Practices question

2004-01-27 Thread Anderson, James H [IT]
What is considered the best way for a business bean to handle errors so that they eventually get to ActionErrors? And what about business logging? Thanks, jim - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: constant url

2004-01-27 Thread shankarr
Hi! Thanks again for the responses. Yes, I do plan to implement ssl for security. Thanks again, Richie At 01:07 PM 1/27/2004 +0100, you wrote: use ssl or create an "outer" html-doc containing one frame in that frame call your struts-application. In the address-field of the browser you will only s

Re: WebGroups & css

2004-01-27 Thread Ivan
The best choice is to use html:rewrite :) i m with james - Original Message - From: "James Mitchell" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, January 27, 2004 1:06 PM Subject: Re: WebGroups & css > I've found this to be the cleanest way (asi

Re: Torque and Struts problem

2004-01-27 Thread Kris Schneider
This appears to be fixed in Sun's 1.4.2. A quick test failed with 1.4.1_06-b01 but passed with 1.4.2_03-b02. Quoting "P. Daniell" <[EMAIL PROTECTED]>: > The problem is neither with Struts nor Torque but rather with the > reflection > API, which exhibits strange behavior when asked to deal with cl

RE: constant url

2004-01-27 Thread Jesse Alexander (KAID 11)
use ssl or create an "outer" html-doc containing one frame in that frame call your struts-application. In the address-field of the browser you will only see the url with which you call the "outer" html-doc... Still leaves you vulnerable to a skilled hacker, but protects the url from tha standa

Re: WebGroups & css

2004-01-27 Thread James Mitchell
I've found this to be the cleanest way (aside from using a custom tag): ... ... @import url(); The benefits here are: * The URL is relative to the root of the server. An application named "myapp" will resolve to /myapp/stylesh

Re: constant url

2004-01-27 Thread James Mitchell
- Original Message - From: "shankarr" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, January 27, 2004 3:47 AM Subject: RE: constant url > Hi! > > Thanks for the response. > http://localhost:8081/log4jdemo/loginScreen.do is what I see in my url. > I

RE: WebGroups & css

2004-01-27 Thread Andrew Hill
Try using an mailto:[EMAIL PROTECTED] Sent: Tuesday, 27 January 2004 16:15 To: Struts Users Mailing List Subject: WebGroups & css Hi you, I do have a silly problem with style sheets-linking. I have a css-File in the folder "/theme/formats.css". I access this file from a jsp-page of the fol

RE: Session Problem

2004-01-27 Thread McCormack, Chris
put <[EMAIL PROTECTED] contentType="text/html" session="false"%> or <%@ page session="false" %> In the header of your jsp that you dont want caching. Chris -Original Message- From: VERMA, SANJEEV (SBCSI) [mailto:[EMAIL PROTECTED] Sent: 26 January 2004 18:33 To: 'Struts Users Mailing List

AW: WebGroups & css

2004-01-27 Thread Otto, Frank
Hi, you can do this in this way (static path to css file): <% String context_path = request.getContextPath(); %> Regards, Frank -Ursprungliche Nachricht- Von: Manuel Lenz [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 27. Januar 2004 09:15 An: Struts Users Mailing List Betreff: WebGr

retrieve url of prior visited site (inside struts)

2004-01-27 Thread Albrecht Berger
Hello, how is it possible to get the url of the prior visited site ? I have a struts application which has page with a "back button" using the javascript:history.go(-1) function. On this page a session could be created, which would be lost when going back using the javascript function. How do I get

WebGroups & css

2004-01-27 Thread Manuel Lenz
Hi you, I do have a silly problem with style sheets-linking. I have a css-File in the folder "/theme/formats.css". I access this file from a jsp-page of the folder "/help/info.jsp" with this link: This works, if I call the jsp-Page directly. There is another jsp-page in the folder called "

Re: Struts upload

2004-01-27 Thread HG
Hi Edgar Check out the demo applications in the Struts distribution (source code I guess). There is a wonderful simple example there dealing with uploads.. HTH /Henrik - Original Message - From: "Edgar Silva" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 27, 2004 1

Re: constant url

2004-01-27 Thread HG
Hi Shankarr Your best choice will be frames...that way you can hide the details of your navigation to the end user. But frames has some disadvantages, tooIt is somehow a pro/con situation where you have to decide if you can live with request parameters or not... Regarding the "hacker-threat"

RE: constant url

2004-01-27 Thread shankarr
Hi! Thanks for the response. http://localhost:8081/log4jdemo/loginScreen.do is what I see in my url. I would like to keep this a constant at http://localhost:8081/log4jdemo only. I am using both a href and html:link. But, even in cases where i use direct action like /loginScreen.do, on invoking t

Re: Torque and Struts problem

2004-01-27 Thread P. Daniell
The problem is neither with Struts nor Torque but rather with the reflection API, which exhibits strange behavior when asked to deal with classes named "Component." Strangely enough, I found a thread on the struts-user thread http://www.mail-archive.com/[EMAIL PROTECTED]/msg60817.html dealing wit

RE: constant url

2004-01-27 Thread Andrew Hill
If you want to stop the 'ugly' urls showing in the address bar of the browser, you can have all the contents of the site show in a frame, whose frameset is found at the url you want to show. -Original Message- From: Claus Weng Madsen - TELMORE [mailto:[EMAIL PROTECTED] Sent: Tuesday, 27 Ja

RE: Re-deploying in JBoss3.2.3

2004-01-27 Thread Steffen Gransow
Try to deploy an extracted .war (as a directory named .war) -graste -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Monday, January 26, 2004 8:32 PM To: [EMAIL PROTECTED] Subject: Re-deploying in JBoss3.2.3 Importance: High Hi, Can anybody su

SV: constant url

2004-01-27 Thread Claus Weng Madsen - TELMORE
Hi If you are using a or you cannot hide the parameters. The url you'r using should be the path configured in the struts-config. Med venlig hilsen Claus Weng Madsen, Teamleder TELMORE A/S Carl Gustavsgade 3, 2630 Taastrup Telefon 70218700, Mobil 30242875 www.telmore.dk -Oprindelig medd

Re: Struts upload

2004-01-27 Thread hhlow
there is struts upload example in the struts download package u also can use the commons package. Clement - Original Message - From: "Edgar Silva" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 27, 2004 7:52 AM Subject: Struts upload > Hi Folks... > > > Anybody can s

Re: Torque and Struts problem

2004-01-27 Thread Kris Schneider
What happens with this instead of JSTL: Paul Daniell wrote: From: "Kris Schneider" <[EMAIL PROTECTED]> I suppose this could be a classloader issue. Are all your Struts, Torque, and JSTL JAR files colocated? Yes. I am using Struts 1.1 rc1, Torque 3.0.2, and JSTL 1.0. Quoting Paul Daniell