我已经使用在线提供的文档和示例设置了Spring集成网关。我发送的XML消息是ISO-8859-1编码的,但是接收方告诉我消息是以与ISO-8859-1不同的编码发送给他们的。
我的配置如下所示:
<!-- Spring integration begins -->
<beans:bean id="javaDeserializer"
class="org.springframework.integration.ip.tcp.serializer.ByteArrayRawSerializer" />
<int:gateway id="gw"
service-interface="com.pawsec.alarmcenter.model.SOSAccessV4.SimpleGateway"
default-request-channel="input"/>
<int-ip:tcp-connection-factory id="cfClient"
type="client"
host="${rapid.alarm.ipaddress}"
port="${rapid.alarm.port}"
deserializer="javaDeserializer"
single-use="true"
so-timeout="10000"/>
<int:channel id="input" />
<int-ip:tcp-outbound-gateway id="outGateway"
request-channel="input"
reply-channel="clientBytes2StringChannel"
connection-factory="cfClient"
request-timeout="10000"/>
<int:channel id="clientBytes2StringChannel"/>
<int:object-to-string-transformer id="clientBytes2String"
input-channel="clientBytes2StringChannel" />
<!-- Spring integration ends -->
我需要知道如何控制传出流的字符编码。还有--有没有办法我可以自己检查传出的消息,而不必打电话给接收方并让他检查?
有谁能帮帮我吗?
发布于 2016-01-22 16:37:06
TcpNetConnection
在发送之前使用TcpMessageMapper
将消息转换为byte[]
:
Object object = this.getMapper().fromMessage(message);
它的代码看起来像(当然是默认的):
bytes = ((String) payload).getBytes(this.charset);
其中,它类似于:
private volatile String charset = "UTF-8";
因此,您应该为mapper
提供所需的charset
,以便将ISO-8859-1
XML转换为字节。
Re.
自己检查传出消息
您可以使用一些TCP跟踪工具,如wire Wireshark来代理和拦截流量。
发布于 2016-01-25 16:08:39
我通过使用如下的ISO-8859-1映射器配置客户端工厂解决了最初的问题:
@Bean
public AbstractClientConnectionFactory clientCF() {
TcpNetClientConnectionFactory clientConnectionFactory = new TcpNetClientConnectionFactory(HOST, PORT);
TcpMessageMapper tcpMessageMapper = new TcpMessageMapper();
logger.debug("Setting deserializer");
clientConnectionFactory.setDeserializer(new ByteArrayRawSerializer());
tcpMessageMapper.setCharset("ISO-8859-1");
logger.debug("setting mapper!");
clientConnectionFactory.setMapper(tcpMessageMapper);
return clientConnectionFactory;
}
https://stackoverflow.com/questions/34949964
复制相似问题