Webservice 调用ODI工具的测试软件SoapUI 5.2.0及测试

1.  测试webservices调用接口软件

SoapUI5.2.0

Webservice 调用ODI工具的测试软件SoapUI 5.2.0及测试

2.  调用执行程序

2.1发送程序

<soapenv:Envelopexmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:odi="xmlns.oracle.com/odi/OdiInvoke/">

  <soapenv:Header/>

  <soapenv:Body>

     <odi:OdiStartScenRequest>

        <!--You may enter the following 2 items in any order-->

        <Credentials>

           <!--You may enter the following 3 items in any order-->

           <!--Optional:-->

           <OdiUser>SUPERVISOR</OdiUser>

           <!--Optional:-->

           <OdiPassword>SUPERVISOR</OdiPassword>

           <WorkRepository>WORKREP2</WorkRepository>

        </Credentials>

        <Request>

           <ScenarioName>TEMP_DATA_EXP_CHG_TO_DATA_EXP_CHG</ScenarioName>

           <ScenarioVersion>001</ScenarioVersion>

           <Context>GLOBAL</Context>

           <!--Optional:-->

           <Synchronous>true</Synchronous>

           

           <LogLevel>5</LogLevel>

        </Request>

     </odi:OdiStartScenRequest>

  </soapenv:Body>

</soapenv:Envelope>

2.2返回信息

<S:Envelopexmlns:S="http://schemas.xmlsoap.org/soap/envelope/">

  <S:Body>

     <ns2:OdiStartScenResponsexmlns:ns2="xmlns.oracle.com/odi/OdiInvoke/">

        <Session>437002</Session>

     </ns2:OdiStartScenResponse>

  </S:Body>

</S:Envelope>

2.3    接口查看截图

<Session>437002为调用接口执行的odi中的编码,调用执行接口成功

Webservice 调用ODI工具的测试软件SoapUI 5.2.0及测试

3. 连接信息

地址:http://10.18.32.84:20910/oraclediagent/OdiInvoke

Webservice 调用ODI工具的测试软件SoapUI 5.2.0及测试