Package | Version | Downloads |
---|---|---|
WopiHost.Abstractions |
||
WopiHost.Core |
||
WopiHost.Discovery |
||
WopiHost.FileSystemProvider |
||
WopiHost.Url |
This project is a sample implementation of a WOPI host. Basically, it allows developers to integrate custom datasources with Office Online Server (formerly Office Web Apps) or any other WOPI client by implementing a bunch of interfaces.
The WopiHost app targets net8.0
exclusively.
If you need a version that's targeting an older version of .NET, check out the releases:
If you get errors saying that Microsoft.CobaltCore.*.nupkg can't be found, then just remove the reference or see the chapter Cobalt below.
Parameter | Sample value | Description |
---|---|---|
Wopi:StorageProviderAssemblyName |
"WopiHost.FileSystemProvider" |
Name of assembly containing implementation of WopiHost.Abstractions interfaces |
Wopi:StorageProvider:RootPath |
".\\wopi-docs" |
Provider-specific setting used by WopiHost.FileSystemProvider (which is an implementation of IWopiStorageProvider working with System.IO) |
Wopi:UseCobalt |
true |
Whether or not to use MS-FSSHTTP for file synchronization. More details at Cobalt |
Parameter | Sample value | Description |
---|---|---|
Wopi:HostUrl |
"http://wopihost:5000" |
URL pointing to a WopiHost instance (above). It's used by the URL generator. |
Wopi:ClientUrl |
"http://owaserver" |
Base URL of your WOPI client - typically, Office Online Server - used by the discovery module to load WOPI client URL templates |
Wopi:StorageProvider:RootPath |
"..\\..\\WopiHost\\wwwroot\\wopi-docs" |
Provider-specific setting used by WopiHost.FileSystemProvider (which is an implementation of IWopiStorageProvider working with System.IO) |
Wopi:Discovery:NetZone |
"InternalHttp" |
Determines the target zone configuration of your OOS Deployment. Values correspond with the NetZoneEnum . |
Additionally, you can use the secret storage to configure both of the apps.
Once you've successfully built the app you can:
WopiHost
and WopiHost.Web
. You can set them both as startup projectscmd
dotnet run
Running the application only makes sense with a WOPI client as its counterpart. WopiHost is compatible with the following clients:
Note that WopiHost will always be compatible only with the latest version of OOS because Microsoft also supports only the latest version.
The deployment of OOS/OWA requires the server to be part of a domain. If your server is not part of any domain (e.g. you're running it in a VM sandbox) it can be overcome by promoting your machine to a Domain Controller.
To test your OWA server follow the instructions here.
To remove the OWA instance use Remove-OfficeWebAppsMachine
.
In the past (in Office Web Apps 2013), some HTTP actions required support of MS-FSSHTTP protocol (also known as "cobalt"). This is no longer true with Office Online Server 2016. However, if the WOPI client discovers (via SupportsCobalt property) that the WOPI host supports cobalt, it'll take advantage of it as it's more efficient.
If you need or want your project to use Cobalt, you'll need to create a NuGet package called Microsoft.CobaltCore.nupkg containing Microsoft.CobaltCore.dll. This DLL is part of Office Web Apps 2013 / Office Online Server 2016 and its license doesn't allow public distribution and therefore it's not part of this repository. Please always make sure your OWA/OOS server and user connecting to it have valid licenses before you start using it.
TODO
TODO
There is plenty of space for improvements in the overall architecture, implementation of the [MS-*] protocols or just finishing the TODOs in the code. Lot of refactoring still needs to be done and also the code style has to be unified. So please feel free to help me out with it :)
https://docs.microsoft.com/en-us/dotnet/standard/design-guidelines/