...
- Update WIRE configuration files
- Copy connections section from your original WIRE_GUI.dll.config file into the updated WIRE_GUI.dll.config file in the root of the WIRE_GUI directory
- Check both WIRE_GUI.dll.config and WIRE.dll.config files to ensure no existing configurations changed.
- Setup new path for User Profiles
- Ensure that Wire.XMLProfilePersister.dll.config has correct path to Profile directory on web server.
- Ensure that the user that the application pool runs under has the appropriate rights to write to the configured Profile directory
In the system.web config section of the web.config file, locate the following configuration element and replace with correct value:
Code Block theme DJango REPLACE <!-- handler for AJAX.NET --> <add verb="POST,GET" path="ajaxpro/*.ashx" type="AjaxPro.AjaxHandlerFactory, AjaxPro"/> WITH <!-- handler for AJAX.NET --> <add verb="POST,GET" path="ajaxpro/*.ashx" type="AjaxPro.AjaxHandlerFactory, AjaxPro.2"/>
In the system.webServer config section of the web.config file, locate the following configuration element and replace with correct value:
Code Block REPLACE <!-- handler for AJAX.NET --> <add name="AJAXPRO" verb="POST,GET" path="ajaxpro/*.ashx" type="AjaxPro.AjaxHandlerFactory, AjaxPro"/> WITH <!-- handler for AJAX.NET --> <add name="AJAXPRO" verb="POST,GET" path="ajaxpro/*.ashx"theme DJango find any references to the AjaxPro.AjaxHandlerFactory type, and change...
from: type="AjaxPro.AjaxHandlerFactory, AjaxPro"to: type="AjaxPro.AjaxHandlerFactory,
AjaxPro.2"/>AjaxPro2"
Test You WIRE Application
...