Hello,
i`m just deploying an Application Service and the SDM issues a warning that it cannot find an endpoint method.
Caused by: com.sap.engine.services.ejb3.container.ActionException: Cannot find endpoint method 'checkAntragCreation' with args [long] in class ....ManageAntragInBeanImpl for component ...
for test-purposes i commented out the method and regenerated the stub from scratch like so:
@com.sap.caf.dt.CAFOperation(name = "checkAntragCreation")
@javax.jws.WebMethod(exclude = false, operationName = "checkAntragCreation")
@javax.jws.WebResult(name = "AntragCreateCheckResponse", targetNamespace = "http://....")
public java.lang.Boolean checkAntragCreation(
@javax.jws.WebParam(name = "AntragCreateCheckQuery", targetNamespace = "http://...")
java.lang.Long AntragCreateCheckQuery) {
return (true == false);
}
this didnt help either... any hint?
thanks,
kai