NOTES CLIENT INSTALLATION AND UPGRADE
The widget's extension.xml file will contain an install manifest <installfeature> snippet with a pointer to the update site and specifications on how to install or update the feature.
1. Create the extension.xml file. Use the sample XML below as a guide.
Note You can obtain the sample extension.xml file used in this example from Lotus Tech Note 130582 at http://www.ibm.com/support/docview.wss?rs=899&uid=swg21305829.
<?xml version="1.0" encoding="UTF-8"?>
<webcontextConfiguration version="1.1">
<palleteItem id="com.mycompany.xyz.extensions.featureABX" imageUrl=""
providerId="com.ibm.rcp.toolbox.prov.provider.ToolboxProvisioning"
title="Comp XYZ Custom Plugin"
url="nrpc://WidgetCatalogServer.abx.com/updatesite.nsf/site.xml">
<preferences>
</preferences>
<data>
<installManifest>
<![CDATA[
<install>
<installfeature description="Comp XYZ Custom Plugin" id="Test_Feature_ABX" name="Test Feature ABX">
<requirements>
<feature download-size="10" id="Test_Feature_ABX" match="perfect" size="10" version="1.0"/>
</requirements>
</installfeature>
</install>
]]>
</installManifest>
</data>
</palleteItem>
</webcontextConfiguration>
Items in the top section of an extension.xml file are described below:
Note By default, only public update sites that do not require authentication are available for feature deployment using widgets. However, you can use accounts to configure access to update sites that require user authentication.
Items in the <installManifest> section of the sample XML file are described in the "Provisioning Manifest DTD" link at the top of this section.
Related topics