×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Struts1 and Struts2 interoperability

Struts1 and Struts2 interoperability

Struts1 and Struts2 interoperability

(OP)
Any one worked with the Struts 1 plugin for Struts 2 ?
http://struts.apache.org/2.x/docs/struts-1-plugin.html
Its stated features are:
- Can use Struts 1 Actions and ActionForms with no code changes
- Supports Commons Validator-enabled ActionForms

I've got it to work partially where I am able to call the struts1 Action configured thru a strut2 wrapper action. However, only the execute(..) method of the struts1 Action is getting called. I can't figure out how to call different methods as we can do with Struts1 and Struts2. Following is my struts2 configuration (struts.xml):

<package name="integration" extends="struts1-default">
    <interceptors>
    <interceptor name="loginForm"  class="com.opensymphony.xwork2.interceptor.ScopedModelDrivenInterceptor">
    <param name="className">com.newco.servicelive.struts1.form.LoginForm</param>
    <param name="name">loginForm</param>
    <param name="scope">session</param>
            </interceptor>
        </interceptors>
        
    <action name="loginAction" class="org.apache.struts2.s1.Struts1Action">
    <param name="className">com.newco.servicelive.struts1.action.LoginAction</param>          
    <interceptor-ref name="staticParams"/>
    <interceptor-ref name="loginForm"/>
    <result name="success">test.jsp</result>
</action>
</package>

Any help/comments/suggestions would be greatly appreciated.
Thanks !

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members! Already a Member? Login

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close