以下に示すように、WCFRESTサービスを呼び出そうとしています。
[WebInvoke(UriTemplate = "Login", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
public string Process(string AuthenticationInfo)
{
以下のFiddler2で以下を使用して呼び出しようとしています。
User-Agent: Fiddler
Host: localhost
content-type: application/json;charset=utf-8
content-length: 0
data: {"AuthenticationInfo": "data"}
メソッドにブレークポイントがあり、ブレークポイントにヒットしますが、AuthenticationInfoの値は常にnullであり、「データ」ではありません。
私は何が間違っているのですか?
ありがとう。