次のエラーが表示されます
javax.xml.ws.soap.SOAPFaultException: Marshalling Error: The https URL hostname does not match the Common Name (CN) on the server certificate. To disable this check (NOT recommended for production) set the CXF client TLS configuration property "disableCNCheck" to true.
Web サービスに接続して使用しようとしたとき。
cxf.xml に次の行を追加しましたが、それでも機能しません。
<http-conf:conduit name="*.http-conduit">
<!-- deactivate HTTPS url hostname verification (localhost, etc)
WARNING ! disableCNcheck=true should NOT be used in production -->
<http-conf:tlsClientParameters disableCNCheck="true" />
cxf.xml ファイルは、WEB-INF/classes/CxfService の下に配置されます。
何が問題になるのか教えてください。