Fórum

*LocalServiceUtil VS *ServiceUtil

Akram MONCER, modificado 11 Anos atrás.

*LocalServiceUtil VS *ServiceUtil

Regular Member Postagens: 106 Data de Entrada: 25/09/12 Postagens Recentes
hi any one know what is the difference between *LocalServiceUtil and *ServiceUtil ?

like for example UserLocalServiceUtil and UserServiceUtil

thanks
thumbnail
Gaurav Jain, modificado 11 Anos atrás.

RE: *LocalServiceUtil VS *ServiceUtil

Regular Member Postagens: 145 Data de Entrada: 31/01/11 Postagens Recentes
Check the following post:

http://www.liferay.com/web/jorge.ferrer/blog/-/blogs/liferay-s-architecture-the-service-layer
thumbnail
Hitoshi Ozawa, modificado 11 Anos atrás.

RE: *LocalServiceUtil VS *ServiceUtil

Liferay Legend Postagens: 7942 Data de Entrada: 24/03/10 Postagens Recentes
Simply put, localServiceUtil is a local service and does not require user/password authentication while ServiceUtil is a remote service and require user/password authentication.
Akram MONCER, modificado 11 Anos atrás.

RE: *LocalServiceUtil VS *ServiceUtil

Regular Member Postagens: 106 Data de Entrada: 25/09/12 Postagens Recentes
hi hitoshi thanks for replay
but when i use a ServiceUtil i works only for the admin if i try it for a simple use i get this exception :
com.liferay.portal.security.auth.PrincipalException
at com.liferay.portlet.shopping.service.permission.ShoppingPermission.check(ShoppingPermission.java:31)

how can change it whitout using the LocalServiceUtil
thumbnail
Hitoshi Ozawa, modificado 11 Anos atrás.

RE: *LocalServiceUtil VS *ServiceUtil

Liferay Legend Postagens: 7942 Data de Entrada: 24/03/10 Postagens Recentes
Give the user which you have logged in a permission. I'm not exactly sure what's you're trying to do. What's the exact method you're trying to use?
Akram MONCER, modificado 11 Anos atrás.

RE: *LocalServiceUtil VS *ServiceUtil

Regular Member Postagens: 106 Data de Entrada: 25/09/12 Postagens Recentes
hi thanks hitoshi for your response
i try to use something like this ShoppingCouponServiceUtil.addCoupon(code, autoCode, name, description, startDateMonth, startDateDay, startDateYear, startDateHour, startDateMinute, endDateMonth, endDateDay, endDateYear, endDateHour, endDateMinute, neverExpire, active, limitCategories, limitSkus, minOrder, discount, discountType, serviceContext)
but only the admin can excute it how can i give the right to a normal user to execute it.