jGuru
Register Email     Password Forgot your
password?
HOME FAQS FORUMS DOWNLOADS ARTICLES PEERSCOPE LEARN

  Search   jGuru Search Help

View:
JMS FAQ Home Page

FAQ Manager is guru Jerry Smith PREMIUM.

Java Message Service is the new standard for interclient communication. JMS provides a flexible and powerful API that encourages a fine-grained, modular distribution of functionality among application components.

What's New

Is there a way to configure an interval in SwiftMQ which defines the time after which a message is redelivered from a queue to a message consumer?
Java:API:JMS, Distributed computing:Server-side:SwiftMQ
Andreas Mueller PREMIUM, Nov 19, 2005
You can schedule a so-called Message Job to redeliver a received message whenever you want. There's an example on that page to schedule a message 2 hours...
Is it possible to integrate TIBCO system with EJB or, generally, with J2EE? Is this done through the JMS-TIBCO connector? Is it possible to deploy EJB directly on TIBCO?
Java:API:JMS:Vendors, Java:API:EJB, Java:API:EJB:Products
Jon Dart, Sep 10, 2002
TIBCO has a product called TIBCO Adapter for EJB that facilitates communication between EJBs and services that use TIBCO's Rendezvous messaging system. TIBCO...
Does Tomcat support JMS (Java Messaging Service)?
Java:API:JMS, Tools:AppServer:WebServer:Tomcat
Christopher Schultz PREMIUM, Sep 18, 2001
Alessandro A. Garbagnati writes: Tomcat is just a servlet container, not an EJB container nor an application server, so it does not contains any JMS basic...

Where can I learn (more) about JCA (Java Connector Architecture)?
Languages:Markup:XML, Java:API:JMS, Java:API:EJB, Java:API:Security, Distributed computing:CORBA, Distributed computing:Transactions, General:FAQs
John Mitchell PREMIUM, May 31, 2001
Check out the Sun's Java Connector Architecture homepage.
Where can I learn (more) about Java's support for transaction processing?
Java:API:JMS:Transactions, Java:API:RMI, Java:API:JNDI, Java:API:Security, Java:Language, Distributed computing:CORBA, Programming:Concepts:Threads, Java:API:EJB:Transactions, General:FAQs, Java:API:JDBC:Transactions
John Mitchell PREMIUM, May 31, 2001
Check out the jGuru Transactions FAQ.
Where can I learn (more) about Java's support for developing multi-threaded programs?
Java:API:JMS:Threads, Java:API:EJB, Java:API:AWT:Events, Java:API:Swing:Threading, Java:API:RMI, Java:API:IO, Java:API:Collections, Java:API:JNI, Java:API:Applets, Java:Language, J2ME, Tools:Debugging, Process:UML, Platform:UNIX:Linux, Platform:MacOS, Distributed computing:Transactions:Concurrency, Java:API:Networking, Java:API:Servlets:Threading, General:FAQs
John Mitchell PREMIUM, May 30, 2001
Check out the jGuru Threads FAQ.
Where can I learn (more) about Java networking capabilities?
Java:API:JMS, Java:API:IO, Java:API:Applets, Java:API:Security, Java:Language, J2ME, Programming:Concepts:Threads, Java:API:RMI:Custom sockets, General:FAQs, Platform:TINI:Hardware:Ethernet
John Mitchell PREMIUM, May 30, 2001
Check out the jGuru Networking FAQ.
Where can I learn (more) about using JNDI (Java Naming and Directory Interface)?
Java:API:JMS:JNDI, Java:API:EJB, Java:API:Security, Java:Language, General:FAQs
John Mitchell PREMIUM, May 30, 2001
Check out the jGuru JNDI FAQ.
Where can I learn (more) about Java's EJB (Enterprise JavaBeans)?
Java:API:JMS, Java:API:JavaBeans, Java:API:JDBC, Java:API:JNDI, Java:Language, Tools, Distributed computing:CORBA, Process:UML, General:FAQs, Tools:AppServer, Tools:AppServer:WebServer:Tomcat
John Mitchell PREMIUM, May 30, 2001
Check out the jGuru EJB FAQ.
Where can I learn (more) about CORBA (Common Object Request Broker Architecture)?
Java:API:JMS, Java:API:EJB, Java:API:RMI, Java:Language, Process:UML, Java:API:Networking, General:FAQs, Tools:AppServer
John Mitchell PREMIUM, May 30, 2001
Check out the jGuru CORBA FAQ.
How do you pass a file from a message producer to a consumer using JMS?
Java:API:JMS
Jerry Smith PREMIUM, Apr 22, 2001
Answer by Josh Rayls I believe the best way to do this would be to use an ObjectMessage. Simply store your File object in the Message. ObjectMessage...
Are there any JMS implementations that are optimized for mobile devices such as Palm? (The only product I know is iBus//mobile from Softwired.)
Java:API:JMS:Vendors
Jerry Smith PREMIUM, Apr 19, 2001
At this time, I'm aware of no other implementations for mobile devices.
Is JMS the right thing for simple asynchronous message passing? I want to build a peer-to-peer network, where each node has only 2-5 connections. They should be able to forward asynchronous messages....
Java:API:JMS
Jerry Smith PREMIUM, Apr 19, 2001
Answer by Jerry Smith Re: Is JMS the right thing for simple asynchronous message passing? Yes, JMS is a common solution. It is not necessary to have...
Is it possible to send email messages using JMS?
Java:API:JMS
Jerry Smith PREMIUM, Apr 18, 2001
JMS has no inherent support for email operations. Consider the JavaMail API.
I would like to know what is the format of a JMS message. If I should create a JMS message without using javax.jms classes, how should I create this message? I'm using JMQ 2.0 to receive a JMS message,...
Java:API:JMS
Doug Erickson, Mar 8, 2001
The JMS specification doesn't dictate a message format or interprocess communication protocol for clients. These issues are left up to the vendors to...
Is there a standard JMS way that works with all JMS providers to notify a producer that there are new consumers subscribed? I found a way with my SpiritWave provider to do that--I just wait for Subsc...
Java:API:JMS
Doug Erickson, Mar 8, 2001
No, there's not a standard way to do this at the JMS level. Typically, a pub/sub system is designed specifically to decouple publishers from subscribers,...
Is there a way to to send a message.acknowledge() for each and every message. The message.acknowledge() removes all the messages that have been received by a QueueReceiver. But I need to acknowledge only...
Java:API:JMS
Doug Erickson, Mar 6, 2001
If you want to control message acknowledgment on a per-message basis, you shouldn't consume another message until you've acknowledged the current one....
Where can get JMS whitepapers?
Java:API:JMS
Jef Newsom, Feb 20, 2001
The authoritative whitepapers would be found at Sun JMS Docs You might also check out TheServerSide's resource page as it sometimes contains articles...
Is there any relationship between javax.jms.Message and javax.mail.Message?
Java:API:JMS
Rajiv Kanaujia, Feb 7, 2001
There is no direct relationship between javax.mail.Message and javax.jms.Message. If your requirement is to map (correlate) them, here is what you can...
How do I communicate between two clients that are on different machines on a network using JMS? I want to use a standalone application for communicating between the machine and I want to pass the message...
Java:API:JMS
Rajiv Kanaujia, Feb 5, 2001
You can make two JMS client applications, say AppA and AppB. Make AppA listen to topic ‘forA’. Make AppB listen to topic ‘forB’. If...
« previous beginning next »


Ask A Question



Related Links

JMS Forum

Wish List
Features
About jGuru
Contact Us

 


internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs