Exception at javax.servlet.ServletException: org/apache/taglibs/standard/lang/support/ExpressionEvaluatorManager

2004-01-20 Thread Parag Pattewar
Hi Please help me to solve it. I am getting below exception , When I try to display the menu in a jsp In jsp I am having entry of menu as below In menu-config I am having the entry of it as below Exception I am getting is as below javax.servlet.ServletException: org/apache

Re: javax.servlet.ServletException: Exception creating bean of class

2004-01-05 Thread Martin Gainty
ary 05, 2004 8:05 AM Subject: RE: javax.servlet.ServletException: Exception creating bean of class > In this case, the only constructor for the class is the default one. Equivalent to: > > public newitemForm() { super(); } > > I think the link should be: > > > > but I only took a quick look

RE: javax.servlet.ServletException: Exception creating bean of class

2004-01-05 Thread Kris Schneider
In this case, the only constructor for the class is the default one. Equivalent to: public newitemForm() { super(); } I think the link should be: but I only took a quick look through the code... Quoting Joe Hertz <[EMAIL PROTECTED]>: > To borrow from the title of a movie: > > Dude, where's

RE: javax.servlet.ServletException: Exception creating bean of class

2004-01-05 Thread Joe Hertz
To borrow from the title of a movie: Dude, where's my constructor? > > > > this is my newitemForm.java > > newitemForm.java > > = > > package net.foong; > > > > import javax.servlet.http.HttpServletRequest; > > > > import org.apache.struts.action.ActionForm; > > import org.apache

javax.servlet.ServletException: Exception creating bean of class

2004-01-05 Thread foongkim
i have this error, i don't know where goes wrong.. please help.. javax.servlet.ServletException: Exception creating bean of class net.foong.newitemForm: {1} org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.jav

RE: javax.servlet.ServletException: Missing message for key "inde x.title"

2003-10-15 Thread Timothy Stewart
y, October 15, 2003 4:21 PM To: Struts Users Mailing List Subject: Re: javax.servlet.ServletException: Missing message for key "index.title" action org.apache.struts.action.ActionServlet application resources.properties.messages -Martin

Re: javax.servlet.ServletException: Missing message for key "index.title"

2003-10-15 Thread Martin Gainty
D]> Sent: Wednesday, October 15, 2003 5:56 PM Subject: javax.servlet.ServletException: Missing message for key "index.title" > I am trying to view the struts-example/index.jsp > > when the page loads I get the > javax.servlet.ServletException: Missing message fo

Re: javax.servlet.ServletException: Missing message for key "index.title"

2003-10-15 Thread Barry Volpe
, 2003 2:56 PM Subject: javax.servlet.ServletException: Missing message for key "index.title" > I am trying to view the struts-example/index.jsp > > when the page loads I get the > javax.servlet.ServletException: Missing message for key "index.title" > > I fou

javax.servlet.ServletException: Missing message for key "index.ti tle"

2003-10-15 Thread Timothy Stewart
I am trying to view the struts-example/index.jsp when the page loads I get the javax.servlet.ServletException: Missing message for key "index.title" I found the entry in ApplicationResources.properties that defines index.title. I verified that the ApplicationResources.properties is

RE: javax.servlet.ServletException: BeanUtils.populate

2003-09-28 Thread krishnamohan
Hi Gaurav, It's me. Are you working on Struts? Thanks, Krishna -Original Message- From: Gaurav Gupta [mailto:[EMAIL PROTECTED] Sent: Saturday, September 27, 2003 4:18 PM To: 'Struts Users Mailing List' Subject: RE: javax.servlet.ServletException: BeanUtils.populate

RE: javax.servlet.ServletException: BeanUtils.populate

