You can use the SOAP module to connect to SOAP APIs in Adobe Workfront Fusion.
You must have the following access to use the functionality in this article:
Adobe Workfront plan* | Pro or higher |
Adobe Workfront license* | Plan, Work |
Adobe Workfront Fusion license** | Workfront Fusion for Work Automation and Integration |
Product | Your organization must purchase Adobe Workfront Fusion as well as Adobe Workfront to use functionality described in this article. |
To find out what plan, license type, or access you have, contact your Workfront administrator.
For information on Adobe Workfront Fusion licenses, see Adobe Workfront Fusion licenses.
The SOAP module is currently in beta and does not support:
Example:
The following would not be recognized correctly by Workfront Fusion:
<complexType name="ArrayOfFloat">
<complexContent>
<restriction base="soapenc:Array">
<attribute ref="soapenc:arrayType"
wsdl:arrayType="xsd:integer[]"/>
</restriction>
</complexContent>
</complexType>
It includes the soapenc:Array
, soapenc:arrayType
and wsdl:arrayType
references, which are not yet supported in Workfront Fusion.
If the SOAP module refuses to process the WSDL file or throws various errors in the module’s configuration, you may try using the universal HTTP > Make a request module instead:
In Workfront Fusion, create a new scenario.
Insert the HTTP > Make a request module in the scenario.
Open the module’s configuration and fill in the follwoing fields:
Method | POST |
Body type | Raw |
Content type | XML (application/xml) |
Parse response | Enabled |
Open a new web browser window or tab.
Paste the WSDL URL into the web browser’s address bar and fetch the XML file.
The WSDL URL usually ends with ?wsdl
, but not necessarily, for example http://voip.ms/api/v1/server.wsdl
.
If the WSDL file does not display directly in the web browser, open the downloaded file in a text editor.
Search for the <service>
or <wsdl:service>
tag:
Once located, copy the URL from the location
attribute.
In Workfront Fusion, paste the URL into the HTTP module’s URL field.
Open the Online SOAP Client in a new web browser window/tab.
Paste the WSDL URL into the WSDL URL field.
Click Browse.
Pick from the list of functions to the left, for example getLanguages
.
Copy the content of the Request XML text area.
In Workfront Fusion, paste the copied content to the module’s URL field.
Provide values for selected parameters by replacing the question marks with actual values:
Close the module’s configuration by clicking OK.
Execute the scenario or module.