【发布时间】:2018-11-29 12:14:22
【问题描述】:
我有 WSDL 和 XSD 模式。我使用CXF 从中生成java classes 和service interface。
我使用 CXF 创建 SOAP 端点:
@Bean
Endpoint endpoint() {
EndpointImpl endpoint = new EndpointImpl(bus, myEndpoint);
endpoint.publish(path);
return endpoint;
}
当我打开服务 URl 时,我会生成 WSDL,但我需要原始 WSDl。
如何返回original WSDL 而不生成?
【问题讨论】:
标签: java spring wsdl cxf spring-ws