Table of Contents

REST/SOAP call and retrieval Mapping

This workflow task type, named “Run Web Service” can be used to launch a REST or SOAP call to another system and retrieve the results to be saved in fields of coreBOS or to be passed along the workflow set of tasks to be consumed in other workflow tasks by using the getContext function.

To use this task type we need a map of type Webservice Mapping. This map must be selected in the workflow task.

In the task, we can attach just one map which can be selected using the input field.

The “Web Service Mapping” defines the web service method parameters that will be launched and is divided into three sections:

wsconfig

Most of the directives are self-explanatory but there are a few that need to be explained due to the process they have related.

The INPUTTYPE defines how we will send the parameters (fields) to the end-point:

If the OUTPUTTYPE is JSON two additional tasks are performed:

fields

this section is processed by the same engine that is used in the Field Mapping Business Map so we can use all the options that we have there like Expressions and Rules

Response

Examples

An example of Map for SOAP Call:

<map>
<originmodule>
<originname>Accounts</originname>
</originmodule>
 
<wsconfig>
<wsurl>http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl</wsurl>
<wshttpmethod>POST</wshttpmethod>
<methodname>checkVat</methodname>
<wsresponsetime></wsresponsetime>
<wsuser></wsuser>
<wspass></wspass>
<wsproxyhost></wsproxyhost>
<wsproxyport></wsproxyport>
<wsheader>
<header> 
<keyname>Content-type</keyname> 
<keyvalue>application/json</keyvalue> 
</header>
</wsheader>
<wstype>SOAP</wstype>
<inputtype>JSON</inputtype>
<outputtype>JSON</outputtype> 
</wsconfig>
 
<fields>
<field>
<fieldname>countryCode</fieldname>
<Orgfields>
<Orgfield>
<OrgfieldName>bill_code</OrgfieldName>
<OrgfieldID></OrgfieldID>
</Orgfield>
<delimiter></delimiter>
</Orgfields>
</field>
<field>
<fieldname>vatNumber</fieldname>
<Orgfields>
<Orgfield>
<OrgfieldName>siccode</OrgfieldName>
<OrgfieldID></OrgfieldID>
</Orgfield>
<delimiter></delimiter>
</Orgfields>
</field>
</fields>
 
<Response>
<field>
<fieldname>valid</fieldname>
<destination>
<field>tickersymbol</field>
</destination>
</field>
<field>
<fieldname>requestDate</fieldname>
<destination>
<field>ownership</field>
</destination>
</field>
</Response>
</map>

An example of Map for REST Call:

<map>
<originmodule>
<originname>Accounts</originname>
</originmodule>
 
<wsconfig>
<wsurl>http://localhost/facturascripts/api/3/divisas/$coddivisa</wsurl>
<wshttpmethod>GET</wshttpmethod>
<methodname>divisas</methodname>
<wsresponsetime></wsresponsetime>
<wsuser></wsuser>
<wspass></wspass>
<wsheader>
<header> 
<keyname>Content-type</keyname> 
<keyvalue>application/json</keyvalue> 
</header>
<header> 
<keyname>token</keyname> 
<keyvalue>0WXmP4nVDIGNHKysuceA</keyvalue> 
</header>
</wsheader>
<wstype>REST</wstype>
<inputtype>URLRESTFUL</inputtype>
<outputtype>JSON</outputtype> 
</wsconfig>
 
<fields>
<field>
<fieldname>coddivisa</fieldname>
<Orgfields>
<Orgfield>
<OrgfieldName>tickersymbol</OrgfieldName>
<OrgfieldID></OrgfieldID>
</Orgfield>
<delimiter></delimiter>
</Orgfields>
</field>
</fields>
 
<Response>
<field>
<fieldname>descripcion</fieldname>
<destination>
<field>ownership</field>
</destination>
</field>
</Response>
</map>

Note how the $coddivisa variable in the URL

<wsurl>http://localhost/facturascripts/api/3/divisas/$coddivisa</wsurl>

will be substituted by the actual value that we have in coreBOS as defined in the fields section. In this case, the value of the tickersymbol field in the Account will be read and $coddivisa will be substituted with that value.

An example of two tasks passing context

This first map executes an authentication call and loads the authorization token into the workflow context and the second task uses that value to make an operation call.

<map>
<originmodule>
<originname>Accounts</originname>
</originmodule>
 
<wsconfig>
<wsurl><![CDATA[http://localhost/corebostsolucio/webservice.php?operation=testcontext&id=2355]]></wsurl>
<wshttpmethod>GET</wshttpmethod>
<methodname>wslogin</methodname>
<wsresponsetime></wsresponsetime>
<wsuser></wsuser>
<wspass></wspass>
<wsheader>
<header>
<keyname>Content-type</keyname>
<keyvalue>application/json</keyvalue>
</header>
<header>
<keyname>Authorization</keyname>
<keyvalue>9192929383834</keyvalue>
</header>
</wsheader>
<wstype>REST</wstype>
<inputtype>JSON</inputtype>
<outputtype>JSON</outputtype>
</wsconfig>
 
<fields>
</fields>
 
<Response>
<field>
<fieldname>result</fieldname>
<destination>
<context>token</context>
</destination>
</field>
</Response>
</map>
<map>
<originmodule>
<originname>Accounts</originname>
</originmodule>
 
<wsconfig>
<wsurl>http://localhost/corebostsolucio/webservice.php?operation=testcontext2</wsurl>
<wshttpmethod>POST</wshttpmethod>
<methodname>wspost</methodname>
<wsresponsetime></wsresponsetime>
<wsuser></wsuser>
<wspass></wspass>
<wsheader>
<header>
<keyname>Content-type</keyname>
<keyvalue>application/json</keyvalue>
</header>
<header>
<keyname>Authorization</keyname>
<keyvalue>getContext(token)</keyvalue>
</header>
</wsheader>
<wstype>REST</wstype>
<inputtype>JSON</inputtype>
<outputtype>JSON</outputtype>
</wsconfig>
 
<fields>
<field>
<fieldname>token</fieldname>
<Orgfields>
<Orgfield>
<OrgfieldName>accountname</OrgfieldName>
<OrgfieldID></OrgfieldID>
</Orgfield>
<delimiter></delimiter>
</Orgfields>
</field>
</fields>
 
<Response>
<field>
<fieldname>description</fieldname>
<destination>
<field>accountname</field>
</destination>
</field>
</Response>
</map>