Commit 70e69c5a by Patryk Czarnik

wsdlLocation

parent 1be0906d
......@@ -14,7 +14,8 @@ import jakarta.xml.ws.ResponseWrapper;
* Generated source version: 4.0.0
*
*/
@WebService(targetNamespace = "http://www.example.org/Kalkulator/", name = "Kalkulator")
@WebService(name = "Kalkulator"
, targetNamespace = "http://www.example.org/Kalkulator/")
@XmlSeeAlso({ObjectFactory.class})
public interface Kalkulator {
......
......@@ -5,7 +5,11 @@ import jakarta.xml.ws.Holder;
import java.util.List;
@WebService(endpointInterface = "kalkulator.Kalkulator")
@WebService(endpointInterface = "kalkulator.Kalkulator"
, serviceName = "Kalkulator"
, portName = "KalkulatorSOAP"
, targetNamespace = "http://www.example.org/Kalkulator/"
, wsdlLocation = "/WEB-INF/wsdl/kalkulator.wsdl")
public class KalkulatorImpl implements Kalkulator {
@Override
public int sub(int arg1, int arg2) {
......
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