I am having a similar problem to MicrosoftOfficeEditDocument didn't work in Chrome.
I did download the updated library as said in the answer and it works fine with Office 2013 but not with 2010. With Office 2010, I have some files that open and some that don't, they are not always the same ones. I tried with .doc, .docx, .ppt, .pptx, .xls and .xlsx.
I call the edit document fonction with :
ITHit.WebDAV.Client.DocManager.EditDocument(sDocumentUrl, javaAppletFilePath);
EDIT :
It actually seems to be a problem of length of file url. When my file url (sDocumentUrl) is longer than the length of my script url in which I call EditDocument it works perfectly fine. But when it is shorter, the end of the script url is added after sDocumentUrl which makes the call fail. And this only happens with Chrome and Office 2010.
Any way to make this work ?
Add
'\0'
to the end of the URLAdd a
'\0'
(null) to the end of the string you are passing toMicrosoftOfficeEditDocument()
. LikeMicrosoftOfficeEditDocument(path + '\0');
. Also, you should useMicrosoftOfficeEditDocument()
instead ofEditDocument()
becauseEditDocument()
will try to callJavaEditDocument()
because of the null terminated string.This is a solution taken from here - https://code.google.com/p/chromium/issues/detail?id=269183#c5
For more info - opening webdav files in Chrome via the Office Authorization plug-in for NPAPI browsers fails for certain files
Check for ActiveX first
However, you should not add the
'\0'
to the path whenMicrosoftOfficeEditDocument()
will open the document via the SharePoint.OpenDocument ActiveX object or else the ActiveX plugin will not recognize the file format via extension and try to open the document viaundefined:ofe|u|
instead ofms-word:ofe|u|
for example. To do this you should check for ActiveX before appending the'\0'
.Warning: this solution breaks
MicrosoftOfficeEditDocument
in Firefox. Firefox does not like the\0
terminated string.