Commit 34d834e4 by Patryk Czarnik

Pierwszy przykład metody w SOAP

parent 55380e6c
package hello;
import javax.jws.WebService;
@WebService
public class PierwszaUsluga {
public String powitaj(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