Java 警告是什么;找不到web服务终结点";?

Java 警告是什么;找不到web服务终结点";?,java,soap,jaxb,Java,Soap,Jaxb,[annotationProcessing]正在将1个源文件编译为 /home/sabo/workspace/ekocontrol/build/classes[注释处理] 警告:找不到web服务终结点 [注释处理]1警告 “找不到web服务端点”的警告是什么 @WebService(targetNamespace = "http://ekokontrol.lenobl.smev.ru", name="Ekokontrol") @SOAPBinding(style=SOAPBinding.Styl

[annotationProcessing]正在将1个源文件编译为 /home/sabo/workspace/ekocontrol/build/classes[注释处理] 警告:找不到web服务终结点

[注释处理]1警告

“找不到web服务端点”的警告是什么

@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);

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