I solved my problem with the Apache HTTP client, and got it working with OAuthClient as outlined above. I had trouble because the HTTP server was streaming a large request body back into the response body, and (I discovered) the client blocks attempting to transmit the request body before it begins receiving the response body; so the client and server deadlocked. I solved the problem by changing the server to read in the entire request body before it begins to write out the response body.
On Jan 26, 2:57 pm, John Kristian <[email protected]> wrote: > I suggest you try posting a file without using OAuth; that is using > org.apache.http.client directly. I tried it, and couldn't get it to > work. So there's something tricky about it that I don't understand. > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "OAuth" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/oauth?hl=en -~----------~----~----~----~------~----~------~--~---
