Registering a COM Object

Ask a Question related to Coldfusion Server Administration, Design and Development.

  1. #1

    Default Registering a COM Object

    We are running ColdFusion MX6 on a Windows machine.

    I created a DLL using C++. After compilation, it created an object and
    a dll file. I found some documentation that explains how to
    register the COM object:

    Click "Start"
    Click "Run"
    Type "regsvr32 fullpath_and_objectName"

    I've never registered a COM object before. Do I just need the DLL and point
    to that,
    or do I need the object as well and point to that? I cannot find alot of
    documentation, so
    I'm hoping someone from the forums can help me out.

    Thanks

    James

    James74 Guest

  2. Similar Questions and Discussions

    1. Registering Illustraror 9 or 10
      I am looking to purchase Illustrator 9 or 10 from e-bay. Some of the software for sale are used and possibly already registered by a former owner...
    2. Registering
      I have an ASP.NET 2003 application taht is contains MSXML5.DLL in the reference list. SO far I have only seen this library available with Visio...
    3. Problems registering with RHN
      To Whom It May Concern: I have just installed Linux on my system for the first time. I am running Red Hat Linux/x86 9 (Shrike). When I...
    4. Problem Registering
      For some reason the website won't accept my Photoshop Elements serial number. I checked and double checked it, and it's right... so I'm not sure what...
    5. Registering users in DB2
      How do I register users in DB2 express ver 8. From the database level, there is option to add new users but we cant provide password Thanx ...
  3. #2

    Default Re: Registering a COM Object

    > We are running ColdFusion MX6 on a Windows machine.
    >
    > I created a DLL using C++. After compilation, it created an object and
    > a dll file. I found some documentation that explains how to
    > register the COM object:
    >
    > Click "Start"
    > Click "Run"
    > Type "regsvr32 fullpath_and_objectName"
    I think that is all that is required, but my knowledge of COM objects is
    rusty. You might find better answers on MS's forums.

    --
    <mack />


    Neculai Macarie Guest

  4. #3

    Default Re: Registering a COM Object

    You've got it. Though I generally like to open a cmd prompt, cd into the directory and then just do regsvr32 file.dll.

    Make sure you restart the CF App server after you register the file.
    ke4pym Guest

  5. #4

    Default Re: Registering a COM Object

    Thanks for everyone's help.
    James74 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139