Example:
To invoke a method "fooMethod" with the parameter "attr1=1":
<f:invokeUrl var="bpmObject" methodName="fooMethod" queryString="&attr1=1"/>
| Attributes |
| Name | Required | Request-time | Type | Description |
| var | true | true | java.lang.String | BPM Object instance over which the method is invoked. EL(Expression Language) is used to access the BPM Object variable. You can access attributes of type BPM Object, exactly in the same way you do in Java or PBL. |
| methodName | true | true | java.lang.String | Name of the method to invoke. |
| contentType | false | true | java.lang.String | The content-type of the response. Examples of content-types are: "text/html", "image/png", "image/gif", "video/mpeg", "text/css". |
| queryString | false | true | java.lang.String | Request parameters. Parameters specified using this attribute are passed to the invoked method, in a Map, together with other request parameters specified in the form. |