Archive | JMS RSS feed for this section

How to Configure Java Messaging Service (JMS) in GlassFish 3 Application Server?

September 10, 2010

0 Comments

Java EE 6.0 with GlassFish 3 Application Server Buy JMS Books from Amazon Book Store This book begins with the installation of Glassfish 3 and deploying Java applications. It also explains how to develop, configure, package, and deploy servlets. Additionally, we will learn the processing of HTML forms. As we move on, we will develop [...]

email

Spring JMS API and Weblogic JMS Integration

January 30, 2010

2 Comments

1)Introduction JMS API is Java Message Service API that allows components to communicate asynchronously. JMS enables two components to send and receive message without knowing each other. Spring provides support for JMS programming. Spring is a widely used framework to develop enterprise application. It is bundled with many APIs like AOP, IOC Spring MVC,Spring JMS [...]

JMS Interview Questions

February 13, 2009

0 Comments

1) What is JMS? Java Message Service is the new standard for interclient communication. It allows J2EE application components to create, send, receive, and read messages. It enables distributed communication that is loosely coupled, reliable, and asynchronous. 2) What type messaging is provided by JMS Both synchronous and asynchronous 3) How may messaging models do [...]

Integrating Spring with JMS

December 16, 2008

8 Comments

Java Messaging Service opened the door for modeling the asynchronous mode of communication. It provides a common way of sending and receiving messages by having a middle man, also called as Message Broker or Message oriented Middleware. Now with the capability of an asynchronous framework like JMS being integrated with Spring, it can take all [...]

Publish and Subscribe messages using JMS Topic in JBoss Server

July 10, 2008

2 Comments

Publish and Subscribe using JMS Topic This tips gives overview on how to write Java Messaging Service(JMS) code for creating Topic in the Tomcat server. This is very basic example and only show how to get started instead of looking into the advanced concepts in JMS technology. In JMS, publish/subscribe messaging uses a JMS-managed object [...]

Java Messaging Service(JMS)

May 22, 2008

0 Comments

Distributed Object Technologies like RMI, CORBA and DCOM areadvanced variants of RPC(Remote-Procedure-Call).EJB( SessionBeans % Entity Beans)is essentially built on the RMI-IIOP model,( a combination of RMI with CORBA style). All these systems are Synchronous in nature. (ie) the client invokes a method on the remote object and if for some reason , there isdelay in [...]