获取 java.lang.RuntimeException:上传文档时无法完成 HTTP 请求
当我尝试使用 com.google.gdata.client.docs.DocsService 上传文档时出现超时错误,
这是我正在使用的代码:
DocumentListEntry documentEntry = new DocumentEntry();
documentEntry.setTitle(new PlainTextConstruct("new document"));
documentEntry.setMediaSource(new MediaByteArraySource(out.toByteArray(), mimeType));
DocumentListEntry uploadedEntry = service.insert(new URL("https://docs.google.com/feeds/default/private/full/"), documentEntry); <-- timeout at this point.
获取时超时: https://docs.google.com/feeds/default/private/full/
我正在使用应用程序引擎 sdk 在调试模式下运行应用程序蚀。
I am getting timeout error while I am trying to upload document using com.google.gdata.client.docs.DocsService
here is the code I am using:
DocumentListEntry documentEntry = new DocumentEntry();
documentEntry.setTitle(new PlainTextConstruct("new document"));
documentEntry.setMediaSource(new MediaByteArraySource(out.toByteArray(), mimeType));
DocumentListEntry uploadedEntry = service.insert(new URL("https://docs.google.com/feeds/default/private/full/"), documentEntry); <-- timeout at this point.
Timeout while fetching: https://docs.google.com/feeds/default/private/full/
I am running application in debug mode using app engine sdk in eclipse.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是一个很老的帖子,但只是在回答另一个问题时看到的。我希望你现在已经解决了。
如果没有,那么您的服务是否已通过身份验证,您是否能够创建一个简单的文档,例如
I think it is a very old thread, but just saw it while replying another question. I hope you have resolved it by now.
If not, then is your service authenticated and are you able to create a simple document e.g.