0

我正在尝试向在 IIS7 .NET Framework 4.0 上运行的用 C# 编写的 WCF Web 服务创建 POST 请求。

Web 服务适用于 GET 请求,但我似乎无法让 POST 方法正常工作。一些背景是,在不得不切换到 .NET 之前,我将 PHP 用于服务器端。

我在 iOS 中的请求代码:

NSArray *jsonKeys = [NSArray arrayWithObjects:@"zip", nil];
NSArray *jsonValues = [NSArray arrayWithObjects: zipcode, nil];
NSDictionary *jsonDict = [NSDictionary dictionaryWithObjects:jsonValues forKeys:jsonKeys];

NSData *jsonData = [NSJSONSerialization dataWithJSONObject:jsonDict options:0 error:nil];
NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
NSLog(@"%@", jsonString);

NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"%@/weather", ConnectionString3]];
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];

    [request setHTTPMethod:@"POST"];
    [request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
    [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
    [request setValue:[NSString stringWithFormat:@"%d", [jsonData length]] forHTTPHeaderField:@"Content-Length"];
    [request setHTTPBody:jsonData];

WCF Web 服务的 C# 代码:

[OperationContract]
[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = "/weather")]
List<Weather> GetWeatherMethod(string zip);

我在 iOS 端记录了响应,该响应显示来自服务器的 XML 响应,表明发生了错误,并检查了服务器端日志,我似乎找不到任何问题。任何帮助,将不胜感激。

只有从我能找到的服务器的日志中读取:

(Date and Time) (Server IP) POST /PeopleService/PeopleService.svc/weather - 80 - (local app ip) AppName/1.0+CFNetwork/609+Darwin/11.4.2 400 0 0 0
4

2 回答 2

0

能够通过创建一个 JSON 映射到它的类来解决问题。

[OperationContract]
[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = "/weather")]
List<Weather> GetWeatherMethod(ZipCodeJSON zipJson);

[DataContract]
public class ZipCodeJSON
{
    [DataMember]
    public string zip { get; set; }
}
于 2013-01-10T21:09:55.703 回答
0

问题是您将操作的主体样式声明为Bare,但是您发送的是您希望参数接收的数据,该数据包含在参数名称中。

如果您将操作声明为

[OperationContract]
[WebInvoke(Method = "POST",
           RequestFormat = WebMessageFormat.Json, 
           ResponseFormat = WebMessageFormat.Json, 
           BodyStyle = WebMessageBodyStyle.WrappedRequest,
           UriTemplate = "/weather")]
List<Weather> GetWeatherMethod(string zip);

您可以根据需要发送请求正文{"zip":"30309"}

于 2013-01-10T21:55:28.697 回答