掲示板

Integration

thumbnail
10年前 に Lisa Rout によって更新されました。

Integration

New Member 投稿: 10 参加年月日: 14/04/14 最新の投稿
Hi Guys,
Can you please suggest here how to integrate Liferay with Mule?
thumbnail
10年前 に David H Nebinger によって更新されました。

RE: Integration

Liferay Legend 投稿: 14919 参加年月日: 06/09/02 最新の投稿
Well, I'm not using Mule but I am using AMQ. I know it's not the same, but it should give you some ideas.

For sending, I use camel code in my portlets.

For receiving, I use a simple spring MDB to take the message and publish into the LMB; disconnects portlet code from having to deal w/ the JMS, etc.

The big problem for most people is that they really do not think their implementation through. Normally you'll have a portlet on a page and you want that portlet to send/receive. You write all the code and you think it's all good.

But in doing so you overlook the runtime implementation. Your portal admin drops the portlet on a page, and all of a sudden you have X number of end users w/ this portlet on the page and they're all separately trying to post messages and/or receive messages, but more often than not users want a specific message, not just any message.

Things get really bad if the portlet is dropped on a public page that guests can access.

So you really must consider your runtime implementation, not just how you handle the integration from a code perspective.
thumbnail
10年前 に Lisa Rout によって更新されました。

RE: Integration

New Member 投稿: 10 参加年月日: 14/04/14 最新の投稿
Thanks a lot David for your Comment...but I want to know is there any Liferay specific Mule plug-in is there!!!!
thumbnail
10年前 に David H Nebinger によって更新されました。

RE: Integration

Liferay Legend 投稿: 14919 参加年月日: 06/09/02 最新の投稿
Not that I'm aware of.
4年前 に Alex Kuler によって更新されました。

RE: Integration

New Member 投稿: 1 参加年月日: 19/08/02 最新の投稿
great