1

この EndPoint Exception が発生する理由: エンドポイントがありません

これはコードです:

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()- なぜ?

4

1 に答える 1

0

あなたの質問が言及されたものと同じであると仮定すると: java calling web service - No endpoint exception

InsuredDetailsLocator locator_MDP、エンドポイントを運ぶ変数は、サービスの呼び出し中は使用されません。また、他の人が言及しているように、エンドポイント URL のスペースについても疑問があります。

于 2013-03-11T15:43:48.187 に答える