Browse Patterns
  • Browse inquiries use the find functions. The find function calls help locate registry entries based on a search criteria.
  • For example, the find_business API is used to identify the UDDI name element. The find_business API call returns a list of business entities that match the condition specified in the argument list.

The code example illustrates the use of the find_business API call, which is embedded within a SOAP message. The find_business API call returns a list of business entities that have Sampling Inc as their registered names

<?xml version="1.0">
<SOAP:Envelope SOAP:encodingStyle="http://schemas.xmlsoap.org/ soap/encoding/"
xmlns:SOAP="http://schemas.xmlsoap.org/ soap/envelope/">
  <SOAP:Body>
    <find_business xmlns="urn:uddi-org:api">
      <name>
        Sampling Inc
      </name>
    </find_business>

  </SOAP:Body>
</SOAP:Envelope>

Click the Next button to continue.