为什么我得到这个端点异常:没有端点
这是代码:
public org.tempuri.UpdateInsuredDetails_Output recieveMDMDataInsuredDetails (org.tempuri.UpdateInsuredDetails_Input l_input) throws java.rmi.RemoteException {
if (super.cachedEndpoint == null) {
logger.info("this is where the endpoint exception occurs:");
throw new org.apache.axis.NoEndPointException();
}
//this is what the method do
}
我发送给方法的对象:l_input
- 不是 null ,但我仍然陷入NoEndPointException()
- 为什么?