Questions tagged [ms-wopi]

Web Application Open Platform Interface Protocol

The Web Application Open Platform Interface Protocol (WOPI) defines a set of operations that enables a client to access and change files stored by a server. This allows the client to render files and provide file editing functionality for files stored by the server.

162 questions
0
votes
1 answer

Use Office Online Server to provide document editing from within a web application

We'd like our clients to be able to, from our software, open documents and collaborate on them in the course approving them, then releasing them. We'd like to provide that using Office Online Server from a window within our software (using WOPI…
Steve
  • 531
  • 5
  • 16
0
votes
2 answers

WOPI viewing and editing error : 'Keyset does not exist'

I'm trying to implement a wopi on our site (our domain is already added to wopi). I can view and edit in first load. But upon clicking the back button and view again or edit I got this error. Any idea what causes the issue. Github:…
nojla
  • 415
  • 1
  • 5
  • 19
0
votes
1 answer

Replacing POST Form in WOPI by axios code in server-side

I am trying to implement wopi protocol. Using react, I have an iframe and a post-form which sets the content of iframe identified as collabora-online-viewer by requesting to address props.url with token props.token, as below (which works…
mshadi
  • 169
  • 2
  • 9
0
votes
1 answer

How to restrict content and extract data for data analytics

I have gone through the WOPI integration in java. is there any ways to restrict content(Not editable) in the paragraph or finding the placeholder to extract data for analytics. Thanks
Sandy
  • 309
  • 4
  • 13
0
votes
1 answer

How to get the file_id of a wopi host integration?

I've deployed a Wopi client as mentioned in the documentation and now i'm trying to deploy a wopi host, but i'm new to .net enviroment and i don't know how to get the file hosted in wopi-docs folder. (It seems to be encrypted but i don't know how to…
Carlos Rodríguez
  • 745
  • 11
  • 20
0
votes
1 answer

Sideload A Microsoft Word Add-In In Office Online Server

I'm working on a modern Word Add-In that we would like to work inside Word for the Web on Office Online Server (2019) via WOPI. For testing, we would like to sideload the Add-In. I can do this in the O365 version of Word for the Web without…
0
votes
1 answer

How to set ClientUrl in ChekInfoFile in MS WOPI Office Online using WebDav

I have developed MS WOPI that works on the browser, that is, we can view and edit documents stored in the database, in the browser. But I am unable to open the documents in MS Word desktop application. I found in some answers here that we need to…
ak_sing
  • 5
  • 2
0
votes
1 answer

WOPI how to remove edit icon

When a user opens a file for viewing then the edit icon is available. You can see the following screen: . When I change UserCanWrite to false then this icon is removed and the user does not have permissions to edit the file. If I change UserCanWrite…
0
votes
1 answer

Autosave file opened in WOPI for editing after an interval

I want to implement a functionality that saves the file (.docx, .pptx, .xlsx) opened in WOPI for editing in local storage after every 5 seconds, after checking that some changes are made to the file. And later that will be persisted in a database…
ak_sing
  • 5
  • 2
0
votes
1 answer

MS WOPI: When ppt file is open for edit after some time show Sign in with one of these accounts

In MS WOPI, when the user edits a PPTX file it shows this message after some time. Do you have any idea how to resolve this issue?
0
votes
1 answer

Is it possible to specify a default WOPI host for Office Online Server?

Is there a way to specify a default WOPI host for Office Online Server (local installation, not cloud), so that the domain part in WOPISrc param can be omitted? I am building a host page that uses an iframe to display the Online Office editor, and…
Argyro Kazaki
  • 631
  • 2
  • 6
  • 15
0
votes
2 answers

Render/edit MS Office docs in browser with SharePoint or WOPI

I have a Rails application I want to do CRUD operation on user's documents online but I want to render MS Office (OpenXML-based) docs in the browser. I have heard about WOPI/SharePoint. How can I integrate it with my web app?
ashwintastic
  • 2,262
  • 3
  • 22
  • 49
0
votes
3 answers

PHP: Verifying that requests originate from Office for the web by using proof keys

I'm trying to Verifying that requests originate from Office for the web by using proof keys I have read this resource many times but still do not know how to implement it in PHP. I tried the code below it didn't seem to solve the problem, I do not…
Lam
  • 1
  • 1
0
votes
1 answer

Office Online Server is taking long time to perform the auto-save operation

We integrated Office Online Server in our web application and in the WOPI web integration we are setting File URL properties such as FileUrl. This URL points to /wopi/files/{file_id}/contents link and internally, it will call the API once we start…
nikith g
  • 1
  • 1
0
votes
1 answer

Is there a way to use MS Graph API to operate on documents provided by our WOPI host?

We have implemented a WOPI host that gets called by Office Online server to serve Office documents that we store (mostly DOCX) to a web client for viewing/editing. Additionally, we need to convert these documents to PDF inside our WOPI host for…