If you use the Web Services API for logging and reporting, you must update the schema version to be able to use the new report types available with WSM v11.4 and supported by the Web Services API. Note that there are no additional changes to the schema for XTM v11.4.1; if you have already updated the schema for XTM v11.4, there is no additional work required.
The new reports in WSM v11.4 include:
To be compatible with Fireware XTM v11.4, Web Service clients must re-generate the stub code from the LogsService.wsdl file and update any references to the schema version in their user code. For example, in the code below, you must update "2010/04" to "2010/11".
javax.xml.namespace.QName qName = new javax.xml.namespace.QName(
"http://www.watchguard.com/schema/xsd/LogsService/2010/04",
"AuthCredentials"
);
javax.xml.namespace.QName qName = new javax.xml.namespace.QName(
"http://www.watchguard.com/schema/xsd/LogsService/2010/11",
"AuthCredentials"
);