Re: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread Sunny
Are you able to Get other pages working? e.g. : login.do This kind of error comes *only* when ActionServlet itself is not initialised / not mapped. uma.k wrote: No, Nothing helped me. I still get that error and I cannot call Template.do as the tomcat gives error that the file is not found. --

Re: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread Sunny
Do following changes: your struts-config: your Template.jsp . uma.k wrote: Hi Bush, Its confusing me. How do I call an Action without the Template.jsp form being submitted? My Action and ActionForm are i web-inf/classes/articles folder. M

RE: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread uma.k
No, Nothing helped me. I still get that error and I cannot call Template.do as the tomcat gives error that the file is not found. -Original Message- From: Sunny [mailto:[EMAIL PROTECTED] Sent: Monday, December 13, 2004 12:38 PM To: Struts Users Mailing List Subject: Re: Cannot find ActionM

Re: about logic tag

2004-12-12 Thread Pramod
I can't produce the result. The bean tag creating new instance of ActionForm.Get me a solution. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread Sunny
use http://localhost:8080/test/Template.do instead of http://localhost:8080/test/Template.jsp uma.k wrote: Hi Eddie, Are you saying that put a link to this jsp and pass this jsp through the controller? Buts its a simple jsp and it doesn't require any Actions. Any explanation on this please?

RE: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread uma.k
Hi Eddie, Are you saying that put a link to this jsp and pass this jsp through the controller? Buts its a simple jsp and it doesn't require any Actions. Any explanation on this please? > You can't expect Struts to set things up for a page it doesn't know > you're requesting, and it can't know you'

RE: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread uma.k
Hi Bush, Its confusing me. How do I call an Action without the Template.jsp form being submitted? My Action and ActionForm are i web-inf/classes/articles folder. My Template.jsp will take that information from the user and send it to the respective jsp based on the "execute" method. If I am wrong

Re: about logic tag

2004-12-12 Thread Pramod
It is not displaying the results. The code producing new instances of ActionForm. i will send my code - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread Sunny
Hey thanks Eddie, I didnt think in this perspective. Cl, I need to think out of the box ;-) Eddie Bush wrote: In order to have a request properly setup, you need to be going through the controller. To go through the controller, you need to be viewing an action instead of a JSP page. Try i

Re: about logic tag

2004-12-12 Thread Sunny
Pramod wrote: I have a vector object in a jsp page. An ActionForm's two instances are stored in that vector. How can i display the values using bean & logic tag? - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread Eddie Bush
In order to have a request properly setup, you need to be going through the controller. To go through the controller, you need to be viewing an action instead of a JSP page. Try invoking an action that uses the template and see if the problem persists. You can't expect Struts to set things up

about logic tag

2004-12-12 Thread Pramod
I have a vector object in a jsp page. An ActionForm's two instances are stored in that vector. How can i display the values using bean & logic tag?

RE: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread uma.k
Hi Sunny, I didn't get you. I am not using any ModuleConfig, Where am I refering it from and in which file? Uma -Original Message- From: Sunny [mailto:[EMAIL PROTECTED] Sent: Monday, December 13, 2004 11:41 AM To: Struts Users Mailing List Subject: Re: Cannot find ActionMappings or Action

Re: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread Sunny
ModuleConfig is *NULL*. Seems struts is not able to load the module. Dakota Jack wrote: Check the code at the line 711 of FormTag and you will find what is wrong. Jack - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread Dakota Jack
Check the code at the line 711 of FormTag and you will find what is wrong. Jack On Mon, 13 Dec 2004 10:39:36 +0530, uma.k <[EMAIL PROTECTED]> wrote: > Hi Sunny, > This is my complete error message. Is this the one you are asking for? > > javax.servlet.ServletException: Cannot find ActionMappin

Re: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread Sunny
Try adding all the properties of your form some thing like regards, Sunny. uma.k wrote: Hi Sunny, This is my complete error message. Is this the one you are asking for? javax.servlet.ServletException: Cannot find ActionMappings or ActionFormBeans collection at org.apache.jasper.ru

Re: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread Sunny
I do suspect the initialization of ActionServlet, It would be better if you (uma) can paste your catalina logs regards, Sunny David G. Friedman wrote: Is that error at start-up or when you are invoking an action by going to a Struts *.do action through a URL? Regards, David ---

RE: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread uma.k
Hi Sunny, This is my complete error message. Is this the one you are asking for? javax.servlet.ServletException: Cannot find ActionMappings or ActionFormBeans collection at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImp l.java:471) at org.apache.jsp.Te

RE: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread uma.k
Hi David, That error is displayed while I am loading my Template.jsp itself. http://localhost:8080/test/Template.jsp Not able to see the GUI itself. Uma -Original Message- From: David G. Friedman [mailto:[EMAIL PROTECTED] Sent: Monday, December 13, 2004 10:28 AM To: Struts Users Mailing L

RE: Opinions on Struts Layout

