Logo
programming4us
programming4us
programming4us
programming4us
Home
programming4us
XP
programming4us
Windows Vista
programming4us
Windows 7
programming4us
Windows Azure
programming4us
Windows Server
programming4us
Windows Phone
 
Windows Server

Introducing SharePoint Mobile in 2010 (part 2) - Microsoft Office Web Applications

- Free product key for windows 10
- Free Product Key for Microsoft office 365
- Malwarebytes Premium 3.7.1 Serial Keys (LifeTime) 2019
6/14/2011 3:29:33 PM

3. Microsoft Office Web Applications

Microsoft Office Web Applications provide the user the ability to work with Microsoft Office Word, Excel, PowerPoint, and OneNote documents online from personal computers, mobile devices, and the Web. Office Web Applications are available to customers using products built on Microsoft SharePoint Foundation 2010. When Office Web Applications are installed, documents stored in SharePoint libraries can be opened in the Web browser directly. In addition, the PowerPoint Web application enables the PowerPoint Broadcast Slide Show features, which allows you to broadcast a PowerPoint slideshow to users who can access the broadcast in a Web browser. Users of Window Mobile phone devices can leverage Microsoft Office Mobile 2010 as a preferred method for working with Office documents. Users of other devices, of which there are many, also can leverage mobile document viewers as a quick and easy way to access certain Microsoft Office documents from within the SharePoint 2010 mobile interface or from an SMS alert link. The Microsoft Office document types supported by mobile document viewers are

  • Microsoft Office Word

  • Microsoft Office Excel

  • Microsoft Office PowerPoint

  • Microsoft Office OneNote

The Word Mobile Viewer includes many exciting new features, including

  • Page content rendering (text and image view)

  • User interface (UI) with toolbar and menu areas

  • Page navigation

  • Page thumbnails

  • Document property

  • Find

The Excel Mobile Viewer includes many exciting new features, including

  • Spreadsheet rendering

  • UI with toolbar and menu areas

  • Sheet navigation

  • Show chart/illustration images

  • Named item view

  • Document property

  • Find

The PowerPoint Mobile Viewer includes many exciting new features, including

  • Slide content rendering (outline and slide view)

  • UI with toolbar and dialog boxes

  • PowerPoint Broadcast

  • Slide navigation

  • Slide thumbnails

  • Document property

  • Find

The mobile viewers included with Office Web Applications support the file formats listed in Table 1.

Table 1. Supported File Types
MOBILE VIEWERSUPPORTED FORMATS
Word Mobile Viewer.doc, .docx, .dot, .dotx, .docm, .dotm
Excel Mobile Viewer.xlsx, .xlsm, .xlsb
PowerPoint Mobile Viewer.ppt, .pptx

To use Office Web Applications and mobile document viewers within your deployment, you first must perform the following activities.

  • Install Office Web Applications

  • Activate the Office Web Applications services

  • Activate the Office Web Applications features

3.1. Installing Office Web Applications

Follow these steps to set up Microsoft Office Web Applications for use. You must go through these same steps on each Web front-end (WFE) server in the farm. Be sure to complete these steps before continuing to the next section in this article .

  1. Copy the Web Application Companions (WAC) Server Setup file to a local drive on the server.

  2. Run the WAC Server Setup file.

  3. Enter the product key code for your SharePoint installation.

  4. Select a file location for the search index files. These files can be large, so make sure you select a drive with adequate disk space.

  5. Monitor the installation process to completion.

  6. Run the SharePoint Products Configuration Wizard.

  7. When you have completed all the steps to configure the installation using the wizard, close the window.

3.2. Checking the Status of Office Web Application Services

After you have installed the software and run the SharePoint Products Configuration Wizard, you need to activate the services on each server. If you just ran the SharePoint Products Configuration Wizard for the first time, the services might already be deployed and activated. You can also set up these services through the Farm Configuration Wizard. If you ran the Farm Configuration Wizard prior to the installation of Office Web Applications, you should check the status of these services manually, and if needed, activate them manually or via Windows PowerShell. To determine if the services are running, perform the following steps.

  1. Open a browser and go to the SharePoint Central Administration website.

  2. Click the Manage Services On Server link located under the System Settings action group.

  3. Check the status of each of the following services.

    • Excel Calculation Services

    • PowerPoint Service

    • Word Viewing Service

