$Services¶
Allows to call SOAP services with JSON or XML content types.
1 |
|
Remarks¶
Please see process modeling page for more information.
Calling with JSON content type¶
```js try { result = $Services.webServiceName.endPointName.methodName({ param1: { param1_b: "2019-01-01", param1_a: "someText", param1_c: 50 }, param2: "someOtherText", param3: "119-229334" }); } catch (e) { console.warn(JSON.stringify(e)); }