Service Discovery with WSO2 Governance Registry
What is UDDI:
UDDI stands for Universal Description, Discovery, and Integration. It is seen with SOAP and WSDL as one of the three foundation standards of web services. It uses Web Service Definition Language(WSDL) to describe the services.
What is WS-Discovery:
WS-Discovery is a standard protocol for dynamically discovering service endpoints. Using WS-Discovery, service providers multicast and advertise their endpoints with others.
Since most of the modern services are REST based, above two approaches are considered as dead nowadays. Both UDDI and WS-Discovery target for SOAP based services and they are very bulky. In addition to that, industry is moving from Service Registry concept to Asset Store(Governance Center), and people tend to use REST API and Discovery clients.
How Discovery Client works
So, here I am going to explain how to write discovery client in WSO2 Governance Registry(WSO2 G-Reg) to discover services which are deployed in the WSO2 Enterprise Service Bus(WSO2 ESB)/WSO2 Enterprise Integrator(WSO2 EI). This service discovery client will connect to ESB/EI server and find the services which are deployed there and catalog those into the G-Reg server. In addition to service metadata(endpoint, name, namespace, etc.), discovery client will import the WSDLs and XSDs as well.
Configure Service Discovery Client:
Sample service discovery client implementation can be found from the below GitHub repo(Discovery Client).
1). Download WSO2 Governance Registry and WSO2 ESB/WSO2 EI product and unzip it.
2). By default, both servers are running on 9443 port, so you have to change one of the server ports. Here I am changing port offset of the ESB server.
Open the carbon.xml file located in <ESB_HOME>/repository/conf/carbon.xml and find the “Offset” element and change its value as follows: <Offset>1</Offset>
3). Copy <ESB_HOME>/repository/components/plugins/org.wso2.carbon.service.mgt.stub_4.x.x.jar to <GREG_HOME>/repository/components/dropins.
4). Download or clone ESB service discovery client project and build it.
5). Copy build jar file into <GREG_HOME>/repository/components/dropins directory.
6). Then open the registry.xml file located in <GREG_HOME>/repository/conf/registry.xml and register service discovery client as a Task. This task should be added under “tasks” element.
<task name="ServiceDiscovery" class="com.chandana.governance.discovery.services.ServiceDiscoveryTask">
<trigger cron="0/100 * * * * ?"/>
<property key="userName" value="admin" />
<property key="password" value="admin" />
<property key="serverUrl" value="https://localhost:9444/services/"/>
<property key="version" value="1.0.0" />
</task>
7). Change the userName, password, serverUrl and defaultVersion according to your setup.
8). Now Start ESB server first and then start the G-Reg server.
So, you can see “# of service created :...” message in G-Reg console once server has discovered a service from the ESB server and mean time related WSDL and XSD has got imported into G-Reg. Above services are cataloged under “SOAP Service” asset type.
1). Download WSO2 Governance Registry and WSO2 ESB/WSO2 EI product and unzip it.
2). By default, both servers are running on 9443 port, so you have to change one of the server ports. Here I am changing port offset of the ESB server.
Open the carbon.xml file located in <ESB_HOME>/repository/conf/carbon.xml and find the “Offset” element and change its value as follows: <Offset>1</Offset>
3). Copy <ESB_HOME>/repository/components/plugins/org.wso2.carbon.service.mgt.stub_4.x.x.jar to <GREG_HOME>/repository/components/dropins.
4). Download or clone ESB service discovery client project and build it.
5). Copy build jar file into <GREG_HOME>/repository/components/dropins directory.
6). Then open the registry.xml file located in <GREG_HOME>/repository/conf/registry.xml and register service discovery client as a Task. This task should be added under “tasks” element.
<task name="ServiceDiscovery" class="com.chandana.governance.discovery.services.ServiceDiscoveryTask">
<trigger cron="0/100 * * * * ?"/>
<property key="userName" value="admin" />
<property key="password" value="admin" />
<property key="serverUrl" value="https://localhost:9444/services/"/>
<property key="version" value="1.0.0" />
</task>
7). Change the userName, password, serverUrl and defaultVersion according to your setup.
8). Now Start ESB server first and then start the G-Reg server.
So, you can see “# of service created :...” message in G-Reg console once server has discovered a service from the ESB server and mean time related WSDL and XSD has got imported into G-Reg. Above services are cataloged under “SOAP Service” asset type.
Comments