當前位置:首頁 » 網頁前端 » officewebapps
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

officewebapps

發布時間: 2022-03-03 02:06:36

㈠ 如何安裝與設定 Office Web App Server一點通系列

Office Web App Server 2013安裝
第1步驟:如果是Windows Server 2008 R2 需要首先執行如下
Import-Mole ServerManager
Add-WindowsFeature Web-Server,Web-WebServer,Web-Common-Http,Web-Static-Content,Web-App-Dev,Web-Asp-Net,Web-Net-Ext,Web-ISAPI-Ext,Web-ISAPI-Filter,Web-Includes,Web-Security,Web-Windows-Auth,Web-Filtering,Web-Stat-Compression,Web-Dyn-Compression,Web-Mgmt-Console,Ink-Handwriting,IH-Ink-Support
如果是windows server2012
Import-Mole ServerManager

Add-WindowsFeature Web-Server,Web-Mgmt-Tools,Web-Mgmt-Console,Web-WebServer,Web-Common-Http,Web-Default-Doc,Web-Static-Content,Web-Performance,Web-Stat-Compression,Web-Dyn-Compression,Web-Security,Web-Filtering,Web-Windows-Auth,Web-App-Dev,Web-Net-Ext45,Web-Asp-Net45,Web-ISAPI-Ext,Web-ISAPI-Filter,Web-Includes,InkandHandwritingServices
然後再執行如下

Office Web App Server 2013配置

根據此圖,接下來就是創建伺服器場了,這個伺服器場指的不是SharePoint場,而是Office Web Apps伺服器場——這個伺服器場中可以包含多個Office Web Apps Server,作不同的角色。創建的方式很簡單,PowerShell:
第1步驟:
#載入Office Web Apps管理命令集,
Import-Mole OfficeWebApps
第2步驟:
#創建伺服器場
New-OfficeWebAppsFarm –InternalURL http://servername –AllowHttp –EditingEnabled
說明:servername為安裝OWA(office web app server2013)的伺服器名稱
第3步驟:
#驗證伺服器場
http://servername/hosting/discovery
說明:
Office Web Apps Server 按預期運行,您應該在 Web 瀏覽器中看到 Web 應用程序開放平台介面 (WOPI) 發現 XML 文件。該文件的前幾行應類似以下示例:
復制
<?xml version="1.0" encoding="utf-8" ?>
- <wopi-discovery>
- <net-zone name="internal-http">
- <app name="Excel" favIconUrl="http://servername/x/_layouts/images/FavIcon_Excel.ico" checkLicense="true">
<action name="view" ext="ods" default="true" urlsrc="http://servername/x/_layouts/xlviewerinternal.aspx?<ui=UI_LLCC&><rs=DC_LLCC&>" rel="nofollow"/><action name="view" ext="xls" default="true" urlsrc="http://servername/x/_layouts/xlviewerinternal.aspx?<ui=UI_LLCC&><rs=DC_LLCC&>" rel="nofollow"/><action name="view" ext="xlsb" default="true" urlsrc="http://servername/x/_layouts/xlviewerinternal.aspx?<ui=UI_LLCC&><rs=DC_LLCC&>" rel="nofollow"/><action name="view" ext="xlsm" default="true" urlsrc="http://servername/x/_layouts/xlviewerinternal.aspx?<ui=UI_LLCC&><rs=DC_LLCC&>" rel="nofollow"/>詳細請參考:
http://technet.microsoft.com/zh-cn/library/jj219455(v=office.15).aspx
我這里機器名叫:OWA
New-OfficeWebAppsFarm –InternalURL http://OWA –AllowHttp –EditingEnabled

選擇Y

解釋:這其中需要解釋的一個是AllowHttp:這個是配置是否允許通過HTTP方式訪問的(默認情況下是通過HTTPS);第二個是EditingEnabled,如果需要在瀏覽器中編輯文檔,則需要加上這個參數(另外,按照官方文檔的介紹,在SharePoint中,用戶是否可以在瀏覽器中編輯文檔,是需要有單獨的License配置的,這個所謂License的概念就是類似Standard CAL、Enterprise CAL的概念,只不過以前這個只能從伺服器級別區分,而在2013中可以在用戶級別區分了)

