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 に答える