5

我正在使用带有轴的 Web 服务。我从我调用的任何 web 服务方法中得到一个 NoEndpointException。

它来自这个生成的代码。

if (super.cachedEndpoint == null) {
    throw new org.apache.axis.NoEndPointException();
}

所以这似乎表明我没有正确设置端点。

这就是我实例化存根的方式:

MyService_ServiceLocator myService_ServiceLocator = new MyService_ServiceLocator();
MyService_PortType webservice = new MYServiceSOAPStub(myService_ServiceLocator);

我认为这有问题。我需要传入网络服务地址吗?它似乎已经集成到存根中。

4

1 回答 1

7

它可能取决于 Axis 版本(我使用的是 1.4 版),但我建议您使用定位器中的 getYourPortType() 方法。您不必提供您的网络服务 URL(因为它存储在生成的文件中)。

使用您的样本将是这样的:

MyService_ServiceLocator myService_ServiceLocator = new MyService_ServiceLocator();
MyService_PortType webservice = myService_ServiceLocator.getMyService_PortType();
于 2010-01-22T12:23:02.460 回答