The problem was that we are using the "PARENT_LAST" classloader in WebSphere. (We do this in order to use the MyFaces component library).
We also had the Spring provided "websphere_uow_api.jar"...
Type: Posts; User: macob; Keyword(s):
The problem was that we are using the "PARENT_LAST" classloader in WebSphere. (We do this in order to use the MyFaces component library).
We also had the Spring provided "websphere_uow_api.jar"...
Im using the new <tx:jta-transaction-manager/> tag with Spring 2.5.4 and WebSphere 6.0.2.19.
When I run, I get the following error:
org.springframework.jndi.TypeMismatchNamingException:...
I had a similar problem using a modal popup window, where if the session timed out while the popup was up, and then the user did something in the popup, they would get the login screen in the popup. ...
I have an application using JSF (MyFaces), Tiles and Acegi.
I have two pages, and a post to the first page can result in a forward to the second page.
The problem is that, for the forward, the...
While I'm at it, I see the original posting on this thread was about confusion over the "expiredUrl" property in the ConcurrentSessionFilter. This was something that confused me as well.
The...
vinaya,
Try specifying the "concurrentSessionFilter" as the first filter.
Also, I see that you have ConcurrentSessionFilter configured such that it will allow the second login, and "expire" the...
I did quite a bit of searching before posting. I basically kept going in a circle.
Posts that asked how to error a user id trying to connect from more than one IP were told to set the...
I am using the ConcurrentSessionControllerImpl to limit concurrent sessions, but I want different behavior based on whether a request for a new session comes from the same IP as the existing session,...
I wrote a custom servlet filter that queries the HTTP request to see if it passed a session id and if that session id is valid. If it's not, I redirect to the login screen, passing a parameter that...
I also wish it were easier to modify the default behavior of the DaoAuthenticationProvider.
I have a custom UserDetails class that has a ton of stuff that needs to be checked before the user is...
I have an ApplicationListener that makes use of a DAO, and I want the onApplicationEvent method to be performed in a Transaction.
In my config file I have something like:
<bean...
Since there is no request parameter passed back when the request is submitted, spring doesn't bind anything and you just end up with the value cached in the session.
There is a special "marker"...
The doSubmitAction does not call referenceData because it is expected that after a succesful form submission, you would forward to a "success" page and not back to the form.
The Form controller is...
I have a collection of a custom class (with it's own custom PropertyEditor) in my command class.
My JSP has a multi-select box. I want the values selected to be converted into a List of my custom...