CXF - com.ctc.wstx.exc.WstxUnexpectedCharExcepti

2019-07-31 02:54发布

我在互联网上发现的问题是,SOAP请求包含Unicode字符的,, CTRL + V”,这是在XML中非法字符。我不知道这是如何进入的字符串,但我想简单的删除它在服务器端。

可以plase有人给我点如何解决这个问题? 我发现这个片断:

  XMLOutputFactory f = new WstxOutputFactory();
  f.setProperty(WstxOutputProperties.P_OUTPUT_INVALID_CHAR_HANDLER,
    new InvalidCharHandler.ReplacingHandler(' '));
  XMLStreamWriter sw = f.createXMLStreamWriter(...);

谁能告诉我如何配置Spring建设WstxOutputFactory与此处理程序? - InvalidCharHandler.ReplacingHandler(”“)。 谢谢你的建议。

Answer 1:

该解决方案是非常简单的:

    <jaxws:endpoint id="kservice"  
                    implementor="#kostrounService"
                    address="/call_kostroun" >
                    <jaxws:properties>
                           <entry key="javax.xml.stream.XMLOutputFactory"            valueref="xmlOutputFactory" />
                     </jaxws:properties>       
    </jaxws:endpoint> 
 <bean id="invalidCharHandler"   class="com.ctc.wstx.api.InvalidCharHandler$ReplacingHandler">
         <constructor-arg value=" "/>
   </bean>

   <bean id="xmlOutputFactory" class="com.ctc.wstx.stax.WstxOutputFactory"/>

   <bean class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
        <property name="targetObject">
            <ref local="xmlOutputFactory" />
        </property>
        <property name="targetMethod">
            <value>setProperty</value>
        </property>
        <property name="arguments">
            <list>
                 <util:constant static-field="com.ctc.wstx.api.WstxOutputProperties.P_OUTPUT_INVALID_CHAR_HANDLER"/>
                 <ref bean="invalidCharHandler" />
            </list>
        </property>
    </bean>

配置该片段从SOAP消息中删除非法字符,并且应用程序,然后运行;-)



文章来源: CXF - com.ctc.wstx.exc.WstxUnexpectedCharException: Illegal character ((CTRL-CHAR, code 5))