//set the authentication
call.setUsername("user@email.com");
call.setPassword("password");
//make the call
GetReportStatusCallResult rsresult = getreportstatus.callGetReportStatus();
//have a look at all the reports
Report[] report = rsresult.getReports();
for (int i = 0; i < report.length; i++)
{