AddLongstring (HttpRequest subroutine): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 8: Line 8:
being built.
being built.
Invoking this method erases any post data previously
Invoking this method erases any post data previously
added by <var>[[AddXML (HttpRequest subroutine)|AddXML]]</var>
added by <var>[[AddXml (HttpRequest subroutine)|AddXml]]</var>
or <var>AddLongString</var> method calls.
or <var>AddLongString</var> method calls.
By default, the data is converted from
By default, the data is converted from

Revision as of 20:28, 16 June 2011

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.

See also