部署后wcf中的ActiveX数据对象(ADO)无法正常工作

|| 我在Silverlight应用程序中使用ActiveX数据对象(ADO)来显示创建数据库connectoin向导..数据链接属性对话框..这是在后台WCF服务中创建并显示的。 当我从Visual Studio 2010中运行它时,它工作得很好。但是,当我在本地IIS中部署它时,它不会显示。 我曾尝试处理异常,但是没有。 流程仅在此处停止(以粗体和斜体标记)。我在wwwroot中也有客户端ployy和跨域文件 日志(\“在adodb之前”);                 MSDASC.DataLinks dataLinks =新的MSDASC.DataLinks();
            Log(\"after adodb\");
            if (dataLinks == null)
                Log(\"Data link is null\");
            else
                Log(\"data link isi not null\");
            //note that a reference to: 
            //  c:\\Program Files\\Microsoft.NET\\Primary Interop Assemblies\\adodb.dll
            //is also required to read the ADODB._Connection result
            ADODB._Connection connection;
            Log(\"Promting for new connection\");
            ***connection = (ADODB._Connection)dataLinks.PromptNew();***
            Log(\"after new connection\");
任何帮助表示赞赏。谢谢。     
已邀请:
因为使用的是Active X组件,所以必须在浏览器外运行该应用程序。你尝试过吗?     

要回复问题请先登录注册