UDDI
[ class tree: UDDI ] [ index: UDDI ] [ all elements ]

Source for file example_inquiry.php

Documentation is available at example_inquiry.php

  1. <?php
  2.     require_once 'UDDI.php';
  3.     $my_uddi = new UDDI('SAP'1);
  4.     $my_uddi->_returnMode = 'body'//return only the body
  5.     $result htmlspecialchars(
  6.         $my_uddi->find_business(
  7.             array('name' => '%Test%'
  8.                   'maxRows' => 50
  9.                   'findQualifiers' => 'sortByNameAsc,sortByDateAsc'
  10.         )
  11.     );
  12.     echo "<pre>$result</pre>";
  13. ?>

Documentation generated on Mon, 11 Mar 2019 15:05:06 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.