Discuss this help topic in SecureBlackbox Forum

TElXMLSOAPClient.ProcessReply

TElXMLSOAPClient     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Processes received raw data reply.

Declaration

[C#]
    void ProcessReply(int AHTTPStatusCode, System.IO.Stream AResponseStream);

[VB.NET]
    Sub ProcessReply(ByVal AHTTPStatusCode As Integer, ByVal AResponseStream As System.IO.Stream)

[Pascal]
    procedure ProcessReply(AHTTPStatusCode : Integer; AResponseStream : TElStream); overload;

[C++]
    void ProcessReply(int32_t AHTTPStatusCode, TStream &AResponseStream);
    void ProcessReply(int32_t AHTTPStatusCode, TStream *AResponseStream);

[PHP]
    void ProcessReply(integer $AHTTPStatusCode, TStream $AResponseStream)

[Java]
    void processReply(int AHTTPStatusCode, TElStream AResponseStream);

Parameters

  • AHTTPStatusCode - the HTTP status code returned by the server.
  • AResponseStream - a stream containing the server's response.

Description

Use this method to parse the reply received from server.

See also:     SendMessage     HTTPStatusCode    

Discuss this help topic in SecureBlackbox Forum