我正在尝试为我的 Web 服务将 disableCNCheck 设置为 true。我正在使用带有 Cxf 客户端插件的 Grails 2.2.0。
我发现了这个问题:
wsdl2java CXF command line error about disableCNCheck option
使用这段代码:
protected void disableCNCheck(Object port) {
Client client = ClientProxy.getClient(port)
TLSClientParameters params = new TLSClientParameters()
params.setDisableCNCheck(true)
HTTPConduit httpConduit = (HTTPConduit) client?.getConduit()
httpConduit?.setTlsClientParameters(params)
}
该代码属于哪个类,该方法将在哪里调用?是否有我可以设置的 Cxf 客户端插件的配置参数?