Start
This commit is contained in:
2019-04-12 15:07:05 +02:00
parent 9221afc504
commit fc255e24f2
2 changed files with 15 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package Lab3;
import javax.xml.ws.Endpoint;
public class App {
public static void main(String[] args) {
System.setProperty("com.sun.xml.ws.fault.SOAPFaultBuilder.disableCaptureStackTrace", "false");
String url = "http://0.0.0.0:8081/CarService";
Endpoint.publish(url, new CarWebExcept());
}
}
+4
View File
@@ -0,0 +1,4 @@
package Lab3;
public class CarWebExcept {
}