Reputation: 145
We are trying to implement a WOPI host without using CobaltCore dll against our Office Web Apps server. (implement in Java). All the information I found suggests that you have to implement MS-FSSHTTP in order to edit Word documents.
But, this is what I found on this page: Integrating with Office Online
Integrating with Office Online is relatively simple. You just need to do some HTML and JavaScript work, and set up a few simple REST endpoints. If you are familiar with existing Office protocols, note that you don’t have to implement the [MS-FSSHTTP]: File Synchronization via SOAP over HTTP Protocol (Cobalt)
There is also a sample implementation here
But I cannot get this to work when hitting our Office Web Apps Server (the header X-WOPI-Override equals to COBALT for Word docs).
Upvotes: 4
Views: 1589
Reputation: 145
It looks like the document/page I referred to in my question is referring to the Office Online Server... which is a replacement of the Office Web Apps Server.
I downloaded the Preview of the Office Online Server here
When you compare the discovery.xml from both versions, the Word docx edit requirements are different:
Office Web Apps Server:
<action name="edit" ext="docx" requires="locks,cobalt,update"
Office Online Server:
<action name="edit" ext="docx" requires="locks,update"
I was able to implement Word Editing without referencing the Microsoft.CobaltCore.dll
Upvotes: 4