RE: How to create a "No Action" ActionForward

2004-02-24 Thread Jacqueline Gomes
ist Subject: Re: How to create a "No Action" ActionForward Same question : JAAS, how did you get hold of the user's session? It's the last think I can't do. Carl Adam Hardy wrote: > Jackie, auth-constraint lists the roles that are allowed access. If you > have

Re: How to create a "No Action" ActionForward

2004-02-24 Thread Carl
constraint for resources in the admin directory /do/admin/* POST GET Can you please send me any links to OSUser API - I've not heard of it. -Original Message- From: Nick Faiz [mailto:[EMAIL PROTECTED] Sent: Tuesday, 24 February 2004 8:53 AM To: 'Struts Users Mailing List

Re: How to create a "No Action" ActionForward

2004-02-24 Thread Adam Hardy
heard of it. -Original Message- From: Nick Faiz [mailto:[EMAIL PROTECTED] Sent: Tuesday, 24 February 2004 8:53 AM To: 'Struts Users Mailing List' Subject: RE: How to create a "No Action" ActionForward Guys, I'm at this point, myself, with an application sitting on

RE: How to create a "No Action" ActionForward

2004-02-23 Thread Jacqueline Gomes
PI - I've not heard of it. -Original Message- From: Nick Faiz [mailto:[EMAIL PROTECTED] Sent: Tuesday, 24 February 2004 8:53 AM To: 'Struts Users Mailing List' Subject: RE: How to create a "No Action" ActionForward Guys, I'm at this point, myself, with an applic

RE: How to create a "No Action" ActionForward

2004-02-23 Thread Nick Faiz
s Users Mailing List Subject: RE: How to create a "No Action" ActionForward Neither can I. There was no way with j_security_check that I could post to an Action class. So I implemented JAAS and in the module I interact with a Domain Facade that does the check with the database for a valid

RE: How to create a "No Action" ActionForward

2004-02-23 Thread Jacqueline Gomes
iling List Subject: Re: How to create a "No Action" ActionForward By integarting with struts, I mean to have a loginAction witch fill the session with data about the logged user. I can't see how to manage that with classic j_security_check. regards, Carl Adam Hardy wrote: &g

Re: How to create a "No Action" ActionForward

2004-02-23 Thread Adam Hardy
age- From: James Adams [mailto:[EMAIL PROTECTED] Sent: Monday, 23 February 2004 4:43 AM To: Struts Mailing List Subject: Re: How to create a "No Action" ActionForward I think Srikanth has hit the nail on the head, in that I am not fully utilizing what is already available with vanilla J

Re: How to create a "No Action" ActionForward

2004-02-23 Thread Carl
he session and check on each page if it exists. If it doesn't then redirect the user back to the login page. I have set the session.setMaxInactiveInterval(72000); Any help would be appreciated. Thanks, Jackie. -Original Message- From: James Adams [mailto:[EMAIL PROTECTED] Sent: Mo

Re: How to create a "No Action" ActionForward

2004-02-23 Thread Adam Hardy
. -Original Message- From: James Adams [mailto:[EMAIL PROTECTED] Sent: Monday, 23 February 2004 4:43 AM To: Struts Mailing List Subject: Re: How to create a "No Action" ActionForward I think Srikanth has hit the nail on the head, in that I am not fully utilizing what is already ava

Re: How to create a "No Action" ActionForward

2004-02-22 Thread Carl
er back to the login page. I have set the session.setMaxInactiveInterval(72000); Any help would be appreciated. Thanks, Jackie. -Original Message- From: James Adams [mailto:[EMAIL PROTECTED] Sent: Monday, 23 February 2004 4:43 AM To: Struts Mailing List Subject: Re: How to create a &

RE: How to create a "No Action" ActionForward

2004-02-22 Thread Jacqueline Gomes
axInactiveInterval(72000); Any help would be appreciated. Thanks, Jackie. -Original Message- From: James Adams [mailto:[EMAIL PROTECTED] Sent: Monday, 23 February 2004 4:43 AM To: Struts Mailing List Subject: Re: How to create a "No Action" ActionForward I think Srikanth has hit

Re: How to create a "No Action" ActionForward

2004-02-22 Thread James Adams
I think Srikanth has hit the nail on the head, in that I am not fully utilizing what is already available with vanilla J2EE, namely security roles, authorization constraints, and error pages, all of which I can declare in the deployment descriptor of my web app. But I still want to use a Struts co

Re: How to create a "No Action" ActionForward for return from an Action's execute() ?

2004-02-19 Thread srikanth
Jim, What you really want to achieve is best done outside Struts. Basically you are trying to achieve two things: 1)First, a user not logged in should be forwarded to a login page. 2)Second, prevent unauthorized users from not accessing the page. This is best done by using J2EE security. Use j_

RE: How to create a "No Action" ActionForward for return from an Action's execute() ?

2004-02-19 Thread Wendy Smoak
> From: James Adams [mailto:[EMAIL PROTECTED] > To further clarify what I want to do, in case it will > lead to more pointed suggestions - I am including this > session validator on each JSP of my application to > check to make sure that a user is logged in, and if > not I forward to the login pag

Re: How to create a "No Action" ActionForward for return from an Action's execute() ?

2004-02-19 Thread James Adams
Thanks for all of the suggestions on how to solve this problem. You have all given good ideas and introduced me to concepts that I am unfamiliar with as a beginner with Struts. To further clarify what I want to do, in case it will lead to more pointed suggestions - I am including this session val

Re: How to create a "No Action" ActionForward for return from an Action's execute() ?

2004-02-19 Thread Brad Balmer
Preprocess() method returns true or false. -Original Message- From: Brad Balmer [mailto:[EMAIL PROTECTED] Sent: Thursday, February 19, 2004 1:47 PM To: Struts Users Mailing List Subject: Re: How to create a "No Action" ActionForward for return from an Action's execute() ? W

RE: How to create a "No Action" ActionForward for return from an Action's execute() ?

2004-02-19 Thread Anderson, James H [IT]
How would you forward the user to the login page? The processPreprocess() method returns true or false. -Original Message- From: Brad Balmer [mailto:[EMAIL PROTECTED] Sent: Thursday, February 19, 2004 1:47 PM To: Struts Users Mailing List Subject: Re: How to create a "No A

Re: How to create a "No Action" ActionForward for return from an Action's execute() ?

2004-02-19 Thread Joe Germuska
At 12:46 PM -0600 2/19/04, Brad Balmer wrote: While you can use a filter to do this, why not extend the RequestProcessor class? By overriding the processPreprocess function you can check for your flag. If found simply return true to continue processing. Otherwise forward the user onto the login

Re: How to create a "No Action" ActionForward for return from an Action's execute() ?

2004-02-19 Thread Brad Balmer
re is no way to know this information beforehand. So I am wondering how can I (within the execute() method of the SessionValidatorAction) create an ActionForward to return which will indicate the path of the calling page ? Is there a way to create and return a "No Action" ActionForward

Re: How to create a "No Action" ActionForward for return from an Action's execute() ?

2004-02-19 Thread Joe Germuska
Can I just return null ? No. Returning null signals Struts that the Action has done everything necessary for the response, and there is nothing for Struts to forward to. That doesn't sound like what you want, or at least not completely. If you want to send the person back to the calling pag

RE: How to create a "No Action" ActionForward for return from an Action's execute() ?

2004-02-19 Thread Paul McCulloch
I use a a Servlet Filter to achieve this. This filter intercepts request before Struts gets it's hands on the request. Paul > -Original Message- > From: James Adams [mailto:[EMAIL PROTECTED] > Sent: 19 February 2004 18:17 > To: [EMAIL PROTECTED] > Subject: How to

RE: How to create a "No Action" ActionForward for return from an Action's execute() ?

2004-02-19 Thread Wendy Smoak
> From: James Adams [mailto:[EMAIL PROTECTED] > I have created an Action class which does session > validation by checking to see if a "loggedIn" flag is > set in the session - if it is absent, or set to false, > then I want to forward to the login page. Have you considered using a Filter instea

How to create a "No Action" ActionForward for return from an Action's execute() ?

2004-02-19 Thread James Adams
m, and there is no way to know this information beforehand. So I am wondering how can I (within the execute() method of the SessionValidatorAction) create an ActionForward to return which will indicate the path of the calling page ? Is there a way to create and return a "No Action" Ac

Re: Re: No Action is executed

2004-02-17 Thread shankarr
opie 17.02.2004 12:54 Thema Re: No Action is executed Bitte antworten an "Struts Users Mailing List" <[EMAIL PROTECTED] org> Hi Manuel, Do have a look at my d

Re: Re: No Action is executed

2004-02-17 Thread Manuel Lenz
opie 17.02.2004 12:54 Thema Re:

Re: No Action is executed

2004-02-17 Thread shankarr
Hi Manuel, Do have a look at my data source configuration. Probably, it might help. Set the timeout value lower and try.

Antwort: Re: No Action is executed

2004-02-17 Thread Manuel Lenz
lt;[EMAIL PROTECTED]>Kopie 17.02.2004 10:07 Thema Re:

Re: No Action is executed

2004-02-17 Thread Dirk Markert
Sounds like your db connections are not properly closed. ML> Hi to all, ML> my struts-webApplication is used by almost 80 people. ML> After 1-2 weeks my application doesn´t react anymore, ML> if I do call an ActionClass which will connect to an oracle database. ML> So I guess I do have a problem

No Action is executed

2004-02-17 Thread Manuel Lenz
Hi to all, my struts-webApplication is used by almost 80 people. After 1-2 weeks my application doesn´t react anymore, if I do call an ActionClass which will connect to an oracle database. So I guess I do have a problem with the database connection. My database config shows that:

Re: No action instance for path /...

2004-02-03 Thread Max Cooper
AIL PROTECTED]> To: <[EMAIL 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: http://jakarta.apache.org/struts

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: http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd";> and when i tri to access on the

No Action

2003-12-18 Thread Mauricio T. Ferraz
I got the HTTP 500 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

No Action

2003-12-18 Thread Mauricio T. Ferraz
Help, please!!! My application dont execute the action anymore, I don´t know what happened The method validate() of the ActionForm is executted return null rigth, but it don´t go to the Action. Any Action im my application work anymore! And I dont get ANY message error on server and ANY log. Anyb

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

2003-10-08 Thread Ted Husted
ut Link it gives me following errors wonder why: - HTTP Status 500 - No action instance for path /logoff could be created - I have defined Action Mapping

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
ction 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.

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 act

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]> >

Re: need help.. "no action instance" issue

2003-06-10 Thread James Mitchell
esday, June 10, 2003 5:46 AM 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://javabo

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

2003-06-10 Thread Rajat Nayer
name > has "playgound" > instead of "playground"... > > -j. > > > > > -Original Message- > From: Rajat Nayer [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 10, 2003 11:50 AM > To: Struts Users Mailing List > Subject: Errata

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

2003-06-10 Thread Kazda Juraj
truts Users Mailing List Subject: Errata: need help.. "no action instance" issue Please note that the SubmitAction is in the package package hansen.playground; thus the class should be : Start-- package hansen.playground; import javax.servlet.http.

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

2003-06-10 Thread Rajat Nayer
gt; I am facing the following issue: > > On clicking submit on my JSP(submit.jsp), i am > getting > the foll error: > 2003-06-10 14:55:07 - Ctx( /myproject ): 500 R( > /myproject + /submit.do + null) > No action instance for path /submit co

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 -END

Re: No action instance for path 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 Action

Re: No action instance for path could be created

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

Re: No action instance for path could be created

2003-04-02 Thread Dan Tarkenton
o an Action object. However i > am > >getting the following tomcat error, when I submit > from > >http://localhost:8080/ginsu/test/addFile.jsp : > > > >*** Begin My Error > ******* > > > >HTTP Status 500 - No action

RE: No action instance for path 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 deploy

Re: No action instance for path could be created

2003-04-02 Thread Gareth Andrew
n 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 instance for path /addFile could be created) that prevent

RE: No action instance for path could be created

2003-04-02 Thread Vivian, Nigel (N.)
16:23 To: [EMAIL PROTECTED] Subject: No action instance for path 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 object. However

No action instance for path 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: Http Status 500- No action instance for path /timeSearch could be created

2003-03-03 Thread Claude Betancourt
t; <[EMAIL 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. p

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

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

2002-10-22 Thread Vikas Malla
at java.lang.Thread.run(Thread.java:484) 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 appl

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 servletunit.struts.Common.verifyForw

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 Instanc

RE: no action parameter defined

2002-09-20 Thread Galbreath, Mark
3 parts Blue Sapphire, 1 part dry Martini & Rossi, 1 green olive? -Original Message- From: kiuma [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 12:05 PM Hello I have a jsp page connected to a LookupDispatchAction. when I press enter into a text box the server reports: H

no action parameter defined

2002-09-20 Thread kiuma
Hello I have a jsp page connected to a LookupDispatchAction. when I press enter into a text box the server reports: HTTP ERROR: 500 Request[/listedCustomer] does not contain handler parameter named action What's the solution ? -- To unsubscribe, e-mail: F

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

2002-09-11 Thread rob
ave 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

No action instance for path / could not be created.

2002-09-11 Thread rob
This seems to be a fairly common problem and I have 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

RE: No Action Instance - Deploying on WAS 4.0.2

2002-09-10 Thread Shashikiran M
hat should have been named "No-Info-Center". --Shashi. -Original Message- From: Shashikiran M Sent: Tuesday, September 10, 2002 9:04 PM To: [EMAIL PROTECTED] Subject: No Action Instance - Deploying on WAS 4.0.2 Hi All, The ear file created was successfully deployed on WAS

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]>

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

2002-08-28 Thread Max Cooper
equest slightly different? -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,

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

2002-08-28 Thread Kevin A. Smith
Wednesday, 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: On winturd$, it runs fine either packaged, or not packaged (

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

2002-08-28 Thread slickdev
sday, 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? -Original Message- From: slickdev [mailto:[EMAIL PROTECTED]] Sent

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

2002-08-28 Thread Kevin A. Smith
uts-config 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 ?? -- To unsubscribe, e-

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 ?? -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECT

No Action Instance ??

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

Re: No Action Instance

2002-08-28 Thread Max Cooper
"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. > > When requesting

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 To

No Action Instance

2002-08-27 Thread slickdev
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. When requesting this action: http://thesunbox.com:8080/ecapp/dbopsAction.do;jsessionid=9fimfkovb1?action=listusers I get this reply: "Status code: 500 request:R( /ecapp + /d

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)" doe

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 PR

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; > impor

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

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

2002-07-25 Thread Horacio de Oro
r path '/xxxxxx' Jul 25, 2002 10:35:46 AM org.apache.commons.logging.impl.Jdk14Logger error SEVERE: No action instance for path /xx could be created java.lang.ClassCastException: prueba2.LogoffAction at org.apache.struts.action.RequestProcessor.processActio

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

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 foll

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

2002-04-15 Thread Chuck Cavaness
hecked 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

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

2002-04-15 Thread Jason B Menard
Thanks alot, that did it! Bonehead mistake on my part by leaving that out. Thanks again. Jason - Original Message - From: "Jay sissom" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, April 15, 2002 4:58 PM Su

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

2002-04-15 Thread Jay sissom
How about this one... Make the class public. Jay On Mon, 15 Apr 2002, Jason B Menard wrote: > 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 acti

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

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

(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 p

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

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 drivi

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 p

RE: No action instance for path

2002-04-04 Thread Wellie W. Chao
tags, you'd have 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

RE: No action instance for path

2002-04-04 Thread Dimitar Stavrakov
You forgot to put the ".do" at the end of the action : Should do it. Regards, Dimitar -Original Message- From: kelly lan [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 4:36 AM To: Struts User Subject: No action instance for path

Re: No action instance for path

2002-04-04 Thread David M. Karr
>>>>> "kelly" == kelly lan <[EMAIL PROTECTED]> writes: kelly> Hi, kelly> In my logon page ,I logon with user name and user kelly> password,when I submit I get the error: kelly> No action instance for path /verifyAction could be kell

RE: No action instance for path

2002-04-04 Thread Dimitar Stavrakov
You forgot to put the ".do" at the end of the action : Should do it. Regards, Dimitar -Original Message- From: kelly lan [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 4:36 AM To: Struts User Subject: No action instance for path

RE: No action instance for path

2002-04-04 Thread Alex Paransky
/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 logon with user name and user password,when I

RE: No action instance for path

2002-04-04 Thread Zeltser, Mark
What is your servlet mappings? If you have standard *.do mapped to action servlet then you will need the following action="/verifyAction.do" Mark. -Original Message- From: kelly lan [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 5:36 AM To: Struts User Subject:

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: .. UserName

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]>

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

2002-03-13 Thread Don Dumrauf
] 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 in) - I

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

2002-03-13 Thread lindsay . hamoudi
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 in) - I get this error message: "Status code:500 request:R( /struts-SACT + /login.do +

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

2002-01-20 Thread Ted Husted
on. 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

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 ext

Re: no action object

2001-12-18 Thread Brian K. Buckley
> Is it possible to forward to something without > creating an action class and coding the perform > method? Or one could write a NullAction class... public class NullAction extends Action { public ActionForward perform(ActionMapping mapping, ActionForm form, HttpServletRequest

Re: no action object

2001-12-18 Thread Sandeep Takhar
I think I will just have a single action that forwards to success and that will suffice. I thought of this after I made the post. Sandeep --- Burr Sutter <[EMAIL PROTECTED]> wrote: > Perhaps I don't understand your question. If you had > no Action class where would you put

  1   2   >