AquaLogic .NET Application Accelerator Installation and Upgrade Guide

     Previous Next  Open TOC in new window   View as PDF - New Window  Get Adobe Reader - New Window
Content starts here

Upgrading ALI .NET Application Accelerator Portlets (1.0 to 1.1 MP1)

To upgrade existing ALI portlets developed using the AquaLogic .NET Application Accelerator version 1.0, you must make modifications to your code.

If your portlet uses the profile provider, you must change the name and type of the profile provider defined in your project's Web.config file from EDKProfileProvider to IDKProfileProvider as shown in the code snippet below.
<profile enabled="true" defaultProvider="IDKProfileProvider" automaticSaveEnabled="true">
	<providers>
		<clear />
			<add name="IDKProfileProvider" type="BEA.ALI.Web.Profile.IDKProfileProvider, PortletAPI" description="IDK based profile provider" />
	</providers>
	<properties>
		<clear />
	</properties>
</profile>

The other namespace changes implemented in version 1.1 MP1 provide new classes and do not affect existing 1.0 portlets. (You may need to add namespaces to access new functionality.)

  Back to Top      Previous Next