Patrick wrote:
I have an ofbizUrl in an FTL file
<@ofbizUrl>AddProducerToFacilityButtonClicked?facilityId=${facility.facilityId}&partyId=${partyId}"

the controller calls a service.

how do I get facilityId, and partyId from the service?  I looked in
context, but it wasn't there.
After recent security refactoring, ofbiz services don't accept parameters sent using GET method. If you want to pass these parameters to a service, you have to use POST method, instead. So you have to create a form and put these parameters as hidden field, then submit the form.

Bilgin

Reply via email to