2004-12-12 Thread David G. Friedman
By "native" parts I meant that it is possible some features of Struts Layount might have been added to Struts since struts-layout was started. *shrug* Regards, David -Original Message- From: Derek Broughton [mailto:[EMAIL PROTECTED] Sent: Saturday, December 11, 2004 11:06 AM To: Struts Us

RE: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread David G. Friedman
Is that error at start-up or when you are invoking an action by going to a Struts *.do action through a URL? Regards, David -Original Message- From: uma.k [mailto:[EMAIL PROTECTED] Sent: Sunday, December 12, 2004 11:54 PM To: 'Struts Users Mailing List'; [EMAIL PROTECTED] Subject: RE: Can

RE: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread uma.k
Hi Sunny, Thanks for the reply. The classpath is set right and my struts-config.xml file looks the same way as you posted, I just removed the un necessary tags. Any ideas now? Uma -Original Message- From: Sunny [mailto:[EMAIL PROTECTED] Sent: Monday, December 13, 2004 10:04 AM To: Struts

Re: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread Sunny
hi, Ensure that your are having your struts-config like the one below. And also please check your class path regards, Sunny http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd";> uma.k wrote: Hello, I am new to Struts, my first application is giving me

Re: html:errors and manual iterate

2004-12-12 Thread Sunny
You might need to pass one more argument namely "message" to the tag . If you've saved a message in struts scode with your OWN key, you should pass message='true' if this message has been saved into struts scope using ExceptionHandler.saveException() method, you can pass message = 'false' r

deploy war file of struts?

2004-12-12 Thread bhutkar
I copied the struts application war file under tomcat's server- webapp directory. I restarted the server but it didn't get deployed automatically. I am using tomcat4.1. What's wrong? Build is ok - To unsubscribe, e-mail: [EMAIL

RE: Cross web app communication

2004-12-12 Thread Robert Taylor
Not really an observation, but more of how the Servlet specification constrains the use of forwarding to another resource. Forwarding is accomplished by using the RequestDispatcher.forward(). You can access a RequestDispatcher by calling Request.getRequestDispatcher() passing it the path name of a

[ANNOUNCE] Struts 1.2.6 Beta Released

2004-12-12 Thread Martin Cooper
The Struts team is pleased to announce the release of Struts 1.2.6 Beta. This release includes minor new functionality, and a number of fixes for bugs which were reported against previous versions. The binary, source and library distributions are available from the Struts download page: http:/

Re: Cross web app communication

2004-12-12 Thread Dakota Jack
Out of interest, Robert, would you mind expanding on this if you have more detailed observations that you could offer? Thanks. Jack On Sun, 12 Dec 2004 09:45:13 -0500, Robert Taylor <[EMAIL PROTECTED]> wrote: > You cannot forward to another web application. > You can, however, redirect. You s

Re: [OT - Friday]Corporate Stupidity

2004-12-12 Thread Dakota Jack
Oops, Brazil. Thanks. I am amazed at how the United States is fastly becoming a country far behind others in terms of freedoms from government intervention into personal lives. Jack On Sun, 12 Dec 2004 10:49:07 -0800, Dakota Jack <[EMAIL PROTECTED]> wrote: > What country are you from, Luiz? >

Re: [OT - Friday]Corporate Stupidity

2004-12-12 Thread Dakota Jack
What country are you from, Luiz? Jack On Sun, 12 Dec 2004 11:56:32 -0300, Luiz Esmiralha <[EMAIL PROTECTED]> wrote: > In my country, it's against the law to take your fingerprints unless > you are accused of a crime and only the police can do it. It's a great > disrespect to treat an employee a

Re: [OT - Friday]Corporate Stupidity

2004-12-12 Thread Luiz Esmiralha
I work for the state oil company in Brazil, which has the monopoly of all oil exploration and production. It´s the largest company in Brazil and one of the largest in Latin America. They check everybody upon hiring, but taking fingerprints is unthinkable. But in the US, where paranoia seems to be t

Re: [OT - Friday]Corporate Stupidity

2004-12-12 Thread Frank W. Zammetti
This might seem like an obvious comment, but this depends on what type of job it is. I work for one of the largest financial companies in the U.S. in the mutual fund sector. There are real, legitimate concerns with so much money involved. To me, asking for my fingerprints wasn't an outrageous

Re: [OT - Friday]Corporate Stupidity

2004-12-12 Thread Luiz Esmiralha
In my country, it's against the law to take your fingerprints unless you are accused of a crime and only the police can do it. It's a great disrespect to treat an employee as a criminal. You shouldn't have to prove yourself innocent, rather THEY should have to prove you guilty. On Sat, 11 Dec 200

RE: Cross web app communication

2004-12-12 Thread Robert Taylor
You cannot forward to another web application. You can, however, redirect. You set the redirect attribute of the forward tag to true. robert > -Original Message- > From: avinash_shirol [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 07, 2004 4:17 AM > To: [EMAIL PROTECTED] > Subject:

Re: Opinions on Struts Layout

2004-12-12 Thread Derek Broughton
On Friday 10 December 2004 16:38, David G. Friedman wrote: > Derek, > > If you made a list of bullet points for the parts of struts layout you like > most, perhaps we listmembers could point you in the direction of native > Struts parts or equivalent add-ons. I don't really see how there could be

Re: [OT - Friday]Corporate Stupidity

2004-12-12 Thread Derek Broughton
On Friday 10 December 2004 16:57, Jim Barrows wrote: > Just found out that the 800lb brass monkeys have decided that it's a good > idea to do full background and checks on all their employees. Which has got > to be the dumbest thing ever been done to me as a contractor or employee... > > so what's

Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread uma.k
Hello, I am new to Struts, my first application is giving me this error. I am using Tomcat 4.0 and struts 1.2.4. Where did I go wrong? Please help me. javax.servlet.ServletException: Cannot find ActionMappings or ActionFormBeans collection Here are my files -Template.jsp <%@ taglib uri="/WE