Google Docs SSL error

* Fixed SSL required error that has appeared recently.
  * Google seemingly no longer supports non secure access to GDoc API.
  * Default URL's fixed up.



git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@31107 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Roy Wetherall
2011-10-11 01:42:06 +00:00
parent a866be929e
commit 916ef0cc06
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ googledocs.googleeditable.enabled=false
googledocs.application.name=Alfresco ECM system
# Google docs URL
googledocs.url=http://docs.google.com/feeds/default/private/full
googledocs.url=https://docs.google.com/feeds/default/private/full
googledocs.downloadurl=https://docs.google.com/feeds/download
# System google docs authentication credentials

View File

@@ -108,7 +108,7 @@ public class GoogleDocsServiceImpl extends TransactionListenerAdapter
private boolean enabled = false;
/** GoogleDoc base feed url */
private String url = "http://docs.google.com/feeds/default/private/full";
private String url = "https://docs.google.com/feeds/default/private/full";
private String downloadUrl = "https://docs.google.com/feeds/download";
private String spreadsheetDownloadUrl = "https://spreadsheet.google.com/feeds/download";