1
@WebService(targetNamespace = "http://ekokontrol.lenobl.smev.ru", name="Ekokontrol")
@SOAPBinding(style=SOAPBinding.Style.RPC, use=SOAPBinding.Use.LITERAL)
public interface EkokontrolIF {

    @WebMethod(operationName="inspection", action="urn:inspection")
    @WebResult(name="return")
    public BaseMessageType inspection(
        @WebParam(name="request")BaseMessageType requestBaseMessage);

}

[annotationProcessing] 将 1 个源文件编译到 /home/sabo/workspace/ekokontrol/build/classes [annotationProcessing] 警告:找不到 Web 服务端点

[annotationProcessing] 1 个警告

@WebService(endpointInterface = "ekokontrol.server.EkokontrolIF")
public class EkokontrolImpl {
...
}

什么警告“找不到 Web 服务端点”?

4

1 回答 1

1
@WebService(endpointInterface = "ekokontrol.server.EkokontrolIF")  
public class EkokontrolImpl implements EkokontrolIF {
...
}
于 2012-09-05T08:05:25.433 回答