Question Stuart Strickland · Jun 24 TCP connection problems I'm trying to open a TCP connection to a remote system. The Caché command I'm using to open the connection is OPEN "|TCP|"_PORT:(IP::"PSE"):10 where PORT is a port number in the range 40000 to 40100 and IP is a standard IPv4 addess like 10.200.100.50 the connection appears to open because $TEST becomes 1. I'm then writing to the open port with USE "|TCP|"_PORT:(::"S") WRITE "some text",*-3 It's a windows system #Caché 1 4 0 53
Question Stuart Strickland · Jul 13, 2023 $zu(96,9) Not working Suppose you have routine ^A loaded in your partition in programmer mode and you call routine ^B. Routine ^B finds the value of $ZU(96,9) which should be the calling routine. But $ZU(96,9) now returns null, as does $SYSTEM.Process.CallingRoutine() Works on 2018.1.7 but not 2018.1.8 $ROLES= %All on both systems More precisely I have line label ZZPP in ^%ZLANGC00 which needs to identify the original routine in the partition and do some work on it. When I type ZZPP I get nothing on the later version. Here's the line of code: #Caché 1 4 0 294