我正在尝试设置一个简单的代理服务器,我们将数据发布到我的代理服务器。代理服务器会将发布的数据转发到实际服务器并从实际服务器获取响应。然后在发出请求的网站读取的代理服务器上显示响应,并对数据执行任何操作。我在获取来自网站的原始帖子数据的第一部分时遇到了麻烦。看起来 asmx 文件总是想根据参数做事,但我的代理只想转发原始请求。它不知道参数。下面是对代理服务器的示例请求: localhost/mobile.asmx POST {"userName":"fake@email.com","password":"xxxx","appID":"2302FF64-925D-4E0E-B086- 73AA9FF152D8"}
再一次,我不想只获得用户名和密码。我想捕获完整的原始请求并将其转发到真实服务器。
我已经尝试了很多东西。因为没有请求参数我不能使用请求。我也相信 GETUSERTOKENLOGIN 函数发生在读取原始帖子数据流之后,因此我不能再使用流来获取数据。我已经尝试了很多东西。
如果可能的话,我希望这是一个超级简单的脚本。下面是我的超级简单的例子。我知道我可以在数据周围添加一个包装器,但我不想这样做。
任何帮助将不胜感激。 移动.ASMX
<%@ WebService Language="C#" Class="mobile" %>
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Web;
using System.Web.Services;
using System.Net;
using System.IO;
using System.Web.Script.Services;
using System.Text;
[WebServiceBinding(ConformsTo = WsiProfiles.None)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
[System.Web.Script.Services.ScriptService]
public class mobile : System.Web.Services.WebService
{
public mobile()
{
}
// The HelloWorld() example service returns the string Hello World.
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string GetUserTokenLogin()
{
// Create a new request to the mentioned URL.
WebRequest myWebRequest = WebRequest.Create("http://api.geonames.org/citiesJSON");
myWebRequest.Method = "POST";
Stream dataStream = myWebRequest.GetRequestStream();
WebResponse myWebResponse = myWebRequest.GetResponse();
// Print the HTML contents of the page to the console.
Stream streamResponse = myWebResponse.GetResponseStream();
StreamReader streamRead = new StreamReader(streamResponse);
Char[] readBuff = new Char[256];
int count = streamRead.Read(readBuff, 0, 256);
String FullData = "";
while (count > 0)
{
String outputData = new String(readBuff, 0, count);
FullData = FullData + outputData;
count = streamRead.Read(readBuff, 0, 256);
}
// Close the Stream object.
streamResponse.Close();
streamRead.Close();
myWebResponse.Close();
return FullData;
}
}