㈡ office web apps支持哪些版本

Microsoft Office 2010,是微軟推出的新一代辦公軟體,開發代號為Office 14,實際是第12個發行版。該軟體共有6個版本,分別是初級版、家庭及學生版、家庭及商業版、標准版、專業版和專業高級版,此外還推出Office 2010免費版本,其中僅包括Word和Excel應用。除了完整版以外,微軟還將發布針對Office 2007的升級版Office 2010。Office 2010可支持32位和64位vista及Windows7,僅支持32位WindowsXP,不支持64位XP。現已推出最新版本Microsoft Office 2016。
微軟office2010包括以下版本:
Office 標准版
Office 家庭和學生版
Office 中小企業版新
Office 專業版
Office 專業增強版
Office 企業版
Office Mobile

㈢ 如何整合Office Web Apps至自己開發的系統

  • Office Web Apps定義

    WOPI的英文全稱是「Web Application Open Platform Interface」,中文名為「Web應用程序開放平台介面協議」。

  • 作用

  1. OPI協議提供一系列基於web方式的,使文檔能在Office Web Apps中查看與編輯的介面服務(Web Service)。

  2. 只要web application按照標准,實現了WOPI的介面,那麼就可以調用Office Web Apps。例子很多,比如SharePoint,Exchange,SkyDriver,Dropbox集成Office Web Apps。

  3. 實現了桌面Office的大部分功能,能在客戶機沒有安裝Office的情況下,實現雲端上的文檔編輯查看。

  • 基於http協議下的系統整合

  1. 存放Office文檔的web應用叫WOPI Host或者WOPI Serve,查看編輯操作Office文檔的web應用叫WOPI Client或者叫WOPI applications,下圖為瀏覽器,server,client三者的請求順序及關系:

注意點:

  1. CheckFileInfo與GetFile服務的URI格式只差了一個,其他地方的格式是沒有不同的。

  2. 在上述URI格式中,都有一個access_taken身份驗證令牌。這個身份驗證令牌是必須要有的。

  3. 實際上Office Web Apps根本不涉及文檔的許可權管理。

㈣ office web apps 需要安裝

安裝也不費事啊,可以用WPS只40兆,包括office三項

㈤ 如何調用office web apps server

實際上Office Web Apps也是可以接入自己開發的系統的。下面介紹一下整合Office Web Apps的一些理論知識。

要想讓自己的系統與Office Web Apps整合就一定要清楚一些概念,首先要理解什麼是」WOPI」。
WOPI的英文全稱是「Web Application Open Platform Interface」,中文名為「Web應用程序開放平台介面協議」。

WOPI協議提供一系列基於web方式的,使文檔能在Office Web Apps中查看與編輯的介面服務(Web Service)。
只要web application按照標准,實現了WOPI的介面,那麼就可以調用Office Web Apps。例子很多,比如SharePoint,Exchange,SkyDriver,Dropbox集成Office Web Apps。
如果自己做的web應用也實現了相應介面,也是可以調用Office Web Apps的。實現文檔的在線編輯查看。

這樣比市面上的一些基於ActiveX的在線Office產品有很大的優勢。
首先Office Web Apps是基於網頁技術,所以是跨平台的,可以在iOS,安卓,WP及PC使用,實現多屏一體。
其次Office Web Apps實現了桌面Office的大部分功能,能在客戶機沒有安裝Office的情況下,實現雲端上的文檔編輯查看。

㈥ 在安裝 後,為什麼office web apps服務不能啟動

可以用powershell檢查下和OWA的鏈接情況,然後預覽用戶不可以是systemaccount,如果還有問題那就是OWA沒有安裝好

㈦ 跪求 office web apps 下載和系列號!!!!

http://download.pcpop.com/Down/72466.html
貌似不用序列號

㈧ office web apps server 支持linux嗎

其實他就是一個在線的Office 2010 跟雲差不多 即便你的電腦沒有office 也可以使用這個他是用你的msn

㈨ office web apps 和excel service有什麼區別

其實他就是一個在線的Office 2010 跟雲差不多 即便你的電腦沒有office 也可以使用這個他是用你的msn賬號登陸進去就是了你進去看看就知道了 http://office.live.comxp系統可能不信