以文本方式查看主题 - 中文XML论坛 - 专业的XML技术讨论区 (http://bbs.xml.org.cn/index.asp) -- 『 DOM/SAX/XPath 』 (http://bbs.xml.org.cn/list.asp?boardid=11) ---- [求助]紧急求助!!!!关于用C#编辑XML的问题!!! (http://bbs.xml.org.cn/dispbbs.asp?boardid=11&rootid=&id=12681) |
-- 作者:tonydong1983 -- 发布时间:12/9/2004 8:28:00 PM -- [求助]紧急求助!!!!关于用C#编辑XML的问题!!! 小弟近来做一个Project,用.NET做一个Web Serve。。。需要用C#连接XML数据文件。。。代码在下面,其中XmlDocument.Load()这个Method,没有任何Exception,但就是Loading失败,支使整个Web服务不能用。。。 请各位高手指导指导。。。小弟先谢了。。。 using System; namespace TalentPoolService private const String m_XmlFile = "profiles.xml"; public TalentPoolService() #region 组件设计器生成的代码 //Web 服务设计器所必需的 /// /// #endregion // WEB 服务示例 [WebMethod] XmlTextReader textReader = new XmlTextReader(m_XmlFile); xmlDocument.Load(reader); textReader.Close(); XmlElement newProfile = xmlDocument.CreateElement("Profile"); XmlElement nameEle = xmlDocument.CreateElement("Name"); XmlElement addressEle = xmlDocument.CreateElement("Address"); XmlElement postcodeEle = xmlDocument.CreateElement("Postcode"); XmlElement sizeEle = xmlDocument.CreateElement("Size"); XmlElement compeEle = xmlDocument.CreateElement("Competence"); xmlDocument.DocumentElement.AppendChild(newProfile); XmlTextWriter textWriter = new XmlTextWriter(m_XmlFile, System.Text.Encoding.UTF8); return success; |
W 3 C h i n a ( since 2003 ) 旗 下 站 点 苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》 |
31.250ms |