2003-09-27 Thread Gaurav Gupta
Is it Krishna Mohan , previously with MTC India ?? sorry for botheration -Original Message- From: krishnamohan [mailto:[EMAIL PROTECTED] Sent: Saturday, September 27, 2003 3:56 PM To: [EMAIL PROTECTED] Subject: javax.servlet.ServletException: BeanUtils.populate Hi, I am writing a

javax.servlet.ServletException: BeanUtils.populate

2003-09-27 Thread krishnamohan
I submit the page, I am getting the error- javax.servlet.ServletException: BeanUtils.populate Root cause: java.lang.IllegalArgumentException: No bean specified. Pl. help me understand what went wrong. The following is the jsp page <%@ page language="java" session="true"%

javax.servlet.ServletException: BeanUtils.populate

2003-08-01 Thread Yan, Charlene
. But when I click on look up button on the page. It throws the exception --javax.servlet.ServletException: BeanUtils.populate. My action and struts-config are attached below. THANKS FOR ANY INSIGHT ON THIS... Charlene

Re: [OT] javax.servlet.ServletException: sun/tools/javac/Main error

2003-06-24 Thread Joseph Fifield
My guess is you need to add tools.jar to your container's classpath. Joe - Original Message - From: "Mick Knutson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 24, 2003 12:29 PM Subject: [OT] javax.servlet.ServletException: sun/tools/jav

[OT] javax.servlet.ServletException: sun/tools/javac/Main error

2003-06-24 Thread Mick Knutson
I have an error, and I have never seen this before and am not sure why this is happening. Can anyone help? :: javax.servlet.ServletException: sun/tools/javac/Main at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:481) at javax.servlet.http.HttpServlet.service

javax.servlet.ServletException: BeanUtils.populate

2003-06-19 Thread Julie CARDON
Hi, I use DynaForm whith indexed properties, and contrary to many messages on this list this doesn't work ... This is ok. But if i remove the size attribute of I have a javax.servlet.ServletException: BeanUtils.populate caus

RE: URGENT: javax.servlet.ServletException: BeanUtils.populate

2003-05-30 Thread Steve Raeburn
o parse a single field, returning a value that BeanUtils can cope with. If anyone knows a better way of handling Dates from forms then please share because this feels clunky and I don't like clunk. Steve > -Original Message- > From: Mick Knutson [mailto:[EMAIL PROTECTED] > Sent: M

RE: javax.servlet.ServletException: BeanUtils.populate

2003-05-30 Thread Mick Knutson
, but does on 15 others? --- Thanks... Mick Knutson --- From: "Steve Raeburn" <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Subject: RE: URGENT: javax.servlet.ServletException: BeanUtils.populate D

RE: URGENT: javax.servlet.ServletException: BeanUtils.populate

2003-05-30 Thread Steve Raeburn
I think it's your dates that might be the problem. BeanUtils does not have a supplied converter for java.util.Date. Try using java.sql.Date You may need a helper method on your form that returns a correctly formatted SQL date (-mm-dd). Steve

Re: javax.servlet.ServletException: BeanUtils.populate

2003-05-30 Thread Mick Knutson
I actually have: in the JSP, and I also tried using "alertContacts" as well as the name. From: "David Graham" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] S

Re: URGENT: javax.servlet.ServletException: BeanUtils.populate

2003-05-30 Thread Mick Knutson
L PROTECTED]> Subject: Re: URGENT: javax.servlet.ServletException: BeanUtils.populate Date: Thu, 29 May 2003 14:52:57 -0400 I see that you are returning a value of userId in user contacts property in your JSP. Now, I am not familiar with DynaForms, but you have the field defined as Contact

Re: javax.servlet.ServletException: BeanUtils.populate

2003-05-30 Thread Mick Knutson
t; <[EMAIL PROTECTED]> Subject: Re: URGENT: javax.servlet.ServletException: BeanUtils.populate Date: Thu, 29 May 2003 14:43:08 -0400 One other thing I noticed, you've got a potential circular reference in /alert by specifying the input as /alert.do. -- James Mitchell Software

Re: javax.servlet.ServletException: BeanUtils.populate

2003-05-30 Thread David Graham
e. So, I have started to remove items from the form, like the multi-select, but that did not seem to help. From: "David Graham" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: URGENT: javax.servlet.Serv

Re: URGENT: javax.servlet.ServletException: BeanUtils.populate

2003-05-30 Thread Denis Avdic
I see that you are returning a value of userId in user contacts property in your JSP. Now, I am not familiar with DynaForms, but you have the field defined as ContactDto type. Could this be the problem? Since you are returning a string and it is expecting a ContactDto type? Can anyone confir

Re: URGENT: javax.servlet.ServletException: BeanUtils.populate

