I'm attempting to use the FFWinPlugin plugin to access webdav content from google chrome or firefox. The webdav server uses ITHit webdavsystem.
The problem is that, whilst it works initially, after refreshing the web page all further calls to EditDocument fail with no error - the webdav request simply isn't made. This affects all subsequent calls to any webdav server from any web page. The browser needs to be restarted (or, in the case of chrome, the "Microsoft Office 2013" plugin task can be killed) to recover.
Example code as follows:
<script>
function test() {
var sharepoint = document.getElementById("winFirefoxPlugin");
sharepoint.EditDocument(getLocationRoot() + "/word.docx");
}
function getLocationRoot() {
return location.protocol + '//' + location.hostname + (location.port ? ':' + location.port : '');
}
</script>
<object id="winFirefoxPlugin" type="application/x-sharepoint" width="0" height="0" style="visibility:hidden;"></object>
<button onclick="test()">test</button>
I am testing this with Office 2013 using firefox version 20.0.1 and chrome version 27.0.1453.93m.
Using the OpenDocuments control on IE works without issues.
I do not have sharepoint server to test against. Can anyone confirm/deny it has the same problem with that?
Has anyone come across this problem and/or have a solution to it? Seems to me this is a problem with the Microsoft plugin.