0

クライアントが Xml にアクセスすると、特殊文字が原因で例外が発生しますここに画像の説明を入力

誰でも私を助けることができますか...?

4

4 に答える 4

1

CDATA特殊文字がセクションで囲まれていることを確認する必要があります。

<![CDATA[
some special characters here
]]>
于 2013-01-03T11:50:15.130 に答える
1

正しいエンコーディングを設定し、XML ドキュメントが同じエンコーディングで作成されていることを確認する必要があります。

<?xml version="1.0" encoding="INSERT ENCODING HERE"?>
于 2013-01-03T12:28:35.923 に答える
0

I have found my mistake in my case while opening/reading the XML i'm getting the error because of three symbols. So need to replace the Character: <>& by EntityName: &lt;&gt;&amp;. Then only the parsing error will not be displayed.

Click Here to see HTML Symbol Entities Reference

Click Here to Read XML Basic Generation

In other scenario instead symbols the Entity names need to be replaced then only parsing exception will not be displayed.

于 2013-01-03T12:50:11.460 に答える
0

XML の特殊文字を XPL に含めることができます。XPL は XML とまったく同じように構造化されていますが、特殊文字を使用できます。XPL から XML への変換ユーティリティがすべての詳細を処理します。http://hll.nu

于 2015-11-10T16:57:55.010 に答える