No action instance for path /...

2004-02-03 Thread Daniel
How can I fix this message ??? SEVERE: No action instance for path /wellcome could be created my struts-config.xml is: ?xml version=1.0 encoding=UTF-8? !DOCTYPE struts-config PUBLIC -//Apache Software Foundation//DTD Struts Configuration 1.1//EN http://jakarta.apache.org/struts/dtds

Re: No action instance for path /...

2004-02-03 Thread Max Cooper
PROTECTED] Sent: Tuesday, February 03, 2004 1:12 PM Subject: No action instance for path /... How can I fix this message ??? SEVERE: No action instance for path /wellcome could be created my struts-config.xml is: ?xml version=1.0 encoding=UTF-8? !DOCTYPE struts-config PUBLIC -//Apache

Re: No action instance for path /logoff could be created

2003-10-08 Thread Ted Husted
following errors wonder why: - HTTP Status 500 - No action instance for path /logoff could be created - I have defined Action Mappings for logoff in my

No action instance for path /logoff could be created

2003-10-07 Thread Hari Om
I am working on a simple Logon Application. I am able to Logon to my Logon application and when I click the Signout Link it gives me following errors wonder why: - HTTP Status 500 - No action instance for path /logoff could

Re: Error : No Action Instance for path could be Created

2003-09-22 Thread Ted Husted
has a different actionform to that of the calling action. But, When I run the application, I get the error, No action instance for path /srfailure could be created. srfailure is the path for the new action. what might be the error? All the action and form classes are present. My entries

Error : No Action Instance for path could be Created

2003-07-29 Thread guruprasad jakka
Hi, I am using action chaining to call an action for an action. The new action has a different actionform to that of the calling action. But, When I run the application, I get the error, No action instance for path /srfailure could be created. srfailure is the path for the new action. what

need help.. no action instance issue

2003-06-10 Thread Rajat Nayer
getting the foll error: 2003-06-10 14:55:07 - Ctx( /myproject ): 500 R( /myproject + /submit.do + null) No action instance for path /submit could be created My struts-config.xml has the foll entries: START struts-config !-- == Form Bean Definitions = -- form

RE: Errata: need help.. no action instance issue

