Log Functionality

In this section:

This section describes the format and structure of RESTful web service requests that are used for a variety of ReportCaster logging functionality.


Top of page

x
Deleting a Specific Log

This RESTful web service request can be used to delete a ReportCaster log for a specific job.

HTTP Method: GET

REST URL Format:

http://host:port/ibi_apps/services/LogServiceREST/deleteLogByJobId?jobId=jobId

where:

host

Is the name of the system where WebFOCUS is installed.

port

Is the port number used by WebFOCUS.

jobId

Is a unique identifier for the ReportCaster job.

Example:

In the following example, the ReportCaster log for job ID J34558adaj1b4dj4e6cjaddcj3745b2688f2c is deleted.

Request:

http://localhost:8080/ibi_apps/services/LogServiceREST/deleteLogByJobId?
jobId=J34558adaj1b4dj4e6cjaddcj3745b2688f2c

Response:

<ns:deleteLogByJobIdResponse xmlns:ns="http://ws.api.broker.ibi">
     <ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
</ns:deleteLogByJobIdResponse>

Top of page

x
Deleting Logs for a Specific Time Period

This RESTful web service request can be used to delete ReportCaster logs for all schedules that were run between a specific time interval.

If there is no value for the start time of the time interval, then all log records before the end time of the time interval are deleted.

If there is no value for the end time of the time interval, then all log records after the start time of the time interval are deleted.

HTTP Method: GET

REST URL Format:

http://host:port/ibi_apps/services/LogServiceREST/deleteLogList?startTime=startTime&
endTime=endTime

where:

host

Is the name of the system where WebFOCUS is installed.

port

Is the port number used by WebFOCUS.

startTime

Is the start time for when the logs are to be deleted. The following format must be used:

YYYY/MM/DD%20HH:MM:SS
endTime

Is the end time for when the logs are to be deleted. The following format must be used:

YYYY/MM/DD%20HH:MM:SS

Example:

In the following example, all ReportCaster logs between 2014-02-20 11:00:00 and 2014-02-20 13:00:00 are to be deleted.

Request:

http://localhost:8080/ibi_apps/services/LogServiceREST/deleteLogList?startTime=2014/02/20%2011:00:00&
endTime=2014/02/20%2013:00:00

Response:

<ns:deleteLogListResponse xmlns:ns="http://ws.api.broker.ibi">
     <ns:return>2</ns:return>
</ns:deleteLogListResponse>

The value within the <return> element indicates the number of ReportCaster logs that were deleted.


Top of page

x
Deleting Logs for an Owner

This RESTful web service request can be used to delete ReportCaster logs for all schedules that were run between a specific time interval for a specific log owner.

If there is no value for the start time of the time interval, then all log records before the end time of the time interval are deleted.

If there is no value for the end time of the time interval, then all log records after the start time of the time interval are deleted.

HTTP Method: GET

REST URL Format:

http://host:port/ibi_apps/services/LogServiceREST/deleteLogListByOwner?owner=owner&
startTime=startTime&endTime=endTime

where:

host

Is the name of the system where WebFOCUS is installed.

port

Is the port number used by WebFOCUS.

owner

Is the owner of the ReportCaster log.

startTime

Is the start time for when the logs are to be deleted. The following format must be used:

YYYY/MM/DD%20HH:MM:SS
endTime

Is the end time for when the logs are to be deleted. The following format must be used:

YYYY/MM/DD%20HH:MM:SS

Example:

In the following example, all ReportCaster logs between 2014-02-21 09:00:00 and 2014-02-21 10:00:00 for the log owner named admin are to be deleted.

Request:

http://localhost:8080/ibi_apps/services/LogServiceREST/deleteLogListByOwner?owner=admin&
startTime=2014/02/21%2009:00:00&endTime=2014/02/21%2010:00:00

Response:

<ns:deleteLogListByOwnerResponse xmlns:ns="http://ws.api.broker.ibi">
     <ns:return>2</ns:return>
</ns:deleteLogListByOwnerResponse>

The value within the <return> element indicates the number of ReportCaster logs that were deleted.


Top of page

x
Deleting Logs for a Schedule ID

This RESTful web service request can be used to delete all ReportCaster logs a specific schedule identified by a schedule ID.

HTTP Method: GET

REST URL Format:

http://host:port/ibi_apps/services/LogServiceREST/deleteLogListByScheduleId?
scheduleId=scheduleId

