2013-10-14 76 views
1

我需要使用需要屬性i:nil=true的元素創建XML文檔。我試過<cfset StructInsert(mydoc.employee.name.XmlAttributes, "i:nil", "true")>,但它返回錯誤作業的右側不是XML節點。我想要的是:<name i:nil="true"/>XML屬性和ColdFusion中的特殊字符

XML用於調用.NET Web服務,並且DTD指定i:nil="true"是在數據庫中指示字段應該是null的方式。

回答

3

只需設置它。請勿使用structInsert。例如:

mydoc.employee.name.XmlAttributes["i:nil"] = true;