Discuss this help topic in SecureBlackbox Forum

TElXMLSOAPClient.SendMessageWithAttachments

TElXMLSOAPClient     See also     


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


Sends a SOAP message with attachments.

Declaration

[C#]
    void SendMessageWithAttachments(string PrimaryMessageID, TElHTTPMultipartList PartsList);
    void SendMessageWithAttachments(string PrimaryMessageID, string RelatedStartInfo, string RelatedType, TElHTTPMultipartList PartsList);

[VB.NET]
    Sub SendMessageWithAttachments(ByVal PrimaryMessageID As String, ByVal PartsList As TElHTTPMultipartList)
    Sub SendMessageWithAttachments(ByVal PrimaryMessageID As String, ByVal RelatedStartInfo As String, ByVal RelatedType As String, ByVal PartsList As TElHTTPMultipartList)

[Pascal]
    procedure SendMessageWithAttachments(const PrimaryMessageID : string; PartsList : TElHTTPMultipartList); overload;
    procedure SendMessageWithAttachments(const PrimaryMessageID, RelatedStartInfo, RelatedType : string; PartsList : TElHTTPMultipartList); overload;

[C++]
    void SendMessageWithAttachments(const std::string &PrimaryMessageID, TElHTTPMultipartList &PartsList);
    void SendMessageWithAttachments(const std::string &PrimaryMessageID, TElHTTPMultipartList *PartsList);
    void SendMessageWithAttachments(const std::string &PrimaryMessageID, const std::string &RelatedStartInfo, const std::string &RelatedType, TElHTTPMultipartList &PartsList);
    void SendMessageWithAttachments(const std::string &PrimaryMessageID, const std::string &RelatedStartInfo, const std::string &RelatedType, TElHTTPMultipartList *PartsList);

[PHP]
    void SendMessageWithAttachments(string $PrimaryMessageID, TElHTTPMultipartList $PartsList)
    void SendMessageWithAttachments(string $PrimaryMessageID, string $RelatedStartInfo, string $RelatedType, TElHTTPMultipartList $PartsList)

[Java]
    void sendMessageWithAttachments(String PrimaryMessageID, String RelatedStartInfo, String RelatedType, TElHTTPMultipartList PartsList);
    void sendMessageWithAttachments(String PrimaryMessageID, TElHTTPMultipartList PartsList);

Parameters

  • PrimaryMessageID - the identifier of the primary message in the multipart list.
  • PartsList - the list of message parts, including the primary message.
  • RelatedStartInfo - specifies the Start-info parameter of MIME Multipart/Related message which contains additional information for message unpacking or processing.
  • RelatedType - the value of the Type parameter of MIME Multipart/Related message.

Description

Call this method to send the SOAP message as a Multipart/Related compound to the destination URL.

See also:     SendMessage     URL    

Discuss this help topic in SecureBlackbox Forum