HttpWebRequest未处理”;invalidcastexception”;将HttpWebResponse强制转
本文关键字:HttpWebResponse invalidcastexception 未处理 HttpWebRequest | 更新日期: 2023-09-27 18:26:38
我们有一个应用程序,它使用HttpWebRequest类调用远程web地址,我们通过WebRequest.Create
方法获得该类。
这是我们的实际代码:
var request = (HttpWebRequest)WebRequest.Create(uri);
request.Method = "HEAD";
request.Timeout = this.connectionTimeout;
if (this.usePipelinedConnection)
{
request.KeepAlive = true;
request.Pipelined = true;
}
request.BeginGetResponse(cb => logService.EndGetRequestStream(cb), null);
现在,以一种不确定的方式(找不到模式来复制它),我们得到以下错误:
System.InvalidCastException
无法将"System.Net.HttpWebResponse"类型的对象强制转换为"System.Exception"类型。
使用此堆栈跟踪:
在System.Net.HttpWebRequest.EndGetRequestStream(IAsyncResult-asyncResult,TransportContext&context)
在System.Net.HttpWebRequest.EndGetRequestStream(IAsyncResult-asyncResult)
在System.Net.LazyAsyncResult.Complete(IntPtr userToken)
在System.Net.ContextAwareResult.CaptureOrComplete(ExecutionContext&cachedContext,Boolean returnContext)
在System.Net.ContextAwareResult.FinishPostingAsyncOp()
在System.Net.HttpWebRequest.BeginGetResponse(AsyncCallback回调,对象状态)
有关此方法的文档报告了几个可以引发的异常,但InvalidCastException
不是其中之一,这意味着它在microsoft方法中未得到处理。我开始挖掘.Net的来源,我想我找到了罪魁祸首。在HttpWebResponse.EndGetResponseStream方法中,有这样一行:
throw (Exception) lazyAsyncResult.Result;
这是该方法中存在的唯一一个到Exception的强制转换,所以必须是它。现在,该方法的实现方式是,只有当连接流为null时,它才会到达此行,因此lazyasyncresult.Result
属性应该包含一个异常。然而,在我的情况下,到达了分支,但lazyasyncresult.Result
包含一个HttpWebResponse
,因此装箱失败,我得到了那个错误。现在我有两个考虑因素:
- 如果
lazyasyncresult.Result
的内容是正确的,它无论如何都会抛出(因为行以抛出开头),但这将是一个有意义的错误 - 与前一点相关,我认为如果我有一个HttpWebResponse,那么无论如何都不应该到达抛出的代码分支
现在我的问题很简单:我该如何防止这种情况发生?我在代码中做了一些错误的事情,或者这是MS方法中的一个明显错误?
以下是该方法的MS来源,以供参考。我添加了一些关于指控的评论。
感谢大家抽出时间。
public Stream EndGetRequestStream(IAsyncResult asyncResult, out TransportContext context)
{
if (Logging.On)
Logging.Enter(Logging.Web, (object) this, "EndGetRequestStream", "");
context = (TransportContext) null;
if (asyncResult == null)
throw new ArgumentNullException("asyncResult");
LazyAsyncResult lazyAsyncResult = asyncResult as LazyAsyncResult;
if (lazyAsyncResult == null || lazyAsyncResult.AsyncObject != this)
throw new ArgumentException(SR.GetString("net_io_invalidasyncresult"), "asyncResult");
if (lazyAsyncResult.EndCalled)
{
throw new InvalidOperationException(SR.GetString("net_io_invalidendcall", new object[1]
{
(object) "EndGetRequestStream"
}));
}
else
{
ConnectStream connectStream = lazyAsyncResult.InternalWaitForCompletion() as ConnectStream;
lazyAsyncResult.EndCalled = true;
if (connectStream == null)
{
if (Logging.On)
Logging.Exception(Logging.Web, (object) this, "EndGetRequestStream", lazyAsyncResult.Result as Exception);
// Here result contains HttpWebResponse so the cast to Exception fails.
// It would throw anyway (since there' a throw) but I think, since result contains a response
// that the code shouldn't be hitting this if branch.
throw (Exception) lazyAsyncResult.Result;
}
else
{
context = (TransportContext) new ConnectStreamContext(connectStream);
if (Logging.On)
Logging.Exit(Logging.Web, (object) this, "EndGetRequestStream", (object) connectStream);
return (Stream) connectStream;
}
}
}
我从来没有使用过这个异步任务库,如果这是一个天真的问题,请原谅我。但是你不是调用了错误的EndGetXXX函数吗?
request.BeginGetResponse(cb => logService.EndGetRequestStream(cb), null);
我不知道logService变量是什么,但它不应该调用EndGetResponse()吗?