wcf – HttpContext.Current在我的Web服务中为空

前端之家收集整理的这篇文章主要介绍了wcf – HttpContext.Current在我的Web服务中为空前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个Web服务(.svc),我试图使用StackOverflow上其他地方找到的一段代码来捕获SOAP请求。

问题是HttpContext.Current是null,所以我无法访问Request.InputString。

为什么这是null,如何解决

XmlDocument xmlSoapRequest = new XmlDocument();

Stream receiveStream = HttpContext.Current.Request.InputStream;
receiveStream.Position = 0;

using (StreamReader readStream = new StreamReader(receiveStream,Encoding.UTF8))
{
    xmlSoapRequest.Load(readStream);
}

解决方法

如果你想使用HttpContext,因为代码已经写好了;您需要将其添加到您的服务所在的web.config中:
<configuration>
    <system.serviceModel>
        <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
    </system.serviceModel>
</configuration>
原文链接:https://www.f2er.com/html/233044.html

猜你在找的HTML相关文章