[Stackoverflow] [Progress OpenEdge ABL] Server socket accessing from openedge app

Status
Not open for further replies.
D

djillius

Guest
I did a server-client socket in C#. This is running on network and communicate together.

Now I have to communicate from a openedge progress app client. For connecting to my c# server, I've tried this code:

CREATE SOCKET mysocket.

ret = mysocket:CONNECT("-H 192.168.0.8 -S 5463"). /* Point 1 */

IF NOT ret THEN DO: /* Point 2 */

MESSAGE "Unable to connect to server" VIEW-AS ALERT-BOX.

END.


But my client will not connect and I receive the message "Unable to connect."

Is this possible to do or not?

Continue reading...
 
Status
Not open for further replies.
Top