2003-06-10 Thread Rajat Nayer
... -j. -Original Message- From: Rajat Nayer [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2003 11:50 AM To: Struts Users Mailing List Subject: Errata: need help.. no action instance issue Please note that the SubmitAction is in the package package

Re: need help.. no action instance issue

2003-06-10 Thread James Mitchell
Subject: need help.. no action instance issue Hi All, Greetings!!! I am the newest member on this list. I am trying to setup the Struts (ver 1.0.1) using Tomcat 3.2.4 and following the tutorial at address: http://javaboutique.internet.com/tutorials/Struts/ I am facing the following issue

Re: need help.. no action instance issue

2003-06-10 Thread Rajat Nayer
. Is there a reason you chose 3.2? -- James Mitchell Software Developer/Struts Evangelist http://www.struts-atlanta.org - Original Message - From: Rajat Nayer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 10, 2003 5:46 AM Subject: need help.. no action instance issue Hi

No action instance for path your path name could be created

2003-04-02 Thread Dan Tarkenton
/ginsu/test/addFile.jsp : *** Begin My Error *** HTTP Status 500 - No action instance for path /addFile could be created type Status report message No action instance for path /addFile could be created description The server encountered an internal error (No action

RE: No action instance for path your path name could be created

2003-04-02 Thread Vivian, Nigel (N.)
16:23 To: [EMAIL PROTECTED] Subject: No action instance for path your path name could be created Hello all. I apologize for the size of this message, but I thought it necessary to include some of my source. I am trying to do a very basic thing here. I trying to pass form data to an Action

Re: No action instance for path your path name could be created

2003-04-02 Thread Gareth Andrew
*** HTTP Status 500 - No action instance for path /addFile could be created type Status report message No action instance for path /addFile could be created description The server encountered an internal error (No action instance for path /addFile could be created) that prevented it from fulfilling

RE: No action instance for path your path name could be created

2003-04-02 Thread Dan Tarkenton
Yes I am sure everything is compiling. I use ant to take care of my build and creation of my ginsu.war (ginsu = my web app name). In my build process, after a compile, I basically jar all of my class files into ginsu.jar, and this jar file winds up in my WEB-INF/lib directory. I basically

Re: No action instance for path your path name could be created

2003-04-02 Thread Dan Tarkenton
: *** Begin My Error *** HTTP Status 500 - No action instance for path /addFile could be created type Status report message No action instance for path /addFile could be created description The server encountered an internal error (No action

Re: No action instance for path your path name could be created

2003-04-02 Thread Max Cooper
Here's the problem: * struts-config.xml *** actionpath=/addFile type=ginsu.strutsApp.AddFileAction ** Begin AddFileAction.java package src.ginsu.strutsApp; Your Action's fully qualified class name is

Re: No action instance for path your path name could be created

2003-04-02 Thread Gareth Andrew
Max, I'm curious as to whats wrong with using mixed case (camelCase) package names. Obviously its better to remove any redundant words from package (or class, or object) names, but surely the advising someone to avoid mixed case package names is a little over prescriptive. Gareth. Your

Re: Http Status 500- No action instance for path /timeSearch could be created

2003-03-03 Thread Claude Betancourt
PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, March 03, 2003 1:15 AM Subject: Http Status 500- No action instance for path /timeSearch could be created Hi I am getting this exception when create a action on a form name timings.jsp. please give me idea to solve

Http Status 500- No action instance for path /timeSearch could be created

2003-03-02 Thread shashi_struts
Hi I am getting this exception when create a action on a form name timings.jsp. please give me idea to solve this exception Regards Shashi Bhushan

Re: (Un)expected behaviour in Action instance variables?

2003-01-21 Thread Adolfo Miguelez
to the logging. The pointer is anyway unique, since the Action instance is the same. My next attemp will be to use ThreadLocal variables to try to made every value of the variable take different values for every execution (Thread). Not very polite perhaps, but I save to pass the request in every accesor

Re: (Un)expected behaviour in Action instance variables?

2003-01-21 Thread Craig R. McClanahan
On Tue, 21 Jan 2003, Adolfo Miguelez wrote: Date: Tue, 21 Jan 2003 10:26:49 + From: Adolfo Miguelez [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: (Un)expected behaviour in Action instance variables? Hi, fortunately, after

Re: (Un)expected behaviour in Action instance variables?

2003-01-21 Thread Adolfo Miguelez
behaviour in Action instance variables? Hi, fortunately, after more testing theory is right and it happends that should happen. You are right. It is my fault since I was testing the variable after previous asignment so the variable got the different values because I was asigning a new value

Re: (Un)expected behaviour in Action instance variables?

2003-01-21 Thread Craig R. McClanahan
On Tue, 21 Jan 2003, Adolfo Miguelez wrote: Date: Tue, 21 Jan 2003 21:47:53 + From: Adolfo Miguelez [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: (Un)expected behaviour in Action instance variables

(Un)expected behaviour in Action instance variables?

2003-01-20 Thread Adolfo Miguelez
Hi all, some of our teams have defined an instance variable in an Action. Wrong policy as said in the online docuemntation: *** http://jakarta.apache.org/struts/userGuide/building_controller.html#action_design_guide Only Use Local Variables - The most important principle that

Re: (Un)expected behaviour in Action instance variables?

2003-01-20 Thread David Graham
] Subject: (Un)expected behaviour in Action instance variables? Date: Mon, 20 Jan 2003 18:08:17 + Hi all, some of our teams have defined an instance variable in an Action. Wrong policy as said in the online docuemntation: *** http://jakarta.apache.org/struts/userGuide

Re: (Un)expected behaviour in Action instance variables?

2003-01-20 Thread Giri Alwar
. - Original Message - From: Adolfo Miguelez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, January 20, 2003 12:08 PM Subject: (Un)expected behaviour in Action instance variables? Hi all, some of our teams have defined an instance variable in an Action. Wrong policy as said in the online

Re: How to get a reference to an Action instance

2003-01-01 Thread Lirian Ostrovica
- From: Kris Schneider [EMAIL PROTECTED] Date: Monday, December 30, 2002 8:57 am Subject: Re: How to get a reference to an Action instance As others have said, it's unclear exactly what it is you need to do, but here's a general suggestion for having a tag handler and action play nicely

Re: How to get a reference to an Action instance

2002-12-30 Thread Martin Cooper
On Sun, 29 Dec 2002, Lirian Ostrovica wrote: Hi, I need to access an Action instance (I have its class name) while writting a Tag. I have seen that ActionServlet stores Action instances in a 'protected' variable (FastHashMap), and so far the only way I can see, is to extend

Re: How to get a reference to an Action instance

2002-12-30 Thread Kris Schneider
need to access an Action instance (I have its class name) while writting a Tag. I have seen that ActionServlet stores Action instances in a 'protected' variable (FastHashMap), and so far the only way I can see, is to extend ActionServlet and write my own 'public' method to do the job

How to get a reference to an Action instance

2002-12-29 Thread Lirian Ostrovica
Hi, I need to access an Action instance (I have its class name) while writting a Tag. I have seen that ActionServlet stores Action instances in a 'protected' variable (FastHashMap), and so far the only way I can see, is to extend ActionServlet and write my own 'public' method to do the job

Re: How to get a reference to an Action instance

2002-12-29 Thread Taylor Cowan
would be better performance wise. Taylor - Original Message - From: Lirian Ostrovica [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Sunday, December 29, 2002 11:09 AM Subject: How to get a reference to an Action instance Hi, I need to access an Action instance (I

Re: How to get a reference to an Action instance

2002-12-29 Thread Lirian Ostrovica
6:23 pm Subject: Re: How to get a reference to an Action instance Action instances, like servlets, usually do not maintain state by usingmember variables. Thus most invokations of their methods do not depend upon a particular instance, so you may just instantiate the action and invoke its

Re: How to get a reference to an Action instance

2002-12-29 Thread Eddie Bush
Why do you want to do this? I can't imagine why you would need to. Lirian Ostrovica wrote: Hi, I need to access an Action instance (I have its class name) while writting a Tag. I have seen that ActionServlet stores Action instances in a 'protected' variable (FastHashMap), and so far the only

Unable to create Action instance

2002-11-18 Thread meissa . Sakho
Hi all, While triying to submit my login form, I have the error message below(I'm usinng Tomcat 4.0) No action instance for path /login could be created It seem to me that everything has been declared as it should be. here is my strut-config and the corresponding action class. I really don't

Huge action instance synchronization problem

2002-10-28 Thread Dan Bunea
My problem: I have a search action. When 2 (or more) users submit the search form simultaniously, because the seach usually takes about 1-2 seconds, the same action instance is rethrieved to complete the search and sessions are combined like this: the action makes the search for the first

RE: Huge action instance synchronization problem

2002-10-28 Thread Andrew Hill
The action instance itself doesnt have any member variables does it? If you store stuff in the HTTPSession each user will have their own session context - it shouldnt (be possible to) get mixed up like that (unless both requests are actually by the same user (in the same session) - in which case

RE: Huge action instance synchronization problem

2002-10-28 Thread Dan Bunea
I know it shouldn't have this problem. It is not the same session, nor the same user that performs the search. Of course each user has the same session, but let me explain some more of what I have seen happening. The first user (say with session id #s1) obtains the action instance ( say instance

RE: Huge action instance synchronization problem

2002-10-28 Thread Dan Bunea
:13 PM To: Struts Users Mailing List Subject: RE: Huge action instance synchronization problem It is good practice to have a delegate class that handles all business logic. This will not only ensure that you don't run into problems such as you state but also de-couples your business logic from

RE: Huge action instance synchronization problem

2002-10-28 Thread Sri Sankaran
Mailing List' Subject: RE: Huge action instance synchronization problem Thank you, but what happens if I set the execute method from the action synchronized? I did that and it works fine. I have also run some tests to see if performance drops but it did not. -Original Message- From: Sri

RE: Huge action instance synchronization problem

2002-10-28 Thread James Mitchell
are infinite, the universe and human stupidity, and I'm not sure about the former. - Albert Einstein (1879-1955) -Original Message- From: Dan Bunea [mailto:danbunea;linksystems.ro] Sent: Monday, October 28, 2002 9:18 AM To: 'Struts Users Mailing List' Subject: RE: Huge action instance

Re: Huge action instance synchronization problem

2002-10-28 Thread Craig R. McClanahan
. McClanahan' [EMAIL PROTECTED] Subject: Huge action instance synchronization problem My problem: I have a search action. When 2 (or more) users submit the search form simultaniously, because the seach usually takes about 1-2 seconds, the same action instance is rethrieved to complete the search

No action instance for path /html/LogonAction could be created

2002-10-22 Thread Vikas Malla
Consequently, I am getting this error in my junit test: [junit] was expecting '/app/html/index.jsp' but received '/appnull' [junit] junit.framework.AssertionFailedError: was expecting '/awf/html/index .jsp?s=2' but received '/awfnull' [junit] at

No action instance for path /html/LogonAction could be created

2002-10-22 Thread Vikas Malla
redirect=false/ /action My server side error log tells me - The server encountered an internal error (No action instance for path /html/LogonAction could be created) that prevented it from fulfilling this request. Why am I encountering this error? the application seems to parse my struts

Re: No Action Instance

2002-10-16 Thread Richard Wagner
. This thread ended a few weeks ago. Is there a solution to this problem? Regards - Original Message - From: slickdev [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, August 27, 2002 9:52 PM Subject: No Action Instance I developed a simple Struts app named

Re: No action instance for path /action could not be created. (solved)

2002-09-11 Thread rob
gone through the archives prior to posting this but have yet to discover a solution. I'm getting that common error Error 500 No action instance for path /login could be created. The difficulty I'm having is that the application was and is running perfectly fine on a tomcat 4.x servlet

No Action Instance - Deploying on WAS 4.0.2

2002-09-10 Thread Shashikiran M
Hi All, The ear file created was successfully deployed on WAS 4.0.2 and also the Struts-Config.xml file was loaded. But, when trying to invoke one of the Action class it says No Action Instance. Please Help. --Shashi. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

Re: No Action Instance

2002-08-28 Thread Max Cooper
- Original Message - From: slickdev [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, August 27, 2002 9:52 PM Subject: No Action Instance I developed a simple Struts app named ecapp on win2k, then dropped it's war file into Tomcat 3.3.1 running on a Sun box

No Action Instance ??

2002-08-28 Thread slickdev
What can cause http status 500: msg: No action instance for path /mystrutssupportclass The app works fine on windows; but gives this error on SunOS.

Re: struts-config windows 2 unix? No Action Instance

2002-08-28 Thread slickdev
thanks all... i find that the http status 500 problem is not from extra control char's in the config, although i did clean the config file with dos2unix anyway. still getting: error 500: no action instance for myclassname ?? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

RE: struts-config windows 2 unix? No Action Instance

2002-08-28 Thread Kevin A. Smith
windows 2 unix? No Action Instance thanks all... i find that the http status 500 problem is not from extra control char's in the config, although i did clean the config file with dos2unix anyway. still getting: error 500: no action instance for myclassname ?? -- To unsubscribe, e-mail

Re: struts-config windows 2 unix? No Action Instance

2002-08-28 Thread slickdev
PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, August 28, 2002 1:03 PM Subject: RE: struts-config windows 2 unix? No Action Instance Here's a silly question that's bit me a few times: are you sure that the .class file is physically packaged in the webapp

RE: struts-config windows 2 unix? No Action Instance

2002-08-28 Thread Kevin A. Smith
, August 28, 2002 2:13 PM To: Struts Users Mailing List Subject: Re: struts-config windows 2 unix? No Action Instance yeah, it's packaged at WEB-INF/classes/ecapp I also set the struts-config action mapping thus: !-- database main page action -- action path=/dbopsAction type

Re: struts-config windows 2 unix? No Action Instance

2002-08-28 Thread Max Cooper
? -Max - Original Message - From: slickdev [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, August 28, 2002 11:13 AM Subject: Re: struts-config windows 2 unix? No Action Instance yeah, it's packaged at WEB-INF/classes/ecapp I also set the struts-config

No Action Instance

2002-08-27 Thread slickdev
+ /dbopsAction.do + null) msg:No action instance for path /dbopsAction could be created I figure this is a path problem. However, the dbopsAction class is in ecapp/WEB-INF/classes, as it should be. The struts-config has this for the action mapping, which works fine in w2K: action path=/dbopsAction

No Action Instance

2002-08-27 Thread Struts Newsgroup (@Basebeans.com)
Subject: No Action Instance From: slickdev [EMAIL PROTECTED] === --Boundary_(ID_nSyNUPAYe925N/tzugV1PQ) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT I developed a simple Struts app named ecapp on win2k, then dropped it's war file into Tomcat 3.3.1 running

SEVERE: No action instance for path /xxxxxx could be created

2002-07-25 Thread Horacio de Oro
error SEVERE: No action instance for path /xx could be created java.lang.ClassCastException: prueba2.LogoffAction at org.apache.struts.action.RequestProcessor.processActionCreate(RequestProcessor.java:314) at org.apache.struts.action.RequestProcessor.process

RE: SEVERE: No action instance for path /xxxxxx could be created

2002-07-25 Thread Andrew Hill
Does your action class actually extends Action? -Original Message- From: Horacio de Oro [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 22:02 To: [EMAIL PROTECTED] Subject: SEVERE: No action instance for path /xx could be created Hi! I've tryed struts 1.0 and I could make

Re: SEVERE: No action instance for path /xxxxxx could be created

2002-07-25 Thread Horacio de Oro
On Thu, 25 Jul 2002 22:10:31 +0800 Andrew Hill [EMAIL PROTECTED] wrote: Does your action class actually extends Action? yes... see below: The Action class: package prueba2; import java.util.Hashtable; import java.util.Locale; import java.util.Vector; import

Re: SEVERE: No action instance for path /xxxxxx could be created

2002-07-25 Thread Horacio de Oro
I've put my little webapp in tomcat (without forte) and it work... so, I'll do some more test ... may be was some forte problem? thanks anyway! Horacio On Thu, 25 Jul 2002 11:34:06 -0300 Horacio de Oro [EMAIL PROTECTED] wrote: On Thu, 25 Jul 2002 22:10:31 +0800 Andrew Hill [EMAIL

Re: SEVERE: No action instance for path /xxxxxx could be created

2002-07-25 Thread Eddie Bush
Did you tell it to Execute or Execute (Force Reload)? Based on your description, I'd say you did the first. You can get away with just hitting Execute if you make a JSP change, but if you make changes to the xml files you need to restart tomcat - that's what Execute (Force Reload) does. I

No action instance for path /logon could be created - Please Help!

2002-05-24 Thread Derek Wayland
I am getting the following error if I deploy and run my struts web app to tomcat 3.2 Error: 500 Location: /myapp/logon.do No action instance for path /logon could be created However if I deploy the exact same app to tomcat 4.0 it works fine. The stack trace is giving me the Class Not Found

No action instance for path [/path] could be created

2002-04-15 Thread Jason B Menard
This one is driving me crazy. I've already checked the archive but found nothing relevant. I get the following error whenever I run the following action: No action instance for path /addToCart could be created The other actions are found, just not this one. Here's the relevant parts of my

RE: No action instance for path [/path] could be created

2002-04-15 Thread James Mitchell
take out the name= JM -Original Message- From: Jason B Menard [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 4:44 PM To: Struts Users Mailing List Subject: No action instance for path [/path] could be created This one is driving me crazy. I've already checked

RE: No action instance for path [/path] could be created

2002-04-15 Thread James Mitchell
oops...sorry, wrong action JM -Original Message- From: Jason B Menard [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 4:44 PM To: Struts Users Mailing List Subject: No action instance for path [/path] could be created This one is driving me crazy. I've already checked

(Corrected) No action instance for path [.path] could be created

2002-04-15 Thread Jason B Menard
This one is driving me crazy. I've already checked the archive but found nothing relevant. I get the following error whenever I run the following action: No action instance for path /addToCart could be created The other actions are found, just not this one. Here's the relevant parts of my

RE: (Corrected) No action instance for path [.path] could be created

2002-04-15 Thread James Mitchell
What are you using for servlet container? JM -Original Message- From: Jason B Menard [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 4:52 PM To: Struts Users Mailing List Subject: (Corrected) No action instance for path [.path] could be created This one is driving me

Re: (Corrected) No action instance for path [.path] could be created

2002-04-15 Thread Jason B Menard
I'm using Tomcat-4.0.1. - Original Message - From: James Mitchell [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, April 15, 2002 4:44 PM Subject: RE: (Corrected) No action instance for path [.path] could be created What are you using for servlet

Re: No action instance for path [/path] could be created

2002-04-15 Thread Chuck Cavaness
relevant. I get the following error whenever I run the following action: No action instance for path /addToCart could be created The other actions are found, just not this one. Here's the relevant parts of my struts-config.xml: struts-config !-- == Global Forward Definitions

RE: (Corrected) No action instance for path [.path] could be created

2002-04-15 Thread Alex Paransky
PROTECTED]] Sent: Monday, April 15, 2002 1:52 PM To: Struts Users Mailing List Subject: (Corrected) No action instance for path [.path] could be created This one is driving me crazy. I've already checked the archive but found nothing relevant. I get the following error whenever I run the following

No action instance for path

2002-04-04 Thread kelly lan
Hi, In my logon page ,I logon with user name and user password,when I submit I get the error: No action instance for path /verifyAction could be created This is my logon page: .. html:form action=/verifyAction focus=username table border=0 width=200 tr

RE: No action instance for path

2002-04-04 Thread Zeltser, Mark
instance for path Hi, In my logon page ,I logon with user name and user password,when I submit I get the error: No action instance for path /verifyAction could be created This is my logon page: .. html:form action=/verifyAction focus=username table border=0 width=200 tr td width

RE: No action instance for path

2002-04-04 Thread Alex Paransky
http://www.alexparansky.com Java/J2EE Architect/Consultant http://www.myprofiles.com/member/view.do?profileId=127 -Original Message- From: kelly lan [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 2:36 AM To: Struts User Subject: No action instance for path Hi, In my logon page ,I

RE: No action instance for path

2002-04-04 Thread Dimitar Stavrakov
Subject: No action instance for path Hi, In my logon page ,I logon with user name and user password,when I submit I get the error: No action instance for path /verifyAction could be created This is my logon page: .. html:form action=/verifyAction focus=username table border=0 width=200 tr

RE: No action instance for path

2002-04-04 Thread Dimitar Stavrakov
Subject: No action instance for path Hi, In my logon page ,I logon with user name and user password,when I submit I get the error: No action instance for path /verifyAction could be created This is my logon page: .. html:form action=/verifyAction focus=username table border=0 width=200 tr

RE: No action instance for path

2002-04-04 Thread Wellie W. Chao
to append the .do extension to the action. -Original Message- From: Dimitar Stavrakov [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 12:55 PM To: Struts Users Mailing List Subject: RE: No action instance for path You forgot to put the .do at the end of the action : html:form

Subject: Re: More problems: No action instance for path /login could be create d...

2002-03-15 Thread @Basebeans.com
Subject: Subject: Re: More problems: No action instance for path /login could be create d... 7895:From: Pim [EMAIL PROTECTED] === -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

More problems: No action instance for path /login could be create d...

2002-03-13 Thread lindsay . hamoudi
+ null) msg:No action instance for path /login could be created I'm assuming this is not a problem with my LoginAction class because it can't even create an instance. It must be something to do with the dreaded struts-config.xml file. Here's what I've got: struts-config !-- == Data

RE: More problems: No action instance for path /login could be create d...

2002-03-13 Thread Don Dumrauf
PROTECTED] Subject: More problems: No action instance for path /login could be create d... Ok my login.jsp is loading fine, and the ActionForm (LoginForm) is working OK because error messages are being returned OK. But when I submit valid entries (i.e. when my Action class, LoginAction, should kick

IndexOutOfBoundsException and Error creating Action instance for path

2002-02-15 Thread Gao, Gang
,ISPServiceCenter.war)] action: No errors detected, accepting input Feb 13, 2002 6:07:50 AM EST Info HTTP [WebAppServletContext(5236534,ISPServiceCenter.war)] action: Looking for Action instance for class com.verizon.ispcentral.icare.requestmgmt.struts.intranet.workflow.alltasks.C oordinatorAction Feb 13, 2002 6

Re: No action instance for path-only with sub-sub-class of Action

2002-01-20 Thread Ted Husted
. It contains some common helper methods which all my actions will use. I then extend DefaultAction for my actual action fooAction. When I do this I get 'No action instance for path /foo could be created'. Now, when I extend Action directly instead of using DefaultAction, I don't get the error

No action instance for path-only with sub-sub-class of Action

2002-01-16 Thread Kelly Davis
I have created a class called DefaultAction which extends Action. It contains some common helper methods which all my actions will use. I then extend DefaultAction for my actual action fooAction. When I do this I get 'No action instance for path /foo could be created'. Now, when I extend Action

No action instance for path /select could be created

2001-11-27 Thread Melanie Harris
Anyone seen this displayed on their browser and figured out what to do? 'No action instance for path /select could be created' I can successfully deploy a struts application to an app server running on my local machine, but when I deploy the same thing to a different remote machine (same

No action instance for path

2001-11-27 Thread Dave J Dandeneau
I am using tomcat from within JBuilder to test my struts app, but when I take the produced war file and move it to the tomcat/webapps directory and try to run it I get several class not found errors. specifically: No action instance for path /sendFeedback could be created If I examine the war

Forward from one Action-instance to another

2001-11-21 Thread Rune Salthaug
My case (simplified): Given an application with these two action-mappings: action path=/index type=IndexAction forward name=success path=/index.jsp/ /action action path=/foo type=FooAction forward name=success path=/index.jsp/ /action My IndexAction's perform-method adds some stuff on the

RE: Forward from one Action-instance to another

2001-11-21 Thread Alexander Jesse
: Wednesday, November 21, 2001 11:37 AM To: [EMAIL PROTECTED] Subject: Forward from one Action-instance to another My case (simplified): Given an application with these two action-mappings: action path=/index type=IndexAction forward name=success path=/index.jsp/ /action action path=/foo type

Re: Forward from one Action-instance to another

2001-11-21 Thread Jin Bal
H or Craig M) described as a regression into Model 1. But hey if it works for you go for it! - Original Message - From: Alexander Jesse [EMAIL PROTECTED] To: struts-user [EMAIL PROTECTED] Sent: Wednesday, November 21, 2001 10:54 AM Subject: RE: Forward from one Action-instance to another

Re: Forward from one Action-instance to another

2001-11-21 Thread Bruce Geerdes
Alexander Jesse wrote: add a mappring like this: action path=/foo type=FooAction forward name=success path=/index/ (or /index.do) /action I am working off-memory... but I did it once and it worked... Doing /index.do worked for me. Is there any way to define index.do as a global

Re: How can a retrive an Action instance with a path ?

2001-10-27 Thread martin . cooper
If you want the actual Action instance, then it can't be done. Struts creates Action instances as they are needed, so when your tag is doing its thing, the Action instance may or may not exist yet. If you just want to know which Action class will handle the request, then, as Ted mentioned, you

How can a retrive an Action instance with a path ?

2001-10-26 Thread emmanuel.boudrant
I make a TabLig: csi:prepareform path=saisie.do/ html:form action=saisie.do ... /html:form And in this tag, I must access to the Action instance witch path is /saisie.do How can I retrive this action instance with ActionMappings in application scope ? Thanx

Re: How can a retrive an Action instance with a path ?

2001-10-26 Thread emmanuel.boudrant
Is is the unique solution ? package com.csi.controller; import org.apache.struts.action.ActionMapping; public class CsiActionMapping extends ActionMapping { /** * @roseuid 3BD93D2D0078 */ public CsiActionMapping() { } public getActionInstance() { return

Re: How can a retrive an Action instance with a path ?

2001-10-26 Thread Ted Husted
it into the request scope, and have the tags look there. The View is not usually aware that the Actions exist. emmanuel.boudrant wrote: I make a TabLig: csi:prepareform path=saisie.do/ html:form action=saisie.do ... /html:form And in this tag, I must access to the Action instance witch path

RE: No action instance for path /blah could be created

2001-08-27 Thread Anthony Martin
:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 11:18 AM To: '[EMAIL PROTECTED]' Subject: No action instance for path /blah could be created I was just minding my own business, trying out the nightly build (20010827) when I got the following: 2001-08-27 11:14:39 - path=/webcbp :action

Error 500 : No action instance could be created

2001-08-20 Thread Marion Schwarz
Hello everybody, since I have already searched the archives for any posting concerning my problem, I only need a confirmation now: Am I right, assuming that I cannot use action mapping when coming from a URL like http://.../thisandthat.do?param1=value and only wanting to dislpay a

Re: Error 500 : No action instance could be created

2001-08-20 Thread Jon Crater
more of the relevant code would be helpful. jon Original Message Follows From: Marion Schwarz [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Error 500 : No action instance could be created Date: Mon, 20 Aug 2001 14:58:28 +0200 Hello everybody, since I have

Antw: Re: Error 500 : No action instance could be created

2001-08-20 Thread Marion Schwarz
Hi Jon, my action class look just as you described. But I looked closer at the error message and discovered that it goes like this: 500 R /thisandthat.do + null No action instance... So it seems like the parameters don't go through ! Still my action class doesn't even do a system.out.println

AW: Antw: Re: Error 500 : No action instance could be created

2001-08-20 Thread Bernhard J. Hirschmann
:[EMAIL PROTECTED]] Gesendet: Montag, 20. August 2001 16:01 An: [EMAIL PROTECTED] Betreff: Antw: Re: Error 500 : No action instance could be created Hi Jon, my action class look just as you described. But I looked closer at the error message and discovered that it goes like this: 500 R

Re: Error: No action instance for path

2001-06-25 Thread Derek Guardiola
Is it possible to have two separate actions using the same action servlet as long as the ActionServlet is not declared as long? I'm getting the popular No action instance for path [PATH] could be created. I've double checked the bean declaration in the struts xml, as well as double checked

No action instance for path [path] could be created

2001-04-26 Thread Anderson, Jessica
What could be the cause of this error? What might be done to fix it? The application deploys successfully but when attempting to retrieve a struts action page via a link, this HTTP 500 (No action instance for path [path] could be created) error occurs. I am attempting to deploy on Sun's RI

RE: No action instance created

2001-04-23 Thread Craig R. McClanahan
On Fri, 20 Apr 2001, Scott Fitzgerald wrote: My initial jsp includes: form:form action=dbtest.do One thing you should be doing is using the struts-html tag library instead of struts-form. Any bug fixes would only have been applied to the html version. Craig

No action instance created

2001-04-20 Thread Scott Fitzgerald
ge not found" in my browser. In my console, the error I get is this: Ctx( /myWarFile ):500 R( /myWarFile + /dbtest.do + null) No action instance for path /dbtest could be created Can anyone offer some guidance on where I may be going wrong? Thanks in advance(and sorry for the length of

  1   2   >