This function runs an existing report, using its report_id. This is obtained from the get_reports function and returns raw XML results.
Class |
Name |
Type |
Required |
Details |
ExecuteReportRawRequest |
userId |
String |
Yes |
The caller's user name |
ExecuteReportRawRequest |
password |
String |
Yes |
The caller's password |
ExecuteReportRawRequest |
pageLength |
Integer |
Yes |
The page length |
ExecuteReportRawRequest |
persistHandle |
String |
No |
A random string to persist the data |
ExecuteReportRawRequest |
recordStart |
Integer |
No |
The starting index of records returned |
ExecuteReportRawRequest |
recordCount |
Integer |
No |
The count of records being fetched |
Class |
Name |
Type |
Required |
Details |
ExecuteReportRawResponse |
success |
boolean |
Yes |
True is succeeded False if failed |
ExecuteReportRawResponse |
returnCode |
String |
No |
See Appendix for details |
ExecuteReportRawResponse |
returnMessage |
String |
No |
Human readable message |
ExecuteReportRawResponse |
xmlResults |
String |
No |
The search results in XML format |
public static void testExecuteReportRaw(EVQueryServiceStub stub) {
try { request.setUserId(ServiceClientHelper.ADMIN_USER_ID); // this query exists on all sites. ExecuteReportRawResponseDocument resEnvelope = if (response.getSuccess()) { } catch (Exception e) { |