使用global.asax或Ihtmodule记录Xml

本文关键字:记录 Xml Ihtmodule global asax 使用 | 更新日期: 2023-09-27 18:27:27

在web服务中,我需要记录每一个请求,这些请求都是xml形式的。问题是,每当我试图将数据记录到一个文本文件中时,我都会得到一些xml字符的unicode值(我想是这样)。你能帮我写正确的课文吗。截至目前,我的XMl文件如下所示:

<?xml version="1.0" encoding="utf-8" ?>
  <Fields>
    <Field>
      <DealeCode>C001</DealeCode>
      <IMEI>158518121</IMEI>
      <DealerName>Mohan Sales</DealerName>
      <UploadDate>17/10/2014</UploadDate>
    </Field>
  </Fields>
  System.IO.StreamReader reader = new System.IO.StreamReader(HttpContext.Current.Request.InputStream);
  string bodyText = reader.ReadToEnd();
  reader.BaseStream.Seek(0, System.IO.SeekOrigin.Begin);
  System.IO.File.WriteAllText(@"D:'LogFile.txt", bodyText);

下面是我的日志文件在编写xml之后的样子。

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Body>
    <HelloWorld xmlns="http://tempuri.org/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
    <xmlData>
      <?xml version="1.0" encoding="utf-8" ?>
        <Fields>
          <Field>
            <DealeCode>C001</DealeCode>    
            <IMEI>158518121</IMEI>    
            <DealerName>Mohan Sales</DealerName>    
            <UploadDate>17/10/2014</UploadDate>  
          </Field>  
        </Fields>
      </xmlData>
    </HelloWorld>
  </s:Body>
</s:Envelope>

然而,当我试图使用XDocument保存日志文件时,它会显示非法字符。请在这里帮忙。

使用global.asax或Ihtmodule记录Xml

好吧,我的日志文件输出已经被审查者更改了——如果网站在发布文件时已经询问了这个问题,他似乎不应该这么做,我故意做了那个未匹配的xml,因为这是我的实际结果。

为了说明这一点,我得到了以下字符&lt;&gt;&XlgD;等等。