package com.soapsoapsoap; import javax.xml.ws.Endpoint; public class UserSOAPServicePublisher { public static void main(String[] args) { Endpoint.publish("http://localhost:7779/ws/user", new UserSOAPServiceImpl()); } }