RE: display error message including dynamic data

2002-11-28 Thread Sven Frederik Pohl
To: Struts Users Mailing List Subject: Re: display error message including dynamic data Hi, Patrice: That works. Thank you so much! One more question. If I have two or more dynamic data which I want to display them in the error message. How can I achieve that using the above approach? Thank you. Cathy

Re: display error message including dynamic data

2002-11-28 Thread Patrice
[EMAIL PROTECTED] Sent: Thursday, November 28, 2002 9:10 PM Subject: Re: display error message including dynamic data Hi, Patrice: That works. Thank you so much! One more question. If I have two or more dynamic data which I want to display them in the error message. How can I achieve that using

Re: display error message including dynamic data

2002-11-28 Thread Cathy Osekizoglu
. Best regards Patrice - Original Message - From: Cathy Osekizoglu To: Struts Users Mailing List Sent: Thursday, November 28, 2002 9:10 PM Subject: Re: display error message including dynamic data Hi, Patrice: That works. Thank you so much! One more question. If I have two or more

Re: great error in struts! Include a JSP result of an Action in other JSP

2002-11-27 Thread Gemes Tibor
2002. november 27. 12:56 dátummal Carlos Grima ezt írtad: %@ taglib uri=/WEB-INF/struts-template.tld prefix=template % Afaik the template tag is deprecated. I solved this kind of problem with the help of an intermediate file which calls the file with struts tags: bean:include id=text

RE: great error in struts! Include a JSP result of an Action in other JSP

