获取java.lang.RuntimeException:无法在上载文档时完成HTTP请求

时间:2011-03-17 06:40:05

标签: java google-app-engine gdata-api

我在尝试使用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/

我在eclipse中使用app engine sdk在调试模式下运行应用程序。

1 个答案:

答案 0 :(得分:0)

我认为这是一个非常古老的主题,但只是在回答另一个问题时才看到它。我希望你现在已经解决了。

如果没有,那么您的服务是否经过身份验证,并且您可以创建一个简单的文档,例如

             String title = "Doc Create Test";
             DocumentListEntry newEntry = new DocumentEntry();
             newEntry.setTitle(new PlainTextConstruct(title));
             newEntry = service.insert(feedUrl, newEntry);