Can I use Endpoint.publish
(in java j2se method) to publish the web service in production environment with domain name( without soap container is there any problems)?
I have one webservice /ws/tk/xml
Endpoint.publish("http:://localhost:8888/ws/tkf/xml",WeserviceImpl);
like that i published in my local server and it's working fine,
While moving to production server how to map domain name like "http://www.test.com" (Sample) can I publish
Endpoint.publish("http:://www.test.com/ws/tkf/xml",WeserviceImpl)
like this?