After making the necessary configurations in the Documentum files and folders for me to run ASP.NET with DFC, Webtop suddenly returns a blank page after loading. Please help resolve this problem.
These are the modifications I made:
1. You probably need the following line in the web.config file:
<identity impersonate="true" />
2. When you access the PIA from ASP.NET it uses the credentials of the account specified in IIS for your site. By default this account is called ASPNET.
3. The account must have access to dmcl40.dll.
4. The account must have write access to a directory specified in dmcl.ini as follows (directory is of your choosing):
local_path = C:\Documentum\ASP
5. The account must have write access to the directories specified in dfc.properties as follows (directories are of your choosing):
dfc.data.dir=C:/Documentum/asp
dfc.user.dir=C:/Documentum/asp
dfc.checkout.dir=C:/Documentum/asp/checkout
dfc.export.dir=C:/Documentum/asp/export
dfc.registry.mode=file
dfc.registry.file=C:/Documentum/asp/documentum.ini
Thank you!