Im really stumped. Im using the wxHTTP class in wxWidgets to try and download two files. The first request succeeds but the second one fails when wxHTTP->GetInputStream is called. Between downloads, the wxInputStream from the first call is freed. Any ideas?

Edit - Here is some pseudocode:

wxHTTP * http = new wxHTTP();
// connect to www.example.com
wxInputStream* in = http->GetInputStream(wxT("page"));
// read data
delete in;
// repeat last two lines with new url
link|improve this question

Why don't you post a minimal example that fully reproduces your problem? – Mark Rushakoff Nov 11 '09 at 3:50
How does it "fail"? – Jim Garrison Nov 11 '09 at 4:37
The GetInputStream returns NULL. – George Edison Nov 11 '09 at 6:05
feedback

1 Answer

up vote 0 down vote accepted

Short answer? It's usually easier to use wxCurl or Boost's asio functions to do this kind of thing. wxHTTP has bitten me a few times...

link|improve this answer
I'm beginning to find that out. – George Edison Dec 6 '09 at 23:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.