Commit 9bbab2d6 by Patryk Czarnik

Pierwsze zapytanie webserwisowe hello

parent 2bb73585
......@@ -30,6 +30,7 @@
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
......
package sklep.soap;
import jakarta.jws.WebService;
@WebService
public class Sklep {
public String hello(String imie) {
return "Witaj " + imie;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment