- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了一个奇怪的问题并尝试了各种方法来让它工作。
我的 Web API 项目中有一个反向代理委托(delegate)处理程序,用于拦截对内部资源、文件等的请求,从我们的外部站点到我们 DMZ 内的内部站点...
using System;
using System.Configuration;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Formatting;
using System.Threading;
using System.Threading.Tasks;
using System.Web.Http;
namespace Resources.API
{
public class ProxyHandler : DelegatingHandler
{
protected override async Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
var routes = new[]{
"/api/videos",
"/api/documents"
};
// check whether we need to proxy this request
var passThrough = !routes.Any(route => request.RequestUri.LocalPath.StartsWith(route));
if (passThrough)
return await base.SendAsync(request, cancellationToken);
// got a hit forward the request to the proxy Web API
return await ForwardRequest(request, cancellationToken);
}
private static async Task<HttpResponseMessage> ForwardRequest(HttpRequestMessage request, CancellationToken cancellationToken)
{
//Clone the request and forward to the internal proxy site
var proxyUrl = ConfigurationManager.AppSettings["ProxyUrl"];
var baseUri = new UriBuilder(proxyUrl);
//clone the requestUri and point it at the proxy site
var forwardedUri = new UriBuilder(request.RequestUri)
{
Scheme = baseUri.Scheme,
Host = baseUri.Host,
Port = baseUri.Port
};
var forwardRequest = new HttpRequestMessage(request.Method, forwardedUri.Uri);
if (request.Method == HttpMethod.Post || request.Method == HttpMethod.Put)
{
var stream = new MemoryStream();
await request.Content.CopyToAsync(stream);
stream.Seek(0, SeekOrigin.Begin);
forwardRequest.Content = new StreamContent(stream);
//copy the content headers
foreach (var header in request.Content.Headers)
{
forwardRequest.Content.Headers.TryAddWithoutValidation(header.Key, header.Value);
}
};
forwardRequest.Version = request.Version;
foreach (var prop in request.Properties)
{
forwardRequest.Properties.Add(prop);
}
foreach (var header in request.Headers)
{
forwardRequest.Headers.TryAddWithoutValidation(header.Key, header.Value);
}
var client = new HttpClient(new HttpClientHandler(), disposeHandler: false);
var task = await Task.Factory
.StartNew(async () => await client.SendAsync(forwardRequest, HttpCompletionOption.ResponseHeadersRead,
cancellationToken),
CancellationToken.None,
TaskCreationOptions.LongRunning,
TaskScheduler.Default);
try
{
task.Wait(cancellationToken);
}
catch (Exception e)
{
return new HttpResponseMessage(HttpStatusCode.InternalServerError)
{
Content =
new ObjectContent<HttpError>(new HttpError(e, includeErrorDetail: true),
new JsonMediaTypeFormatter())
};
}
return task.Result;
}
}
}
编辑:还尝试等待和返回任务...
try
{
return await task;
}
这在 IIS Express 8.0 上运行良好,但在 Windows 7 Professional(我的开发机器)上的 IIS 7.5 或 Windows Server 2012 上的 IIS 8.0 上运行不正常。
创建的HttpClient
从未真正通过网络发送请求(由 Fiddler 检查)并最终超时并抛出 AggregateException
带着 child TaskCanceledException
.
在 task.Wait
上设置断点,我注意到,由于某种原因,断点被击中 10 次,而不是通过 IIS Express 运行时一次。
我已经尝试了各种方法来尝试让它工作,包括大量搜索 Google 和 SO,但似乎没有任何效果。
有人知道为什么会这样吗?或者可以解释我做错了什么?
最佳答案
想通了。必须更改请求中的 Host
header 才能正确发送。它实际上忽略了 RequestUri 并使用 Host
header 来决定将请求实际发送到哪里。
forwardRequest.Headers.Host = forwardRequest.RequestUri.Host;
现在工作正常,IIS 现在将适本地发送请求。仍然让我想知道为什么 IIS Express 似乎不需要更改 Host
header !
完整代码...添加了 X-Forwarded-For
和 X-Forwarded-Host
以及良好的衡量标准。
using System;
using System.Configuration;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Formatting;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Web;
using System.Web.Http;
namespace Resources.API
{
public class ProxyHandler : DelegatingHandler
{
protected override async Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
var routes = new[]{
"/api/videos",
"/api/documents"
};
// check whether we need to proxy this request
var passThrough = !routes.Any(route => request.RequestUri.LocalPath.StartsWith(route));
if (passThrough)
return await base.SendAsync(request, cancellationToken);
// got a hit forward the request to the proxy Web API
//return GetResponseFromProxy(request);
//Nicer method using HttpClient - but it doesn't work on IIS!
return await ForwardRequest(request, cancellationToken);
}
private static async Task<HttpResponseMessage> ForwardRequest(HttpRequestMessage request, CancellationToken cancellationToken)
{
//Clone the request and forward to the internal proxy site
var proxyUrl = ConfigurationManager.AppSettings["ProxyUrl"];
var baseUri = new UriBuilder(proxyUrl);
//clone the requestUri and point it at the proxy site
var forwardedUri = new UriBuilder(request.RequestUri)
{
Scheme = baseUri.Scheme,
Host = baseUri.Host,
Port = baseUri.Port
};
var forwardRequest = new HttpRequestMessage(request.Method, forwardedUri.Uri);
if (request.Method == HttpMethod.Post || request.Method == HttpMethod.Put)
{
var stream = new MemoryStream();
await request.Content.CopyToAsync(stream);
stream.Seek(0, SeekOrigin.Begin);
forwardRequest.Content = new StreamContent(stream);
//copy the content headers
foreach (var header in request.Content.Headers)
{
forwardRequest.Content.Headers.TryAddWithoutValidation(header.Key, header.Value);
}
};
forwardRequest.Version = request.Version;
foreach (var prop in request.Properties)
{
forwardRequest.Properties.Add(prop);
}
foreach (var header in request.Headers)
{
forwardRequest.Headers.TryAddWithoutValidation(header.Key, header.Value);
}
// Don't forget to change the Host header to refer to the proxy
forwardRequest.Headers.Host = forwardRequest.RequestUri.Host;
//Add the relevant X-Forwarded headers
var xForwardedHost = request.Headers.Host;
forwardRequest.Headers.Add("X-Forwarded-Host", xForwardedHost);
var xForwardedFor = HttpContext.Current.Request.UserHostAddress;
forwardRequest.Headers.Add("X-Forwarded-For", xForwardedFor);
var client = new HttpClient(new HttpClientHandler(), disposeHandler: false);
try
{
return await client.SendAsync(forwardRequest, HttpCompletionOption.ResponseHeadersRead,
cancellationToken);
}
catch (Exception e)
{
return new HttpResponseMessage(HttpStatusCode.InternalServerError)
{
Content =
new ObjectContent<HttpError>(new HttpError(e, includeErrorDetail: true),
new JsonMediaTypeFormatter())
};
}
}
}
}
关于c# - HttpClient 从不在 IIS 上发送请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33014188/
我看到很多人发布关于 NullInjectorError: No provider for HttpClient! 的问题但是我在 Karma 单元测试中遇到了更具描述性的错误。我一直在学习 Angu
全部, 我创造: public static final HttpClient DEFAULT_HTTPCLIENT = HttpClients .createDefault(); f
我正在使用 HttpClient fluent api 编写验收测试,但遇到了一些麻烦。 @When("^I submit delivery address and delivery time$")
有人可以分享如何配置现代 HttpClient 4.5.3 以重试失败的请求并在每次重试前等待一段时间吗? 到目前为止,我似乎正确理解了 .setRetryHandler(new DefaultHtt
我在使用 java 中的 HttpClient 库时遇到问题。 目标网站在 SSL ( https://www.betcris.com ) 上,我可以从该网站加载索引页面就好了。 但是,显示不同运动赔
所以我的应用涉及大量网络调用(可能连接到 10 个不同的服务器)和获取数据。从我读过的几篇文章中,建议重用 HTTPClient 实例,因为它可以防止资源(套接字等)的浪费。但是我发现围绕可扩展且健壮
我正在调用一个外部 API,并希望我的 API 可以进行单元测试。为此,我正在尝试包装 HttpClient。我现在只需要一种方法。 这是我的界面。 public interface IHttpCli
出于调试目的,我希望看到将要发送的原始请求。有没有一种方法可以直接从 HttpPost 或 HttpClient 的API中获得没有HTTP监视器的信息? 我发现了一些“几乎”重复的问题,但不是针对这
我正在尝试在小型 WebAssemply 应用程序(使用 .NET 5 创建)中测试 HttpClient。program.cs 包含以下语句来添加 HttpClient 服务: builder.Se
我在 Application_Start 事件中创建了 HttpClient 的单个实例,以便在 Global.asax.cs 中的应用程序中重用 应用程序启动中的代码: protected
我对此有点新手...基本上我需要运行一个脚本来从谷歌趋势下载.csv 文件。我按照这个reference写了下面的代码,代码如下: HttpClient client = new Defau
我正在尝试实现一个基本的 1 spout - 1 bolt Storm 拓扑。我有一个 Storm Bolt,可以使用 Apache HttpClient (4.3.1) 发出 HTTP 请求。但是,
我正在尝试在我的 Xamarin.Forms 移动应用程序中使用 HttpClient 创建网络服务层。 没有单例模式 单例模式 在第一种方法中,我在每个新请求中创建新的 http 客户端对象通过移动
在下面的示例中,我创建了一个 Java 11 httpClient,然后创建了多个并发 HttpRequest。 这是不好的做法吗? 每个 HttpRequest 都应该有自己的 HttpClient
我正在开发一个 Drupal 8 自定义模块。我在任何节点类型中都有两个字段(url 和文本 html 字段)。这是该模块所期望的功能: 该模块将抓取“url字段”的页面并复制html代码以将它们粘贴
我正在为 httpclient 使用 apache httpcompnonents 库。我想在多线程应用程序中使用它,其中线程数会非常高,并且会有频繁的 http 调用。这是我用来在执行调用后读取响应
最近我将我的代码库从 .net core 1.0 迁移到 2.0 。之后,我随机收到错误 “使用 System.Net.Http.HttpClient 时服务器返回无效或无法识别的响应错误”。我在 1
我有该代码: while(!lastPage && currentPage < maxPageSize){ StringBuilder request = new Strin
我的应用程序使用 Apache HTTPClient 4.3.5 发送 HTTP 请求并获得响应。 我想弄清楚应用程序收到了什么响应。 以下是日志片段- [Jan 04 2015 05:38:14.1
如何从 HttpClient 类型的现有对象获取 cookie? 我正在使用 HttpClient 版本 4.3.3,它不再有方法 httpClient.getCookieStore() 了。 最佳答
我是一名优秀的程序员,十分优秀!