This project has retired. For details please refer to its Attic page.
Chapter 5. Mapping WSDL and WSDL to UDDI

JBoss.orgCommunity Documentation

Chapter 5. Mapping WSDL and WSDL to UDDI

Table of Contents

5.1. Introduction
5.2. Use Case - WSDL
5.2.1. Sample Code
5.2.2. Links to sample project
5.3. Use Case - WADL
5.3.1. Sample Code
5.3.2. Links to sample project

OASIS published a technical article which describes the recommended way to map the entries from a WSDL (Web Service Description Language) document into UDDI (https://www.oasis-open.org/committees/uddi-spec/doc/tn/uddi-spec-tc-tn-wsdl-v202-20040631.htm). The jUDDI-client provides a convenient mechanism for this mapping. In addition, the jUDDI team provides a similar API for mapping a WADL (Web Application Description Language) document to UDDI. This guide will help you use the APIs to register a WSDL or WADL document that describes a service within a UDDI registry.

The most basic use case is that we have one or more SOAP/WSDL based services from a 3rd party that was just stood up on our network and we wish to now advertise to our user base that this service exists. We could manually punch in the information, but what fun is that? Let’s import it using some code! This can be expanded to import services in bulk.

The most basic use case is that we have one or more REST/WADL based services from a 3rd party that was just stood up on our network and we wish to now advertise to our user base that this service exists. We could manually punch in the information, but what fun is that? Let’s import it using some code! This can be expanded to import services in bulk.