Walkthrough: Deploying a Document to a Local Folder and an Assembly to a Network Folder (2003 System)

Applies to

The information in this topic applies only to the specified Visual Studio Tools for Office projects and versions of Microsoft Office.

Project type

  • Document-level projects

Microsoft Office version

  • Microsoft Office 2003

For more information, see Features Available by Application and Project Type.

This walkthrough demonstrates how to deploy a document-level customization so that the document is on the development computer, and the assembly is in a folder on a network computer. This type of deployment is known as the local/network deployment model.

For more information about options for deploying your solution, see Deployment Models (2003 System). For more information about document-level customizations, see Architecture of Document-Level Customizations.

This walkthrough illustrates the following tasks:

  • Editing the embedded application manifest in a document to point to the assembly.

  • Granting full trust to a Visual Studio Tools for Office solution assembly that is located in a network folder.

Prerequisites

You need the following components to complete this walkthrough:

  • Visual Studio Tools for Office (an optional component of Visual Studio 2008 Professional and Visual Studio Team System).

  • Microsoft Office Word 2003 or Microsoft Office Excel 2003.

    Note

    This walkthrough assumes that you are deploying a Word solution. If you want to perform the walkthrough with an Excel solution, replace the name of the Word project with the name of your Excel project in all code examples.

  • Access to a network computer for deployment.

  • Administrator privileges on the development computer, so you can set the security policy.

Creating a Solution to Deploy

The first step is to create a basic Visual Studio Tools for Office solution to deploy. If you already have a solution that you want to deploy, you can skip this section and proceed to "Editing the Embedded Application Manifest".

To create a solution to deploy

  1. Create a Word Document project with the name WordDeployment, using the project template for Office 2003.

    In the wizard, select Create a new document. For more information, see How to: Create Visual Studio Tools for Office Projects.

  2. In Solution Explorer, right-click the ThisDocument code file, and then click View Code.

  3. Add the following code in the ThisDocument_Startup event handler. This code displays a message when the document opens, which will make it easy to verify whether the solution has been deployed successfully.

    MessageBox.Show("The deployment is successful")
    
    MessageBox.Show("The deployment is successful");
    

    For more information about the Startup event, see Visual Studio Tools for Office Project Events.

  4. Press F5 to build and run the project. Verify that the message appears.

  5. Exit Word.

  6. Close the solution in Visual Studio.

    Ensure that the document is not open in an instance of Word or the project designer. If the document is open, the attempt to access the document in a later step using ServerDocument will fail.

Editing the Embedded Application Manifest

When you build your solution, the document assumes that the assembly is in the same folder as the document. The location of the assembly is stored in an application manifest that is embedded in the document. If you deploy the document and assembly to different folders, you must edit the embedded application manifest to specify the new assembly path.

In the following steps, you will use the ServerDocument class to edit the embedded application manifest in the document to point to the new location of the customization assembly. The code that uses ServerDocument to edit the embedded application manifest must be outside of the Visual Studio Tools for Office project assembly that is associated with the document you are deploying.

