mirror of
https://github.com/svek95/WST_Labs.git
synced 2026-06-09 23:18:27 +03:00
rename and add 2lab
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
|
||||
package Lab1;
|
||||
|
||||
|
||||
import Lab1.CarWebService;
|
||||
@@ -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 {
|
||||
}
|
||||
Reference in New Issue
Block a user