IS_Lab5/Soap/src/com/soapsoapsoap/UserSOAPServicePublisher.java
purifetchi b7789f0ce8 chooj
2025-03-10 22:16:36 +01:00

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());
}
}