2003-05-30 Thread James Mitchell
To: <[EMAIL PROTECTED]> Sent: Thursday, May 29, 2003 2:26 PM Subject: URGENT: javax.servlet.ServletException: BeanUtils.populate > I have an error that I have been working on for 3 solid days. i have > searched the archives, but can't find my issue resolved anywhere. > I have an ar

Re: URGENT: javax.servlet.ServletException: BeanUtils.populate

2003-05-30 Thread Mick Knutson
Add Record From: "James Mitchell" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Subject: Re: URGENT: javax.servlet.ServletException: BeanUtils.populate Date: Thu,

Re: javax.servlet.ServletException: BeanUtils.populate

2003-05-30 Thread Mick Knutson
from the form, like the multi-select, but that did not seem to help. From: "David Graham" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: URGENT: javax.servlet.ServletException: BeanUtils.populate

Re: URGENT: javax.servlet.ServletException: BeanUtils.populate

2003-05-30 Thread David Graham
opertyMessageResources] Initializing, config='org.apache.struts.taglib.html.LocalStrings', returnNull=true 11:00:55,504 INFO [SecurityContextFilter] processing request /alert.do 11:00:55,544 ERROR [SecurityContextFilter] Exception javax.servlet.ServletException: BeanUtils.populate at org.apache.struts.util.

Re: URGENT: javax.servlet.ServletException: BeanUtils.populate

2003-05-30 Thread James Mitchell
:26 PM Subject: URGENT: javax.servlet.ServletException: BeanUtils.populate > I have an error that I have been working on for 3 solid days. i have > searched the archives, but can't find my issue resolved anywhere. > I have an array of objects (ContactDto[]) that I need to display. I act

URGENT: javax.servlet.ServletException: BeanUtils.populate

2003-05-30 Thread Mick Knutson
s.taglib.html.LocalStrings', returnNull=true 11:00:55,504 INFO [SecurityContextFilter] processing request /alert.do 11:00:55,544 ERROR [SecurityContextFilter] Exception javax.servlet.ServletException: BeanUtils.populate at org.apache.struts.util.

URGENT: javax.servlet.ServletException: BeanUtils.populate

2003-05-29 Thread Mick Knutson
s.taglib.html.LocalStrings', returnNull=true 11:00:55,504 INFO [SecurityContextFilter] processing request /alert.do 11:00:55,544 ERROR [SecurityContextFilter] Exception javax.servlet.ServletException: BeanUtils.populate at org.apache.struts.util.

Re: getting javax.servlet.ServletException...

2003-03-25 Thread Simon Kelly
Simon - Original Message - From: "Ramesh_KumarP" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 25, 2003 1:38 PM Subject: FW: getting javax.servlet.ServletException... > As I can not send all files in one msg I am sending it in 3 mails.. > > Regards

RE: getting javax.servlet.ServletException...

2003-03-25 Thread Ramesh_KumarP
ject: Re: getting javax.servlet.ServletException... Attachement are removed on this mailing list. Paste your file in message body Nico. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL P

RE: getting javax.servlet.ServletException...

2003-03-25 Thread Ramesh_KumarP
getting javax.servlet.ServletException... Right. I just ran your file through XMLSpy with the dtd. You will be pleased to know it is well formed and valid. I cant really see anything else wrong with it. Try knocking out the space after the encoding and befor the ? like this 8859-1"?>. and

FW: getting javax.servlet.ServletException...

2003-03-25 Thread Ramesh_KumarP
As I can not send all files in one msg I am sending it in 3 mails.. Regards, P.RAMESHKUMAR, -Original Message- From: Ramesh_KumarP Sent: Tuesday, March 25, 2003 5:39 PM To: 'Struts Users Mailing List' Subject: RE: getting javax.servlet.ServletException... My erro

Re: getting javax.servlet.ServletException...

2003-03-25 Thread Nicolas De Loof
Attachement are removed on this mailing list. Paste your file in message body Nico. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: getting javax.servlet.ServletException...

