Categories
- All Categories
- Oracle Analytics and AI Learning Hub
- 54 Oracle Analytics and AI Sharing Center
- 26 Oracle Analytics and AI Lounge
- 311 Oracle Analytics and AI News
- 57 Oracle Analytics and AI Videos
- 16.4K Oracle Analytics and AI Forums
- 6.7K Oracle Analytics and AI Labs
- Oracle Analytics and AI User Groups
- 117 Oracle Analytics and AI Trainings
- 24 Oracle Analytics and AI Challenge
- Find Partners
- For Partners
OBIEE Web Services
I am trying to call OBIEE web services from SOAPUI, via the callProcedureWithResults() method. I have successfully made a call to the GetOBISVerion() method as follows:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.admin.obiee.oracle/">
<soapenv:Header/>
<soapenv:Body>
<ws:callProcedureWithResults>
<procedureName>GetOBISVersion()</procedureName>
<!--Zero or more repetitions:-->
</ws:callProcedureWithResults>
</soapenv:Body>
</soapenv:Envelope>
However the following call to the NQSQueryMetadataObjects() method fails:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.admin.obiee.oracle/">
<soapenv:Header/>
<soapenv:Body>
<ws:callProcedureWithResults>
<procedureName>NQSQueryMetadataObjects()</procedureName>
<nStringParameter>
<name>OBJECT_TYPES</name>
<value>4004</value>
</nStringParameter>
</ws:callProcedureWithResults>
</soapenv:Body>
</soapenv:Envelope>
The OBIEE online resources are vague as to how to structure the SOAP request. Is this correct? Any assistance will be appreciated.