I go through the following steps which work on my development machine,
but not on the production web server.
I create a simple hello world style C# dll.
I put it in my system32 folder
I run regasm.exe on it.
I can then invoke it from a vbs script.
I can also invoke it from an old fashioned asp page.
Ok, I do the same steps on the production web server.
I can still invoke the dll from the vbs script, but createobject fails
in the asp page.
My machine is windows xp professional. The prod server is Windows
Server 2003.
I tried giving "Everyone" all permissions on the dll I created. That
didn't help. What should I do? Thanks in advance.
ctrager@yahoo.com - 11 Dec 2004 05:21 GMT
I used file monitor from www.sysinternals.com and saw that my dll was
being looked for in the inetsrv folder when it was being invoked from
the asp page. So I moved it there and things worked.