p***n 发帖数: 635 | 1 I am using MS SQL SERVER JDBC DRIVER under Weblogic 7 to call an MS SQL Server
stored procedure. The stored procedure returns a xml string like this:
...
...
...
so far so good.
the problem comes up when there is some characters like "'" is contained in
the string, e.g.,
Let's go and have fun
Then the SP call returns some funky character which XALAN is not able to
parse.
Tried to execute the SP from SQL Server client and the result returned is
fine.
A | st 发帖数: 1685 | 2 wrap it with CDATA block or encode it with XML encoding(I prefer first way)
【在 p***n 的大作中提到】 : I am using MS SQL SERVER JDBC DRIVER under Weblogic 7 to call an MS SQL Server : stored procedure. The stored procedure returns a xml string like this: : : ... : ... : ... : : so far so good. : the problem comes up when there is some characters like "'" is contained in : the string, e.g.,
|
|