TEST_RTS_AND_POST
The TEST_RTS_AND_POST verb allows an application, typically a 5250 emulator, to request asynchronous notification when a partner TP requests send direction. It is not supported on Microsoft® MS-DOS® platforms.
The following structure describes the verb control block used by the TEST_RTS_AND_POST verb.
struct test_rts {
unsigned short opcode;
unsigned char opext;
unsigned char reserv2;
unsigned short primary_rc;
unsigned long secondary_rc;
unsigned char tp_id[8];
unsigned long conv_id;
unsigned char reserv3;
unsigned long handle;
};
Members
-
opcode
-
Supplied parameter. Specifies the verb operation code, AP_B_TEST_RTS_AND_POST.
-
opext
-
Supplied parameter. Specifies the verb operation extension, AP_BASIC_CONVERSATION.
-
primary_rc
-
Returned parameter. Specifies the primary return code set by APPC at the completion of the verb. The valid return codes vary depending on the APPC verb issued. See Return Codes for valid error codes for this verb.
-
secondary_rc
-
Returned parameter. Specifies the secondary return code set by APPC at the completion of the verb. The valid return codes vary depending on the APPC verb issued. See Return Codes for valid error codes for this verb.
-
tp_id
-
Supplied parameter. Identifies the local TP. The value of this parameter was returned by TP_STARTED in the invoking TP or by RECEIVE_ALLOCATE in the invoked TP.
-
conv_id
-
Supplied parameter. Provides the conversation identifier. The value of this parameter was returned by ALLOCATE in the invoking TP or by RECEIVE_ALLOCATE in the invoked TP.
-
handle
-
Supplied parameter. On Microsoft® Windows NT® and Microsoft® Windows® 95 this field provides the event handle to set. On Windows 3.x, this field provides the Windows handle to receive the completion message. On OS/2, this field provides the address of the semaphore APPC is to clear when the asynchronous operation is finished.
Return Codes from Initial Verb
-
ap_ok
-
Primary return code; the verb executed successfully. Note particularly that a return code of AP_OK from the initial verb does not indicate that REQUEST_TO_SEND verb received from the partner TP. It simply indicates that the facility to receive asynchronous notification has been registered.
-
ap_unsuccessful
-
Primary return code; request-to-send notification has not been received.
-
ap_parameter_check
-
Primary return code; the verb did not execute because of a parameter error.
-
ap_bad_conv_id
-
Secondary return code; the value of conv_id did not match a conversation identifier assigned by APPC.
-
AP_BAD_TP_ID
-
Secondary return code; the value of tp_id did not match a TP identifier assigned by APPC.
-
AP_INVALID_SEMAPHORE_HANDLE
-
Secondary return code, the value of handle was invalid.
-
ap_comm_subsystem_abended
-
Primary return code; indicates one of the following conditions:
-
The node used by this conversation encountered an ABEND.
-
The connection between the TP and the PU 2.1 node has been broken (a LAN error).
-
The SnaBase at the TP's computer encountered an ABEND.
The system administrator should examine the error log to determine the reason for the ABEND.
-
ap_comm_subsystem_not_loaded
-
Primary return code; a required component could not be loaded or has terminated while processing the verb. Thus, communication could not take place. Contact the system administrator for corrective action.
When this return code is used with ALLOCATE, it may indicate that no communications subsystem could be found to support the local LU. (For example, the local LU alias specified with TP_STARTED is incorrect or has not been configured.) Note that if lu_alias or mode_name is fewer than eight characters, you must ensure that these fields are filled with spaces to the right. This error is returned if these parameters are not filled with spaces, since there is no node available that can satisfy the ALLOCATE request.
When ALLOCATE produces this return code for a Microsoft® SNA Server Client system configured with multiple nodes, there are two secondary return codes as follows:
-
0xf0000001
-
Secondary return code; no nodes have been started.
-
0xf0000002
-
Secondary return code; at least one node has been started, but the local LU (when TP_STARTED is issued) is not configured on any active nodes. The problem could be either of the following:
· The node with the local LU is not started. |
· The local LU is not configured. |
-
ap_conversation_type_mixed
-
Primary return code; the TP has issued both basic and mapped conversation verbs. Only one type can be issued in a single conversation.
-
ap_invalid_verb_segment
-
Primary return code; the VCB extended beyond the end of the data segment.
-
ap_stack_too_small
-
Primary return code; the stack size of the application is too small to execute the verb. Increase the stack size of your application.
-
ap_conv_busy
-
Primary return code; there can only be one outstanding conversation verb at a time on any conversation. This can occur if the local TP has multiple threads, and more than one thread is issuing APPC calls using the same conv_id.
-
ap_thread_blocking
-
Primary return code; the calling thread is already in a blocking call.
-
ap_unexpected_dos_error
-
Primary return code; the operating system has returned an error to APPC while processing an APPC call from the local TP. The operating system return code is returned through the secondary_rc. It appears in Intel byte-swapped order. If the problem persists, consult the system administrator.
Return Codes from Asynchronous Completion
-
ap_ok
-
Primary return code; the request-to-send notification has been received from the partner TP.
-
AP_CANCELLED
-
The outstanding TEST_RTS_AND_POST verb has been terminated. This will occur if the underlying conversation has been deallocated or an AP_TP_ENDED has been issued.
Note that as with RECEIVE_AND_POST, the TP is still responsible for correctly terminating the conversation and possibly terminating the TP. Issuing another verb, such as RECEIVE_IMMEDIATE, at this point will indicate the reason for the conversation failure.
Remarks
The conversation can be in any state except RESET when the TP issues this verb. There is no state change.
A common feature of many APPC applications, such as 5250 emulators, is a requirement to detect a partner's request to send. Currently, this can be done by polling the APPC interface to detect the partner's request. For example, an application can occasionally issue one of the following verbs:
-
TEST_RTS
-
RECEIVE_IMMEDIATE and check the rts_rcvd field
-
SEND_DATA of zero bytes, again checking the rts_rcvd field.
Some of the problems associated with this polling approach are:
-
The application must continually interrupt its main work to poll APPC.
-
The partner's request is not detected as soon as it becomes available.
-
These approaches are processor-intensive.
The TEST_RTS_AND_POST verb allows an application running on Windows NT, Windows 95, Windows 3.x, or OS/2, typically a 5250 emulator, to request asynchronous notification when the partner TP requests send direction.
An APPC application typically issues the TEST_RTS_AND_POST verb while in SEND state and then continues with its main processing. A request for send direction from the partner TP is indicated asynchronously to the application. After dealing with the partner's request, the application typically returns to SEND state, reissues TEST_RTS_AND_POST, and continues.
The TEST_RTS_AND_POST verb completes synchronously and the return code AP_OK indicates that a request for asynchronous notification has been registered. It is important to emphasize that this does not indicate that request-to-send was received from the partner TP.
When the partner's request to send is received, the asynchronous event completion occurs. It is important to note that this may be before the completion of the local TP's original TEST_RTS_AND_POST verb. This will be the case if the partner's request to send was received before the local TP's TEST_RTS_AND_POST verb was issued, or while the local TP's TEST_RTS_AND_POST verb was being processed.