cxf HashMap 传输中文
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cxf HashMap 传输中文相关的知识,希望对你有一定的参考价值。
在用cxf构建的webservice中,我传输的是一个HashMap,当在HashMap中放入中文时,会出现以下Exception:Caused by: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,474]Message: Invalid byte 1 of 1-byte UTF-8 sequence
参考技术A 好像是中文环境问题吧。中文环境下默认是gbk,而xml头信息里是utf-8,把环境改成utf-8试试。呵呵,不知道对不对啊 参考技术B 你好,消息 ="不能读取 XML 流 … …嵌套的异常是 javax.xml.stream.XMLStreamException: ParseError 在 [行,col]: [1,365] \nMessage: elementGetText() 函数需要文本的唯一元素,但遇到 START_ELEMENT。" 参考技术C 将当前的编码改成UTF-8再放入HashMap中看看
使用 servlet 传输 Jboss fuse 6.3 公开 https camel cxf webservice
【中文标题】使用 servlet 传输 Jboss fuse 6.3 公开 https camel cxf webservice【英文标题】:Exposing https camel cxf webservice using servlet transport Jboss fuse 6.3 【发布时间】:2018-06-14 07:56:29 【问题描述】:我想将camel cxf webservice暴露为https我已经完成了以下配置并且部署成功,但是我得到连接被拒绝https://localhost:8443
我的配置中是否缺少某些内容?
我正在使用 Jboss fuse 6.3、Jboss Eap 6.4、camel 2.17 和 JDK 1.8
1.) 我使用以下命令创建了一个密钥库并将其放在 C:\Temp\truststore:
keytool -genkey -keyalg RSA -sigalg SHA1withRSA -validity 730 -alias jbossfuse -keypass password -storepass password -keystore jbossfuse-dev.jks -dname cn=localhost
2.) 我在standalone-full.xml 中启用了 https 连接器,如下所示:
<subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http"/>
<connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" secure="true">
<ssl name="https" key-alias="trust" password="password" certificate-key-file="C:/Temp/truststore/jbossfuse-dev.jks"/>
</connector>
<virtual-server name="default-host" enable-welcome-root="true">
<alias name="localhost"/>
<alias name="example.com"/>
</virtual-server>
</subsystem>
套接字绑定https:
<socket-binding name="https" port="8443"/>
4.) 端点配置:
<http:conduit name="*.http-conduit"
xmlns:sec="http://cxf.apache.org/configuration/security" xmlns="http://cxf.apache.org/transports/http/configuration">
<http:tlsClientParameters disableCNCheck="true">
<sec:trustManagers>
<sec:keyStore type="JKS" password="password"
file="C:\\Temp\\truststore\\jbossfuse-dev.jks" />
</sec:trustManagers>
</http:tlsClientParameters>
</http:conduit>
<cxf:cxfEndpoint id="authentication" xmlns:nms="http://tempuri.org/"
address="/authenticationProxy"
endpointName="nms:BasicHttpBinding_ITestAuthenticationService"
serviceName="nms:TestAuthenticationService"
wsdlURL="wsdl/Authentication/Authentication.wsdl" loggingFeatureEnabled="true">
<cxf:properties>
<entry key="dataFormat" value="PAYLOAD" />
</cxf:properties>
</cxf:cxfEndpoint>
5.) 骆驼路线 xml:
<route id="AuthInproxy">
<from id="Authentication" uri="cxf:bean:authentication"/>
<doTry id="_doTry1">
<to uri="direct:AuthInProvider"/>
<doCatch id="_doCatch1">
<exception>java.lang.Exception</exception>
<handled>
<constant>true</constant>
</handled>
</doCatch>
</doTry>
</route>
Web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<display-name>ssl-cxf</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:META-INF/spring/*.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>CXFServlet</servlet-name>
<servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>CXFServlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
【问题讨论】:
【参考方案1】:看起来像您在 HTTPS 连接器 SSL 配置 (trust) 中指定的密钥别名,与您在创建密钥库 (jbossfuse) 时使用的别名不匹配。
尝试:
<connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" secure="true">
<ssl name="https" key-alias="jbossfuse" password="password" certificate-key-file="C:/Temp/truststore/jbossfuse-dev.jks"/>
</connector>
【讨论】:
嗨詹姆斯,很好,我没有注意到它。它现在工作正常。以上是关于cxf HashMap 传输中文的主要内容,如果未能解决你的问题,请参考以下文章
将 HashMap 的创建迭代为另一个 HashMap 中的值
Hashmap 和并发 HashMap 有啥区别? [复制]