2003-03-25 Thread Puneet.Sharma
which attachment u r taking about ?? -Original Message- From: Simon Kelly [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 4:07 PM To: Struts Users Mailing List Subject: Re: getting javax.servlet.ServletException... Couldn't open the attachment, could you just paste it int

Re: getting javax.servlet.ServletException...

2003-03-25 Thread Simon Kelly
Couldn't open the attachment, could you just paste it into the message for me, Cheers Simon - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: getting javax.servlet.ServletException...

2003-03-25 Thread Ramesh_KumarP
PROTECTED] Sent: Tuesday, March 25, 2003 3:07 PM To: Struts Users Mailing List Subject: Re: getting javax.servlet.ServletException... Right. I just ran your file through XMLSpy with the dtd. You will be pleased to know it is well formed and valid. I cant really see anything else wrong with it

Re: getting javax.servlet.ServletException...

2003-03-25 Thread Simon Kelly
ED]> Sent: Tuesday, March 25, 2003 10:06 AM Subject: RE: getting javax.servlet.ServletException... > Hi > Thanx for your reply > Following is my struts-config.xml file.. > I am only using ActionServlet not using ActionForm > > > > > > > > >&quo

RE: getting javax.servlet.ServletException...

2003-03-25 Thread Ramesh_KumarP
getting javax.servlet.ServletException... Can you post a copy of your struts-config.xml Cheers Simon - Original Message - From: "Ramesh_KumarP" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday,

Re: getting javax.servlet.ServletException...

2003-03-25 Thread Simon Kelly
Can you post a copy of your struts-config.xml Cheers Simon - Original Message - From: "Ramesh_KumarP" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, March 25, 2003 9:33 AM Subject: getting javax.servlet.Servlet

getting javax.servlet.ServletException...

2003-03-25 Thread Ramesh_KumarP
Hi all I am getting following error when working struts on iplanet webserver 6.0 Any one can solve the problem ? [25/Mar/2003:13:46:18] warning ( 1848): vs(https-CTP-VI0455)ServletException thrown in servlet.init; context = /BP, servlet = 'action'; stack tace: javax.servlet.Servle

RE: javax.servlet.ServletException

