Tema anterior: getProcessStatusTema siguiente: getStartRequestForms


getStartRequestForm

Utilice este método para recuperar información acerca de un objeto de formulario de solicitud de inicio basado en el nombre y la ubicación del formulario de solicitud de inicio de la biblioteca de CA Process Automation.

Ejemplo

<tns:getStartRequestForm xmlns:tns="http://www.ca.com/itpam" getParamSequence="true">
<tns:auth>
<!--xsd:Choice Type-->
<tns:token>token__</tns:token>
<tns:user>Joe</tns:user>
<tns:password>thisismypassword</tns:password>
<tns:auth>
<tns:objLocation>
<tns:name>MYSRF</tns:name>
<tns:path>/myfolder/</tns:path>
</tns:objLocation>
</tns:getStartRequestForm>

Solicitud de SOAP

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SOAP-ENV:Header/><SOAP-ENV:Body>
<tns:getStartRequestForm xmlns:tns="http://www.ca.com/itpam" getParamSequence="true">
<tns:auth>
<tns:user>Joe</tns:user>
<tns:password>thisismypassword</tns:password>
<tns:auth>
<tns:objLocation>
<tns:name>MYSRF</tns:name>
<tns:path>/TENSU03/</tns:path>
</tns:objLocation>
</tns:getStartRequestForm>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

<name> es el nombre del formulario de solicitud de inicio.

<path> es la ruta absoluta de la carpeta donde reside el formulario de solicitud de inicio.

Respuesta de SOAP

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<getStartRequestFormResponse xmlns="http://www.ca.com/itpam">
<refProcess>/Juan/Process</refProcess>
<pages hasComplexType="false">
<page name="Page">
<itpamString isReadOnly="false" maxlength="2147483647" minlength="0" name="Var_0" sequenceNo="0">
<label>Text Field</label>
<description/>
<value/>
</itpamString>
<itpamString isReadOnly="false" maxlength="2147483647" minlength="0" name="Var_1" sequenceNo="1">
<label>Text Field</label>
<description/>
<value/>
</itpamString>
</page>
<page name="System"/>
</pages>
</getStartRequestFormResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

<refProcess> muestra el nombre y ruta del proceso adjuntado con este formulario de solicitud de inicio.