...
Date calendarEndDate = slashFmt.parse("01/20/2010")
Calendar endDate = new GregorianCalendar();
endDate.setTimeInMillis(calendarEndDate.getTime());
XMLGregorianCalendar startDateArg = (null == startDate) ? null : datatypeFactory.newXMLGregorianCalendar((GregorianCalendar) startDate);
XMLGregorianCalendar endDateArg = (null == endDate) ? null : datatypeFactory.newXMLGregorianCalendar((GregorianCalendar) endDate);
String xml = ws. findUserProductionReports ("amarx", "A_marx", "2.1", "", "", "", "", "", "", "", "", "", startDatestartDateArg, endDateendDateArg);
If the web service call was successful, we would get back a string containing a production_report_info containing one or more production_report_summary objects.
...