|
Follow the steps below after installing doQuments Web Client on a Windows machine.
Step 1 – Connect to MS Access database with Classic ASP in IIS 7.0
| 1. | Open C:\Windows\System32\inetsrv\config folder. |
| 2. | Locate the applicationHost.config file. |
| 3. | Open this file with Notepad (for this start Notepad and drag this file into Notepad). |
| 4. | Click on Edit > Find and search for the following text...
<processModel identityType="NetworkService" /> |
When you find the following results text -
<applicationPoolDefaults>
<processModel identityType="NetworkService" />
</applicationPoolDefaults>
Change the text as shown below: (** Please be very careful while changing this. Make sure there are no extra ‘spaces’ or ‘quotes’ and it is exactly as below. **)
<applicationPoolDefaults>
<processModel identityType="NetworkService" loadUserProfile="false" />
</applicationPoolDefaults>
| 6. | Convert the '.txt' back to '.config' |
See, Automatic Configuration - Post Install Tasks
|