Tuesday, 5 July 2016

Understanding JMS in websphere application server and integrate with WCM

JMS :- In a laymen terms we can send messages asking it to store. Later concern person will consume it. By which we can create a intermediate layer where messages can be stored asynchronously and consumed later for further use.

WCM :- Messages or events that can be captured from WCM. We will apply above JMS concepts to catch below events

Item events:
Item created
Item updated
Item moved
Item deleted

Syndication events:
Starting
Stopping

Pre-render events:
Starting
Stopping

Command to enable it :-
./ConfigEngine.sh create-wcm-jms-resources -DPortalAdminId=username -DPortalAdminPwd=password -DuseRemoteEndPoints=true/false


Suggested links :-
http://www-01.ibm.com/support/docview.wss?uid=swg27036467&aid=1

No comments:

Post a Comment

Custom single threaded java server

 package com.diffengine.csv; import java.io.*; import java.net.*; import java.util.Date; public class Server { public static void main(Str...