AddLongstring (HttpRequest subroutine)
Add a longstring to POST data for this request (HttpRequest class)
This subroutine adds the contents of a Longstring
to the HTTP Post data that is subsequently sent on a Post
method invocation.
The contents of the passed Longstring become the post data of the request being built. Invoking this method erases any post data previously added by AddXml or AddLongString method calls. By default, the data is converted from EBCDIC to ASCII; however, this can be turned off.
Syntax
httpRequest:AddLongString( string, [xlatFlag])
Syntax terms
%httpreq | A previously defined and instantiated HttpRequest object. |
---|---|
%ls | A longstring variable. |
binflag | A numeric expression that, if nonzero, indicates binary data. Setting this option overrides the default behaviour of translating EBCDIC to ASCII. |
Usage notes
- Unlike the AddField method for example, AddLongString has no effect on the request content type.