Security of TLB libraries
-
Hi, I am having a problem to create COM object in my web application. The object provided by Symantec, it is a SDK library for ACT. The problem is I can NOT create the object in web applications. However, there is no problem with desktop applications or VBScripts. The following code work in vb.net/VBScript ------------------------------------------ Dim objDatabase As Object = CreateObject("ACTOLE.DATABASE") objDatabase.Open("c:\Database\Members.dbf") dim objUsers As Object = objDatabase.Users() ----------------------------------------- It perfectly creates the object and gives me all the users in a recordset. I think I need to play with security of this object to make the object creatable by {machine.ASPNET} user. How can I set custom security to ACTOLE.DATABASE object? Thanks a lot serkan