【发布时间】:2010-12-19 22:52:46
【问题描述】:
我已尝试使用以下链接中所述的 soap 扩展来实现进度报告:
但是,我的“ProgressUpdate”方法没有被调用,我相信这是因为我的 Windows Mobile 项目中没有 app.config 文件来告诉 Web 服务调用由 SOAP 扩展处理。如何在 Windows Mobile 中做到这一点?这是本文中使用的示例配置文件:
<?xmlversion="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<webServices>
<soapExtensionTypes> <add
type="SoapExtensionLib.ProgressExtension, SoapExtensionLib"
priority="1" group="High" />
</soapExtensionTypes>
</webServices>
</system.web>
</configuration>
【问题讨论】:
标签: web-services windows-mobile soap-client web-services-enhancements