PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → RPC through ISDN modems
RPC through ISDN modems
Débuté par Joakim, 11 fév. 2005 16:16 - Aucune réponse
Posté le 11 février 2005 - 16:16
Here's my problem:
I've connected a pc with to an isdn modem(server) and another pc to a second isdn modem(client).I established a dial-up connection on both pcs.The server has an IP 100.100.100.1 and the client 100.100.100.1 .I started the RPC server (WDRemoteAccessServer - on the server of course) .In the RPC configuration I added my analysis (C:\My Projects\Demo_Project\Demo_Project.wdd) and a user (username "MYUSER" - password "MYPASSWORD"). In the Initialisation of my project I wrote (client):

IF HConnectRemoteAccess("100.100.100.1", "MYUSER", "MYPASSWORD", "","") = False THEN
Error("Error triggered: "+HErrorInfo())
EndProgram()
ELSE
StartMyProgram() // Procedure
END

and I keep getting the same message:

Error triggered: Unable to establish RPC connection on <100.100.100.1> with user name <MYUSER>...

I checked the WinDev8 help and I can't seem to find out what's wrong.I checked the WdRpcSrv.ini file to see if something was wrong, but all ok.
Has anyone any clue? Has anyone ever tried something similar?
The thing is when I test the same project on a LAN (both server and client - with different IPs of course) it works perfectly!!