I am doing an app whit wxPython and XMLRPC i need that the window does an action every time the XMLRPC server has a request
How could i do it without blocking the main Window?
I tried with threads but it doesnt work also I tried calling the run method of the thread in the Frame’s constructor neither it worked
Sorry for the language
I hope to be clear
Thanks
Here’s an example of a threaded XMLRPC server using SimpleXMLRPCServer. Note the wx.CallAfter to call into the wx main thread and the “return 0” (though you can configure the server so that return values of None are OK.)