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>