我使用fetch xml來從ms crm 2011實體中重新獲取值。 它拋出INVALID XML錯誤,XML示例在下面給出:Crm 2011抓取XMl - 無效的XML問題,如何解決?
<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='true'>
<entity name='xyz_registrationanswer'>
<attribute name='xyz_registrationid' />
<attribute name='xyz_name' />
<filter type='and'>
<condition attribute='xyz_name' operator='in' >
<value>Do you want to subscribe to 1 & 2?</value>
</condition>
</filter> <order attribute='xyz_name' descending='false' />
</entity>
</fetch>
通過invistigating問題,我發現的原因是1和2之間的&符號:
<value>Do you want to subscribe to 1 & 2?</value>
1-有人可以幫我解決這個問題嗎?
2 - 什麼是其他非法字符,所以我可以處理?
問候。