- 我选择一个新项目 -> WCF -> WCF 服务应用程序
- 我将解决方案发布到我的网络服务器
- 我创建一个客户端应用程序并添加对我的 Web 服务器的引用
http://mywebserver/service1.svc
- 客户端运行 GetData(1) 方法正常
一切都很好 - 到目前为止。
我将服务应用程序从:更改
Function GetData(ByVal value As Integer)
为Function GetData(ByVal value As Integer, value2 As Integer)
我再次发布解决方案
- 令我惊讶的是,客户端应用程序运行方法 GetData(1) 很好。我希望它崩溃并要求第二个参数
知道为什么它没有崩溃吗?
我已经尝试重新启动 Web 服务器服务 - 仍然没有失败。
我已经在 Web.config 中尝试过这段代码......
<caching>
<outputCache enableOutputCache="false"/>
<outputCacheSettings>
<outputCacheProfiles>
</outputCacheProfiles>
</outputCacheSettings>
</caching>
仍然没有失败。
任何想法?