To edit the embedded application manifest

  1. Create a new Console Application project. For more information, see How to: Create Solutions and Projects.

  2. Add a reference to the Microsoft.VisualStudio.Tools.Applications.Runtime.dll assembly to the new project.

  3. Add the following using statement (C#) or Imports statement (Visual Basic) to the top of the Program.cs or Module1.vb code file.

    Imports Microsoft.VisualStudio.Tools.Applications.Runtime
    
    using Microsoft.VisualStudio.Tools.Applications.Runtime;
    
  4. Add the following code in the Main method to update the embedded application manifest. Replace full document path with the full path of the document in its build location on the development computer—for example, project folder\bin\debug\WordDeployment.doc. Replace full assembly path with the full path of the assembly in the network folder it will be deployed to—for example, \\DeploymentServer\DeploymentFolder\WordDeployment.dll.

    Dim sd As ServerDocument = Nothing
    Try
        sd = New ServerDocument("full document path")
        sd.AppManifest.Dependency.AssemblyPath = _
            "full assembly path"
        sd.Save()
    Finally
        If Not sd Is Nothing Then
            sd.Close()
        End If
    End Try
    
    ServerDocument sd = null;
    try
    {
        sd = new ServerDocument(@"full document path");
        sd.AppManifest.Dependency.AssemblyPath = 
            @"full assembly path";
        sd.Save();
    }
    finally
    {
        if (sd != null)
        {
            sd.Close();
        }
    }
    
  5. Build and run the project. The console application updates the assembly path in the embedded application manifest and then closes.

  6. Close the Console Application project.

Deploying the Solution

Now that the paths are correct, you can deploy the document to a folder on your development computer and the assembly to a folder on a network computer.

To deploy the solution

  1. Create a folder named TestDeployDocument at the root of the Windows system drive (%SystemDrive%). For example, if your system drive is C, the new folder would be C:\TestDeployDocument.

  2. Create a folder named DeploymentFolder on a network computer, and share the folder to yourself. For example, if the network computer is named DeploymentServer, the new network share would be \\DeploymentServer\DeploymentFolder. Ensure that the network share has the same name that you specified in the full assembly path placeholder when you edited the embedded application manifest in the previous steps.

  3. Copy the document from the build output folder (typically project folder\bin\debug or project folder\bin\release) to the %SystemDrive%\TestDeployDocument folder on the development computer.

  4. Copy the assembly from the build output folder to the \\DeploymentServer\DeploymentFolder network share.

  5. Open the document in the %SystemDrive%\TestDeployDocument folder on the development computer. You will see an error message that states that the current .NET security policy does not permit the customization to run. This is because you have not granted full trust to the assembly in the network folder.

  6. Click OK, and then close the document.

Setting Security Policy

To enable the solution to run, you must grant full trust to the assembly in your .NET Framework 2.0 security policy. This walkthrough uses the Code Access Security Policy tool (Caspol.exe) to grant full trust to the assembly. For more information about using Caspol.exe, see Code Access Security Policy Tool (Caspol.exe) and Configuring Security Policy Using the Code Access Security Policy Tool (Caspol.exe).

Security noteSecurity Note:

These are basic steps for setting a security policy based on URL evidence for the purpose of completing this walkthrough. Do not use these steps to grant trust to assemblies in a real-world solution if you are not certain that the location is safe and secure. You should also base the security of a real-world solution on more evidence than the URL of the assembly. For more information, see Security Requirements to Run Office Solutions (2003 System).

To grant full trust to the assembly

  1. At the command prompt, type the following command to create a new code group that grants full trust to the assembly.

    %windir%\Microsoft.NET\Framework\v2.0.50727\caspol -m -ag LocalIntranet_Zone -url "full assembly path" FullTrust -n "Test_Deployment_Assembly"
    

    Replace full assembly path with the full path of the assembly in the network folder—for example, \\DeploymentServer\DeploymentFolder\WordDeployment.dll.

    The -n parameter specifies a name for the new code group. This parameter is not required, but specifying a label makes it easier to later identify and remove the new code group after you complete this walkthrough.

  2. Type yes when prompted to confirm that you want to perform the operation, and press ENTER.

  3. Open the document in the %SystemDrive%\TestDeployDocument folder on the development computer and verify that the message appears.

Next Steps

You can also deploy the document and the assembly to local folders, or you can deploy both the document and the assembly to a network folder. For more information, see the following walkthroughs:

See Also

Tasks

Walkthrough: Deploying a Document and an Assembly to a Local Folder (2003 System)

Walkthrough: Deploying a Document and an Assembly to Different Local Folders (2003 System)

Walkthrough: Deploying a Document and an Assembly to a Network Folder (2003 System)

Walkthrough: Deploying a Document-Level Customization Using a Deployment Manifest (2003 System)

Walkthrough: Deploying a Document-Level Customization Using a Windows Installer File (2003 System)

Concepts

Deploying Office Solutions (2003 System)

Deploying Document-Level Customizations (2003 System)

Deployment Models (2003 System)