문제

I have a portal application deployed on WebSphere Portal server and message flows deployed in message broker execution group. The portal application does some kind of database CRUD operation. Based on the changes made through portal, I want to update my cache data of Message Broker. Since there could be several broker execution group, so I thought of creating a pub-sub model. Every time the portal changes some values in the database, it publishes that message to the topic which broker application will listen to and take appropriate action.

My problem is how to make both these servers communicate to each other. Any pointer would be highly appreciated.

Thanks in advance.

도움이 되었습니까?

해결책

JMS would probably be my choice here as it already supports the pub/sub semantics and is supported by both products.

다른 팁

You can Use DatabaseInput Node in You Message Flows, this Node can listens on Database,Table,or Column if you want for more information go to this link and read about the Node: DatabaseInput Node Documentation

DatabaseInput Node Snapshot

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top