5

I am implementing MS-WOPI host with MS-WOPI client being Office Web Apps. I want to provide Word editing functionality and need to implement MS-FSSHTTP protocol.

I read the documentation http://msdn.microsoft.com/en-us/library/dd943623(v=office.12).aspx and

I also tried to fined some examples, but didn't get the success.

Could someone provide a simple example of MS-FSSHTTP implementation?

rocky
  • 7,506
  • 3
  • 33
  • 48

2 Answers2

4

Here is a sample implementation using CobaltCore. Pretty much a combination of my answers about WOPI/FSSHTTP on this website in one project.

https://github.com/thebitllc/WopiBasicEditor

thebitllc
  • 366
  • 2
  • 5
1

I think you're asking for the impossible. There is no such thing as a simple fsshttp server. Look at the videos on MSDN from conferences where they've discussed it. The fsshttp team estimates it will take over a year to properly build out a protocol server. It is not a project for the faint of heart.

Allan
  • 11
  • 1
  • Seems like using CobaltCore assembly will simplify this project. I try to implement ExecuteCellStorageRequest operation using Cobalt API, but this assembly still doesn't public and I cannot find any open documentation. – Naumenko Julia Jun 02 '14 at 19:10