2003-02-04 Thread Pani, Gourav
You might consider a tutorial in internet search. Additionally, RTFM on Struts. -Original Message- From: EG [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 1:44 PM To: Struts Users Mailing List Subject: Re: javax.servlet.ServletException Do you have any link where sample

Re: javax.servlet.ServletException

2003-02-04 Thread EG
Do you have any link where sample applications are available ? Thank From: "Pani, Gourav" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Tuesday, February 04, 2003 12:39 PM Subject: RE: javax.servlet.ServletException

Re: javax.servlet.ServletException

2003-02-04 Thread EG
Thank for the advices ! - Original Message - From: "Pani, Gourav" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Tuesday, February 04, 2003 12:39 PM Subject: RE: javax.servlet.ServletException > Eric, >

RE: javax.servlet.ServletException

2003-02-04 Thread Pani, Gourav
uest dispatcher. you might want to consult sample applications available online. -Original Message- From: EG [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 12:06 PM To: Struts Users Mailing List Subject: Re: javax.servlet.ServletException Here the web.xml ane st

RE: javax.servlet.ServletException

2003-02-04 Thread Ravi Kora
ards, Ravi Kora [EMAIL PROTECTED] 301-869-3299(H) 337-739-3434(M) -Original Message- From: EG [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 12:06 PM To: Struts Users Mailing List Subject: Re: javax.servlet.ServletException Here the web.xml ane struts-config.xml

Re: javax.servlet.ServletException

2003-02-04 Thread EG
javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpSession; import javax.servlet.http.HttpServletResponse; import org.apache.struts.action.Action; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionForm; import

RE: javax.servlet.ServletException

2003-02-04 Thread Pani, Gourav
, 2003 11:58 AM To: Struts Users Mailing List Subject: javax.servlet.ServletException I try to run a simple example using struts and I have this error : javax.servlet.ServletException: Wrapper cannot find servlet class org.apache.struts.action.ActionServlet or a class it depends on I think

javax.servlet.ServletException

2003-02-04 Thread Eric Gignac
I try to run a simple example using struts and I have this error : javax.servlet.ServletException: Wrapper cannot find servlet class org.apache.struts.action.ActionServlet or a class it depends on I think everything is right in my web.xml ! Please help !

RE: "javax.servlet.ServletException: Missing message for key index.title"

2002-11-25 Thread Taariq Levack
>pls help me in fixing this problem.. i am stuck badly >rs ERROR: Application resources not loaded -- check servlet container logs for error messages. do you have that snippet in the first jsp you load ? it doesn't look like it or you would get that error when your file is not

RE: "javax.servlet.ServletException: Missing message for key index.title"

2002-11-25 Thread C.Bhaskaran
Pls check your MessageResources.porperties file u had not given Index.title=My Index Blah Blah .. -Original Message- From: ravi shankar [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 11:01 AM To: Struts Users Mailing List Subject: Re: "javax.servlet.ServletExce

Re: "javax.servlet.ServletException: Missing message for key index.title"

2002-11-25 Thread ravi shankar
pls help me in fixing this problem.. i am stuck badly rs - Original Message - From: kiuma <[EMAIL PROTECTED]> To: Struts Users Mailing List <[EMAIL PROTECTED]> Sent: Monday, November 25, 2002 6:42 PM Subject: Re: "javax.servlet.ServletException: Missing message for key i

RE: "javax.servlet.ServletException: Missing message for key index.title"

2002-11-25 Thread Taariq Levack
>pls could you tell me what files has to be in which folder.. >thanx >ravi its not so important where you keep the ApplicationResources.properties file, and afaik its not even important what you name it, as long as its properly defined in your web-inf/struts-config.xml file in this case the App

Re: "javax.servlet.ServletException: Missing message for key index.title"

2002-11-25 Thread ravi shankar
> I suppose you haven't defined the index.title value in your > MessageResources.porperties. > Hi thanx for replying. Yup, I've the file and the 'index.title' is defined. i am using 'ApplicationResources.properties' file which i got it in struts-example application which i downloaded from the site

Re: "javax.servlet.ServletException: Missing message for key index.title"

2002-11-25 Thread kiuma
I suppose you haven't defined the index.title value in your MessageResources.porperties. ravi shankar wrote: Hi friends, I've got the following error, which i got while opening a jsp file. javax.servlet.ServletException: Missing message for key index

"javax.servlet.ServletException: Missing message for key index.title"

2002-11-25 Thread ravi shankar
Hi friends, I've got the following error, which i got while opening a jsp file. javax.servlet.ServletException: Missing message for key index.title at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:461) at

Re: again ArrayList and javax.servlet.ServletException: BeanUtils.populate exception

2002-09-27 Thread Eddie Bush
It will be examined and addressed in due time. If you have time to "get hacking on it" (wrt the source that is) and happen to be able to fix it, you should attach a "diff -u" of your changes to the bug so that it can be easily patched by a committer. Martin Grebac wrote: > Hi, > so here is t

Re: again ArrayList and javax.servlet.ServletException: BeanUtils .populate exception

2002-09-27 Thread Martin Grebac
ten >> >> >> >>> -Original Message- >>> From: Martin Grebac [mailto:[EMAIL PROTECTED]] >>> Sent: 27 September 2002 13:32 >>> To: Struts Users Mailing List >>> Subject: Re: again ArrayList and javax.servlet.ServletException: &

Re: again ArrayList and javax.servlet.ServletException: BeanUtils .populate exception

2002-09-27 Thread Martin Grebac
recompiling the ModulePathForm class? > >- Thorsten > > > >>-Original Message- >>From: Martin Grebac [mailto:[EMAIL PROTECTED]] >>Sent: 27 September 2002 13:32 >>To: Struts Users Mailing List >>Subject: Re: again ArrayList and javax.servlet.Ser

RE: again ArrayList and javax.servlet.ServletException: BeanUtils .populate exception

2002-09-27 Thread thorsten_soebirk
Mailing List > Subject: Re: again ArrayList and javax.servlet.ServletException: > BeanUtils .populate exception > > > No, it doesn't work also. I get the same exception everytime. > > I want to have the possibility to select multiple folders, so I did > what you

RE: again ArrayList and javax.servlet.ServletException: BeanUtils .populate exception

2002-09-27 Thread Mohan Radhakrishnan
Beans. bye, Mohan -Original Message- From: Martin Grebac [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 6:02 PM To: Struts Users Mailing List Subject: Re: again ArrayList and javax.servlet.ServletException: BeanUtils .populate exce

Re: again ArrayList and javax.servlet.ServletException: BeanUtils.populate exception

2002-09-27 Thread Martin Grebac
ew ArrayList(); >>} >> >>public ArrayList getFolders() { >> return this.folders; >>} >> >>public void setFolders(ArrayList folders) { >>this.folders = folders; >>} >>} >> >>the values

RE: again ArrayList and javax.servlet.ServletException: BeanUtils.populate exception

2002-09-27 Thread thorsten_soebirk
lders = folders; > } > } > > the values from the bean are shown, but when I click Submit, > I get this > exception: > > javax.servlet.ServletException: BeanUtils.populate > at > org.apache.struts.util.RequestUtils.populate(RequestUtils.java:774) >

again ArrayList and javax.servlet.ServletException: BeanUtils.populateexception

2002-09-27 Thread Martin Grebac
hen I click Submit, I get this exception: javax.servlet.ServletException: BeanUtils.populate at org.apache.struts.util.RequestUtils.populate(RequestUtils.java:774) at org.apache.struts.action.ActionServlet.processPopulate(ActionServlet.java:2061) at org.apache.strut

Re: javax.servlet.ServletException: Cannot retrieve definition for form bean Logon

2002-08-19 Thread chuckcavaness
Password: > > > > > -- > here's what i "want" to do > > -have index.jsp with a form, > -post it to logon.do > -LogonAction for now just takes the form variables and puts them in the > bean

RE: javax.servlet.ServletException: Cannot retrieve definition for form bean Logon

2002-08-19 Thread Galbreath, Mark
Change your action to "/logon" and see if that helps. Mark -Original Message- From: Darren McGuinness [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 12:14 PM To: Struts Users Mailing List Subject: Re: javax.servlet.ServletException: Cannot retrieve definition for

Re: javax.servlet.ServletException: Cannot retrieve definition for form bean Logon

2002-08-19 Thread Darren McGuinness
: > > > > > -- > here's what i "want" to do > > -have index.jsp with a form, > -post it to logon.do > -LogonAction for now just takes the form variables and puts them in the > beanthen calls

RE: javax.servlet.ServletException: Cannot retrieve definition for form bean Logon

2002-08-19 Thread Galbreath, Mark
User Name: Password: -- here's what i "want" to do -have index.jsp with a form, -post it to logon.do -LogonAction for now just takes the form variables and puts them in the beanthen calls search.jsp, passing it the

Re: javax.servlet.ServletException: Cannot retrieve definition for form bean Logon

2002-08-19 Thread Darren McGuinness
orm, -post it to logon.do -LogonAction for now just takes the form variables and puts them in the beanthen calls search.jsp, passing it the bean. I carried out chucks recomendation, and now i get this: javax.servlet.ServletException: No getter method for property requestid of bean org.apache

Re: javax.servlet.ServletException: Cannot retrieve definition for form bean Logon

2002-08-19 Thread chuckcavaness
Chuck > hi > > > > ciao > > chriz > > > Darren McGuinness wrote: > > I'm trying to set up a basic program to perform a logon action...I get said > > error: > > > > javax.servlet.ServletException: Cannot retrieve definition for fo

RE: javax.servlet.ServletException: Cannot retrieve definition for form bean Logon

2002-08-19 Thread Galbreath, Mark
Subject: javax.servlet.ServletException: Cannot retrieve definition for form bean Logon I'm trying to set up a basic program to perform a logon action...I get said error: javax.servlet.ServletException: Cannot retrieve definition for form bean Logon the line it falls over on is in index.jsp:

Re: javax.servlet.ServletException: Cannot retrieve definition forform bean Logon

2002-08-19 Thread christoph gapp
hi ciao chriz Darren McGuinness wrote: > I'm trying to set up a basic program to perform a logon action...I get said > error: > > javax.servlet.ServletException: Cannot retrieve definition for form bean Logon > > the line it falls over on is in index.jsp: >

Re: javax.servlet.ServletException: Cannot retrieve definition for form bean Logon

2002-08-19 Thread chuckcavaness
o.Logon", then you need to specify the fully-qualified name. Just a thought, Chuck Cavaness > I'm trying to set up a basic program to perform a logon action...I get said > error: > > javax.servlet.ServletException: Cannot retrieve definition for form bean Logon > >

javax.servlet.ServletException: Cannot retrieve definition for form bean Logon

2002-08-19 Thread Darren McGuinness
I'm trying to set up a basic program to perform a logon action...I get said error: javax.servlet.ServletException: Cannot retrieve definition for form bean Logon the line it falls over on is in index.jsp: Am using JBuilder v6, with struts 1.0 and tomcat 4.0 Any help appreciated! my s

javax.servlet.ServletException: Cannot retrieve definition for form beannull

2002-06-21 Thread olschmeltzer
Objet : javax.servlet.ServletException: Cannot retrieve definition for form bean null Hello, I am getting this exception sometimes, and I don't really understand what it means. What is particulartly strange is the following : I have two servlets, each one dealing with a particular extens

javax.servlet.ServletException: Cannot find ActionMappings or ActionFormBeans collection

2002-04-27 Thread Ketan Malekar
hi All, I am new to Struts. Im getting this error. Im using JBuilder 6 and Tomcat: javax.servlet.ServletException: Cannot find ActionMappings or

javax.servlet.ServletException: can't remove Attributes from request scope

2002-01-21 Thread Guy Roberts
l Servlet Error: javax.servlet.ServletException: cant remove Attributes from request scope at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:453) at _0002flogon_0002ejsplogon_jsp_0._jspService(_0002flogon_0002ejsplogon_jsp_0.java:

Re: javax.servlet.ServletException: Cannot find message resources under key org.apache.struts.action.MESSAGE

2002-01-06 Thread Reid Pinchback
Jack <[EMAIL PROTECTED]> wrote: What causes this exception: javax.servlet.ServletException: Cannot find message resources under key org.apache.struts.action.MESSAGE? I ran into this repeatedly trying to get Struts working within JBuilder. I found two things I had to fix: 1. Never

Re: javax.servlet.ServletException: Cannot find message resources under key org.apache.struts.action.MESSAGE

2002-01-04 Thread Andy Timm
AIL PROTECTED]> wrote: > What causes this exception: > javax.servlet.ServletException: Cannot find > message resources under key > org.apache.struts.action.MESSAGE? > > I thought it was because the resources file couldn't > be found. I verified > my app's deployment

javax.servlet.ServletException: Cannot find message resources under key org.apache.struts.action.MESSAGE

2002-01-03 Thread Jack
What causes this exception: javax.servlet.ServletException: Cannot find message resources under key org.apache.struts.action.MESSAGE? I thought it was because the resources file couldn't be found. I verified my app's deployment descriptor sets the application param value

javax.servlet.ServletException: BeanUtils.populate

2001-11-02 Thread Sudha
Hello. I get the following error 2001-11-02 18:34:42,855 533668 [Thread-4] ERROR (gui.framework.ExceptionHandler) - Handling exception javax.servlet.ServletException with template error.htm 2001-11-02 18:34:42,855 533668 [Thread-4] ERROR (gui.framework.ExceptionHandler) - Exception-Message

javax.servlet.ServletException: org.apache.struts.util.PropertyMessageResources

2001-09-21 Thread Kito D. Mann
t. It either happens automatically when I recompile an action, or when I reload an action using the admin/reload action mapping: Internal Servlet Error: javax.servlet.ServletException: org.apache.struts.util.PropertyMessageResources at org.apache.jasper.runtime.PageContextImpl

javax.servlet.ServletException: BeanUtils.populate

2001-09-11 Thread Govindaraj, Suresh
bean properties from this request 2001-09-11 11:11:09 - Ctx( /topaz ): Exception in: R( /topaz + /claimReview/patientVisitInfo.do + null) - javax.servlet.ServletException: BeanUtils.populate at org.apache.struts.util.RequestUtils.populate(RequestUtil

javax.servlet.ServletException: Cannot find bean element in scope null

2001-09-05 Thread christoph gapp
hi,   know anybody who what´s wrong in the lines below?? i not!   javax.servlet.ServletException: Cannot find bean element in scope null --   <%  java.util.ArrayList list = new java.util.ArrayList();  list.add(

Re: Anyone Seen This? javax.servlet.ServletException: Cannot find bean org....

2001-08-31 Thread CityBoyForLove
u gotr to specify the bean tag in form tag like type="com.transplace.struts.bean.StakeholderForm"   action="createStakeholder.do" > where html is the prefix for the tld nnjoy bala

AW: javax.servlet.ServletException: cant remove Attributes from request scope

2001-07-09 Thread Holger Wiechert
We had the same problem using tomcat3.1. When using 3.2, it worked. HTH -Ursprüngliche Nachricht- Von: vj nas [mailto:[EMAIL PROTECTED]] Gesendet: Sonntag, 8. Juli 2001 00:36 An: [EMAIL PROTECTED] Betreff: javax.servlet.ServletException: cant remove Attributes from request scope I had

javax.servlet.ServletException: cant remove Attributes from request scope

2001-07-07 Thread vj nas
server.xml, etc.., I tried to figure out myself. But going no where. Your help is greatly appreciated. Thanks, Sincerely, Vijai. javax.servlet.ServletException: cant remove Attributes from request scope at java.lang.Throwable.(Throwable.java:96) at java.lang.Exception.(Exception.java:44) at

Re: javax.servlet.ServletException: Cannot find bean client in scope null

2001-06-12 Thread Oleg V Alexeev
Hello Geoffrey, Try to specify scope to iterate tag. Tuesday, June 12, 2001, 12:40:21 PM, you wrote: GVN> Hi all, GVN> I always have this error with this code in my jsp. GVN> GVN> GVN> GVN> GVN> GVN> GVN> The problem is the "bean:write " tag inside the "logic:iterate" tag. GVN> The

RE: javax.servlet.ServletException: Cannot find bean client in scope null

2001-06-12 Thread Leo Song
Try taking the property attribute out of the bean:write tag. Leo -Original Message- From: Abraham Kang [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 12, 2001 1:46 PM To: [EMAIL PROTECTED] Subject: RE: javax.servlet.ServletException: Cannot find bean client in scope null Hi Geoffrey

RE: javax.servlet.ServletException: Cannot find bean client in scope null

2001-06-12 Thread Abraham Kang
Hi Geoffrey, Try taking the property attribute out of the iterate tag. --Abraham > -Original Message- > From: Geoffrey Van Nuffelen [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 12, 2001 1:40 AM > To: Struts-User (E-Mail) > Subject: javax.servlet.ServletExcepti

javax.servlet.ServletException: Cannot find bean client in scope null

2001-06-12 Thread Geoffrey Van Nuffelen
Hi all, I always have this error with this code in my jsp. The problem is the "bean:write " tag inside the "logic:iterate" tag. The "iterate" is working... and the "write" is working without the "iterate". What I have to do ?? Is it a bug ??? Thanks in advance, Geoffrey...

RE: javax.servlet.ServletException when running struts-example on JRun 3.0 / NT 4.0 SP5

2001-01-22 Thread Guillaume Lahitette
CTED] Subject: RE: javax.servlet.ServletException when running struts-example on JRun 3.0 / NT 4.0 SP5 I got it working with JRun but is D:\JRun30\servers\default\scb\WEB-INF\classes part of the struts example you are trying to run. I don't think D:\JRun30\servers\default\scb\WEB-INF\classes is

RE: javax.servlet.ServletException when running struts-example on JRun 3.0 / NT 4.0 SP5

2001-01-19 Thread Abraham Kang
r the machine's system variable (if on NT) or environment variable on UNIX? --Abraham > -Original Message- > From: Guillaume Lahitette [mailto:[EMAIL PROTECTED]] > Sent: Friday, January 19, 2001 2:51 PM > To: [EMAIL PROTECTED] > Subject: javax.servlet.ServletException when

javax.servlet.ServletException when running struts-example on JRun 3.0 / NT 4.0 SP5

2001-01-19 Thread Guillaume Lahitette
Guillaume Lahitette Work: 281 966 3757 Software Engineer Fax:281 966 3801 Cable & Wireless [EMAIL PROTECTED] javax.servlet.ServletException: javax.servlet.jsp.tagext.TagAttributeInfo: method (Ljava/lang/String;ZZLjava/lang/String;)V not found] javax.servlet.Se