It is a single application. when trying to access struts2 action ... it is unable to find the path. (Error: Invalid Specified Path ...)
I have interceptors in struts.xml. I have plugin jar in web-inf/lib. I am not sure of what needs to be done in addition to this... Your help would be greatly appreciated. newton.dave wrote: > > --- Sandy143 <[EMAIL PROTECTED]> wrote: >> Am I wrong? Please let me know ...how to use both the config files. > > An included file within struts.xml is expected to be an S2 config, AFAIK. > > Were there any error messages in the logs? > > If you're using the S1 plugin then the docs at [1] give a decent overview. > There is a known issue with using the S1 plugin with S1.3.8, but you > indicated you were using S1.2; I think you're having some more basic > configuration issues. > > If you're not using the S1 plugin I'd assume the two frameworks are > running > in parallel: each would require its own configuration, any request mapping > issues are resolved, etc. > > Dave > > [1] http://struts.apache.org/2.x/docs/struts-1-plugin.html > >> newton.dave wrote: >> > You're including the S1 configuration file in the S2 config file? >> > >> > --- Sandy143 <[EMAIL PROTECTED]> wrote: >> >> In struts.xml, I have >> >> >> >> ----------------------------------------- >> >> <include file="/WEB-INF/struts-config.xml" /> >> >> <include file="/struts-config-two.xml" /> >> >> ----------------------------------------- >> >> yes! struts.xml is placed in WEB-INF/classes/ >> >> >> >> Do you have any solution for it? >> >> >> >> KonTiki wrote: >> >> > How exactly did you do the struts.xml inclusion? >> >> > (I had a similar problem, where I found the struts.xml for struts 2 >> >> wasn't >> >> > picking the correct xml) >> >> > And by java source folder - do you mean WEB-INF/classes/ ? >> >> > >> >> > >> >> > Sandy143 wrote: >> >> >> >> >> >> I have to integrate struts 2 actions in my existing struts 1.2 web >> >> >> application. >> >> >> >> >> >> My login page is using struts 1.2 action. Upon login, I come to >> home >> >> >> page. there is a link on home page. when I click on that link, I >> need >> >> to >> >> >> go to another jsp page. The later action has to be in struts 2. >> >> >> >> >> >> I have added filter, filter mapping for struts 2 in web.xml. >> >> >> >> >> >> I have included struts.xml in the root of the project (under java >> >> source >> >> >> folder). This included struts-config.xml (using struts 1.2.8) and >> >> >> struts-config-two.xml (using struts 2). >> >> >> >> >> >> --> struts-config.xml is in web-inf >> >> >> >> >> >> --> struts-config-two.xml is in the root of the project (under java >> >> >> source folder) >> >> >> >> >> >> my struts-config-two.xml is : >> >> >> >> >> >> ----------------------------------------------------------------- >> >> >> <?xml version="1.0" encoding="UTF-8" ?> >> >> >> >> >> >> <!DOCTYPE struts PUBLIC >> >> >> >> >> >> "-//Apache Software Foundation//DTD Struts Configuration >> >> 2.0//EN" >> >> >> >> >> >> "http://struts.apache.org/dtds/struts-2.0.dtd"> >> >> >> >> >> >> <struts> >> >> >> <package name="xxx" namespace="/xxx" >> >> extends="xxx-default"> >> >> >> >> >> >> <action name="testAction2" >> >> >> >> >> >> class="x.y.z.presentation.test.TestAction2"> >> >> >> <result name="home"> /TestLink.jsp >> >> </result> >> >> >> </action> >> >> >> >> >> >> </package> >> >> >> </struts> >> >> >> >> >> >> >> >> >> >> >> >> -------------------------------------------------------------------------- >> >> >> >> >> >> In my TestLink.jsp, I am specifying : >> >> >> >> >> >> <s:url id="viewURL" namespace="/xxx" action="testAction2" /> >> >> >> >> >> >> <s:a href=%{viewURL}> Test Link Home </s:a> Test Link >> >> >> >> >> >> >> >> >> >> >> >> > >> > ------------------------------------------------------------------------------------- >> >> >> >> >> >> I am able to login to the app. but When I click on the link I get >> an >> >> >> error message : ERROR action.RequestProcessor - Invalid path was >> >> >> requested /xxx/TestAction. >> >> >> >> >> >> Can you please help me to resolve this issue. >> >> >> >> >> >> I would have to use struts2 action in the flow of struts1 action. >> >> Please >> >> >> let me know the step by step procedure. Can anyone provide a sample >> >> app >> >> >> or config info on how it can be done? >> >> >> >> >> >> I have read the migration tutorial. but it didn't help me to >> resolve >> >> this >> >> >> issue. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/Struts1-and-Struts2-in-the-same-app-tp16851031p16953695.html Sent from the Struts - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]