getModules
Gets the name and ID of all modules.
Returns
An array of modules that are sorted by ID are 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:getModules/>
</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>
<getModulesResponse xmlns="http://ws.tririga.com">
<out>
<ns1:Module xmlns:ns1="http://dto.ws.tririga.com">
<id xmlns="http://dto.ws.tririga.com">25</id>
<name xmlns="http://dto.ws.tririga.com">Classification</name>
</ns1:Module>
<ns1:Module xmlns:ns1="http://dto.ws.tririga.com">
<id xmlns="http://dto.ws.tririga.com">20125</id>
<name xmlns="http://dto.ws.tririga.com">Data Utilities</name>
</ns1:Module>
</out>
</getModulesResponse>
</soap:Body>
</soap:Envelope>