In B.3: Configuring the Task Scheduler
(http://static.springsource.org/spring-integration/reference/htmlsingle/#namespace-taskscheduler), it would be nice to provide some of the reasons for...
Type: Posts; User: jav01_2000; Keyword(s):
In B.3: Configuring the Task Scheduler
(http://static.springsource.org/spring-integration/reference/htmlsingle/#namespace-taskscheduler), it would be nice to provide some of the reasons for...
Thank you so much, Gary!
This resolved the problem. Worker thread is able to lookup "java:comp/websphere/ExtendedJTATransaction".
<bean id="taskScheduler"...
Gary,
do you have example of how to configure TimerManagerTaskScheduler as the starting thread of SI?
Again, we are facing the problem of not able to do JNDI lookup for...
Do you agree SI spawn unmanaged threads for some cases? These threads have no JEE container context, so maybe that is why the context is not propogated to the WorkManager threads, which is managed by...
Gary, what WMTE stands for? BTW, we are already using WorkManager provided by WAS.
In the log:
2012-07-04 10:55:33,946 ERROR [WorkManager.wmWorkManager : 0]...
Environment:
WAS 8.0.0.2
Spring 3.1.1
Spring Integration 2.1.2
Hibernate: 4.1.4
We have a simple requirement that records from a staging table are polled using...
Domains are stored at user store, so it is nature to store them in UserDetails, as well as in user's authorities, and loaded by UserDetailsService.
I don't understand the statement "at that point...
Thank you rwinch for keeping my hope up:)
I am posting some much simplified code, hopefully it can explain the requirement better.
This is the GrantedAuthority I created to contain a collection...
bump before I give up looking for better solution :(
It is easy when domain non-specific pages are either unprotected or doesn't require any roles; I can simply use "IS_AUTHENTICATED_ANONYMOUSLY" or "IS_AUTHENTICATED_FULLY".
Assuming all protected...
Hi all,
I have created a framework extended from spring security2 used by many applications in the company. Note, the following problem can be easily resolved by using spring security3's EL, but I...