rename and add 2lab

This commit is contained in:
2019-03-19 10:20:21 +01:00
parent 67ac4941e6
commit dc8945dd80
5 changed files with 21 additions and 2 deletions
@@ -1,4 +1,4 @@
package Lab1;
import Lab1.CarWebService;
+12
View File
@@ -0,0 +1,12 @@
package Lab2;
//import Lab1.CarWebService;
import javax.xml.ws.Endpoint;
public class App {
public static void main(String[] args) {
String url = "http://localhost:8081/CarService";
Endpoint.publish(url, new CarWebCrudService());
}
}
@@ -0,0 +1,4 @@
package Lab2;
public class CarWebCrudService {
}