DataDoors
Click here for a complete list of operations.
SaveProject
Provides the ability to save a Project. If the Project requested to be saved does not have a Project.UID then the project is inserted, otherwise the Project is updated. RETURNS - The Project UID of the saved project.
Test
The test form is only available for requests from the local machine.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /webservices/DataDoors.asmx HTTP/1.1
Host: www.datadoors.net
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.datadoors.net/SaveProject"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SaveProject xmlns="http://www.datadoors.net">
<UserUid>string</UserUid>
<Project>
<Job>
<EndUsers>
<EndUser xsi:nil="true" />
<EndUser xsi:nil="true" />
</EndUsers>
<Requests>
<Request xsi:nil="true" />
<Request xsi:nil="true" />
</Requests>
<Status id="int" description="string" />
</Job>
</Project>
</SaveProject>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SaveProjectResponse xmlns="http://www.datadoors.net">
<SaveProjectResult>string</SaveProjectResult>
</SaveProjectResponse>
</soap:Body>
</soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /webservices/DataDoors.asmx HTTP/1.1
Host: www.datadoors.net
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<SaveProject xmlns="http://www.datadoors.net">
<UserUid>string</UserUid>
<Project>
<Job>
<EndUsers>
<EndUser xsi:nil="true" />
<EndUser xsi:nil="true" />
</EndUsers>
<Requests>
<Request xsi:nil="true" />
<Request xsi:nil="true" />
</Requests>
<Status id="int" description="string" />
</Job>
</Project>
</SaveProject>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<SaveProjectResponse xmlns="http://www.datadoors.net">
<SaveProjectResult>string</SaveProjectResult>
</SaveProjectResponse>
</soap12:Body>
</soap12:Envelope>