Greetings,
I am trying to create a workflow and populate a few attributes using the web services. I am able to create the process but unable to understand how to pass the attribute values in the XML.
We are using the SoapUI tool to test our concept as the web services will ultimately be called from TIBCO.
I was wondering if anyone had any sample XML that would show us the schema that CS is expecting.
This XML creates the workflow but does not populate the attribute.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:api.ecm.opentext.com" xmlns:urn1="urn:WorkflowService.service.livelink.opentext.com" xmlns:urn2="urn:Core.service.livelink.opentext.com">
<soapenv:Header>
<urn:OTAuthentication>
<!--Optional:-->
<urn:AuthenticationToken>4%2B%2FxNMRd3dONMEnAU%2BhOZHaH5%2FYAqZN5GD07tO0XTiK91IfRdeLeRyelo8WMAS6%2B</urn:AuthenticationToken>
</urn:OTAuthentication>
</soapenv:Header>
<soapenv:Body>
<urn1:CreateProcess>
<!--Optional:-->
<urn1:processDef>
<!--Zero or more repetitions:-->
<urn1:applicationData>
<urn1:Attributes>
<urn1:StringAttribute>
<urn1:DisplayName>Service Event ID</urn1:DisplayName>
<urn1:ID>2</urn1:ID>
<urn1:Key>1,1.2</urn1:Key>
<urn1:Value>123456</urn1:Value>
</urn1:StringAttribute>
</urn1:Attributes>
</urn1:applicationData>
<urn1:CompleteAction>NotSet</urn1:CompleteAction>
<urn1:DeleteMap>true</urn1:DeleteMap>
<!--Optional:-->
<urn1:Description>?</urn1:Description>
<urn1:EmailAction>EmailAsFile</urn1:EmailAction>
<!--Optional:-->
<urn1:Message>?</urn1:Message>
<urn1:ObjectID>168947</urn1:ObjectID>
<urn1:ResumeOnComplete>true</urn1:ResumeOnComplete>
<!--Zero or more repetitions:-->
<urn1:Roles>?</urn1:Roles>
<urn1:SkipWeekends>true</urn1:SkipWeekends>
<!--Optional:-->
<urn1:Title>?</urn1:Title>
</urn1:processDef>
<!--Optional:-->
<urn1:processName>WS_Workflow_Start</urn1:processName>
</urn1:CreateProcess>
</soapenv:Body>
</soapenv:Envelope>
Thanks,
Chris