Versions Compared

Key

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

...

The getFishTicketNumbers() takes four arguments: 1.

  1. String Userid – i.e "amarx"

...

  1. String password – i.e. "A_marx"

...

  1. String schemaVersionNumber – i.e. "2.1"

...

  1. String numberOfNumbersRequested - i.e. "10"

...

  1. String reportType – i.e. "C" or "" – THIS FIELD

...

  1. 'S DATA HAS NO EFFECT

If we pass in a numberOfNumbersRequested=10, we are asking for 10 new fish_ticket_numbers from the database that have never been used and will be reserved for our use.
There are several reportTypes available for use: 1.

  1. "C" = Crab

...

  1. "G" = Groundfish

...

  1. "B" = Salmon

Note: Currently, elandings web service logic does not use the reportType. Any String value passed in will be accepted and discarded. It will have no effect on how the numbers are retrieved or reserved in the database.
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.getFishTicketNumbers(userid, password, schemaVersionNumber, numberOfNumbersRequested, reportType);
Or
String xml = ws.getFishTicketNumbers("amarx", "A_marx", "2.1", "10", "C");
If the web service call was successful you might see a string containing something like:

...