Categories
- All Categories
- Oracle Analytics Learning Hub
- 30 Oracle Analytics Sharing Center
- 20 Oracle Analytics Lounge
- 247 Oracle Analytics News
- 45 Oracle Analytics Videos
- 16K Oracle Analytics Forums
- 6.3K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 91 Oracle Analytics Trainings
- 16 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.