• 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

Cactus Problem

 
Ranch Hand
Posts: 569
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a servlet that set some attributes and forward to a JSP. I want to make sure the proper attributes are set by Cactus. I know in my testXXX() I should do this


The point is, my servlet also has a RequestDispatcher.forward(request,response). Does it affects the execution of my test code after servlet.doGet(request, response)?

Basically, I am asking the effect of RequestDispatcher.forward(). The API doesn't mention anything about what would happens to code placed after it.
reply
    Bookmark Topic Watch Topic
  • New Topic