我需要使用 .net 2.0 框架而不是使用 WCF 来使用宁静的 web 服务。RESTFul 服务是在 java 中构建的,仅用于 POST 操作。为了在 .net 中使用 winforms 中的 web 服务,我使用了一个WebClient
对象。
下面是示例代码
string data="some data";
string url="some uri";
WebClient request = new WebClient();
//Application throws internal server error 500 at runtime when it hits this line.
string results = request.UploadString(url, "POST", data);
我在这里做错了什么吗?非常感谢这方面的任何帮助。