IS_Lab5/MyFirstSoapServer/src/com/soapsoapsoap/MyFirstSOAPInterface.java
purifetchi e5ebdacc9c soap
2025-03-08 10:25:16 +01:00

13 lines
No EOL
371 B
Java

package com.soapsoapsoap;
import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.jws.soap.SOAPBinding.Style;
@WebService
@SOAPBinding(style = Style.RPC)
public interface MyFirstSOAPInterface{
@WebMethod String getHelloWorldAsString(String name);
@WebMethod long getDaysBetweenDates(String date1,String date2);
}