Server-Client Connection using Tcl/Tk

I am doing server-client connection.Please,let me know the procedure for “Opening .exe file (i,e. setup file) in Client which is located in Server?”

I’m sorry, I can’t make any sense out of your question. I don’t know what server-client connections, .exe files, and Tcl/Tk have to do with one another.

Can you tell us more about what you want to do?

David

Hi,
Thanks for your reply.

I am asking about socket programming.I have .exe
file (setup file) located in one computer,i want to
open that .exe file in another computer.In simple,I
want to send the .exe file from one computer
to another computer.

Thanks & Regards
veena

I don’t know what that has to do with sockets. Or Panda3D, for that matter.

You can write a Python program that opens a socket on one computer and listens for connections. Then you can write the other Python program that contacts the first program by opening its socket. They can send messages (bytes of data) back and forth on the socket.

What they do with those messages is up to you. You can write the first program to, say, open up a particular .exe command when it receives a certain message.

But you have to write that program in the first place. You have to have a program already running on the target computer. You can’t “use sockets” to start a program running on another computer.

David