Versions Compared

Key

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

This method returns a full production report record as a string in XML format as defined by the XSD definition for Production_Report object in productionreport.xsd.

The getProductionReport() takes four arguments:
1. String Userid – i.e ¿amarx¿
2. String password – i.e. ¿A_marx¿
3. String schemaVersionNumber – i.e. ¿2.1¿
4. String productionReportID - i.e. ¿3408¿

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.getProductionReport(userid, password, schemaVersionNumber, productionReportID);
For example: In eLandings, if you were to click on the link for Production report 3408:

...