Hi
I have a strange problem.
I have a application that can receive instruction from console app, this works well in windows 32/64bit.
On mac, when I run the 'server' app crashes with : raised exception class :'EInOutError\x10' with message Invalid File Handle.
I have traced the error to IPCSErver.Message procedure.
The Code I have that read the message in a timer is
if ((my_ipcserver_running=true) and (My_IPCServer.Active) and (My_App_Started)) then
begin
If My_IPCServer.PeekMessage(2,false) then
begin
My_IPCServer.ReadMessage; <-- This is what fires the error.
end;
end;
I am wondering if the IPCServer is usig temp files for messages; if it is; is it likely that you will not be able to run from within a bundle.
Has anyone else had a similar problem.
Josh