English 中文(简体)
阿帕奇斯客户可辨别的代号
原标题:Disable escaping symbols in Apache Axis client

我为我提供的一些网络服务而努力创建轴心客户。 服务公司从收到的XML中生成PDF文档,因此,我需要通过“纯”xml作为服务参数之一。 问题与似乎一样,是轴体具有“和”及“和”的象征。 因此,我例外地接受服务。

net.homecredit.apps.common.api.ServiceException: java.rmi.RemoteException: ; nested exception is: org.xml.sax.SAXException: No deserializer for {http://www.w3.org/2001/XMLSchema}anyType

我应发出:

<ns1:parameter name="xml" xsi:type="ns1:ParameterType">
    <abc><id>124240</id><text>text</text></abc>
</<ns1:parameter>

在轴心方法中,援引我:

<ns1:parameter name="xml" xsi:type="ns1:ParameterType">
    &lt;abc&gt;&lt;id&gt;124240&lt;/id&gt;&lt;text&gt;text&lt;/text&gt;&lt;/abc&gt;
</<ns1:parameter>    

我如何去掉呢?

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签