where:

host

Is the name of the system where WebFOCUS is installed.

port

Is the port number used by WebFOCUS.

scheduleId

Is the schedule ID for the ReportCaster schedule.

Example:

In the following example, all ReportCaster logs for schedule ID S23f65030s728as482asa632s879fd9f6a727 are to be deleted.

Request:

http://localhost:8080/ibi_apps/services/LogServiceREST/deleteLogListByScheduleId?
scheduleId=S23f65030s728as482asa632s879fd9f6a727

Response:

<ns:deleteLogListByScheduleIdResponse xmlns:ns="http://ws.api.broker.ibi">
     <ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
</ns:deleteLogListByScheduleIdResponse>

Top of page

x
Deleting Logs for a Schedule ID Within a Time Period

This RESTful web service request can be used to delete all ReportCaster logs that were run between a specific time interval for a specific schedule identified by the schedule ID.

If there is no value for the start time of the time interval, then all log records before the end time of the time interval are deleted.

If there is no value for the end time of the time interval, then all log records after the start time of the time interval are deleted.

HTTP Method: GET

REST URL Format:

http://host:port/ibi_apps/services/LogServiceREST/deleteLogListByScheduleIdByCalendar?scheduleId=scheduleId&
startTime=startTime&endTime=endTime

where:

host

Is the name of the system where WebFOCUS is installed.

port

Is the port number used by WebFOCUS.

scheduleId

Is the schedule ID for the ReportCaster schedule.

startTime

Is the start time for when the logs are to be deleted. The following format must be used:

YYYY/MM/DD%20HH:MM:SS
endTime

Is the end time for when the logs are to be deleted. The following format must be used:

YYYY/MM/DD%20HH:MM:SS

Example:

In the following example, all ReportCaster logs between 2014-02-21 12:00:00 and 2014-02-21 13:00:00 for schedule ID Sca76e628s892as43a4sbddcs10875ff7f188 are to be deleted.

Request:

http://localhost:8080/ibi_apps/services/LogServiceREST/deleteLogListByScheduleIdByCalendar?
scheduleId=Sca76e628s892as43a4sbddcs10875ff7f188&
startTime=2014/02/21%2012:00:00&endTime=2014/02/21%2013:00:00

Response:

<ns:deleteLogListByScheduleIdByCalendarResponse xmlns:ns="http://ws.api.broker.ibi">
     <ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
</ns:deleteLogListByScheduleIdByCalendarResponse>

Top of page

x
Retrieving Last Log for a Schedule ID

This RESTful web service request can be used to retrieve the last ReportCaster log for a specific schedule identified by the schedule ID.

HTTP Method: GET

REST URL Format:

http://host:port/ibi_apps/services/LogServiceREST/getLastLogByScheduleId?scheduleId=scheduleId

where:

host

Is the name of the system where WebFOCUS is installed.

port

Is the port number used by WebFOCUS.

scheduleId

Is the schedule ID for the ReportCaster schedule.

Example:

In the following example, the last ReportCaster log for schedule ID Sca76e628s892as43a4sbddcs10875ff7f188 is to be retrieved.

Request:

http://localhost:8080/ibi_apps/services/LogServiceREST/getLastLogByScheduleId?
scheduleId=Sca76e628s892as43a4sbddcs10875ff7f188

Response:

