File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Other Application Frameworks and the fly likes OC4J and Spring - problem with redirect Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Application Frameworks » Other Application Frameworks
Reply Bookmark "OC4J and Spring - problem with redirect" Watch "OC4J and Spring - problem with redirect" New topic
Author

OC4J and Spring - problem with redirect

Kenny Benson
Greenhorn

Joined: Nov 16, 2005
Posts: 1
I have an annoying problem that has arisen when deploying a simple web-app to OC4J - it seems. The setting is the following: i have a Login-jsp that after successful login and a subsequent "submit" should bring us to another form - a JobSubmissionForm.jsp. Now, I must confess there was enough hassle when deploying to Tomcat, but after browsing this forum I found the fix, namely that I had to put in a redirect in between the LoginController and the JobSubmissionForm.

Now, the exact same problem has arisen on deployment to OC4J! What's the deal?! Could it have something to do with the way OC4J resolves the JSP...? Note that the JobSubmissionForm.jsp works perfectly when called directly by means of pasting in an URL in the browser! I'd really appreciate som constructive feed back on this. I've checked the log and there are no complaints wrt binding and the like.

Snippets of code:

1. in LoginController.onSubmit()

return new ModelAndView(getSuccessView(), "jobSubmitCommand", jobSubmitCommand);


2. From ajsp-servlet.xml


<bean id="ajspLoginController" class="com.foobar.ajsp.controller.AjspLoginControl ler">
<property name="sessionForm">
<value>true</value>
</property>

<property name="commandName">
<value>loginCommand</value>
</property>

<property name="commandClass">
<value>com.foobar.ajsp.commands.LoginCommand</value>
</property>

<property name="authenticationService">
<ref bean="authenticationService" />
</property>

<property name="jobServices">
<ref bean="jobServices" />
</property>

<property name="themeChangeService">
<ref bean="themeChangeService" />
</property>

<property name="themeResolver">
<ref bean="themeResolver" />
</property>


<property name="formView">
<value>login</value>
</property>

<property name="successView" value="redirect:/jobsubmissionform.htm"/>
</bean>
 
 
subject: OC4J and Spring - problem with redirect
 
Threads others viewed
Spring MVC question
request does not pass to action
Spring security multiple login pages
Transactions in Spring + Hibernate
NullPointerException - Alfresco Developer Manual, somecoModuleCore.bootstrapAuthorityCreator
WebSphere development made easy
without the weight of IBM tools
http://www.myeclipseide.com