Beginner's Question - Tk and POE

2003-12-03 Thread Phillips Thomas E Contr AFMC/ITON
New to POE, so please be gentle. Using Tk and POE to write a client. Have read that there are some issues with Tk, POE and ActiveStates Perl on Win32; however, I think my problems are more basic. I am using the TkClient example from the Cookbook as the basis of my Tk interface. I have been

Re: Beginner's Question - Tk and POE

2003-12-03 Thread Dan McCormick
Hi Tom, POE uses the concept of sessions, which are similar to threads. POE::Component::Client::TCP (hereafter Poco::TCP) spawns a new session, which is distinct from the main session of the rest of your app. Each session has its own distinct heap. So, first off, wrt your application,