我正在尝试使用来自我们第三方网络服务之一的网络方法到我的 vb.net 代码中,以使用他们的 .net API 检索信息。
当我尝试
Dim records() As WEB_API.DBRecord
records = api.GetView(guid, viewid, dbid, offset, 10000)
我从 webservice(SOAP) 得到错误说:
System.Web.Services.Protocols.SoapHeaderException: Allowed memory size of 157286400 bytes
exhausted (tried to allocate 10528769 bytes)
at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage
message, WebResponse response, Stream responseStream, Boolean asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
at comp.WEB_API.XYZ.GetView(String db_guid, Int32 view_db, Int32 space_id, Int32 offset, Int32 count)
我有什么需要解决的吗?你认为是什么原因。让我知道如何解决此问题。谢谢。