1

Anyone has successfully used Struts conversation plugin?

The documentation says that fields annotated with @ConversationField annotation in Action class is supposed to be retained for the entire conversation, which is not happening.

Can you help me with any other plugin for Struts 2 for developing wizard-like application?

Following is my structure of struts.xml

<package name="wstest" namespace="/wstest" extends="struts-conversation-default"> 
  <action name="*" class="com.bla.bla.WebServiceTestController" method="{1}"> 
     <result name="upload">/WEB-INF/content/wstest/UploadWSDL.jsp</result> 
     <result name="selectoperation">
       /WEB-INF/content/wstest/selectoperation.jsp
     </result>
 </action> 
</package>
BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
javaCurious
  • 140
  • 2
  • 14
  • 1
    Show your configuration. If you need to create wizard take a look at ActionFlow plugin - https://github.com/aleksandr-m/struts2-actionflow. – Aleksandr M Nov 17 '14 at 07:58
  • How it is not working? Any exceptions? – Aleksandr M Nov 17 '14 at 12:12
  • No exception, just unable to retain values accross the requests. However am switching my implementation to use ActionFlow plugin. Just quick question does is address bookmarking issue? i.e. if someone bookmarks any intermediate page and try to start the application does it redirect the user to begin page? – javaCurious Nov 17 '14 at 12:18
  • It depends. Do you want it to behave in that way? – Aleksandr M Nov 17 '14 at 12:49

0 Answers0