I have looked up this question in many forums and the answers seem to apply only to EJB 3.1 with TimerConfig method.
Is there a similar way to create a nonpersistent timer for EJB 2?
How do I create a non-persistent programmatic timer in EJB 2.1 using TimedObject?
159 Views Asked by bhattedon At
1
There are 1 best solutions below
Related Questions in TIMER
- DateTimePicker not working, textField not updating with selected hours and minutes
- Timer stops the program before it is over
- I cannot get this to redirect. The timer works but it doesn't go anywhere. I need this to redirect to another webpage
- Enabling one timer using another
- iOS Swift Timer sometimes fires much later than expected
- Canceling stop the animation made with requestAnimationFrame()
- How to dynamically change fields in blocs flutter
- How to show countdown for all angular pages without resetting
- Problems with function called by System.Threading.Timer
- Angular 17 does not update view using setInterval with NG0500 error in console
- How to time how long a bash alias took to execute (solved... maybe?)
- I'm using JSF and after a timer expires, I want to display a warning
- Under the swiftUI framework, the timer cannot continue to count in the background
- requestAnimationFrame not working when callback not utilised directly
- Crash on Timer Callback in Swift: closure #1 in ViewController.updateTimer() Causes App to Crash
Related Questions in EJB-2.X
- Deploying EJB 2.0 in wildfly 30.0.0 error: Could not find method public abstract boolean javax.ejb.EJBObject.isIdentical
- What modifications should be made to the JAR file to make the configuration of JBoss.xml effective?
- GitHub Actions: Generate Deployment sources for EJBs 2.0 for IBM Websphere Application from pipeline
- wildfly / jboss-eap: How to name JMS resources to match EJB2 ejb-jar.xml
- WAS 8.5.5 ejb lookup produces invalid object reference com.ibm.ws.naming.util.InvalidObjectException
- How to get a connection from Java DataSource without a username and password?
- Old EJB client backwards compatibility
- What is the EJB 2.x Support End Date?
- EJB2.1 lookup issue in JBoss EAP 7.2.8
- can't deploy EAR on JBOSS EAP6
- How to control that a method of stateless session bean is executed one at a time?
- Migration from JBoss 4.2.3 to Wildfly 8. Is it worth the effort?
- Migration of EJB 2.1 from Weblogic to JBoss EAP 7.2
- Typecast error of postgres in Jboss while calling finder method in Ejb 2.1
- ejb 2 FinderException table or view does not exist
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If you mean an application server that supports the EJB 3.1 API with an ejb-jar.xml file that contains
version="2.1", then useTimerConfig.setPersistentas usual.If you mean an application server that only supports the EJB 2 API, then no, there is no standard way to create a non-persistent timer. Instead, you will need to use a non-standard solution like CommonJ or WebSphere AsynchBeans.