2002-11-27 Thread shirishchandra . sakhare
Hi, Refer to yesterdays similar problem..Include an Action in a page. I think if u want to include the result of a action in another jsp, using jsp:inlude to call the action should work.But I have not tried this.But as using jsp include U can call a servlet as well(Thats what the documentation

RE: great error in struts! Include a JSP result of an Action in other JSP

2002-11-27 Thread Míguel Ángel Mulero Martínez
el: miércoles, 27 de noviembre de 2002 13:09 Para: Struts Users Mailing List Asunto: Re: great error in struts! Include a JSP result of an Action in other JSP 2002. november 27. 12:56 dátummal Carlos Grima ezt írtad: %@ taglib uri=/WEB-INF/struts-template.tld prefix=template % Afaik

Re: Selective error message display

2002-11-19 Thread Kris Schneider
James, For 1.1, you might try something like: logic:messagesPresent property=returningMonthError tr td colspan=2 html:errors property=returningMonthError/ /td /tr /logic:messagesPresent Quoting James Childers [EMAIL PROTECTED]: All, I know this question has been asked

RE: Selective error message display

2002-11-19 Thread James Childers
Kris, Unfortunately we are limited to using 1.0.2. Thanks for the suggestion, though. -= J -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 10:40 AM To: Struts Users Mailing List Subject: Re: Selective error message display

RE: Selective error message display

2002-11-19 Thread Kris Schneider
-Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 10:40 AM To: Struts Users Mailing List Subject: Re: Selective error message display James, For 1.1, you might try something like: logic:messagesPresent property

RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1

2002-11-16 Thread Leonardo Maciel
[EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1 Date: Fri, 15 Nov 2002 10:01:35 -0500 We've run some more tests, and documented them. The results are totally

Re: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1

2002-11-15 Thread Robert Leland
Jim Krygowski wrote: That leads me to believe that something funny is happening to my ActionForm somewhere in the Struts code. Has anyone else seen this?? I have three developers who came across this error independently so I have to imagine that some of you out there bumped into it too when you

Re: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1

2002-11-15 Thread Kevin . Bedell
would isolate it pretty quickly. Best of luck - Kevin Robert Leland [EMAIL PROTECTED] on 11/15/2002 11:35:02 AM Please respond to Struts Users Mailing List [EMAIL PROTECTED] To:Struts Users Mailing List [EMAIL PROTECTED] cc: (bcc: Kevin Bedell/Systems/USHO/SunLife) Subject:Re

RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1

2002-11-14 Thread Jim Krygowski
Been doing some research since my last post. Here's the setup, same application code, same struts jars, same app server switching between JDK 1.3.1 and 1.4.1: When processing a submit, in the PropertyUtils the following check is made in the getIndexedProperty method on or around line 468: if

RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1

2002-11-14 Thread Karr, David
:43 AM To: Struts Users Mailing List Subject: RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1 Been doing some research since my last post. Here's the setup, same application code, same struts jars, same app server switching between JDK 1.3.1 and 1.4.1: When processing a submit

RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1

2002-11-14 Thread Jim Krygowski
Subject: RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1 Step through the getPropertyDescriptor() method, which is called just before that check. That's what makes the decision on what type to return. What is the value of name? -Original Message- From: Jim Krygowski

RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1

2002-11-14 Thread Karr, David
Subject: RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1 Step through the getPropertyDescriptor() method, which is called just before that check. That's what makes the decision on what type to return. What is the value of name? -Original Message- From: Jim Krygowski

RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1

2002-11-14 Thread Jim Krygowski
. -Original Message- From: Karr, David [mailto:david.karr;attws.com] Sent: Thursday, November 14, 2002 2:40 PM To: Struts Users Mailing List Subject: RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1 So you're telling me that in both test cases, the name value is displaySections

RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1

2002-11-14 Thread Drew Zimber
- From: Jim Krygowski [mailto:james.krygowski;shaws.com] Sent: Thursday, November 14, 2002 2:49 PM To: Struts Users Mailing List Subject: RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1 The usage of displaySections[0] comes from struts itself when it disassembles the request to determine

RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1

2002-11-14 Thread Jim Krygowski
Users Mailing List' Subject: RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1 if you think thats the case, you could crack open the jar files for 1.3.x, take out the reflection classes and replace them in the 1.4.1 jar. If that works then look at the modification notes in the 1.4.1

Re: ClassDefNotFound error on Action

2002-11-04 Thread Gus Delgado
I had the same problem with weblogic, it was because I had the Action and ActionForms inside the war file and inside a jar file as well. Maybe you are doing the same thing? The Actions and ActionForms have to be in only one deployable unit (jar, war). -Gus Richard Doust wrote: I'm trying to

Re: ClassDefNotFound error on Action

2002-11-04 Thread Kevin . Bedell
This may be a classloader issue similar to ones I've seen with Weblogic. I don't remember having to do this with with JBoss, but the ideas may help. To get this to work in an 'ear' file with weblogic, you need to additional steps that aren't required with war files. They are: - in the

RE: intermittent error 500, refresh brings up jsp

2002-10-30 Thread James Mitchell
I have seen strange behavior like this with Tomcat 4.1.8 (and higher). It PI##ED me off so bad that I was forced to go back to 4.0.4, but it seems that 4.1.12 is a lot better. Not sure if that helps you. James Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org Only two

RE: Parsing error processing resource path /WEB-INF/struts-config.xml

2002-10-04 Thread Ramu, Manjukumar [PRDUS]
Can any body help me? -Original Message- From: Ramu, Manjukumar [PRDUS] [mailto:[EMAIL PROTECTED]] Sent: Friday, October 04, 2002 12:09 PM To: 'Struts Users Mailing List' Subject: Parsing error processing resource path /WEB-INF/struts-config.xml Hello All, I am getting the

RE: Parsing error processing resource path /WEB-INF/struts-config .xml

2002-10-04 Thread Galbreath, Mark
: Friday, October 04, 2002 1:20 PM To: 'Struts Users Mailing List' Subject: RE: Parsing error processing resource path /WEB-INF/struts-config .xml Can any body help me? -Original Message- From: Ramu, Manjukumar [PRDUS] [mailto:[EMAIL PROTECTED]] Sent: Friday, October 04, 2002 12:09 PM

Re: Parsing error processing resource path /WEB-INF/struts-config .xml

2002-10-04 Thread Eddie Bush
, Manjukumar [PRDUS] [mailto:[EMAIL PROTECTED]] Sent: Friday, October 04, 2002 1:20 PM To: 'Struts Users Mailing List' Subject: RE: Parsing error processing resource path /WEB-INF/struts-config .xml Can any body help me? -Original Message- From: Ramu, Manjukumar [PRDUS] [mailto:[EMAIL

RE: Parsing error processing resource path /WEB-INF/struts-config .xml

2002-10-04 Thread Taylor, Jason
To: Struts Users Mailing List Subject: Re: Parsing error processing resource path /WEB-INF/struts-config .xml Actually, from a (Unix) filesystem perspective, / is *the* root (the directory all others live under). Your home directory probably lives at ~. If what you are asking is how to represent

RE: Parsing error processing resource path /WEB-INF/struts-config .xml

2002-10-04 Thread Galbreath, Mark
That's right - I forgot...been 4 years since I coded anything on Unix. -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED]] Sent: Friday, October 04, 2002 2:04 PM To: Struts Users Mailing List Subject: Re: Parsing error processing resource path /WEB-INF/struts-config .xml

RE: Parsing error processing resource path /WEB-INF/struts-config .xml

2002-10-04 Thread Ramu, Manjukumar [PRDUS]
I checked the file name and path, both are correct. -Original Message- From: Taylor, Jason [mailto:[EMAIL PROTECTED]] Sent: Friday, October 04, 2002 2:33 PM To: 'Struts Users Mailing List' Subject: RE: Parsing error processing resource path /WEB-INF/struts-config .xml I use WLS 6.1 sp3

Re: Parsing error processing resource path /WEB-INF/struts-config .xml

2002-10-04 Thread Eddie Bush
Why do I have a voice in the back of my head saying Didn't someone have to revert to sp1 to get things going?? If that's an option, you might explore it. If it's not an option - I don't know what to say. I can't say where the above thought comes from, but I seem to have some vague

Re: Tiles error (Help)

2002-09-26 Thread Alexandre Albert
Try to use org.apache.struts.tiles.ActionComponentServlet for the action servlet. --- Heligon Sandra [EMAIL PROTECTED] wrote: I am using Tiles and when I run my application I have the following error: javax.servlet.ServletException: Can't get definitions factory from

Re: Tiles error (Help)

2002-09-26 Thread Dariusz Wojtas
Hi, I had the same problem. That was the error I could see in the browser. But in my app logs I found more details. I just forgot to close some tag in my struts-config file. I corrected that and it works nicely again. Maybe that is your problem too? Darek Wednesday, September 25, 2002, 3:48:19

RE: Newbie error!

2002-09-20 Thread Galbreath, Mark
Sure thing! Just first allow me to take half my day to read through the entire tutorial, simulate your environment, and then make a wild-ass guess as to why you are getting an error! BTW: What is trialling? Sounds like you are mimicking bird calls. Mark -Original Message- From:

Re: ClassCastException error

2002-09-13 Thread Michael Lee
Need more info. What app server? What jdk? Stack trace? Offensive code? Mike - Original Message - From: Jason Reilly [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 13, 2002 12:01 AM Subject: ClassCastException error Let's say I have a Vector of objects. I put that

RE: Parsing error

2002-09-12 Thread Galbreath, Mark
Dump the server; it's crap. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 7:14 PM To: [EMAIL PROTECTED] Subject: Parsing error Hi, Getting the following error on trying to start up web server having the struts example

RE: Parsing error

2002-09-12 Thread Gaurav . Goyal
) at com.iplanet.server.http.servlet.NSServletRunner.VSInit(NSServletRunner.java: 686) -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 6:31 AM To: 'Struts Users Mailing List' Subject: RE: Parsing error Dump the server; it's crap

RE: Parsing error

2002-09-12 Thread Galbreath, Mark
Wow...never saw that before. Apparently you've got thread contention on the SAXP object. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 11:02 AM To: [EMAIL PROTECTED] Subject: RE: Parsing error While I share your

RE: Parsing error

2002-09-12 Thread Gaurav . Goyal
i put digester.parse(is) in a synchronized block. That did not help. -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 10:13 AM To: 'Struts Users Mailing List' Subject: RE: Parsing error Wow...never saw that before. Apparently

RE: Parsing error

2002-09-12 Thread Galbreath, Mark
Wish I could help you more...you probably need Craig to look into this one. :-( -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 11:15 AM To: [EMAIL PROTECTED] Subject: RE: Parsing error i put digester.parse(is) in a synchronized

Re: [Tiles] Error using controllerClass - says I need to extend Actionbut I am

2002-09-02 Thread Cedric Dumoulin
Hi, Do you have the full stack trace of the error ? This will help to understand what happen. Cedric Michael wrote: When I try to use controllerClass: definition name=plant_list path=/jsp/status/plant_list.jsp

RE: Clearing error

2002-07-17 Thread James Mitchell
What are you talking about? #1 How did you get to the first page? From an Action or is in the index.jsp? #2 Why are you even linking directly to a jsp that appears to be dependent on some objects in some scope? #3 How do you get error messages embedded??? (Is this some result of storing

RE: Clearing error

2002-07-17 Thread Adarsh
in the text box.But the problem is the error message which i had embedded in the error object is also visible which i dont want Thanks -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 18, 2002 11:13 AM To: Struts Users Mailing List Subject: RE: Clearing

Re: Validator error

2002-07-11 Thread David Winterfeldt
I think you may have upgraded the Commons Validator jar, but not Struts. The SERVLET_CONTEXT_KEY was removed from this class to try to completely separate it from Struts and the web layer. Try using the Commons Validator that comes in the nightly download for the version you are using. David

RE: Facing error at startup

2002-07-03 Thread James Mitchell
Yes, your struts-config.xml is hosed. Can you post it (without sensitive information)? James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the Open Minded Developer Network http://www.open-tools.org/struts-atlanta -Original Message- From: Susmita Pati [mailto:[EMAIL

Re: SAX Error ?

2002-06-26 Thread Adolfo Miguelez
Do you have Xerces 1.4.4 installed with Struts 1.1b1? From: [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: SAX Error ? Date: Tue, 25 Jun 2002 15:40:00 -0400 I am getting this for every application I started under 1.1b How can I tell

RE: SAX Error ?

2002-06-26 Thread wbchmura
Yep, 1.4.4 is installed... -Original Message- From: pelly69 [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 4:23 AM To: struts-user Subject: Re: SAX Error ? Do you have Xerces 1.4.4 installed with Struts 1.1b1? From: [EMAIL PROTECTED] Reply-To: Struts Users Mailing List

Re: SAX Error ?

2002-06-26 Thread Cedric Dumoulin
Maybe a bad (or old) Tiles config file header. The error report that an xml root element is missing, but Tiles factory seem to have been successfully loaded. The error doesn't say what file is wrong ;-(. Check your tiles config files, and compare them to following header / root component :

RE: SAX Error ? - nope

2002-06-26 Thread wbchmura
Its exactly what I have... I've spent the morning checking DTD's and even going up to the nightly build to see if that helps... -Original Message- From: cedric.dumoulin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 9:09 AM To: struts-user Subject: Re: SAX Error

RE: SAX Error ? - ?

2002-06-26 Thread wbchmura
: Chmura, William B. Sent: Wednesday, June 26, 2002 9:27 AM To: struts-user Subject: RE: SAX Error ? - nope Its exactly what I have... I've spent the morning checking DTD's and even going up to the nightly build to see if that helps... -Original Message- From: cedric.dumoulin [mailto

Re: This Error

2002-05-17 Thread Kevin . Bedell
Am I correct in assuming this is a compiler error from your IDE? Or is it from Ant? Whichever - it looks as if the classes directory is not on the CLASSPATH for the compiler generatng the error. I'd check this first - sometimes when you're dealing with multiple applications with different

Re: This Error

2002-05-17 Thread Chris Cairns
Nice! It worked- thanks. At 02:23 PM 5/17/2002 -0400, you wrote: Am I correct in assuming this is a compiler error from your IDE? Or is it from Ant? Whichever - it looks as if the classes directory is not on the CLASSPATH for the compiler generatng the error. I'd check this first -

Re: Another Error

2002-05-17 Thread Kevin . Bedell
Tough to say from this limited info - Here's what I'd recommend. Go compare your struts-config.xml and your Action classes to those supplied with the example application. Think things through and spend a bit of time reading the javadoc. And read through the messages in your server.log until

Re: populate error

2002-05-16 Thread Adam Hardy
Sudhir wrote: javax.servlet.ServletException: ProjectForm.populate is that the full line from the exception? It looks like there's something missing from the end. Can anybody tell me is this due to the method is deprcated. I wouldn't use it if it's deprecated. At some point in the

Re: JSP error

2002-05-16 Thread SUPRIYA MISRA
Mailing List [EMAIL PROTECTED] Subject: Re: JSP error Date: Wed, 15 May 2002 16:02:14 -0400 Pete Serafin wrote: Is it possible for the JSP error directive to capture any other type of exceptions other than just javax.servlet.jsp.JspException. Im trying to catch any types of exceptions in my

Re: JSP error

2002-05-15 Thread Ted Husted
You might consider posting this to JSP-interest or searching the archives there. http://archives.java.sun.com/archives/jsp-interest.html -- Ted Husted, Husted dot Com, Fairport NY US -- Developing Java Web Applications with Struts -- Tel: +1 585 737-3463 -- Web:

Re: JSP error

2002-05-15 Thread Kevin . Bedell
Pete Serafin wrote: Is it possible for the JSP error directive to capture any other type of exceptions other than just javax.servlet.jsp.JspException. Im trying to catch any types of exceptions in my JSPs including Jasper and plain Exceptions, but Im not sure if this is possible. Has

RE: Puzzling error with logic:iterate

2002-05-10 Thread Ajay Chitre
I think you are missing a jsp:useBean Not sure if this will help but try this out - Add a useBean; jsp:useBean id=books scope=page class=java.lang.Object/ Before --- html:form method=GET action=addBook.do HTH! -- Original Message -- Reply-To: Struts Users Mailing List [EMAIL PROTECTED]

Re: Puzzling error with logic:iterate

2002-05-10 Thread Arron Bates
Have you tried adding the following attribute and value to the iterate tag?... scope=page Arron. K Br wrote: pl help. i have been wracking my small brain over this for a few hours and i have no clew. i am using logic:iterate copybook style; yet, it throws the runtime exception:

RE: Puzzling error with logic:iterate

2002-05-10 Thread Ajay Chitre
[EMAIL PROTECTED] Date: Thu, 9 May 2002 23:19:48 -0700 From: Ajay Chitre [EMAIL PROTECTED] Subject: RE: Puzzling error with logic:iterate Reply-To: [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] I think you are missing a jsp:useBean Not sure if this will help but try this out

RE: Multiple error pages for a single action mapping

2002-04-25 Thread Schmidt, Carl
the best way to do this? Carl -Original Message- From: adam [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 6:30 PM To: Struts Users Mailing List Subject: Re: Multiple error pages for a single action mapping Remember, one error page can just be use a simple include based on your

RE: Displaying error page

2002-04-24 Thread Bhaskar Gopalan
Thnx. -gb -Original Message- From: Pruthee, Ranjan [mailto:[EMAIL PROTECTED]] Sent: Monday, April 22, 2002 4:02 PM To: Struts Users Mailing List Subject: RE: Displaying error page U can specify the error page for the failures in struts-config.xml. For example - action path=/getaudit

RE: Multiple error pages for a single action mapping

2002-04-24 Thread Schmidt, Carl
Thank you for the reply. However, isn't setInput essentially setting the input attribute of the action mapping tag in struts-config.xml? In other words, since the action mapping is part of a global collection, will the setInput changes be reflected to any other users on the site, accessing

Re: Multiple error pages for a single action mapping

2002-04-24 Thread adam
Remember, one error page can just be use a simple include based on your error criteria for multiple other error pages. Schmidt, Carl wrote: Thank you for the reply. However, isn't setInput essentially setting the input attribute of the action mapping tag in struts-config.xml? In other words,

Re: Displaying error page

2002-04-22 Thread Joachim Gjesdal
Pruthee, Ranjan wrote: In ur jsp u get this error message by calling request.getAttribute(error) or use the html:error/ tag :-) -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Question: error No getter method for property...

2002-04-18 Thread Stott, David
Sorry, I sent the wrong action form code - it should look like: package com.ironside.qscontentmgr.formbeans; import javax.servlet.http.HttpServletRequest; import org.apache.struts.action.ActionError; import org.apache.struts.action.ActionErrors; import org.apache.struts.action.ActionForm;

Re: Tomcat error log: Element struts-config does not allow message-resource here

2002-04-11 Thread Chuck Cavaness
It's message-resources. I think that yoy're missing the s according to the error message. Chuck At 12:16 PM 4/11/2002 +, you wrote: Hi, Tomcat3.2.3+JBoss2.4.1 on JDK1.3.1_01 on SuSE7.2 (2.4.13) Struts1.0.2 I am getting the following error message on startup of my containers(only

Re: Tomcat error log: Element struts-config does not allow message-resource here

2002-04-11 Thread jfc100
Chuck Cavaness wrote: It's message-resources. I think that yoy're missing the s according to the error message. Chuck At 12:16 PM 4/11/2002 +, you wrote: Hi, Tomcat3.2.3+JBoss2.4.1 on JDK1.3.1_01 on SuSE7.2 (2.4.13) Struts1.0.2 I am getting the following error message on

RE: [StrutsTestCase Error] Request does not contain handler parameter named action

2002-04-04 Thread Matt Raible
I get this same error using Mozilla 0.9.9, but not in IE. It might be an issue with Struts 1.1b1. Thanks, Matt -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 8:18 AM To: '[EMAIL PROTECTED]' Cc: '[EMAIL PROTECTED]' Subject:

Re: ApplicationResources Error

2002-04-04 Thread Galbreath, Mark
We get this: ???en_US.default.required.error.key??? When in ApplicationResources we say : default.required.error.key=Required. and in struts-config.xml we say: message-resourcesnull=false parameter=com.tessco.partner.vsb2c.web.ApplicationResources/ Mark -- To unsubscribe,

Re: Strange error with logic:iterate

2002-04-03 Thread Michael Skariah
Hope this helps. bean:define id=list name='localForm' property=myList scope=session/ logic:iterate id=myRow name=list bean:write name=myRow property=myName/ /logic:iterate Here in this example, 'myList' is a java.util.List kept as a attribute in the ActionForm. Cheers!, -MS. Abel

Re: RES: Error processing message properties file.

2002-03-26 Thread Ted Husted
It usually means that the ApplicationResources.properties file is not on the container's class path. The simplest thing is to put it directly under the classes folder. The message and error tags are designed to work with the resource file, and become upset when they cannot find it. -- Ted

Re: Log4j Error

2002-03-20 Thread Louis Leung
use rootCategory if u r using log4j 1.1.3 use rootLogger if u r using log4j 1.2 and onwards Steve Wilkinson wrote: You need something like this. log4j.rootCategory=ERROR, R I don't know the log4j.rootLogger is a valid property. The ERROR tells it what level to log and R tells it what

Re: Log4j Error

2002-03-20 Thread Pete Serafin
Thanks guys. That did solve my problem and also explains why the example I copied from the documentation had rootLogger in it. Had me a little lost, but its working fine now. Pete Louis Leung wrote: use rootCategory if u r using log4j 1.1.3 use rootLogger if u r using log4j 1.2 and

Re: Newbie :Error- Cannot find ActionMappings or ActionFormBeans

2002-03-18 Thread keithBacon
: keithBacon [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, March 16, 2002 6:32 PM Subject: Re: Newbie :Error- Cannot find ActionMappings or ActionFormBeans Was the error thrown in struts code or your code? The code probably needs proper exception handling

RE: display error message

2002-03-18 Thread Jesse Alexander (KADA 12)
The error- and message-tags that have been introduced with David Winterfeldt's validation package allow to do this quite easily. I use them with Struts 1.0 (+ the matching validator-jar) and they perform perfectly. If you can use the nightly build or the Struts 1.1 beta the validator should be

Re: display error message

2002-03-18 Thread MARK NICHOLS
Read the section on Displaying Error Messages here: http://jakarta.apache.org/struts/doc-1.0.2/api/org/apache/struts/taglib/html/package-summary.html#doc.Other ___ - mark h. nichols - dhsv022 at dhs dot state dot il dot us The best laid plans o'mice and men

Re: display error message

2002-03-18 Thread Ivan Siviero
position on the page Thanks again Ivan. - Original Message - From: Jesse Alexander (KADA 12) [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Monday, March 18, 2002 11:52 AM Subject: RE: display error message The error- and message-tags that have been introduced

Re: display error message

2002-03-18 Thread Ivan Siviero
Thanx Mark for your answer. I visited the link and found out what i was looking for. Thank you Ivan. - Original Message - From: Ivan Siviero [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, March 18, 2002 2:14 PM Subject: Re: display error message Thanx

Re: display error message

2002-03-18 Thread Jay sissom
If you read the documentation here, it will tell you exactly how to do this: http://jakarta.apache.org/struts/doc-1.0.2/struts-html.html#errors On Mon, 18 Mar 2002, Ivan Siviero wrote: A question about showing errors. let's suppose i have this page (just image the page on the browser):

Re: Newbie :Error- Cannot find ActionMappings or ActionFormBeans

2002-03-17 Thread Anant Sagar
. Thanks Anant Sagar. From: keithBacon [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, March 16, 2002 6:32 PM Subject: Re: Newbie :Error- Cannot find ActionMappings or ActionFormBeans Was the error thrown in struts code or your code? The code probably needs

Re: Newbie :Error- Cannot find ActionMappings or ActionFormBeans

2002-03-16 Thread keithBacon
This can be a bit tricky - did you search the Archive? --- Anant Sagar [EMAIL PROTECTED] wrote: Hello All , I m new to struts . I had prepared my login page .It was working fine .Suddenly this exception is coming javax.servlet.ServletException: Cannot find ActionMappings or

Re: Newbie :Error- Cannot find ActionMappings or ActionFormBeans

2002-03-16 Thread Anant Sagar
, March 16, 2002 4:57 PM Subject: Re: Newbie :Error- Cannot find ActionMappings or ActionFormBeans This can be a bit tricky - did you search the Archive? --- Anant Sagar [EMAIL PROTECTED] wrote: Hello All , I m new to struts . I had prepared my login page .It was working fine .Suddenly

Re: Newbie :Error- Cannot find ActionMappings or ActionFormBeans

2002-03-16 Thread keithBacon
that the error msg was irrelevant . Any way thanks Anant Sagar - Original Message - From: keithBacon [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, March 16, 2002 4:57 PM Subject: Re: Newbie :Error- Cannot find ActionMappings or ActionFormBeans

Re: Newbie :Error- Cannot find ActionMappings or ActionFormBeans

2002-03-15 Thread Anant Sagar
Thanks Raghuramudu anyway. Anant Sagar - Original Message - From: Vaddiyar, Raghuramudu [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Friday, March 15, 2002 12:24 PM Subject: RE: Newbie :Error- Cannot find ActionMappings or ActionFormBeans Check your struts

RE: Newbie :Error- Cannot find ActionMappings or ActionFormBeans

2002-03-14 Thread Vaddiyar, Raghuramudu
Check your struts-config.xml file. and the action attribute of your form. for example...in your login page if form tag looks like this form name=collection action=/collection... and if you dont have a mapping in your struts-config.xml file you will get this exception -Original

Re: Parsing Error for struts-config.xml

2002-03-08 Thread Jin Bal
I *think* the problem may be your container's implementation of : InputStream input = getServletContext().getResourceAsStream(config); where config is the struts-config.xml When I tried to use struts with Resin I encountered the same problem (never worked how to fix it started using tomcat).

Re: Parsing Error for struts-config.xml

2002-03-08 Thread Suneet Shah
PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED]; Suneet Shah [EMAIL PROTECTED] Sent: Friday, March 08, 2002 3:51 AM Subject: Re: Parsing Error for struts-config.xml I *think* the problem may be your container's implementation of : InputStream input = getServletContext

RE: Parsing Error for struts-config.xml

2002-03-08 Thread Homer, Christopher
Try removing the 3 DTDs from struts.jar. Chris - Original Message - From: Suneet Shah [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 08, 2002 7:33 AM Subject: Parsing Error for struts-config.xml Hello, I have struts based application that runs just fine on a number of

Re: Parsing Error for struts-config.xml

2002-03-07 Thread Ivan Siviero
I'm having the same exception on SunOS 5.8 and Weblogic5.1sp9 which is still unsolved. I suppose you already have the xerces.jar in the classpath. Let me know if you get a solution on this. Thank you. Ivan. - Original Message - From: Suneet Shah [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: Tiles Error

2002-02-12 Thread Ted Husted
It sounds like the Tiles definitions are not being loaded from the XML configuration file. Make sure the Tiles subclass of ActionServlet is installed properly. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Java Web Development with Struts. -- Tel +1 585 737-3463. -- Web

Re: Weird error message

2002-01-22 Thread Wim Fournier
On Tue, Jan 22, 2002 at 07:11:25AM -0500, Jorge Ruiz (SX) wrote: I am getting this error message from a jsp page: [ServletException in:/jsp/comprobante/comDisplayForm.jsp] Cannot find bean org.apache.struts.taglib.html.BEAN in scope null' did you ty all the beans u use to your 'session' ?

Re: html:errors error?

2002-01-20 Thread Ted Husted
Did you switch over to the messages tag? The orignal errors tag requires a errors.header and errors.footer in the properties files, to provide markup, but these are optional with the messages tag. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Building Java web applications with Struts.

RE: NoClassDefFound Error in weblogic

2002-01-04 Thread Jeremy Mann
:54 PM To: 'Struts Users Mailing List' Subject: RE: NoClassDefFound Error in weblogic Unfortunately, my memory on this problem isn't too good - it happened sometime last summer. As Michelle and Vincent say, I remember there being a problem if there were multiple struts jars floating around, and we

RE: NoClassDefFound Error in weblogic

2002-01-04 Thread Jeremy Mann
PM To: 'Struts Users Mailing List' Subject: RE: NoClassDefFound Error in weblogic Unfortunately, my memory on this problem isn't too good - it happened sometime last summer. As Michelle and Vincent say, I remember there being a problem if there were multiple struts jars floating around, and we

RE: Parser error while testing struts-layout

2002-01-04 Thread DUPRAT Alexandre
Alexandre [mailto:[EMAIL PROTECTED]] Date: jeudi 3 janvier 2002 16:30 À: '[EMAIL PROTECTED]' Cc: 'Jean-Noel Ribette' Objet: RE: Parser error while testing struts-layout Jean-Noel : I just tried replacing my digester 1.0 by 1.1.1 I got a different error : Digester.getParser

RE: NoClassDefFound Error in weblogic

2002-01-04 Thread Kiet Nguyen
There is a patch for wls 5.1 sp8. Search for in on the struts mailing list. wls 5.1 conflicts with struts. -Original Message- From: Jeremy Mann [mailto:[EMAIL PROTECTED]] Sent: Friday, January 04, 2002 6:27 AM To: Struts Users Mailing List Subject: RE: NoClassDefFound Error in weblogic

RE: NoClassDefFound Error in weblogic

2002-01-04 Thread Jeremy Mann
: Friday, January 04, 2002 9:35 AM To: 'Struts Users Mailing List' Subject: RE: NoClassDefFound Error in weblogic There is a patch for wls 5.1 sp8. Search for in on the struts mailing list. wls 5.1 conflicts with struts. -Original Message- From: Jeremy Mann [mailto:[EMAIL PROTECTED

RE: Parser error while testing struts-layout

2002-01-03 Thread DUPRAT Alexandre
(Tomcat.java:235) Maybe i could try digester 1.1 but...? I would be really happy if i could use tree menu of struts-layout. -Message d'origine- De: Jean-Noel Ribette [mailto:[EMAIL PROTECTED]] Date: jeudi 3 janvier 2002 15:47 À: Struts Users Mailing List; [EMAIL PROTECTED] Objet: Re: Parser

Re: Parser error while testing struts-layout

2002-01-03 Thread Jean-Noel Ribette
At 15:01 03/01/2002, you wrote: Hi all, Happy new year :-) I'm currently testing struts-layout found at : http://struts.application-servers.com/ when deploying on tomcat 3.2.3 i got errors like : Digester.getParser: javax.xml.parsers.ParserConfigurationException: Namespace not supported by

RE: Parser error while testing struts-layout

2002-01-03 Thread Jean-Noel Ribette
try digester 1.1 but...? I would be really happy if i could use tree menu of struts-layout. -Message d'origine- De: Jean-Noel Ribette [mailto:[EMAIL PROTECTED]] Date: jeudi 3 janvier 2002 15:47 À: Struts Users Mailing List; [EMAIL PROTECTED] Objet: Re: Parser error while testing struts

RE: Parser error while testing struts-layout

2002-01-03 Thread DUPRAT Alexandre
- De: Jean-Noel Ribette [mailto:[EMAIL PROTECTED]] Date: jeudi 3 janvier 2002 16:57 À: Struts Users Mailing List; [EMAIL PROTECTED] Objet: RE: Parser error while testing struts-layout The digester still doesn't find Xerces as it tries to instanciate sun's parser. Could you make sure Xerces

<    1   2   3   4   >