3.3. Activating Services and Creating Application Proxies

If any of the Office Web Application services are not running, start them and create a service application proxy for each. You can do this within the SharePoint Central Administration interface or by using Windows PowerShell. To start the services and create proxies manually, perform the following steps.

  1. Open a browser and go to the SharePoint Central Administration website.

  2. Click the Manage Services On Server link located under the System Settings action group.

  3. If the Excel Calculation Services service is not already started, click Start and then follow the prompts for setting up this service.

  4. If the PowerPoint Service is not already started, click Start.

  5. If the Word Viewing Service is not already started, click Start.

  6. Click the Central Administration link on the left menu to return to the main page.

  7. Click the Manage Service Applications link, which is located under the Application Management action group.

  8. If the Excel Services application does not already exist in the list, click New from the action menu and select Excel Services Application. Name the application Excel Services, use the SharePoint Web Services Default application pool, and click OK.

  9. If the PowerPoint Service application does not already exist in the list, click New from the action menu and select PowerPoint Service application. Name the application PowerPoint Service, use the SharePoint Web Services Default application pool, and click OK.

  10. If the Word Viewing Service application does not already exist in the list, click New from the action menu and select Word Viewing Service application. Name the application Word Viewing Service, use the SharePoint Web Services Default application pool, and click OK.

You can also set up the service instances using Windows PowerShell. To do so, run the following script after customizing it to meet the needs of your environment.

$serversToActivate = @("contosoapp1","contosoapp2")
$svcInstanceNames = @("Word Viewing Service", "PowerPoint Service",
"Excel Calculation Services")
foreach ($server in $serversToActivate) {
foreach ($svcInstance in $svcInstanceNames){
$svcID = $(Get-SPServiceInstance | where
{$_.TypeName -match $svcInstance} | where
{$_.Server -match "SPServer Name="+$server}).ID
Start-SPServiceInstance -Identity $svceID
}
}

You can also set up the service application proxies using Windows PowerShell. To do so, run the following script.

$appPool = Get-SPIisWebServiceApplicationPool -Identity "SharePoint Web Services Default"
New-SPWordViewingServiceApplication -Name "WdView" -ApplicationPool $appPool |
New-SPWordViewingServiceApplicationProxy -Name "WdProxy"
New-SPPowerPointServiceApplication -Name "PPT" -ApplicationPool $appPool |
New-SPPowerPointServiceApplicationProxy -Name "PPTProxy"
New-SPExcelServiceApplication -Name "Excel" -ApplicationPool $appPool


3.4. Activating Site Collection Features

After the service application proxies are set up, you will need to activate the Office Web Applications features in any existing site collections where you want to enable these capabilities. This is only necessary for existing site collections, because new site collections will already have these features in place. First, review how you would enable the Office Web Application features within an existing site collection.

  1. From the top site within the site collection, use the Site Actions menu to select Site Settings.

  2. Within Site Settings, select Site Collection Features, which can be found under the Site Collection Administration Settings group.

  3. Activate the feature called Office Web Apps.


Note:

There are two additional features, Office Mobile Web View feature and PowerPoint Viewing For Office Mobile, that enable you to view Word and PowerPoint documents from Windows Mobile and Windows Phone devices. These features will not be active on new sites by default, but you can activate them at the site collection level when needed.


You can also activate site collection features using Windows PowerShell. To activate the Office Web Applications feature for all existing site collections, run the following script. Note that you may get an error regarding the PowerPoint Broadcast site collection when you run this script if you used the Farm Configuration Wizard to set up Office Web Applications.

$webAppsFeatureId = $(Get-SPFeature -limit all | where {$_.displayname -eq
"OfficeWebApps"}).Id Get-SPSite -limit ALL |foreach{ Enable-SPFeature
$webAppsFeatureId -url $_.URL }

It’s important to mention that when the feature is activated, libraries will be configured by default to open relevant documents using Office Web Applications instead of the Office client application. You can override this functionality at the site collection and document library levels. To disable the setting for all site collections and revert back to client applications, run the following script.

