0

I have gone thru spring ws but did not come across role of UDDI in spring WS. I believe spring configuration(i.e PayloadRootAnnotationMethodEndpointMapping) internally publishing and finding it from UDDI . Is that correct ?

emilly
  • 10,060
  • 33
  • 97
  • 172
  • No it isn't... Spring-ws doesn't do anything with UDDI. I suggest you do a little readup on what UDDI is and what its place is in the webservice world. Little hint it is quite dead... – M. Deinum Mar 27 '15 at 13:37
  • @M.Deinum i have read about UDDI. My understanding is when we publish the web service(for example Endpoint.publish(..)), it gets registered with UDDI and when cosumer request comes , request is made to UDDI to discover it. Is n't that correct ? – emilly Mar 27 '15 at 13:57
  • That isn't correct... It just publishes your endpoint so that you can access it, it doesn't do anything with UDDI. – M. Deinum Mar 27 '15 at 13:58

1 Answers1

1

AFAIK, Spring doesn't explicitly cover UDDI. If you're a fan of annotations and configuration based tooling, jUDDI has it.

Example: http://svn.apache.org/repos/asf/juddi/tags/juddi-3.2.0/juddi-examples/wsdl2uddi-lifecyle/

Related post: Spring WS and UDDI

Community
  • 1
  • 1
spy
  • 3,199
  • 1
  • 18
  • 26