...
Alternatively, if an error was encountered in the web service while processing your request, you should get a string containing XML for a production_report containing one or more messages elements. These messages will define what error or errors were encountered in the web services.
For example, if your request was for productionReportId=1000 and if that id did not exist in the database, you might receive the following response string from the web service call:
Wiki Markup |
---|
Code Block |
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<production_report>
<messages>
<message severity_desc="ERROR" severity_code="E" msgid="1472">Production Report 1000 not found</message>
</messages>
<schema_version>2.1</schema_version>
</production_report>
{CODE} |
eLandings would display this error as:
...