SOAP API - isQueryRegistered

The table summarizes the SOAP API - isQueryRegistered.

Request Uses the isQueryRegisteredRequest element (from the EventCollectorQueryService schema)
Parameter notes
  • QueryIdentifier.guid, QueryIdentifier.tag: Either the GUID or the tag can be used to identify the query, which was previously registered with the registerQuery operation—both are returned by registerQuery . You can also determine the GUID using the lookupQueryByTag operation.
Response Returns a isQueryRegisteredResponse element (from the EventCollectorQueryService schema)
Example Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:api="http://api.ec.n2.tibco.com" xmlns:base="http://base.api.ec.n2.tibco.com">
   <soapenv:Header/>
   <soapenv:Body>
      <api:isQueryRegisteredRequest>
         <base:QueryIdentifier>
            <tag>EventTag123</tag>
         </base:QueryIdentifier>
      </api:isQueryRegisteredRequest>
   </soapenv:Body>
</soapenv:Envelope>
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <isQueryRegisteredResponse xmlns="http://api.ec.n2.tibco.com">
         <result xmlns="">true</result>
      </isQueryRegisteredResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>