Re: [S2] How to get rid of "WARNING: No configuration found for the specified action:"?

2009-01-15 Thread Robert Graf-Waczenski
Hi Paweł, thanks for pointing this out. This was actually left over from my experiments with early betas of S2 (and with myself getting acquainted with it), i added it because i was under the delusion that i would be able to plainly redirect to a JSP and was hoping to somehow gain access to t

Re: [S2] How to get rid of "WARNING: No configuration found for the specified action:"?

2009-01-15 Thread Paweł Wielgus
Hi, just as a side note, consider index.jsp in S1 and S2 root, then which app will process it? If i were You i would remove *.jsp from filter and leave only *.action It would eventualy lead to no direct jsp access - which is ok i guess. Best greetings, Paweł Wielgus. 2009/1/15 Robert Graf-Waczens

Re: [S2] How to get rid of "WARNING: No configuration found for the specified action:"?

2009-01-15 Thread Robert Graf-Waczenski
Hi Paweł, yes, that did the trick! Using namespace="/my/package" action="myAction_showPage1.action" does not trigger the warning anymore. Thanks! [About my filter mapping: This is needed because i'm working on the first small actions and pages with Struts2 in a huge application which is oth

Re: [S2] How to get rid of "WARNING: No configuration found for the specified action:"?

2009-01-15 Thread Paweł Wielgus
Hi, i'm not a pro user in this matter but when i configured my last app with: struts2 /* without modifying struts.action.extension key in struts.properties it works as expected (no extension maps to an action, also *.action is ok). So the question is do You really need *.jsp and

Re: [S2] How to get rid of "WARNING: No configuration found for the specified action:"?

2009-01-15 Thread Robert Graf-Waczenski
Yes, that's what the documentation says but in my setup here it simply does not work. If i write the s:form tag as you suggest, then the form action property has the value "/context/my/package/myAction_showPage1", i.e. lacks the ".action" extension and so, when the form is submitted, i get a 40

Re: [S2] How to get rid of "WARNING: No configuration found for the specified action:"?

2009-01-15 Thread Paweł Wielgus
Hi Robert, shouldn't it be: ? Best greetings, Paweł Wielgus. 2009/1/15 Robert Graf-Waczenski : > Hi all, > > i'm using S2 since a while now (started with 2.0 betas and using 2.1.6 GA > currently) and one of the issues that i'm still having is that even though > my struts.xml is configured proper

Re: [S2] How to get rid of "WARNING: No configuration found for the specified action:"?

2009-01-15 Thread Christian Priebe
Hey, it's just an ace (?), but shouldn't you omit the *.action file extension in the action-attribute. Struts2 will fill in the extension configured in your struts.properties automatically. Try something like this: Perhaps, that helps. (Can't test it now) Christian Robert Graf-Waczenski

[S2] How to get rid of "WARNING: No configuration found for the specified action:"?

2009-01-15 Thread Robert Graf-Waczenski
Hi all, i'm using S2 since a while now (started with 2.0 betas and using 2.1.6 GA currently) and one of the issues that i'm still having is that even though my struts.xml is configured properly (meaning that all the intended action methods are called as i want them to be called), i'm still se