• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

when used <s:token> and <interceptor-ref name="tokenSession" /> setter methods are not being called.

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ,
I am using struts2-spring integration module in my project.
some of the jars that I am using are as follows.

struts2-spring-plugin-2.1.6.jar
struts2-core-2.1.6.jar
xwork-2.1.2.jar
.........

I have a problem.
when I use <s:token> in the form to be submitted and <interceptor-ref name="tokenSession" /> in the struts.xml for corresponding action,
the setter methods in the Action class are not called...... as a result I am not able to save form parameters into database.
I don't see any error or warning messages on the tomcat's console.

However, if I remove <s:token> and <interceptor-ref name="tokenSession" /> , on hitting the submit button setter methods are called and I am able to save them into database.

what could be the problem?
can anyone give me some clue..
thanks in advance.
-mist
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi..It should be <interceptor-ref name="token-session/>
instead of <interceptor-ref name="tokenSession/>
reply
    Bookmark Topic Watch Topic
  • New Topic