BUG 11830 "Remover la funcion WSDL Web Services..." SOLVED
- Remover la funcion WSDL Web Services Functions importProcessFromLibrary() - Problema resuelto, se ha eliminado la Funcion "importProcessFromLibrary()", ya no existe.
This commit is contained in:
@@ -740,30 +740,7 @@
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="importProcessFromLibraryRequest">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="sessionId" type="xs:string"/>
|
||||
<xs:element name="processId" type="xs:string"/>
|
||||
<xs:element name="version" minOccurs="0" type="xs:string"/>
|
||||
<xs:element name="importOption" minOccurs="0" type="xs:string"/>
|
||||
<xs:element name="usernameLibrary" minOccurs="0" type="xs:string"/>
|
||||
<xs:element name="passwordLibrary" minOccurs="0" type="xs:string"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="importProcessFromLibraryResponse">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="status_code" type="xs:integer"/>
|
||||
<xs:element name="message" type="xs:string"/>
|
||||
<xs:element name="processId" minOccurs="0" type="xs:string"/>
|
||||
<xs:element name="processTitle" minOccurs="0" type="xs:string"/>
|
||||
<xs:element name="category" minOccurs="0" type="xs:string"/>
|
||||
<xs:element name="version" minOccurs="0" type="xs:string"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:complexType name="getCaseNotesStruct">
|
||||
<xs:sequence>
|
||||
<xs:element name="full_name" type="xs:string"/>
|
||||
@@ -1085,12 +1062,6 @@
|
||||
<message name="removeDocumentResponse">
|
||||
<part name="parameters" element="xs0:removeDocumentResponse"/>
|
||||
</message>
|
||||
<message name="importProcessFromLibraryRequest">
|
||||
<part name="parameters" element="xs0:importProcessFromLibraryRequest"/>
|
||||
</message>
|
||||
<message name="importProcessFromLibraryResponse">
|
||||
<part name="parameters" element="xs0:importProcessFromLibraryResponse"/>
|
||||
</message>
|
||||
<message name="getCaseNotesRequest">
|
||||
<part name="parameters" element="xs0:getCaseNotesRequest"/>
|
||||
</message>
|
||||
@@ -1264,10 +1235,6 @@
|
||||
<input message="xs0:removeDocumentRequest"/>
|
||||
<output message="xs0:removeDocumentResponse"/>
|
||||
</operation>
|
||||
<operation name="importProcessFromLibrary">
|
||||
<input message="xs0:importProcessFromLibraryRequest"/>
|
||||
<output message="xs0:importProcessFromLibraryResponse"/>
|
||||
</operation>
|
||||
<operation name="getCaseNotes">
|
||||
<input message="xs0:getCaseNotesRequest"/>
|
||||
<output message="xs0:getCaseNotesResponse"/>
|
||||
@@ -1597,15 +1564,6 @@
|
||||
<soap12:body use="literal"/>
|
||||
</output>
|
||||
</operation>
|
||||
<operation name="importProcessFromLibrary">
|
||||
<soap12:operation soapAction="urn:importProcessFromLibrary" soapActionRequired="true" style="document"/>
|
||||
<input>
|
||||
<soap12:body use="literal"/>
|
||||
</input>
|
||||
<output>
|
||||
<soap12:body use="literal"/>
|
||||
</output>
|
||||
</operation>
|
||||
<operation name="getCaseNotes">
|
||||
<soap12:operation soapAction="urn:getCaseNotes" soapActionRequired="true" style="document"/>
|
||||
<input>
|
||||
|
||||
@@ -1026,20 +1026,6 @@ function systemInformation ($params)
|
||||
return $res;
|
||||
}
|
||||
|
||||
function importProcessFromLibrary ($params)
|
||||
{
|
||||
$vsResult = isValidSession( $params->sessionId );
|
||||
|
||||
if ($vsResult->status_code !== 0) {
|
||||
return $vsResult;
|
||||
}
|
||||
|
||||
$ws = new wsBase();
|
||||
$res = $ws->importProcessFromLibrary( $params->processId, $params->version, $params->importOption, $params->usernameLibrary, $params->passwordLibrary );
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
function getCaseNotes ($params)
|
||||
{
|
||||
$vsResult = isValidSession( $params->sessionId );
|
||||
@@ -1258,7 +1244,6 @@ $server->addFunction("TaskList");
|
||||
$server->addFunction("TaskCase");
|
||||
$server->addFunction("ReassignCase");
|
||||
$server->addFunction("systemInformation");
|
||||
$server->addFunction("importProcessFromLibrary");
|
||||
$server->addFunction("removeUserFromGroup");
|
||||
$server->addFunction("getCaseNotes");
|
||||
$server->addFunction("deleteCase");
|
||||
|
||||
Reference in New Issue
Block a user