9 lines
No EOL
236 B
Java
9 lines
No EOL
236 B
Java
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());
|
|
}
|
|
} |