DataPower

DataPower

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
  • 1.  where can i see my endpoint in ibm datapower in Web service proxy

    Posted 05/06/21 05:13 AM

    There , I created a web service proxy inside this I imported this http://www.dneonline.com/calculator.asmx

    wsdl so in this wsdl there are 4 endpoint so how can i call this endpoint and where i can see this endpoints



    #DataPower
    #Support
    #SupportMigration


  • 2.  RE: where can i see my endpoint in ibm datapower in Web service proxy

    Posted 05/07/21 06:28 AM

    Hi,

    do you mean operations that the interface description contains? Add, divide, multiply and substract?

    --HP



    #DataPower
    #Support
    #SupportMigration


  • 3.  RE: where can i see my endpoint in ibm datapower in Web service proxy

    Posted 05/07/21 06:30 AM


  • 4.  RE: where can i see my endpoint in ibm datapower in Web service proxy

    Posted 05/07/21 06:42 AM

    You can view the structure by navigating to Services -> Web Service Proxy -> <your imported wsp> -> Policy -> WSDL Policy Tree Representation and then you can scroll down to the operation you want to configure or examine.


    To call a specific operation you have to create operation specific messages using the WSDL (use for example SOAPUI to get them generated automatically) and then point them to the ip and port of your WSP. For example a test message for Add - operation generated from the WSDL:


    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">

      <soapenv:Header/>

      <soapenv:Body>

       <tem:Add>

         <tem:intA>?</tem:intA>

         <tem:intB>?</tem:intB>

       </tem:Add>

      </soapenv:Body>

    </soapenv:Envelope>


    --HP



    #DataPower
    #Support
    #SupportMigration


  • 5.  RE: where can i see my endpoint in ibm datapower in Web service proxy

    Posted 05/07/21 06:47 AM


  • 6.  RE: where can i see my endpoint in ibm datapower in Web service proxy

    Posted 05/07/21 06:57 AM