1 )Create a topic Add the following in the deploymessagingdestinations-service.xml file <mbean code="org.jboss.jms.server.destination.TopicService" name="jboss.messaging.destination:service=Topic,name=Topic1" xmbean-dd="xmdesc/Topic-xmbean.xml"> <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends> <depends>jboss.messaging:service=PostOffice</depends> </mbean>
Continue readingTag: JMS
JMS Based Webservice on Weblogic Server
By default, client applications use HTTP/S as the connection protocol when invoking a WebLogic Web Service. You can, however, configure
Continue readingJBoss MDB
This post describes usage of Jboss JMS Feature using a Message Driven Bean (MDB) consumer. Note: In this article ,
Continue readingWLDF generating JMS Message notifications
This post describes a simple usage of how we can leverage the WLDF functionality with JMS feature. This post would
Continue readingJBoss JMS using HornetQ
JBoss JMS feature using HornetQ
Continue readingWebLogic JMS feature using Topic
WebLogic JMS feature using Topic
Continue readingWebLogic JMS (Point to Point) feature using a Queue
The article shows a simple usage of WebLogic JMS feature using a Queue.
Continue readingLarge Message Processing Issues In JMS Transactions
When there is a distributed transaction involved in message processing, it is very important that all the resources involved in
Continue readingDelete Messages From JMS Queue Using WLST
Connect to the server using WLST by entering the command java weblogic.WLST Enter the command connect() Enter the username, password,
Continue readingCreate JMS Resources Using WLST
connect(’system’,’weblogic’, ‘t3://localhost:7001′) # Creating a JMS Server edit()startEdit()cd(‘/’)print ‘Creating JMS Server.’cmo.createJMSServer(‘JMSServer0′)cd(‘/JMSServers/JMSServer0′)cmo.addTarget(getMBean(‘/Servers/AdminServer’))activate() # Creating a Module startEdit()cd(‘/’)cmo.createJMSSystemResource(‘JMSSystemResource0′)cd(‘/JMSSystemResources/JMSSystemResource0′)cmo.addTarget(getMBean(‘/Servers/AdminServer’))cmo.createSubDeployment(’subdeployment0′)activate() # Creating Queue startEdit()print
Continue reading