Red Hat Training
A Red Hat training course is available for JBoss Enterprise SOA Platform
Chapter 7. Using the jUDDI Client
7.1. jUDDI Client
SOA_ROOT/jboss-as/server/PROFILE/deployers/esb.deployer/lib/juddi-client-VERSION.jar.
7.2. jUDDI Client Dependencies
uddi-ws-3.0.0.jarcommons-configuration-1.5.jarcommons-collection-3.2.1.jarlog4j-1.2.13.jar
- libraries for JDK6.
- JAXWS client libraries (if you are using a JAXWS transport like CXF.)
- RMI and JNDI client libraries (if you are using the RMI Transport.)
7.3. jUDDI Client and the JBoss Enterprise SOA Platform
Important
7.4. Transport Settings
7.5. uddi.xml
META-INF/uddi.xml file contains the configuration settings for the jUDDI client. You can include this file in the deployment archive that is interacting with the UDDI client code.
7.6. Deploy a Custom jUDDI Client Configuration
Procedure 7.1. Task
- Open META-INF/uddi.xml in your text editor.
- Configure the settings.
- Save and exit.
- Include the uddi.xml file in your archive when you deploy it.
- Call this code:
UDDIClerkManager clerkManager = new UDDIClerkManager("META/myuddi.xml"); clerkManager.start(); - Alternatively, if your application deploys as a WAR archive, add your client configuration to
yourwar/META-INF/myuddi.xmland, in the web.xml file, specify these context parameters:uddi.client.manager.nameanduddi.client.xml.In this example, both context parameters are set and on deployment the UDDIClerkServlet takes care of reading the configuration:<!-- required --> <context-param> <param-name>uddi.client.manager.name</param-name> <param-value>example-manager</param-value> </context-param> <!-- optional override --> <context-param> <param-name>uddi.client.xml</param-name> <param-value>META-INF/myuddi.xml</param-value> </context-param> <servlet> <servlet-name>UDDIClerkServlet</servlet-name> <display-name>Clerk Servlet</display-name> <servlet-class>org.apache.juddi.v3.client.config.UDDIClerkServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet>
7.7. Sample jUDDI Client Configuration File
<?xml version="1.0" encoding="ISO-8859-1" ?>
<uddi>
<reloadDelay>5000</reloadDelay>
<manager name="example-manager">
<nodes>
<node isHomeJUDDI="true">
<name>default</name>
<description>jUDDI node</description>
<properties>
<property name="serverName" value="www.myuddiserver.com"/>
<property name="serverPort" value="8080"/>
<property name="keyDomain" value="mydepartment.mydomain.org"/>
<property name="department" value="mydepartment" />
</properties>
<!-- InVM -->
<proxyTransport>org.apache.juddi.v3.client.transport.InVMTransport</proxyTransport>
<custodyTransferUrl>org.apache.juddi.api.impl.UDDICustodyTransferImpl</custodyTransferUrl>
<inquiryUrl>org.apache.juddi.api.impl.UDDIInquiryImpl</inquiryUrl>
<publishUrl>org.apache.juddi.api.impl.UDDIPublicationImpl</publishUrl>
<securityUrl>org.apache.juddi.api.impl.UDDISecurityImpl</securityUrl>
<subscriptionUrl>org.apache.juddi.api.impl.UDDISubscriptionImpl</subscriptionUrl>
<subscriptionListenerUrl>org.apache.juddi.api.impl.UDDISubscriptionListenerImpl</subscriptionListenerUrl>
<juddiApiUrl>org.apache.juddi.api.impl.JUDDIApiImpl</juddiApiUrl>
<!-- JAX-WS Transport
<proxyTransport>org.apache.juddi.v3.client.transport.JAXWSTransport</proxyTransport>
<custodyTransferUrl>http://${serverName}:${serverPort}/juddiv3/services/custody-transfer</custodyTransferUrl>
<inquiryUrl>http://${serverName}:${serverPort}/juddiv3/services/inquiry</inquiryUrl>
<publishUrl>http://${serverName}:${serverPort}/juddiv3/services/publish</publishUrl>
<securityUrl>http://${serverName}:${serverPort}/juddiv3/services/security</securityUrl>
<subscriptionUrl>http://${serverName}:${serverPort}/juddiv3/services/subscription</subscriptionUrl>
<subscriptionListenerUrl>http://${serverName}:${serverPort}/juddiv3/services/subscription-listener</subscriptionListenerUrl>
<juddiApiUrl>http://${serverName}:${serverPort}/juddiv3/services/juddi-api?wsdl</juddiApiUrl>
-->
<!-- RMI Transport Settings
<proxyTransport>org.apache.juddi.v3.client.transport.RMITransport</proxyTransport>
<custodyTransferUrl>/juddiv3/UDDICustodyTransferService</custodyTransferUrl>
<inquiryUrl>/juddiv3/UDDIInquiryService</inquiryUrl>
<publishUrl>/juddiv3/UDDIPublicationService</publishUrl>
<securityUrl>/juddiv3/UDDISecurityService</securityUrl>
<subscriptionUrl>/juddiv3/UDDISubscriptionService</subscriptionUrl>
<subscriptionListenerUrl>/juddiv3/UDDISubscriptionListenerService</subscriptionListenerUrl>
<juddiApiUrl>/juddiv3/JUDDIApiService</juddiApiUrl>
<javaNamingFactoryInitial>org.jnp.interfaces.NamingContextFactory</javaNamingFactoryInitial>
<javaNamingFactoryUrlPkgs>org.jboss.naming</javaNamingFactoryUrlPkgs>
<javaNamingProviderUrl>jnp://${serverName}:1099</javaNamingProviderUrl>
-->
</node>
</nodes>
<clerks registerOnStartup="true">
<clerk name="BobCratchit" node="default" publisher="bob" password="bob">
<class>org.apache.juddi.samples.HelloWorldImpl</class>
</clerk>
</clerks>
</manager>
</uddi>
isHomeJUDDI="true", while for the 'remote' registries you would set isHomeJUDDI="false".
Table 7.1. Elements
| Element Name | Description | Required? |
|---|---|---|
| name | name of the node | yes |
| description | description of the node | no |
| properties | container for properties that will be passed into the clerk | no |
| proxyTransport | The Transport protocol used by the client to connect to the UDDI server | yes |
| custodyTransferUrl | Connection settings for custody transfer | no |
| inquiryUrl | Connection location settings for inquiries | yes |
| publishUrl | Connection location settings for publishing | yes |
| securityUrl | Connection location settings for obtaining security tokens | yes |
| subscriptionUrl | Connection location settings for registering subscription requests | no |
| subscriptionListenerUrl | Connection location settings receiving subscription notifications | no |
| juddiApiUrl | Connection location settings for the jUDDI specific API for things like publisher management | no |
Table 7.2. Clerks
| Attribute Name | Description | Required? |
|---|---|---|
| name | name of the clerk | yes |
| node | name reference to one of the nodes specified in the same manager | yes |
| publisher | name of an existing publisher | yes |
| password | password credential of the publisher | yes |
7.8. Java API for XML Web Services (JAX-WS)
7.9. Set the JAX-WS Transport
Prerequisites
- Based on the settings in the
uddi.xmlfile, the client will use JAX-WS to communicate with the (remote) registry server. This means that the client needs to have access to a JAX-WS-compliant web service stack (such as CXF, Axis2 or JBossWS).
Procedure 7.2. Task
- Ensure that the JAX-WS URLs are pointing to an address where the UDDI client can find the WSDL documents:
<!-- JAX-WS Transport --> <proxyTransport>org.apache.juddi.v3.client.transport.JAXWSTransport</proxyTransport> <custodyTransferUrl>http://${serverName}:${serverPort}/juddiv3/services/custody-transfer</custodyTransferUrl> <inquiryUrl>http://${serverName}:${serverPort}/juddiv3/services/inquiry</inquiryUrl> <publishUrl>http://${serverName}:${serverPort}/juddiv3/services/publish</publishUrl> <securityUrl>http://${serverName}:${serverPort}/juddiv3/services/security</securityUrl> <subscriptionUrl>http://${serverName}:${serverPort}/juddiv3/services/subscription</subscriptionUrl> <subscriptionListenerUrl>http://${serverName}:${serverPort}/juddiv3/services/subscription-listener</subscriptionListenerUrl> <juddiApiUrl>http://${serverName}:${serverPort}/juddiv3/services/juddi-api?wsdl</juddiApiUrl>Important
Pros: This is the standard way of performing UDDI communication and it should should work with all UDDIv3 server implementations.Cons: If the server is deployed on the same application server this may lead to issues when auto-registration on deployment/undeployment is used, since the WS stack may become unavailable during undeployment. A workaround is to host the UDDI server on a different server.
7.10. Remote Invocation Class
7.11. jUDDI and Remote Method Invocation
7.12. Enable Remote Method Invocation for jUDDI
Procedure 7.3. Task
- Open the jUDDI configuration file in a text editor:
vi SOA_ROOT/jboss-as/server/PROFILE/deploy/jbossesb-registry.sar/esb.juddi.xml. - Edit the settings and set the property <entry key="juddi.jndi.registration">true</entry>. If set to true, RMI methods are registered to jndi and can be searched and called. Default is true.
- Save the file and exit.
- Open the UDDI configuration file in a text editor:
vi META-INF/uddi.xml. - "Comment out" the JAX-WS section of the file and uncomment the RMI section instead.
- As an optional step, you can also set the java.naming.* properties. In this example, you specified the setting for connecting to jUDDI v3 deployed on a JBoss Application Server. If you like you can instead set the java.naming.* properties in a
jndi.propertiesfile, or as system parameters.<!-- RMI Transport Settings --> <proxyTransport>org.apache.juddi.v3.client.transport.RMITransport</proxyTransport> <custodyTransferUrl>/juddiv3/UDDICustodyTransferService</custodyTransferUrl> <inquiryUrl>/juddiv3/UDDIInquiryService</inquiryUrl> <publishUrl>/juddiv3/UDDIPublicationService</publishUrl> <securityUrl>/juddiv3/UDDISecurityService</securityUrl> <subscriptionUrl>/juddiv3/UDDISubscriptionService</subscriptionUrl> <subscriptionListenerUrl>/juddiv3/UDDISubscriptionListenerService</subscriptionListenerUrl> <juddiApiUrl>/juddiv3/JUDDIApiService</juddiApiUrl> <javaNamingFactoryInitial>org.jnp.interfaces.NamingContextFactory</javaNamingFactoryInitial> <javaNamingFactoryUrlPkgs>org.jboss.naming</javaNamingFactoryUrlPkgs> <javaNamingProviderUrl>jnp://${serverName}:1099</javaNamingProviderUrl>Important
Pros: It is lightweight fast since it does not need a web service stack.Cons: It only works with a jUDDI v3 server implementation. - Save the file and exit.
When you deploy it, the RMI-based UDDI services will bind to the global JNDI namespace:
- juddiv3 (class:
org.jnp.interfaces.NamingContext) - UDDIPublicationService (class:
org.apache.juddi.rmi.UDDIPublicationService) - UDDICustodyTransferService (class:
org.apache.juddi.rmi.UDDICustodyTransferService) - UDDISubscriptionListenerService (class:
org.apache.juddi.rmi.UDDISubscriptionListenerService) - UDDISecurityService (class:
org.apache.juddi.rmi.UDDISecurityService) - UDDISubscriptionService (class:
org.apache.juddi.rmi.UDDISubscriptionService) - UDDIInquiryService (class:
org.apache.juddi.rmi.UDDIInquiryService)
7.13. InVM Transport
7.14. InVM and jUDDI
juddi.war archive, the server will be started by the org.apache.juddi.RegistryServlet class, but if you are running outside any container, you are responsible for starting and stopping the org.apache.juddi.Registry service yourself.
7.15. Configure the InVM Transport for jUDDI
Procedure 7.4. Task
- Open the UDDI configuration file in a text editor:
vi META-INF/uddi.xml. - "Comment out" the JAX-WS and RMI Transport sections of the file and uncomment the InVM Transport section instead.
<!-- InVM --> <proxyTransport>org.apache.juddi.v3.client.transport.InVMTransport</proxyTransport> <custodyTransferUrl>org.apache.juddi.api.impl.UDDICustodyTransferImpl</custodyTransferUrl> <inquiryUrl>org.apache.juddi.api.impl.UDDIInquiryImpl</inquiryUrl> <publishUrl>org.apache.juddi.api.impl.UDDIPublicationImpl</publishUrl> <securityUrl>org.apache.juddi.api.impl.UDDISecurityImpl</securityUrl> <subscriptionUrl>org.apache.juddi.api.impl.UDDISubscriptionImpl</subscriptionUrl> <subscriptionListenerUrl>org.apache.juddi.api.impl.UDDISubscriptionListenerImpl</subscriptionListenerUrl> <juddiApiUrl>org.apache.juddi.api.impl.JUDDIApiImpl</juddiApiUrl>
Important
Pros: It is lightweight and provides the best performance for communications and there are no deployment order issues when using auto-registration of services during deployment and undeployment.Cons: It will only work with a jUDDI v3 server implementation. Normally, you would use a jUDDI server for each application server sharing one common database. - Save the file and exit.
7.16. Start the Service Registry Using the InVM Transport
- Call the following method prior to making any other calls to it:
Registry.start()
7.17. Stop the Service Registry Using the InVM Transport
Procedure 7.5. Task
- Call the following method prior to making any other calls to it:
Registry.stop()
The registry releases any resources it may be holding.
7.18. UDDI Annotation
Note
7.19. Use the UDDIService Annotation
Procedure 7.6. Task
- Use the UDDIService annotation to register a service under an already-existing business in the Registry. The annotation should be added to the Java class' "class" level.
7.20. UDDIService Attributes
Table 7.3.
| Attribute | Description | Required? |
|---|---|---|
| serviceName | This is the name of the service. By default, the clerk will use the one name specified in the WebService annotation | No |
| description | This is the human-readable description of the service | Yes |
| serviceKey | This is the service's UDDI v3 key. | Yes |
| businessKey | This is the UDDI v3 key of the business that should own the service. (The business should exist in the Registry at time of registration.) | Yes |
| lang | This is the language locale which will be used for the name and description. (It defaults to "en" if you omit it.) | No |
| categoryBag | This is the definition of a CategoryBag. | No |
7.21. Use the UDDIServiceBinding Annotation
Procedure 7.7. Task
- Use the UDDIServiceBinding annotation to register an end-point reference in the Service Registry. The annotation should be added to the Java class' "class" level.
Note
You cannot use this annotation by itself. It needs to be utilised within an UDDIService annotation
7.22. UDDIServiceBinding Attributes
Table 7.4. UDDIServiceBinding Attributes
| Attribute | Description | Required? |
|---|---|---|
| bindingKey | This is the ServiceBinding's UDDI v3 key. | Yes |
| description | This is a human-readable description of the service | Yes |
| accessPointType | This is UDDI v3's AccessPointType. (It defaults to wsdlDeployment if you omit it.) | No |
| accessPoint | This is the end-point reference | Yes |
| lang | This is the language locale which will be used for the name and description, (It will default to "en" if you omit it.) | No |
| tModelKeys | This is a comma-separated list of tModelKeys key references. | No |
| categoryBag | This is the definition of a CategoryBag. | No |
7.23. Example Use of UDDI Annotations
You can use the annotations on any class that defines a service. Here they are added to a web service (a POJO with a JAX-WS web service annotation):
package org.apache.juddi.samples;
import javax.jws.WebService;
import org.apache.juddi.v3.annotations.UDDIService;
import org.apache.juddi.v3.annotations.UDDIServiceBinding;
@UDDIService(
businessKey="uddi:myBusinessKey",
serviceKey="uddi:myServiceKey",
description = "Hello World test service")
@UDDIServiceBinding(
bindingKey="uddi:myServiceBindingKey",
description="WSDL endpoint for the helloWorld Service. This service is used for "
+ "testing the jUDDI annotation functionality",
accessPointType="wsdlDeployment",
accessPoint="http://localhost:8080/juddiv3-samples/services/helloworld?wsdl")
@WebService(
endpointInterface = "org.apache.juddi.samples.HelloWorld",
serviceName = "HelloWorld")
public class HelloWorldImpl implements HelloWorld {
public String sayHi(String text) {
System.out.println("sayHi called");
return "Hello " + text;
}
}
juddi-client code will scan this class for UDDI annotations and take care of the registration process.
org.apache.juddi.samples.HelloWorldImpl service class:
<clerk name="BobCratchit" node="default" publisher="sales" password="sales">
<class>org.apache.juddi.samples.HelloWorldImpl</class>
</clerk>
default, and that he will be using the sales publisher (for which the password is sales).
Note
7.25. Example Use of the CategoryBag Annotation
<categoryBag>
<keyedReference tModelKey="uddi:uddi.org:categorization:types"
keyName="uddi-org:types:wsdl" keyValue="wsdlDeployment" />
<keyedReference tModelKey="uddi:uddi.org:categorization:types"
keyName="uddi-org:types:wsdl2" keyValue="wsdlDeployment2" />
</categoryBag>
categoryBag="keyedReference=keyName=uddi-org:types:wsdl;keyValue=wsdlDeployment;" +
"tModelKey=uddi:uddi.org:categorization:types," +
"keyedReference=keyName=uddi-org:types:wsdl2;keyValue=wsdlDeployment2;" +
"tModelKey=uddi:uddi.org:categorization:types2",
7.26. Use Annotations to Develop a Web Service
Procedure 7.8. Task
- Add an annotation to any class that defines a service. Here is an example where they are added to a web service POJO with a JAX-WS Webservice annotation:
package org.apache.juddi.samples; import javax.jws.WebService; import org.apache.juddi.v3.annotations.UDDIService; import org.apache.juddi.v3.annotations.UDDIServiceBinding; @UDDIService(businessKey="uddi:myBusinessKey", serviceKey="uddi:myServiceKey", description = "Hello World test service") @UDDIServiceBinding(bindingKey="uddi:myServiceBindingKey", description="WSDL endpoint for the helloWorld Service. This service is used for " + "testing the jUDDI annotation functionality", accessPointType="wsdlDeployment", accessPoint="http://localhost:8080/juddiv3-samples/services/helloworld?wsdl") @WebService(endpointInterface = "org.apache.juddi.samples.HelloWorld", serviceName = "HelloWorld") public class HelloWorldImpl implements HelloWorld { public String sayHi(String text) { System.out.println("sayHi called"); return "Hello " + text; } }On deployment of this WebService, the juddi-client code will scan this class for UDDI annotations and take care of the registration process. - Open the uddi.xml file in your text editor:
vi uddi.xml - Scroll down to the "clerk" section and add a reference to the
org.apache.juddi.samples.HelloWorldImplservice class:<clerks registerOnStartup="true"> <clerk name="BobCratchit" node="default" publisher="bob" password="bob"> <class>org.apache.juddi.samples.HelloWorldImpl</class> </clerk> </clerks>In this example, Bob is using the connection setting for the node named "default". Furthermore, he will be using a publisher named "bob", for which the password is also "bob". - Save the file and exit.
7.27. Key Template
uddi.xml file.
uddi.xml file. The values you set for the properties in this template will be used when the key is registered.
7.28. Key Template Properties
Table 7.5. Key Template Properties
| Property | Description | Required? | Default Value |
|---|---|---|---|
| lang | The language setting used by the registration | no | en |
| businessName | The business name which is used by the registration. | yes | - |
| keyDomain | The key domain key part (used by the key formats) | yes | - |
| businessKeyFormat | Key format used to construct the Business Key | no | uddi:${keyDomain}:business_${businessName} |
| serviceKeyFormat | Key format used to construct the BusinessService Key | no | uddi:${keyDomain}:service_${serviceName} |
| bindingKeyFormat | Key format used to construct the TemplateBinding Key | no | uddi:${keyDomain}:binding_${nodeName}_${serviceName}_${portName} |
| serviceDescription | Default BusinessService description | no | Default service description when no <wsdl:document> element is defined inside the <wsdl:service> element. |
| bindingDescription | Default BindingTemplate description | no | Default binding description when no <wsdl:document> element is defined inside the <wsdl:binding> element. |
7.29. Use the jUDDI Client Code in Your Application
Procedure 7.9. Task
- Open the jUDDI client configuration file in a text editor:
vi SOA_ROOT/jboss-as/server/PROFILE/deploy/jbossesb-registry.sar/esb.juddi.xml. Use this file as a template for your ownuddi.xmlfile. - Make sure the clerk manager points to your custom
uddi.xmlwhen it is instantiated:UDDIClerkManager clerkManager = new UDDIClerkManager("META/myuddi.xml"); clerkManager.start(); UDDIClerk clerk = clerkManager.getClientConfig().getUDDIClerks().get(clerkName);Note
A UDDIClerk will allow you do make authenticated requests to a UDDI server.
7.30. WSDL and the UDDI Registry
7.31. Specification for the Service and Binding Descriptions in the WSDL
uddi.xml file. However it makes a lot more sense to have a specific description for each service and binding and so the registration code tries to obtain these descriptions from the <wsdl:document> tags in the WSDL, which can be nested as a child element inside the <wsdl:service> and <wsdl:binding> elements.
7.32. Register a WSDL Process in jUDDI
Prerequisites
- org.apache.juddi.v3.client.mapping
Procedure 7.10. Task
- Use the code in the
org.apache.juddi.v3.client.mappingpackage. - Make the following call to asynchronously register your web service end point:
//Add the properties from the uddi.xml properties.putAll(clerk.getUDDINode().getProperties()); RegistrationInfo registrationInfo = new RegistrationInfo(); registrationInfo.setServiceQName(serviceQName); registrationInfo.setVersion(version); registrationInfo.setPortName(portName); registrationInfo.setServiceUrl(serviceUrl); registrationInfo.setWsdlUrl(wsdlURL); registrationInfo.setWsdlDefinition(wsdlDefinition); registrationInfo.setRegistrationType(RegistrationType.WSDL); registration = new AsyncRegistration(clerk, urlLocalizer, properties, registrationInfo); Thread thread = new Thread(registration); thread.start();
Note
This does assume that you can pass in a URL to the WSDL file in addition to the WSDLDefinition. In most cases you will need to package the WSDL file you wish to register in your deployment.To obtain a WSDLDefinition use this code:ReadWSDL readWSDL = new ReadWSDL(); Definition definition = readWSDL.readWSDL("wsdl/HelloWorld.wsdl");You need to pass the path information to the WSDL that is on the classpath.
7.33. Remove a WSDL Binding from the Service Registry
Procedure 7.11. Task
- To remove a WSDL binding from the service registry, use this code:
WSDL2UDDI wsdl2UDDI = new WSDL2UDDI(clerk, urlLocalizer, properties); String serviceKey = wsdl2UDDI.unRegister(serviceName, portName, serviceURL);
Note
If this is the last BindingTemplate for the BusinessService it will also remove the BusinessService itself along with the WSDLPortType and WSDLBinding TModels. The lifecycle is set to "registration" on deployment of the end point and set to "unregistration" on removal of the end point.
7.34. Register a BPEL Process in jUDDI
Prerequisites
- org.apache.juddi.v3.client.mapping
Procedure 7.12. Task
- Use the code in the
org.apache.juddi.v3.client.mappingpackage. - Make the following call to asynchronously register your web service end point:
//Add the properties from the uddi.xml properties.putAll(clerk.getUDDINode().getProperties()); RegistrationInfo registrationInfo = new RegistrationInfo(); registrationInfo.setServiceQName(serviceQName); registrationInfo.setVersion(version); registrationInfo.setPortName(portName); registrationInfo.setServiceUrl(serviceUrl); registrationInfo.setWsdlUrl(wsdlURL); registrationInfo.setWsdlDefinition(wsdlDefinition); registrationInfo.setRegistrationType(RegistrationType.BPEL); registration = new AsyncRegistration(clerk, urlLocalizer, properties, registrationInfo); Thread thread = new Thread(registration); thread.start();
Set the RegistrationInfo.RegistrationType to RegistrationType.BPEL.
7.35. URLLocalizer Interface and the JBoss Enterprise SOA Platform
7.36. Dynamic UDDI Service Look-up
7.37. Use the Service Locator to Find a Service Binding
Prerequisites
- You must already know the names of the service and port.
Procedure 7.13. Task
- To locate a service binding using the service locator, use this code:
ServiceLocator serviceLocator = new ServiceLocator(clerk, urlLocalizer, properties); String endPointURL = serviceLocator.lookupEndpoint(serviceQName, String portName);
Note
The downside of doing a look-up prior to each service invocation is that it will be detrimental to performance.
7.38. Tutorial: Using the jUDDI Client
Prerequisites
- Make sure the publisher (in this case,
root) already exists in the Service Registry
Procedure 7.14. Task
- Obtain the sample code located in the
uddi-clientmodule. - Make a call to the Registry to obtain an authentication token. (The following code is taken from the unit tests in this module):
public void testAuthToken() { try { String clazz = ClientConfig.getConfiguration().getString( Property.UDDI_PROXY_TRANSPORT,Property.DEFAULT_UDDI_PROXY_TRANSPORT); Class<?> transportClass = Loader.loadClass(clazz); if (transportClass!=null) { Transport transport = (Transport) transportClass.newInstance(); UDDISecurityPortType securityService = transport.getSecurityService(); GetAuthToken getAuthToken = new GetAuthToken(); getAuthToken.setUserID("root"); getAuthToken.setCred(""); AuthToken authToken = securityService.getAuthToken(getAuthToken); System.out.println(authToken.getAuthInfo()); Assert.assertNotNull(authToken); } else { Assert.fail(); } } catch (Exception e) { e.printStackTrace(); Assert.fail(); } }Note
Ensure that you supply the correct credentials for the root publisher to obtain a successful response.