JavaScript must be enabled in order to use this site.Please enable JavaScript in your browser and refresh the page. getCallType Declaration CallType getCallType(S7RClientSSjToken token) . Purpose This method gets "CallType" value from the previously received Substation ES TCP data input: TCI_CALL_NONE, TCI_CALL_AUTH, TCI_CALL_WEBUI, TCI_CALL_SERVICE, TCI_CALL_RESPONSE, TCI_CALL_REQUEST, TCI_CALL_REQUEST_CONF Parameters Parameter Description token The S7RClientSSjToken returned by Connect method. Return The method returns the following values: TCI_CALL_NONE means not set TCI_CALL_AUTH means authorization request - validate user request to host TCI_CALL_WEBUI means WebUI request TCI_CALL_SERVICE means service request - registration to Host TCI_CALL_REQUEST means response - message to Host Example S7RClientSSj conn = new S7RClientSSj(); S7RClientSSjToken token = conn.Connect(url, userid, password); byte[] dataIn = conn.receiveWait(token); if (dataIn != null) { CallType callType = conn.getCallType(token); } conn.Disconnect(token); Copyright © 2020. Cloud Software Group, Inc. All Rights Reserved.