使用TIdHTTP发布的JSON数据。未收到

时间:2013-07-25 14:56:58

标签: json delphi http delphi-xe2

我无法让我的服务器应用程序正确接收任何内容。

使用设计时TIdHTTP组件的发件人代码,具有属性
Request.Accept = text / html,* / *

procedure TFrmTTWebserviceTester.Button1Click(Sender: TObject);
var
   lJSO : ISuperObject;
   lRequest: TStringStream;
   lResponse: String;
begin
  lJSO := SO('{"name": "Henri Gourvest", "vip": true, "telephones": ["000000000", "111111111111"], "age": 33, "size": 1.83, "adresses": [ { "adress": "blabla", "city": "Metz", "pc": 57000 }, { "adress": "blabla", "city": "Nantes", "pc": 44000 } ]}');
  lRequest := TStringStream.Create(lJSO.AsString,TEncoding.UTF8);   // or ASCII
//  showmessage(lRequest.DataString);  Correct data
  IdHTTP.Request.ContentType := 'application/json';
//  idHTTP.Request.Charset := 'utf-8';
  lResponse := IdHTTP.Post('http://localhost:8085/ttposttest',lRequest);
//  ShowMessage(lResponse.dataString);
  lRequest.Free;
  lJSO := nil;
end;

Receiver是TWebModule上的TWebAction,为MethodType mtPost(或mtAny)设置处理程序:

procedure TWebModuleWebServices.WebModuleWebServicesTTPostTestAction(
  Sender: TObject; Request: TWebRequest; Response: TWebResponse;
  var Handled: Boolean);
var S: String;
begin
   S := Request.Query;
   Handled := true;
end; { WebModuleWebServicesTTPostTestAction }

Request.Query为空 所有VCL应用程序。我看过these SO posts和其他许多人,但必须忽视某些内容......

TIA,Jan

1 个答案:

答案 0 :(得分:0)

TWebRequest.Query属性返回您未发送任何URL查询字符串。这就是为什么它是空白的。您可以从POSTTWebRequest.Content媒体资源中访问TWebRequest.RawContent数据。