Forum Discussion

shailendra_sks1's avatar
shailendra_sks1
New Member
6 years ago

OBIEE - SoapUI - Unable to send a parameter in SOAP XML using executeXMLQuery

0
 

I am using SoapUI to send a request to (OBIEE) Oracle BI EE Web Services.

I am trying to send a parameter in an OBIEE SOAP XML.

I am using executeXMLQuery() Method, and trying to send a parameter to a report, but it doesn't work giving error faultstring>Object expected:

Please advice.

 

Request-

 

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v7="urn://oracle.bi.webservices/v7">
   <soapenv:Header/>
   <soapenv:Body>
      <v7:executeXMLQuery>
         <v7:report>
            <v7:reportPath>/shared/Sample Lite</v7:reportPath>
            <v7:reportXml></v7:reportXml>
         </v7:report>
         <v7:outputFormat></v7:outputFormat>
         <v7:executionOptions>
            <v7:maxRowsPerPage>6</v7:maxRowsPerPage>
            <v7:refresh>false</v7:refresh>
            <v7:presentationInfo>?</v7:presentationInfo>
            <v7:type>?</v7:type>
         </v7:executionOptions>
         <v7:reportParams>
            <!--Zero or more repetitions:-->
            <v7:filterExpressions>?</v7:filterExpressions>
            <!--Zero or more repetitions:-->
            <v7:variables>
               <v7:name>?</v7:name>
               <v7:value>?</v7:value>
            </v7:variables>
            <!--Zero or more repetitions:-->
            <v7:nameValues>
               <v7:name>?</v7:name>
               <v7:value>?</v7:value>
            </v7:nameValues>
            <!--Zero or more repetitions:-->
            <v7:templateInfos>
               <v7:templateForEach>?</v7:templateForEach>
               <v7:templateIterator>?</v7:templateIterator>
               <!--Zero or more repetitions:-->
               <v7:instance>
                  <v7:instanceName>?</v7:instanceName>
                  <!--Zero or more repetitions:-->
                  <v7:nameValues>
                     <v7:name>?</v7:name>
                     <v7:value>?</v7:value>
                  </v7:nameValues>
               </v7:instance>
            </v7:templateInfos>
            <!--Optional:-->
            <v7:viewName>?</v7:viewName>
         </v7:reportParams>
         <v7:sessionID>rn7l6pl4tp3iu2rj6dvtonlhk2hkr5og27e6bfkpqrkm9phs</v7:sessionID>
      </v7:executeXMLQuery>
   </soapenv:Body>
</soapenv:Envelope>

 

Response

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:saw-SOAP="com.siebel.analytics.web/soap/v6">
   <soap:Body>
      <soap:Fault>
         <faultcode>soap:Server</faultcode>
         <faultstring>Object expected: /shared/Sample Lite</faultstring>
         <detail>
            <sawsoape:Error xmlns:sawsoape="com.siebel.analytics.web/soap/error/v1">
               <sawsoape:Code>GCARFLCS</sawsoape:Code>
               <sawsoape:CatalogCode>16</sawsoape:CatalogCode>
               <sawsoape:Message>Object expected: /shared/Sample Lite</sawsoape:Message>
            </sawsoape:Error>
         </detail>
      </soap:Fault>
   </soap:Body>
</soap:Envelope>

No RepliesBe the first to reply