我想通过Web服务连接API
我做过这样的事情: Integration with another system
我得到同样的错误: “基础连接已关闭:接收时发生意外错误。”
我还创建了一个新类:
Class MyTestService
Inherits SenditAPI.SendItpl
Protected Overrides Function GetWebRequest(ByVal uri As Uri) As System.Net.WebRequest
Dim webRequest As System.Net.HttpWebRequest
webRequest = CType(MyBase.GetWebRequest(uri), System.Net.HttpWebRequest)
'Setting KeepAlive to false
webRequest.KeepAlive = False
GetWebRequest = webRequest
End Function
End Class
答案 0 :(得分:2)
这似乎是配置问题。
检查 App.config 文件。 <value>...</value>
中的地址似乎不正确。