TS/MP 2.5 Pathsend and Server Programming Manual

returned value
error
INT
returns an error containing one of these values:
0 (FEOK) indicates that the call was successful and the server has ended the dialog.
70 (FEContinue) indicates that the call was successful and the server is ready for the next message
in the dialog.
233 (FESCErr) indicates that an error occurred. You can call the SERVERCLASS_SEND_INFO64_
procedure to get detailed information about the error.
inputdialog-id
INT(32):value
is an identifier, previously returned from SERVERCLASS_DIALOG_BEGINL64_, that specifies the
dialog for this send operation.
This is a mandatory parameter.
input, outputmessage-buffer
STRING:ref:EXT64:*
contains the message to be sent to the server-class. On successful completion of the send operation,
message-buffer contains the reply from the server-class.
This is a mandatory parameter.
outputreply-buffer
STRING.EXT64:ref.*
contains the reply from the server-class on successful completion of the send operation.
inputrequest-len
INT:value
is the byte length of the data contained in message-buffer. The range of acceptable values is 0
through 2097152.
This is a mandatory parameter.
inputmaximum-reply-len
INT:value
is the maximum number of bytes that the reply message from the server-class can contain. The range
of acceptable values is 0 through 2097152.
No more than maximum-reply-len bytes of the actual reply are placed into message-buffer
upon successful completion of a send.
It is not an error if the server replies with a byte count not equal to the maximum-reply-len value
specified by the requestor in the call to this procedure. If the server replies with a byte count greater
than the maximum-reply-len value, the actual bytes transferred are truncated to
maximum-reply-len.
This is a mandatory parameter.
outputactual-reply-len
INT(32).EXT64
SERVERCLASS_DIALOG_SENDL64_ Procedure 105