<ns:getLastLogByScheduleIdResponse xmlns:ns="http://ws.api.broker.ibi">
	<ns:return xmlns:ax264="http://io.java/xsd" xmlns:ax263="http://rmi.java/xsd" xmlns:ax267="http://dslog.data.api.broker.ibi/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ax261="http://schedule.data.api.broker.ibi/xsd" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-24T09:00:25.861-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J4ce5d61ejf6b2j441dja02ej084628360372</ax267:id>
		<ax267:jobId>J4ce5d61ejf6b2j441dja02ej084628360372</ax267:jobId>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Schedule Executed On Demand at IBI-Laptop:8201 (IBI-Laptop/172.44.18.74)</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-24T09:00:23.126-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Job placed in the waiting queue at 2014-02-24 09:00:23.104-0500 (1,393,250,423,104)</ax267:message>			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-24T09:00:23.140-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Job started running at 2014-02-24 09:00:23.122-0500 (1,393,250,423,122)</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-24T09:00:23.141-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Job remained in waiting queue for 0.018 seconds</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-24T09:00:23.141-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Starting task: Task 1</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:23.752-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Task type: EDA RPC</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:23.752-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Procedure name: ibisamp/carinst</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:23.752-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Connecting to server EDASERVE with execution id guest at 2014-02-24 09:00:23.753-0500 (1,393,250,423,753)</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:23.753-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Connection to the Reporting Server EDASERVE established at 2014-02-24 09:00:24.323-0500 (1,393,250,424,323)</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:24.323-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>The time to establish a connection to the Reporting Server EDASERVE was 0.57 seconds</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:24.325-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Executing focexec.</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:24.351-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>0 HOLDING HTML FILE ON PC DISK ...</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:24.974-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Connection to the Reporting Server EDASERVE closed at 2014-02-24 09:00:25.040-0500 (1,393,250,425,040)</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:25.040-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Job ran on the Reporting Server EDASERVE for 0.717 seconds</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:25.040-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Task finished.</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:25.040-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Starting distribution: Report Library</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-24T09:00:25.060-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Distribution method: Report Library</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-24T09:00:25.060-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Report distributed to ReportLibrary (Ld7e02746l0c05l4dc1la18fl0d3d1d20d9a9) with the group id Lc8f723df65ca6cebd2b86b264f4cfc14 at the version 15 </ax267:message>
			<ax267:messageCode>DS10001</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:25.309-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Library access option "Private" is applied.</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:25.309-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Retrieving email address list for library watch list</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:25.312-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Library Notification email sent to myEmail@ibi.com</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:25.639-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Distribution finished.</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:25.642-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Job finished at 2014-02-24 09:00:25.642-0500 (1,393,250,425,642)</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:25.643-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Job time on distribution server after the report completed was 0.582 seconds</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:25.643-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Total running time was 2.52 seconds</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:25.644-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Total elapsed time (including the queue time) was 2.538 seconds</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-24T09:00:25.645-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Brief notification successfully sent to myEmail@ibi.com.</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-24T09:00:25.751-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Log report notification successfully sent to myEmail@ibi.com.</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-24T09:00:25.861-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-24T09:00:23.126-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
</ns:getLastLogByScheduleIdResponse>

Top of page

x
Retrieving the Log for a Job ID

This RESTful web service request can be used to retrieve the last ReportCaster log for a specific job identified by the job ID.

HTTP Method: GET

REST URL Format:

http://host:port/ibi_apps/services/LogServiceREST/getLogByJobId?processId=jobId

where:

host

Is the name of the system where WebFOCUS is installed.

port

Is the port number used by WebFOCUS.

jobId

Is a unique identifier for the ReportCaster job.

Example:

In the following example, the ReportCaster log for job ID J0c6828cfj96f0j4363ja81ejd41e3782cff2 is to be retrieved.

Request:

http://localhost:8080/ibi_apps/services/LogServiceREST/getLogByJobId?
processId=J0c6828cfj96f0j4363ja81ejd41e3782cff2

Response:

