Tagged Questions
The commonj tag has no wiki summary.
3
votes
1answer
129 views
Thread keeps running even after application has been stopped in Websphere
I have a long running thread which is created using org.springframework.scheduling.commonj.WorkManagerTaskExecutor
with Spring and is running in Websphere Application Server 8.
The problem is that ...
2
votes
1answer
414 views
Is there a way to integrate CommonJ WorkManager with Glassfish
Is there a way to integrate CommonJ WorkManager with Glassfish
2
votes
1answer
501 views
weblogic 10 TimerManager avoiding propagation of security context to the scheduled tasks
We are using weblogic 10 and I am using the commonj's TimerManager which is part of weblogic to schedule a task, everything is fine but I have one problem. The securitycontext of the thread which ...
1
vote
1answer
378 views
Using a CommonJ implementation with GlassFish and Spring 3
In my quest to unify deployment among Websphere 7 and GlassFish 3 environments, I decided to try implementing a CommonJ WorkManager and TimerManager in GlassFish. But it isn't quite working as ...
1
vote
2answers
138 views
Websphere equivalent to glassfish-web.xml
I have two deployment environments - Websphere 7.0 and Glassfish 3.1. I have to include a work manager resource reference in the web.xml of my applications for the Websphere environment like so:
...
1
vote
2answers
225 views
CommonJ TimerManager versus EJB3 TimerService
I have to implement a simple (not clustered) timer for WebLogic and it seems there are two different 'standard' options
Timer and Work Manager API (CommonJ)
EJB3.0 TimerService
Does anyone have ...
1
vote
1answer
632 views
Programmatically create WorkManager on WAS 6.1
Is it possible to create a WorkManager from within a running application?
(will even accept hacks and/or non-public API:)
I have neither access to any deployment descriptor nor can I require any ...
0
votes
1answer
112 views
“AsynchBeans Service not initialized” error trying to lookup WebSphere 7 WorkManager
I'm trying to use the CommonJ WorkManagerTaskExecutor as the task executor for a Quartz SchedulerFactoryBean in order to avoid unmanaged threads in WebSphere (described here--scroll down to "Quartz ...
0
votes
2answers
175 views
How do I ignore stuck threads in a Weblogic Server
I've got the below code working on Weblogic Application Server 10.3.2. The long running task executed on timerExpired takes longer than the server wide StuckThreadMaxTime of 600 seconds. I do not want ...
0
votes
1answer
38 views
Where can I download the sources jar for geronimo-commonj_1.1_spec-1.0.jar
The sources jar for geronimo-commonj_1.1_spec-1.0.jar is not found in the maven repo.
Where would I be able to download the sources jar/zip?
0
votes
0answers
136 views
WebLogic Server Version: 10.3.3.0 not returning Stateless Sessions Beans back to EJB Pool
Thank you in advance for spending time on my query.
Problem : WebLogic Server Version: 10.3.3.0 is not returning EJBs back to the pool after being invoked (in production prototype environment).
OS ...
0
votes
1answer
208 views
OC4J (10.1.2) orion-web.xml
I try to use CommonJ with OC4J.
I need to write 'resource-ref-mapping' in orion-web.xml
If I have such entry in web.xml:
<resource-ref>
...
0
votes
1answer
861 views
How to use commonJ Timer Manager in MDB at Weblogic 10.3 environment
I am getting javax.naming.NameNotFoundException while trying to look up TimerManager.
Here I am giving MDB components.
MDBTimer.java
package my.examples.mdb.timer;
import javax.ejb.MessageDriven;
...
0
votes
1answer
2k views
How to map commonj.work.WorkManager with weblogic 10.3 Work Manager
I am trying to use WorkManagers in Weblogic 10.3. I have defined work managers in weblogic-ejb-jar.xml. I declared a resource reference for commonj.work.WorkManager in ejb-jar.xml with the ...
0
votes
1answer
743 views
Is there a way to integrate CommonJ WorkManager with JBoss 5.1
I did find a Jboss Commonj Service on sourceforge, but that appears to be for JBoss 4x.
Any pointers would be great..
0
votes
2answers
456 views
java.util.concurrent
im trying to kick off a Runnable classes run method however i keep getting a NullPointerException, Im using WebSpheres commonj.workmanager to get an instance of executorService.this is the code im ...