Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 215 Oracle Analytics News
- 43 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations 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.