$webAppsFeatureId = $(Get-SPFeature -limit all | where {$_.displayname
-eq "OpenInClient"}).Id
Get-SPSite -limit ALL |foreach{
Enable-SPFeature $webAppsFeatureId -url $_.URL }

To disable the setting for all document libraries within a given site, run the following script after customizing it to meet the needs of your environment.

Get-SPWeb -site http://webappsites/site1 |% {}{$_.Lists}{$_.Update()} |%
{$_.DefaultItemOpen = $false}

You can also disable the new default open behavior within a single document library using the Advanced Settings interface in Library Settings, as shown below in Figure 3.

Figure 3. Change the default open behavior for an individual document library.


3.5. Controlling Service-Specific Settings

It is possible to control granular service options for each of the Office Web Applications services. Each service provides a specific set of switches and toggles that can be manipulated to control the behavior of the service. To access these settings, open a browser and go to the Central Administration website and then click Manage Service Applications, highlight the appropriate service application, and click the Properties icon on the Ribbon. The following options are available for each service.

3.5.1. Excel Services
  • Global Settings Define load balancing, memory, and throttling thresholds. Set the unattended service account and data connection time-outs.

  • Trusted File Locations Define places from which spreadsheets can be loaded.

  • Trusted Data Providers Add or remove data providers that can be used when refreshing data connections.

  • Trusted Data Connection Libraries Define a SharePoint Document Library from which data connections can be loaded.

  • User Defined Function Assemblies Register managed code assemblies that can be used by spreadsheets.

3.5.2. PowerPoint Service
  • Supported File Formats Specify which presentation types users will be able to view using this PowerPoint Service Application. If a file format is not selected, users of this service will receive an error message when attempting to view a file of that format in the Web browser.

  • Broadcast Site Users can connect to a broadcast site from at least Microsoft PowerPoint 2010 and broadcast a slideshow to remote attendees who can watch it in a Web browser. This setting shows a site URL only if a default broadcast site was created during service creation.

  • PowerPoint 97–2003 Presentation Scanning To provide added security when loading PowerPoint 97 to PowerPoint 2003 presentations, the PowerPoint Service Application performs extra checks before those documents are opened. These checks have an impact on overall server performance. Only disable this setting if you trust all documents loaded by this instance of the service.

3.5.3. Word Viewing Service
  • Supported File Formats: Viewing Specify which document types users will be able to view using this Word Viewing Service Application. If a file format is not selected, users of this service will receive an error when attempting to view that file type in the Web browser.

  • Embedded Font Support To preserve visual fidelity across different machines, a user may choose to embed a font within the document. Use this setting to determine whether or not embedded fonts are used when viewing documents.

  • Word 97–2003 Document Scanning To provide added security when loading Word 97 to Word 2003 documents, the Word Viewing Service Application performs extra checks before those documents are opened. These checks have an impact on overall server performance. Only disable this setting if you trust all documents loaded by this instance of the service.

  • Recycle Threshold Specify the number of Word documents that a process should be allowed to render before the process is recycled. Changes to this setting require an IISReset to take effect.

  • Total Active Processes Specify the number of worker processes dedicated to viewing Word documents. This value must be less than the WCF connection limit for this machine. Changes to this setting require an IISReset to take effect.

3.6. PowerPoint Broadcast Slide Show Setup

The PowerPoint Broadcast Slide Show feature enables presenters to broadcast a Microsoft Office PowerPoint 2010 slideshow to users who access the broadcast using a Web browser. If you installed Office Web Applications prior to running the Farm Configuration Wizard, the wizard will create a broadcast site for you at http://<defaultwebapp>/sites/broadcast/. If this site already exists, you need to visit the site and ensure that any users who want to give broadcasts are members of the Broadcast Presenters group, and that all users who will be viewing broadcasts are members of the Broadcast Attendees group.

