Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

used cxf framework for webservice. It works. however the webservice is always published in public ip and I see followin in colsole Setting the server's publish address to be soap.udp://239.255.255.250:3702

how to change that to localhost. appreciate any help.

Thanks, raen

share|improve this question

1 Answer

That's the WS-Discovery service that runs along side your other services to allow for discovery of the services on the network. See http://cxf.apache.org/docs/ws-discovery.html

You can remove the WS-Discovery jars from the classpath and this would be disabled.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.