I agree with Hitoshi. I think the problem you're having is because you're running setDoOutput(true), which would turn this into a POST request, yet our export endpoint does not support POST requests, only GETs.
I'm not sure what you mean by your conn variable remains null if you run conn.setDoOutput(true), because that statement won't cause conn to become null. Thanks, -Vic On Sat, Feb 12, 2011 at 12:37 PM, Garen Torikian <[email protected]>wrote: > Hello Hitoshi, > > If I remove conn.setDoOutput(true) then my conn variable remains null. > Keeping it n there at least provides me with a 405 response. Perhaps this is > not correct? >
