フォーラム

ホーム » 1. Marketplace App Development

構造的に表示 平面上に表示 ツリー上に表示
toggle
David H Nebinger
PACL and ServiceBuilder...
2013/04/25 13:08
答え

David H Nebinger

ランク: Youngling

投稿: 44

参加年月日: 2006/09/01

最近の投稿

So if my plugin has a SB that does some filesystem stuff, obviously I'm going to put these into liferay-plugin-package.properties file.

But if another plugin wants to use the services from the first plugin, does it also need the mentions in it's own liferay-plugin-package.properties file?

When you're doing something inside of the XxxLocalServiceImpl class, who's security manager is in charge?
Raymond Augé
RE: PACL and ServiceBuilder...
2013/04/25 13:11
答え

Raymond Augé

ランク: Youngling

投稿: 0

参加年月日: 2005/02/07

最近の投稿

It will have to declare the service dependency from the other plugin.

The other plugin's code will execute under it's own policy. This will be automatically calculated for you when using the generator (as long as your QA process causes the invocation of these operations, as it should).
David H Nebinger
RE: PACL and ServiceBuilder...
2013/04/25 13:18
答え

David H Nebinger

ランク: Youngling

投稿: 44

参加年月日: 2006/09/01

最近の投稿

My question is more along the lines of:

Portlet A uses SB and has a MyFileLocalServiceImpl class that reads/writes ${java.io.tmpdir}/myfile.xml. So in portlet A I add the security-manager-files-read and security-manager-files-write entries, and Portlet A's security manager is happy.

Now Portlet B uses the service from portlet A and calls the appropriate method on MyFileLocalServiceUtil. Portlet B's liferay-plugin-package.properties file will have the security-manager-services entry so that it can invoke the service from portlet A.

The question is, though, will portlet B also need to have the security-manager-files-read and security-manager-files-write privileges in order to actually invoke the service? When inside the method in MyFileLocalServiceImpl, which security manager is in effect when called from portlet B, is it B's security manager or A's?
Raymond Augé
RE: PACL and ServiceBuilder...
2013/04/25 13:23
答え

Raymond Augé

ランク: Youngling

投稿: 0

参加年月日: 2005/02/07

最近の投稿

No! The code of the plugin A (including it's services invoked by another plugin) is executing under it's own policy.
David H Nebinger
RE: PACL and ServiceBuilder...
2013/04/25 13:26
答え

David H Nebinger

ランク: Youngling

投稿: 44

参加年月日: 2006/09/01

最近の投稿

Great! Thanks for clarifying!

I was afraid that B's policy would be in effect and would need all of the same security stuff that is defined for A just to be able to invoke A's service (thereby exposing the fact that A is reading/writing ${java.io.tmpdir}/myfile.xml).

Forums

To access the Developer Forum, please login to your Liferay.com account if you are already a registered developer or register to become a developer.