getProjects
Gets all of the projects that the user has access to.
Returns
An array of project records is returned.
Errors
- java.lang.Exception
- A system error occurred when the request was being processed.
Sample request
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.tririga.com">
<soapenv:Body>
<ws:getProjects/>
</soapenv:Body>
</soapenv:Envelope>
Sample response
<soap:Envelope
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Body>
<getProjectsResponse xmlns="http://ws.tririga.com">
<out>
<ns1:Project xmlns:ns1="http://dto.ws.tririga.com">
<id xmlns="http://dto.ws.tririga.com">2530175</id>
<name xmlns="http://dto.ws.tririga.com">1000448 - TestProject</name>
</ns1:Project>
<ns1:Project xmlns:ns1="http://dto.ws.tririga.com">
<id xmlns="http://dto.ws.tririga.com">2534255</id>
<name xmlns="http://dto.ws.tririga.com">1000449 - Project DOS</name>
</ns1:Project>
</out>
</getProjectsResponse>
</soap:Body>
</soap:Envelope>