I have a problem launching a wxURL.GetInputStream() in a separate thread. In fact, it hangs as soon as this member is called inside a created thread. But it works very well if it called inside the main thread.
Here is the problematic source (tested under wxWindows 2.4):
#include "wx/wx.h" #include "wx/url.h"
class ThreadRecherche : public wxThread { public: virtual void * Entry(); };