com.founder.service.third.JYTWebServiceSoap_JYTWebServiceSoap_Server Maven / Gradle / Ivy
The newest version!
package com.founder.service.third;
import javax.xml.ws.Endpoint;
/**
* This class was generated by Apache CXF 3.1.1
* 2023-07-24T12:25:47.404+08:00
* Generated source version: 3.1.1
*
*/
public class JYTWebServiceSoap_JYTWebServiceSoap_Server{
protected JYTWebServiceSoap_JYTWebServiceSoap_Server() throws Exception {
System.out.println("Starting Server");
Object implementor = new JYTWebServiceSoapImpl();
String address = "http://192.168.158.71:9015/JYTWebService.asmx";
Endpoint.publish(address, implementor);
}
public static void main(String args[]) throws Exception {
new JYTWebServiceSoap_JYTWebServiceSoap_Server();
System.out.println("Server ready...");
Thread.sleep(5 * 60 * 1000);
System.out.println("Server exiting");
System.exit(0);
}
}