0

I'm successfully able to view the word documents using WOPI. Now, I'm trying to edit the document using WOPI and all wopi tests related to Locking as passing. enter image description here

But when I try to edit the docx file and request the WOPI client I get this error:

enter image description here

I see the requests to my server for LOCK and UNLOCK. Not sure what exactly happened to fail and not requesting the PUTFILE.

enter image description here

Please help.

Suhas Giriraj
  • 242
  • 2
  • 11

1 Answers1

1

As you can see in the log, you are getting 409 Conflict during the second request.

You must provide a correct X-WOPI-Lock header to unlock the file, otherwise you'll get the 409 which means "Lock mismatch/locked by another interface".

See the documentation.

rocky
  • 7,506
  • 3
  • 33
  • 48