<ns:getLogByJobIdResponse xmlns:ns="http://ws.api.broker.ibi">
	<ns:return xmlns:ax264="http://io.java/xsd" xmlns:ax263="http://rmi.java/xsd" xmlns:ax267="http://dslog.data.api.broker.ibi/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ax261="http://schedule.data.api.broker.ibi/xsd" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:19:08.674-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J0c6828cfj96f0j4363ja81ejd41e3782cff2</ax267:id>
		<ax267:jobId>J0c6828cfj96f0j4363ja81ejd41e3782cff2</ax267:jobId>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Schedule Executed On Demand at IBI-Laptop:8201 (IBI-Laptop/172.44.18.74)</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-19T16:19:08.061-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Job placed in the waiting queue at 2014-02-19 16:19:08.055-0500 (1,392,844,748,055)</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-19T16:19:08.061-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Job started running at 2014-02-19 16:19:08.056-0500 (1,392,844,748,056)</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-19T16:19:08.061-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Job remained in waiting queue for 0.0010 seconds</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-19T16:19:08.061-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Starting task: Task 1</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.129-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Task type: EDA RPC</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.130-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Procedure name: ibisamp/carinst</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.130-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Connecting to server EDASERVE with execution id guest at 2014-02-19 16:19:08.130-0500 (1,392,844,748,130)</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.130-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Connection to the Reporting Server EDASERVE established at 2014-02-19 16:19:08.157-0500 (1,392,844,748,157)</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.158-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>The time to establish a connection to the Reporting Server EDASERVE was 0.027 seconds</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.158-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Executing focexec.</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.158-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>0 HOLDING HTML FILE ON PC DISK ...</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.215-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Connection to the Reporting Server EDASERVE closed at 2014-02-19 16:19:08.217-0500 (1,392,844,748,217)</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.217-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Job ran on the Reporting Server EDASERVE for 0.06 seconds</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.218-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId>guest</ax267:execId>
			<ax267:message>Task finished.</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription>ibisamp/carinst</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.218-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Starting distribution: Report Library</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-19T16:19:08.231-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Distribution method: Report Library</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-19T16:19:08.231-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Report distributed to ReportLibrary (L0bbafb2al37efl4994l834cl3b614c4afeaf) with the group id Lc8f723df65ca6cebd2b86b264f4cfc14 at the version 3 </ax267:message>
			<ax267:messageCode>DS10001</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.327-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Library access option "Private" is applied.</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.327-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Retrieving email address list for library watch list</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.327-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Library Notification email sent to myEmail@ibi.com</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.454-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Distribution finished.</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.456-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Job finished at 2014-02-19 16:19:08.456-0500 (1,392,844,748,456)</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.456-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Job time on distribution server after the report completed was 0.225 seconds</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.457-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Total running time was 0.4 seconds</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.457-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Total elapsed time (including the queue time) was 0.401 seconds</ax267:message>
			<ax267:messageCode>BTP1010</ax267:messageCode>
			<ax267:taskDescription>Distribute</ax267:taskDescription>
			<ax267:time>2014-02-19T16:19:08.457-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Brief notification successfully sent to myEmail@ibi.com.</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-19T16:19:08.565-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:logElementList xsi:type="ax267:DsLogElement">
			<ax267:error>false</ax267:error>
			<ax267:execId xsi:nil="true"/>
			<ax267:message>Log report notification successfully sent to myEmail@ibi.com.</ax267:message>
			<ax267:messageCode>BTP1020</ax267:messageCode>
			<ax267:taskDescription xsi:nil="true"/>
			<ax267:time>2014-02-19T16:19:08.674-05:00</ax267:time>
			<ax267:warning>false</ax267:warning>
		</ax267:logElementList>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:19:08.061-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
</ns:getLogByJobIdResponse>

Top of page

x
Retrieving the Log List for an Owner

This RESTful web service request can be used to retrieve a list of log information for a specific owner. The details for each log are not returned.

HTTP Method: GET

REST URL Format:

http://host:port/ibi_apps/services/LogServiceREST/getLogInfoListByOwner?owner=owner

where:

host

Is the name of the system where WebFOCUS is installed.

port

Is the port number used by WebFOCUS.

owner

Is the owner of the log.

Example:

In the following example, a list of log information for the owner named admin is to be retrieved.

Request:

http://localhost:8080/ibi_apps/services/LogServiceREST/getLogInfoListByOwner?owner=admin

Response:

<ns:getLogInfoListByOwnerResponse xmlns:ns="http://ws.api.broker.ibi" xmlns:ax264="http://io.java/xsd" xmlns:ax263="http://rmi.java/xsd" xmlns:ax267="http://dslog.data.api.broker.ibi/xsd" xmlns:ax261="http://schedule.data.api.broker.ibi/xsd">
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:14:42.279-05:00</ax267:endTime>
		<ax267:errorType>2</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J73498ee4j33caj409bjacbbj47ab9f66920d</ax267:id>
		<ax267:jobId>J73498ee4j33caj409bjacbbj47ab9f66920d</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:14:41.146-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:16:22.945-05:00</ax267:endTime>
		<ax267:errorType>2</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J5004dec7j6c9cj4009jab87j97b8fa04831a</ax267:id>
		<ax267:jobId>J5004dec7j6c9cj4009jab87j97b8fa04831a</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:16:22.298-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:19:08.674-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J0c6828cfj96f0j4363ja81ejd41e3782cff2</ax267:id>
		<ax267:jobId>J0c6828cfj96f0j4363ja81ejd41e3782cff2</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:19:08.061-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:22:16.729-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>Jd5ae6d5cj3283j4bc2ja36ejc29fd6895419</ax267:id>
		<ax267:jobId>Jd5ae6d5cj3283j4bc2ja36ejc29fd6895419</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:22:16.030-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:29:31.724-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>Jbcdb8429jab89j4ed8j95d2j25dd04279f5c</ax267:id>
		<ax267:jobId>Jbcdb8429jab89j4ed8j95d2j25dd04279f5c</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:29:31.083-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-22T21:26:23.251-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J06ea07cbj164cj4c0djad92jabc788ea8f76</ax267:id>
		<ax267:jobId>J06ea07cbj164cj4c0djad92jabc788ea8f76</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-22T21:26:18.515-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-24T09:00:25.861-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J4ce5d61ejf6b2j441dja02ej084628360372</ax267:id>
		<ax267:jobId>J4ce5d61ejf6b2j441dja02ej084628360372</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-24T09:00:23.126-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
