控制台应用程序 (.NET) 中的 SOAP 请求超时
我将 SOAP Web 服务添加到控制台应用程序中,每次我进行特定调用时都会超时。 其他电话工作正常。 如何增加控制台应用程序中的超时长度? 目前好像是90秒左右。
谢谢。
I have a SOAP web service added to a console app and every time I make a specific call its timing out on me. Other calls work fine. How do I increase the timeout length in a console app? Seems like it's currently about 90 seconds.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过设置 超时 属性。 默认值为 100000 毫秒(100 秒)。
例如:
You can set the web service client timeout by setting the Timeout property. The default is 100000 milliseconds (100 seconds).
For example:
这应该允许您更改超时,然后验证它是否已更改。
This should allow you to change the timeout and then verify that it has been changed.