If you are running a farm on which you installed Office Web Applications after running the Farm Configuration Wizard, or you find that the broadcast site doesn’t exist, you need to set up, create, and configure the site collection. Before doing so, you must perform all of the service and service application proxy setup described in the section titled Section 3.3 earlier in this article. After you have completed those steps, perform the following steps to create the PowerPoint Broadcast site collection.

  1. Open a browser and go to the SharePoint Central Administration website.

  2. Under the Application Management Settings, click Create Site Collections.

  3. Enter a Title (such as PowerPoint Broadcast Site).

  4. Enter a Description (such as A Site For Performing Slideshow Broadcasts).

  5. Specify a URL (such as http://<servername>/sites/broadcast/).

  6. In the Template Selection area, click the Enterprise tab and select PowerPoint Broadcast Site.

  7. Specify a Primary and Secondary site collection administrator.

  8. Optionally, specify a Quota Template.

  9. Click OK.

After you have created the site collection, make sure that any users who want to give broadcasts are members of the Broadcast Presenters group and that all users who will be viewing broadcasts are members of the Broadcast Attendees group.

3.6.1. Starting a Broadcast

To start a broadcast, open PowerPoint 2010, navigate to the Slide Show tab, and click Broadcast Site Show. Then select the Broadcast site created in the prior step and click Create Broadcast. The default service setting is for Microsoft’s public Broadcast service, which requires that the recipient of the broadcast have a Windows Live ID. To use the site collection created in your farm, click Change Broadcast Service, add a new service, and enter the URL of the site such as http://<servername>/sites/broadcast/. You will then receive a temporary link that you can share with others. If they have access to the site, they can use that link to see a synchronized view of your slideshow while you present it.

3.6.2. Using Group Policy to Adjust Broadcast Service Settings

If you want all of your users to have the broadcast site available from within PowerPoint without needing to know that site URL or having to add the site manually, you can specify and propagate this setting using Group Policy. Before doing so, you need to download the Office 2010 Administrative Template files. When you have downloaded those files, create a Central Store for ADMX files on your primary domain controller and copy the ADMX and ADML files included in the Office 2010 Administrative Template files to that folder. This must be done prior to attempting to edit the policy settings within the Group Policy Editor.

To modify the policy settings for the Broadcast Services, perform the following steps.
  1. On the primary domain controller, open Group Policy Management from Administrative Tools.

  2. Create or select the policy object you want to edit.

  3. Right-click the policy object and select Edit.

  4. Navigate to User Configuration, Policies, Administrative Templates, Microsoft PowerPoint 2010, Broadcast folder.

  5. Enable the Disable Default Service setting.

  6. Navigate to the Broadcast Services subfolder.

  7. Double-click Configure Broadcast Service 1.

  8. Enable Configure Broadcast Service 1 and fill out all the required information as shown in Figure 4, including the URL for the broadcast site in your farm.

  9. Click OK.

  10. Type the following command at the command prompt of your client computer and then press Enter.

    Gpupdate /force

  11. Close and reopen PowerPoint.

  12. Go to the Slide Show menu and select Broadcast Slide Show.

  13. You should now see the service you specified in the GPO as the default service for use in broadcasting the slideshow.

Figure 4. Configure broadcast service 1 GPO settings

Other -----------------
- Introducing SharePoint Mobile in 2010 (part 1) - Microsoft Office Mobile 2010 & SharePoint Workspace Mobile 2010
- Migrate Roles to Windows Server 2008 R2
- BizTalk 2009 : Host Integration Server 2009 - BizTalk Adapter for Host Applications
- BizTalk 2009 : Host Integration Server 2009 - Session Integrator
- SQL Server 2008 : Database Mail (part 2) - Configuring, Sending, Cleanup Procedures Database Mail Using T-SQL
- SQL Server 2008 : Database Mail (part 1) - Database Mail Configuration Wizard
- SQL Server 2008 : Monitoring Your Server - Using Server-Side Tracing
- BizTalk 2009 : Host Integration Server 2009 - Security
- Microsoft Dynamics CRM 2011 : Attaching Files to Accounts and Contacts
- Upgrading to SharePoint 2010 : Performing Post-Upgrade Configurations
 
 
Top 10
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 2) - Wireframes,Legends
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 1) - Swimlanes
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Formatting and sizing lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Adding shapes to lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Sizing containers
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 3) - The Other Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 2) - The Data Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 1) - The Format Properties of a Control
- Microsoft Access 2010 : Form Properties and Why Should You Use Them - Working with the Properties Window
- Microsoft Visio 2013 : Using the Organization Chart Wizard with new data
 
programming4us
Windows Vista
programming4us
Windows 7
programming4us
Windows Azure
programming4us
Windows Server