</ns:getLogInfoListByOwnerResponse>

Top of page

x
Retrieving the Log List for an Owner Within a Time Period

This RESTful web service request can be used to retrieve a list of log information for a specific owner that was run between a specific time interval.

If there is no value for the start time of the time interval, then log list information before the end time of the time interval is retrieved.

If there is no value for the end time of the time interval, then log list information after the start time of the time interval is retrieved.

The details for each log are not returned.

HTTP Method: GET

REST URL Format:

http://host:port/ibi_apps/services/LogServiceREST/getLogInfoListByOwnerByCalendar?owner=owner&
startTime=startTime&endTime=endTime

where:

host

Is the name of the system where WebFOCUS is installed.

port

Is the port number used by WebFOCUS.

owner

Is the owner of the ReportCaster log.

startTime

Is the start time for when the logs are to be retrieved. The following format must be used:

YYYY/MM/DD%20HH:MM:SS
endTime

Is the end time for when the logs are to be retrieved. The following format must be used:

YYYY/MM/DD%20HH:MM:SS

Example:

In the following example, a list of log information for the owner named admin between 2014-02-19 00:00:00 and 2014-02-19 23:59:59 is to be retrieved.

Request:

http://localhost:8080/ibi_apps/services/LogServiceREST/getLogInfoListByOwnerByCalendar?owner=admin&
startTime=2014/02/19%2000:00:00&endTime=2014/02/19%2023:59:59

Response:

<ns:getLogInfoListByOwnerByCalendarResponse xmlns:ns="http://ws.api.broker.ibi" xmlns:ax264="http://io.java/xsd" xmlns:ax263="http://rmi.java/xsd" xmlns:ax267="http://dslog.data.api.broker.ibi/xsd" xmlns:ax261="http://schedule.data.api.broker.ibi/xsd">
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:14:42.279-05:00</ax267:endTime>
		<ax267:errorType>2</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J73498ee4j33caj409bjacbbj47ab9f66920d</ax267:id>
		<ax267:jobId>J73498ee4j33caj409bjacbbj47ab9f66920d</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:14:41.146-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:16:22.945-05:00</ax267:endTime>
		<ax267:errorType>2</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J5004dec7j6c9cj4009jab87j97b8fa04831a</ax267:id>
		<ax267:jobId>J5004dec7j6c9cj4009jab87j97b8fa04831a</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:16:22.298-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:19:08.674-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J0c6828cfj96f0j4363ja81ejd41e3782cff2</ax267:id>
		<ax267:jobId>J0c6828cfj96f0j4363ja81ejd41e3782cff2</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:19:08.061-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:22:16.729-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>Jd5ae6d5cj3283j4bc2ja36ejc29fd6895419</ax267:id>
		<ax267:jobId>Jd5ae6d5cj3283j4bc2ja36ejc29fd6895419</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:22:16.030-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:29:31.724-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>Jbcdb8429jab89j4ed8j95d2j25dd04279f5c</ax267:id>
		<ax267:jobId>Jbcdb8429jab89j4ed8j95d2j25dd04279f5c</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:29:31.083-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
</ns:getLogInfoListByOwnerByCalendarResponse>

Top of page

x
Retrieving the Log List for a Schedule

This RESTful web service request can be used to retrieve a list of log information for a specific schedule identified by the schedule ID. The details for each log are not returned.

HTTP Method: GET

REST URL Format:

http://host:port/ibi_apps/services/LogServiceREST/getLogInfoListByScheduleId?
scheduleId=scheduleId

where:

host

Is the name of the system where WebFOCUS is installed.

port

Is the port number used by WebFOCUS.

scheduleId

Is the schedule ID for the ReportCaster schedule.

Example:

In the following example, a list of log information for schedule ID Sca76e628s892as43a4sbddcs10875ff7f188 is to be retrieved.

