Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In the web service client we might auto generate a data structure by providing the web service url. In eLandings we use Java – JAX-WS and generated a structure called ReportManager.
ReportManagement ws;
"
"
String xml = ws. submitProductionReport(userid, password, schemaVersionNumber, productionReportInXmlDataFormat);
Or

submitProductionReport_method_call_example.txt

If the web service call was successful you might see a string containing the production report that you submitted. The report status should have changed to final report submitted 8 So you would see something like this:

submitProductionReport_results_on_success.txt

If the web service call was unsuccessful you should receive a string containing XML for an empty production_report structure containing one or more messages documenting errors that were encountered when processing your request. For example if you tried to save a production report with three stat areas defined as such:
" Stat Area = 355401, Percent = 40
" Stat Area = 355430, Percent = 60
" Stat Area = -10, Percent = 30
Clearly a stat area of -10 doesn"t exist and is illegal. Furthermore the total percentage should add up to 100 but it adds up to 130.
If called the web service with:

submitProductionReport_method_call_with_errors.txt

As a result, when we try to save this production report we might receive something like:

submitProductionReport_results_on_failure.txt