[S2][interceptors]Inserted my own interceptor => no more params value

2007-04-22 Thread MLENEVEUT
Hi all, I try to insert my "AuthentificatedInterceptor" in the stack, but now nothing works. First, I had a login page, with login/password fields, and the LoginAction getted well the parameters' value. Now, with my new Interceptor, the LoginAction gets empty values from my login and passwor

Re: unable to deploy the WAR file provided in struts-2.0.6-all.zip

2007-04-22 Thread hardc0d3r
weird... i uninstalled tomcat 5.5 and installed it again.. now it works.. i did what i exactly did when i first installed tomcat.. thanks for your replies.. -- View this message in context: http://www.nabble.com/unable-to-deploy-the-WAR-file-provided-in-struts-2.0.6-all.zip-tf3373957.html#a10133

Re: unable to deploy the WAR file provided in struts-2.0.6-all.zip

2007-04-22 Thread Ahmad Husain
i have downloaded and deployed the war files to my tomcat, but i am not found the error, maybe you should check the web.xml and your tomcat version. hardc0d3r wrote: i also cannot deploy the war files.. but i get the 404 error.. anyone know how to fix this? ---

Re: unable to deploy the WAR file provided in struts-2.0.6-all.zip

2007-04-22 Thread Zoran Avtarovski
What's in the Tomcat log. I deployed to both 5.5 and 6 last week and they worked fine. Z. > > i also cannot deploy the war files.. but i get the 404 error.. anyone know > how to fix this? - To unsubscribe, e-mail: [EMAIL PR

problem

2007-04-22 Thread kursy003
iam getting problem with tag in struts2. I am populating a list of values into the drop down box from the database something like search. In select box iam getting output as {null=null}.Please help me regards kursy003 -- View this message i

Re: unable to deploy the WAR file provided in struts-2.0.6-all.zip

2007-04-22 Thread hardc0d3r
i also cannot deploy the war files.. but i get the 404 error.. anyone know how to fix this? -- View this message in context: http://www.nabble.com/unable-to-deploy-the-WAR-file-provided-in-struts-2.0.6-all.zip-tf3373957.html#a10133521 Sent from the Struts - User mailing list archive at Nabble.co

struts examples not working

2007-04-22 Thread hardc0d3r
i have jdk 1.6 and tomcat 5.5 installed and i tried to run the examples of struts by putting the war files in the webapps directory. when i try to run the example i get a 404 error.. all the examples in tomcat are working fine. can anyone please help me with this error? -- View this message in c

Re: NoClassDefFoundError - ApplicationContextAware

2007-04-22 Thread Martin Gainty
yes ..it also comes in struts-plugin in struts2-showcase specifically \struts2-showcase-2.0.6\WEB-INF\lib\struts2-spring-plugin-2.0.6.jar M-- This email message and any files transmitted with it contain confidential information intended only for the person(s) to whom this email message is address

Re: NoClassDefFoundError - ApplicationContextAware

2007-04-22 Thread Dave Newton
--- Mike Molina <[EMAIL PROTECTED]> wrote: > The error appears to be happening because it cannot > find the Spring interface ApplicationContextAware. I > would think that if Struts 2 had any dependencies on > this interface, it would include them in its own > JARs, and not require the user to g

NoClassDefFoundError - ApplicationContextAware

2007-04-22 Thread Mike Molina
Last night I (unsuccessfully) attempted to set up a simple Struts 2 web app. I am absolutely sure that all the JAR files are in the correct /WEB-INF/lib directory. The error appears to be happening because it cannot find the Spring interface ApplicationContextAware. I would think that if Str

Re: Persistence, session, or bean reload.

2007-04-22 Thread Mansour
OK I found what I am looking for, but I am missing something. Basically I need to be able to post back to an action. How do I check if the request is post back or not. Mansour wrote: hello every one: I am having a look at hibernate and I think it's neat. however, is there away to temporary

Re: form submit issue

2007-04-22 Thread Musachy Barroso
What the error says is that it cannot find the "result", with name "input", not the action. Either you are returning "input" from the method being executed, or you have validation defined and validation is failing, in which case the framework would return "input". You need to define an input retur

Re: Filter before Action servlet

2007-04-22 Thread Yannick Haudry
Hi Mahesh, Actually you can do both, filtering before and after the Action servlet, this only depends how you organize your filtering work in the doFilter() method. What will be executed before Action servlet should be before calling chain.doFilter() method and you can if you like have additional

Filter before Action servlet

2007-04-22 Thread Mahesh Parab
Hi All, I am new to struts, my doubt is if i place filter before Action servlet what will be called first Action servlet or filter. Thanks, Mahesh