2

C# クラス ライブラリ用の 1 つの CCW コンポーネントを作成しています。このライブラリにはサード パーティの DLL が含まれています。

  1. このユーザー コントロールは、Classic ASP ページで使用する必要があります

  2. その目的のために、CCW Wrapper クラスを生成しました

  3. Wrapper クラスで関数宣言用のインターフェースを作成します。

このインターフェイスとクラスには、C# クラス ライブラリ DLL とサードパーティ DLL のリファレンスが含まれています

インターフェース

[ComVisible(true)]
    [Guid("D6F88E95-8A27-4ae6-B6DE-0542A0FC7039")]//GUID for this interface
    [InterfaceType(ComInterfaceType.InterfaceIsDual)]//Enable early as well as late binding
    public interface IInterface
    {
        [DispId(1)]
        void Init();

        [DispId(2)]
        void OpenFile(string FileName);

        [DispId(3)]
        void Dispose();

        [DispId(4)]
        THirdPartyDLLClass ThirdPartyMethod();
    }

インターフェース実装クラス

    [ComVisible(true)]
    [Guid("13FE32AD-4BF8-495f-AB4D-6C61BD463EA4")]//GUID for this class
    [ClassInterface(ClassInterfaceType.None)]//Don't generate any interface  automatically.  We will explicitly create one
    [ComSourceInterfaces(typeof(IInterface))]//Expose events
    [ProgId("CCWTEST.ClassMath")]//Friendly name of the class. Used while creating object without using 'New' keyword
    public class ClassMath : IInterface
    {
      [ComVisible(false)]//Don't expose to COM. Can be used internally.
      private ViewerControl objViewerControl = new ViewerControl(); //ref dll class file

      [ComVisible(true)]
       public void Init()
        {
         objViewerControl.Init();
        }

       [ComVisible(true)]
        public void OpenFile(string FileName)
         {
          objViewerControl.OpenFile(FileName);
         }

       [ComVisible(true)]
        public void Dispose()
         {
          objViewerControl.Dispose();
         }

       [ComVisible(true)]// 
        public THirdPartyDLLClass  ThirdPartyMethod()
         {
           return THirdPartyDLLClass.ThirdPartyClassProperty;
          }
       }

従来の ASP 内の JavaScript

window.onload = onLoad;
        function onLoad()
        {
            try
            {                
                var obj = new ActiveXObject("CCWTEST.ClassMath");           

            }
            catch (e)
            {
                alert(e.Message);
            }
        }

この DLL を gacutil /i に登録し、これらの DLL に Java スクリプト コードにアクセスしようとすると、「未定義」エラーが発生します。これで何が悪いのかわかりません。これには、サードパーティの DLL と C# クラス ライブラリを GAC にインストールする必要があります。

4

1 に答える 1

0

COM コンポーネントを登録するには、gacutil の代わりにregsvr32.exe CCWTEST.ClassMath.ocx (COM .ocx コンポーネント ファイル) を試してください。

于 2013-06-04T22:39:57.527 に答える