BigDaddyDrew
Member
- Joined
- Jun 24, 2004
- Messages
- 6
Im writing a client/server architecture that is aimed at working across domains. I started by using an HttpChannel over port 80, with the goal of makeing my server a remote object which my client can make remote procedure calls to. Unfortunatly, this didnt work across the domains. (errors about not being able to connect, etc.)
Then I just decided to try out a simple TcpListener/TcpClient connection, with the server listening on port 80. I tried to point the TcpClient at the server machines IP and port 80, but again, connection problems.
Anyone have advice on how to get this to work? Am I approaching it wrong? The end goal is to be able to invoke functions on the server side, and receive return values. The server will run as an NTService...
Thanks!
Then I just decided to try out a simple TcpListener/TcpClient connection, with the server listening on port 80. I tried to point the TcpClient at the server machines IP and port 80, but again, connection problems.
Anyone have advice on how to get this to work? Am I approaching it wrong? The end goal is to be able to invoke functions on the server side, and receive return values. The server will run as an NTService...
Thanks!