Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an UDDI or any other registry for RESTful Webservices

Tags:

rest

uddi

Does Restful Webservices have any service registries like the UDDI? Or can UDDI hold Restful Webservices as well?

like image 294
Dhanush Gopinath Avatar asked Jun 17 '11 09:06

Dhanush Gopinath


People also ask

What is UDDI registry in Web services?

A UDDI registry (Universal Description, Discovery, and Integration) is an XML-based registry for businesses worldwide to list themselves on the Internet. It allows users to view, find, and share web services. Discover the web services published in a UDDI registry.

What is Web service registry?

A service registry is a database for the storage of data structures for application-level communication. It serves as a central location where app developers can register and find the schemas used for particular apps.

Is UDDI a Web service?

Universal Description, Discovery, and Integration (UDDI) specification defines a way to publish and discover information about Web services. UDDI has two functions: It is a SOAP-based protocol that defines how clients communicate with UDDI registries. It is a particular set of global replicated registries.

How do I access UDDI?

Enter the URL on which to search the UDDI registry (for example, http://HOSTNAME:PORT/uddi/inquiry ). Publish URL: Enter the URL on which to publish to the UDDI registry, if required (for example, http://HOSTNAME:PORT/uddi/publishing ). Security URL (UDDI v3):


2 Answers

UDDI can be used for REST services. WSDLs can be used to described HTTP web services, but frankly I feel that it's not a real match for a REST resource architecture.

At a most basic level, UDDI is simply mapping of attributes to service endpoints. So, if you're simply looking for a system that can do that, then UDDI will fit the bill.

UDDI is not popular in the wild, wide open internet, but it is used "behind the scenes" as an orchestration component.

As Darrel mentioned, DNS is another valid discovery mechanism.

My personal complaint with DNS is simply that even though DNS has all of the advantages that's mentioned in the article he cites, the downside is that DNS is such a critical part of the network fabric, it tends to not be available to developers. Typically, the network operations folks (who tend to be more notorious than even DBAs) hold infrastructure like DNS quite close. Finally, while DNS is quite capable of these tasks, in many cases the standard default configuration and deployment of DNS may need to be changed. For example, We've started serving certificates from DNS, for example, and we had to enable TCP for DNS. Again, this meant more involvement of network ops.

On top of that, while there is a lot of expertise and knowledge of DNS out in the world, knowledge and expertise of HTTP and "doing stuff" on a web server is far greater. That consequences of that simply means that when developers think about and look to some kind of solution to this problem, the first place they're going to look is likely an HTTP based solution.

So, in that sense UDDI is possibly a better solution, just in terms of being able to get it rolled out quickly with little hassle.

Of course, UDDI is a SOAP based service. That's not that big a deal, really. Not a great fit for a RESTful system, but it's not awful. Functional, if a little "impure".

As for a standard HTTP based service registry, there's nothing that I know of. It's reasonably simply to adhoc one simply with HTML, for example. The fact that UDDI hasn't taken off in the World at large isn't so much a limitation or slight against UDDI. Rather it's simply that the vision of discovering arbitrary services hasn't really come to fruition, the need simply isn't quite there. There's a lot more involved out of band with service discovery beyond location and semantics, like business relationships and such.

Internally, within the enterprise, those logistics are solved, so service discovery has value. Out in the wild, not so much.

like image 156
Will Hartung Avatar answered Sep 20 '22 14:09

Will Hartung


It's not dead ;)

  • signed a jUDDI developer juddi.apache.org

Edit: There's also WS-Discovery which is supported by both CXF and WCF. Worth checking out.

FWIW, UDDIv3 does specify a REST interface, however I don't think anyone other than jUDDI has implemented it. It will be included with v3.2 and up using CXF, Jettison and WADL. Source: http://svn.apache.org/repos/asf/juddi/trunk/juddi-rest-cxf/src/main/java/org/apache/juddi/api/impl/rest/UDDIInquiryJAXRS.java

like image 33
spy Avatar answered Sep 21 '22 14:09

spy