Request:

http://localhost:8080/ibi_apps/services/LogServiceREST/getLogInfoListByScheduleId?
scheduleId=Sca76e628s892as43a4sbddcs10875ff7f188

Response:

<ns:getLogInfoListByScheduleIdResponse xmlns:ns="http://ws.api.broker.ibi" xmlns:ax264="http://io.java/xsd" xmlns:ax263="http://rmi.java/xsd" xmlns:ax267="http://dslog.data.api.broker.ibi/xsd" xmlns:ax261="http://schedule.data.api.broker.ibi/xsd">
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:14:42.279-05:00</ax267:endTime>
		<ax267:errorType>2</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J73498ee4j33caj409bjacbbj47ab9f66920d</ax267:id>
		<ax267:jobId>J73498ee4j33caj409bjacbbj47ab9f66920d</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:14:41.146-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:16:22.945-05:00</ax267:endTime>
		<ax267:errorType>2</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J5004dec7j6c9cj4009jab87j97b8fa04831a</ax267:id>
		<ax267:jobId>J5004dec7j6c9cj4009jab87j97b8fa04831a</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:16:22.298-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:19:08.674-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J0c6828cfj96f0j4363ja81ejd41e3782cff2</ax267:id>
		<ax267:jobId>J0c6828cfj96f0j4363ja81ejd41e3782cff2</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:19:08.061-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:22:16.729-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>Jd5ae6d5cj3283j4bc2ja36ejc29fd6895419</ax267:id>
		<ax267:jobId>Jd5ae6d5cj3283j4bc2ja36ejc29fd6895419</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:22:16.030-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-19T16:29:31.724-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>Jbcdb8429jab89j4ed8j95d2j25dd04279f5c</ax267:id>
		<ax267:jobId>Jbcdb8429jab89j4ed8j95d2j25dd04279f5c</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-19T16:29:31.083-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-22T21:26:23.251-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J06ea07cbj164cj4c0djad92jabc788ea8f76</ax267:id>
		<ax267:jobId>J06ea07cbj164cj4c0djad92jabc788ea8f76</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-22T21:26:18.515-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
	<ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax267:DsLog">
		<ax267:IBFSObjectType>0</ax267:IBFSObjectType>
		<ax267:description xsi:nil="true"/>
		<ax267:endTime>2014-02-24T09:00:25.861-05:00</ax267:endTime>
		<ax267:errorType>0</ax267:errorType>
		<ax267:ibfsId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:ibfsId>
		<ax267:ibfsPath/>
		<ax267:id>J4ce5d61ejf6b2j441dja02ej084628360372</ax267:id>
		<ax267:jobId>J4ce5d61ejf6b2j441dja02ej084628360372</ax267:jobId>
		<ax267:logElementList xsi:nil="true"/>
		<ax267:name xsi:nil="true"/>
		<ax267:owner>admin</ax267:owner>
		<ax267:scheduleDescription>Carinst Report</ax267:scheduleDescription>
		<ax267:scheduleId>Sca76e628s892as43a4sbddcs10875ff7f188</ax267:scheduleId>
		<ax267:startTime>2014-02-24T09:00:23.126-05:00</ax267:startTime>
		<ax267:summary xsi:nil="true"/>
	</ns:return>
</ns:getLogInfoListByScheduleIdResponse>

Top of page

x
Retrieving a List of Schedule Owners

This RESTful web service request can be used to retrieve a list of schedule owners.

HTTP Method: GET

REST URL Format:

http://host:port/ibi_apps/services/LogServiceREST/getOwnerList

where:

host

Is the name of the system where WebFOCUS is installed.

port

Is the port number used by WebFOCUS.

Example:

In the following example, a list of schedule owners is to be retrieved.

Request:

http://localhost:8080/ibi_apps/services/LogServiceREST/getOwnerList

Response:

<ns:getOwnerListResponse xmlns:ns="http://ws.api.broker.ibi" xmlns:ax264="http://io.java/xsd" xmlns:ax263="http://rmi.java/xsd" xmlns:ax267="http://dslog.data.api.broker.ibi/xsd" xmlns:ax261="http://schedule.data.api.broker.ibi/xsd">
     <ns:return>admin</ns:return>
     <ns:return>system</ns:return>
</ns:getOwnerListResponse>

The value within each <return> element indicates a schedule owner.


Information Builders