On Mon, 11 Jan 2010, Itamar Lins wrote: Hi,
> I need examples of use netio. > For me newbe user, how to make server activate and client side conections. In contrib/hbnetio/utils/netiosrv.prg you have simple server code. Compile it and execute enabling RPC support and using "topsecret" as encryption key, i.e.: ./netiosrv "" "" "" 1 topsecret Then using second terminal/console window compile and execute contrib/hbnetio/tests/netiot02.prg. It's an example of NETIO client which tries to execute some functions on the server side. Look at comments in this file for more information. The server code have to be linked with MT HVM (-mt hbmk2 switch). Client code can be either MT or ST program. If you want to enable support for NETIO RPC in any program then you can simply add this line to the code: netio_mtserver( <nPort>,,, .T., <cPasswd> ) and link the program with MT HVM. It causes that the program is accepting remote connections on port <nPort> (default is 2941) and then allow to execute all functions you linked with your code on client request returning to the client function result. For more information see the ChangeLog entries. best regards, Przemek _______________________________________________ Harbour mailing list (attachment size limit: 40KB) Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour