I just committed a updated C++ TestClient and Server, could you test with that? https://issues.apache.org/jira/browse/THRIFT-1198
It would be great to have php TestServer within our source tree at test/php/TestServer.php so that we are be able to test interaction of C++ and PHP Client and Server -----Ursprüngliche Nachricht----- Von: Hoyoung Hwang [mailto:hwan...@gmail.com] Gesendet: Freitag, 3. Juni 2011 04:35 An: dev@thrift.apache.org Betreff: Please help, C++ client doen't work I make C++ client which use THttpClient instead TSocket * //shared_ptr<TTransport> socket(new TSocket("localhost", 9090));* * shared_ptr<TTransport> socket(new THttpClient("127.0.0.1", 80, "/php/PhpServer.php"));* * shared_ptr<TTransport> transport(new TBufferedTransport(socket));* * shared_ptr<TProtocol> protocol(new TBinaryProtocol(transport));* * CalculatorClient client(protocol);* But It return Error : "ERROR: Could not refill buffer" Actually, the first call return success, but second call is failed. The exception was thrown by "THttpTransport::refill" please help