http://qs321.pair.com?node_id=509311


in reply to Problems reading back from socket

Is it possible that the remote server has not recognized that you've finished sending data? Have you tried issuing a more forceful method of indicating you're done via shutdown?

$sock->shutdown(1); # done writing but still open for reading

Do you have access to the remote server? Can you verify that your data is received correctly and that the remote server is actually attempting to send you data back?

-- vek --