12.2.3. 使用 WSDL
命名空间
用于配置 HTTP 消费者端点的 WSDL 扩展元素在命名空间 http://cxf.apache.org/transports/http/configuration 中定义。通常会使用前缀 http-conf
来引用。要使用 HTTP 配置元素,您必须将 例 12.7 “HTTP Consumer WSDL 元素的命名空间” 中显示的行添加到端点 WSDL 文档中的 定义
元素中。
例 12.7. HTTP Consumer WSDL 元素的命名空间
<definitions ... xmlns:http-conf="http://cxf.apache.org/transports/http/configuration"
Undertow 运行时或 Netty 运行时
您可以使用 http-conf
命名空间中的元素来配置 Undertow 运行时或 Netty 运行时。
client 元素
http-conf:client
元素用于指定 WSDL 文档中的 HTTP 消费者的连接属性。http-conf:client
元素是 WSDL 端口
元素的子级。它具有与配置文件中使用的 client
元素相同的属性。属性在 表 12.2 “HTTP Consumer Configuration Attributes” 中描述。
示例
例 12.8 “WSDL 配置 HTTP Consumer 端点” 显示 WSDL 片段,用于配置 HTTP 消费者端点来指定它与缓存交互。
例 12.8. WSDL 配置 HTTP Consumer 端点
<service ... > <port ... > <soap:address ... /> <http-conf:client CacheControl="no-cache" /> </port> </service>