2012-08-31 24 views
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]源文件編譯到 /家庭/薩博/工作區/ ekokontrol /編譯/類[annotationProcessing] 警告:Web服務端點找不到什麼警告「無法找到Web服務端點」?

[annotationProcessing] 1警告

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

什麼警告「Web服務端點找不到」?

回答

1
@WebService(endpointInterface = "ekokontrol.server.EkokontrolIF") 
public class EkokontrolImpl implements EkokontrolIF { 
... 
} 
相關問題