...
Блок кода |
---|
package ru.company;
import javax.jws.WebService;
@WebService
public interface CustomService
{
public String doit ();
{
return "Hello World";
}
} |
И его реализация:
Блок кода |
---|
package ru.company.impl import ru.company.CustomService; import javax.jws.WebService; @WebService(endpointInterface = "ru.company.CustomService") public class CustomServiceImpl implements CustomService { @Override public String doit () { { return "Hello World"; } } } |
...