servlets - how to properly call a java function from a ftl file in ofbiz? -
i think have done necessary splicing me allow gui invoke java method. this ftl file process should start, on widget screens xml file , displaying contents i'm not sure of parameters used here proper call java class <form action="<@ofbizurl>methodtoinvoke</@ofbizurl>" method="post"> <input type="submit" value="id"></input> <input type="text" name="input"></input> </form> and code on controller <request-map uri="methodtoinvoke"> <security https="true" auth="true"/> <event type="java" path="com.report.someclass" invoke="methodtoinvoke"/> <response name="success" type="view" value="reports" /> <response name="error" type="view" value="reports" /> </request-map> when run application , hit b...