6

我正在使用 wsdl2java 生成的类和这段代码:

MyService f = new MyService();
MyServicePortType type = f.getMyServicePortType();

每个调用最多需要 30 秒。这是为什么?

4

2 回答 2

8

经过数小时的谷歌搜索和修改后,问题在于如何引用方案文件:虽然 WSDL 和 XSD 是本地存储的,但仍然有一些引用到 w3.org,如下所示:

<!DOCTYPE schema PUBLIC "-//W3C//DTD XMLSchema 200102//EN" "http://www.w3.org/2001/XMLSchema.dtd" [...

<import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/xmldsig-core-schema.xsd" />

w3.org 服务器响应速度非常慢,因此我的客户端初始化缓慢。

我已更改对本地的引用:

<import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="xmldsig-core-schema.xsd" />
于 2012-11-11T12:44:38.723 回答
0

我欠你一大笔债,因为我已经为此苦苦挣扎了好几天,而你的回答为我指明了正确的方向。

实际上 w3.org URL 需要很长时间才能响应,但是实际上没有理由说明从 WSDL 生成的 SOAP 客户端仍然需要在运行时解析 WSDL。

事实上它不是,但是默认生成的construstors 会强制这样做。

我发现可以通过以不同方式实例化服务端口并通过请求上下文指定服务端点来跳过此操作,如下所示:

// creating the service this way passes null as the wsdlLocation, preventing the runtime resolution and parsing of the wsdl
Service service =  ZefixService.create(ZefixService.SERVICE);

ZefixServicePortType zefixServicePort = service.getPort(ZefixServicePortType.class);


Map<String, Object> requestContext = ((BindingProvider) zefixServicePort).getRequestContext();
// because we create the service without the wsdl location, we need to specify the service base url ourselves
requestContext.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, Configuration.get(Constants.API_BASE_URI_PROPERTY));
requestContext.put(BindingProvider.USERNAME_PROPERTY, Configuration.get(Constants.USER_PROPERTY));
requestContext.put(BindingProvider.PASSWORD_PROPERTY, Configuration.get(Constants.PASSWORD_PROPERTY));

return zefixServicePort;

我希望这对您和其他人将来有用。

再次感谢

于 2020-10-16T13:26:17.230 回答