|
|
YOUR FEEDBACK
|
TOP MICROSOFT .NET LINKS .NET Compact Framework
Packaging and Deploying .NET Compact Framework Solutions
By: Jon Box
Digg This!
One of the great benefits of building applications that utilize the .NET Compact Framework is, of course, that the application is installed on the device so it can work in both disconnected and occasionally connected modes. But as with most things in IT, there is a trade-off lurking around the corner. In this case that trade-off is the packaging and deployment of the application. And so in this column we'll give you a rundown of the options you have and what Visual Studio .NET provides to make your life a little easier.
Packaging Made Easy First, however, before actually creating the .cab file it is important to note three basic features of VS.NET. First, you can set the Output File Folder property in the Properties window in VS.NET. This property (which defaults to Program Filesprojectname) specifies the deployment directory on the device that the project will be installed in and is referenced by the .cab file-creation process. Second, you can package and deploy project-related files (like SQL Server CE databases and configuration files) by setting their Build Action property to Content in the Properties window. And finally, you should change the build configuration from Debug to Release in order to produce smaller and faster assemblies. Once the project options are set, a .cab file can be created to deploy the application. SDP makes this easy by including a Build Cab File menu, accessible by right-clicking the project. This process is different than in the desktop version of the .NET Framework, in which a deployment project that uses the Windows Installer can be added to the solution to package the application. When this option is invoked, VS.NET silently creates a cab directory under the project directory on your workstation. In this directory and within a directory identifying the build mode (Debug or Release) is placed a series of .cab files. Each .cab file targets a specific processor type - including ARM, ARM4, MIPS, SH3, and X86 - and is named accordingly, e.g., MyApplication _PPC_ARM.CAB. To install the application on a device, the .cab file simply needs to be copied to the device. Windows CE includes software that automatically performs the unpacking and installation of .cab files. In order to customize the installation process, SDP also adds the files needed to customize and rebuild the .cab files in the objuildmode directory. The BuildCab.bat, Dependencies_platform.txt, and Projectname_platform.inf files, along with a configuration file for each processor type, are placed in this directory. The batch file can be used to initiate the rebuild of the .cab files. The dependencies file contains the list of .cab files that the batch file is dependent on and always contains a reference to the Compact Framework .cab file for each processor type. At installation time these dependencies will be checked to ensure that they have been applied to the device. The .inf file contains the installation settings to use when the .cab file is executed. It is important to note that the .cab file created does not include the .cab file for the Compact Framework. Although Pocket PC 2003 devices ship with the Compact Framework in ROM, for the present you'll need to copy and execute the redistributable on the device. To customize the installation on the device, the .inf can be modified. For example, you can add a shortcut to the Programs group on a Pocket PC by modifying the following sections in the .inf file like so:
[DefaultInstall] Other examples of customizing the .inf file might include adding additional files (for example, SQLCE databases) to be distributed to the device in the .cab file by modifying the CopyFiles section.
Ready-Set-Deploy! To do so the application must be registered with the ActiveSync Application Manager installed on the desktop machine. This process is relatively simple and requires creating a custom setup executable or an installer that integrates with a Windows Installer project created in VS.NET. In either case the process then invokes the Application Manager on the workstation with ActiveSync installed, passing it an .ini file that contains information about the application to be installed. For a complete example of how to do this, check out the whitepaper "Developing and Deploying Pocket PC Setup Applications" on the Microsoft Smart Devices Developer Community Site (http://smartdevices.microsoftdev.com). While this deployment and installation option is intuitive and provides a familiar mechanism to the user, it does require that the custom-setup application be installed on the workstation used for synchronizing with the device.
When users navigate to the Web page using Pocket Internet Explorer, they can tap on the required .cab file. The resulting dialog allows the file to be downloaded and then opened. Opening the file after download is equivalent to executing the .cab file on the device and will cause the application to be installed. To protect the .cab files, especially on a site accessible over the Internet, it is recommended that the virtual directory in which the download page resides be protected by standard HTTP encryption and authentication schemes. There are also third-party solutions such as the Appear Provisioning Server (APS) from Appear Network, which allows automatic delivery, single-click download, and automatic discard of location-specific applications targeted for health care, hospitality, transportation, and workforce coordination.
With this feature, when a storage card is inserted into the device, the Pocket PC looks for an executable called Autorun.exe in a folder mapping to the processor type of the device. For example, if the processor type is ARM, then it will look for the file Storage CardARMAutorun.exe on the storage card. When found, the executable is copied to the Windows folder and executed with the install parameter. Likewise, when the card is removed from the device, the same executable is launched with the uninstall parameter.
And as with Web deployment, the share can be protected and users will be forced to enter valid credentials to gain access to the files. Once again, this option frees the user from having to cradle the device in order to install software.
The obvious benefit to creating an auto-updating application is that it reduces the burden of keeping the application up to date. For an example of how such a component could be written, take a look at Microsoft's Updater Application Block at www.microsoft.com/patterns.
It's Up to You MICROSOFT .NET LATEST STORIES
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
|
SYS-CON FEATURED WHITEPAPERS MOST READ THIS WEEK BREAKING NEWS FROM THE WIRES
|
||||||||||||||||||||||||||||||||||