将SOAP作为文本转储到文件
本文关键字:转储 文件 文本 SOAP | 更新日期: 2023-09-27 18:22:23
我有一个程序,它将数据发送到web服务并将数据存储到XML文件中。我想知道是否有一个类或方法可以捕获传播到服务的soap对象,并将其转储到文本文件中。有人能告诉我怎么做吗?
编辑1:
好的,所以在浏览了评论中发布的主题后,我编辑了我的web.config文件,如下所示:
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="XML_New.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<appSettings>
<add key="username" value="admin"/>
<add key="password" value="admin"/>
</appSettings>
<connectionStrings/>
<system.diagnostics>
<sources>
<source name="System.ServiceModel.MessageLogging">
<listeners>
<add name="messages"
type="System.Diagnostics.XmlWriterTraceListener"
initializeData="c:'logs'messages.svclog" />
</listeners>
</source>
</sources>
</system.diagnostics>
<system.serviceModel>
<diagnostics>
<messageLogging logEntireMessage="true"
logMalformedMessages="true"
logMessagesAtServiceLevel="true"
logMessagesAtTransportLevel="true"
maxMessagesToLog="420">
<filters>
<add nodeQuota="10"
xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
/soap:Envelope/soap:Header
</add>
</filters>
</messageLogging>
</diagnostics>
</system.serviceModel>
<system.web>
<compilation debug="true" >
</compilation>
<authentication mode="Forms" />
</system.web>
<applicationSettings>
<XML_New.Properties.Settings>
<setting name="XML_New_localhost_Service1" serializeAs="String">
<value>http://localhost:1689/Admin.asmx</value>
</setting>
</XML_New.Properties.Settings>
</applicationSettings>
</configuration>
该文件应该记录到c:''logs''messages.svclog,但由于某些原因,它没有。有人知道为什么吗?
在asmx服务级别,您可以使用soap扩展。此处的文档和工作示例:http://msdn.microsoft.com/en-us/library/system.web.services.protocols.soapextension.aspx.您可能可以复制粘贴整个内容,更改GetInitializer
中的转储路径,这可能只适用于您+1
您可以使用FiddlerCore拦截HTTP上的SOAP,并保存请求和响应中所需的所有数据。
http://www.fiddler2.com/fiddler/Core/