It's Sun App Server EE 8.1. It just seems strange that everything's fine if the application has already been deployed when the server starts up, but if I redeploy it dies.
Type: Posts; User: TylerColes; Keyword(s):
It's Sun App Server EE 8.1. It just seems strange that everything's fine if the application has already been deployed when the server starts up, but if I redeploy it dies.
My question is basically whether or not configuration of an XwsSecurityInterceptor and KeyStoreCallbackHandler is necessary in my situation, and if that could solve the issue I have.
I am using...
So I was able to work around this issue by doing an explicit redirect to another controller as follows:
<bean id="myController" class="MyClass">
...
<property name="successView"...
In my application, I have a SimpleFormController where I enter some info which is submitted to a web service. After receiving the response, it should forward to the success view. This works...