UDDI4J is an open-source project that provides a Java implementation of the UDDI API specification. You can use UDDI4J to access all registries that follow the UDDI specification.
UDDI4J is organized into packages. The primary class that is used by UDDI4J to interact with the UDDI registry is org.uddi4j.client.UDDIProxy. This class provides methods that map the elements and attributes defined in the UDDI's XML document into Java objects. The UDDIProxy class further wraps the find and publish methods defined in the UDDI specification and handles the network access to the UDDI registry server.
For example, to find a specific business entry and its services, use a find method, such as find_business. This returns a BusinessInfo object. The object's methods further help to extract the supported services.
|