mirror of
https://github.com/svek95/WST_Labs.git
synced 2026-05-17 18:44:02 +03:00
Add Lab3
Start
This commit is contained in:
@@ -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());
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
package Lab3;
|
||||||
|
|
||||||
|
public class CarWebExcept {
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user