CreateObject Failure

Ask a Question related to ASP.NET Web Services, Design and Development.

  1. #1

    Default CreateObject Failure

    I have a webservice that is attempting to issue a CreateObject call for a
    COM+ component.

    When the code passes the name of a load balanced node, it fails. When the
    code passes a name of one of the servers in the cluster, it works.

    examples:
    CreateObject("my_component","cluster.name.fails") ' this fails
    CreateObject("my_component","servername_in_the_clu ster") ' this works

    Before I go off and start fighting with our server support staff over this,
    is it even possible to issue the cluster name? The help docs say it can
    resolve through DNS or IP address, so is it possible I need to pass the IP to
    the node? Or is it a code problem, where I will have to change my code to
    not call the node?

    Any help/suggestions/ideas would be much obliged.

    Thanks,
    Glenn Harland
    G. Harland Guest

  2. Similar Questions and Discussions

    1. CreateObject --> ASP 0177
      Bonjour, I just install Windows Server 2003 (+IIS6) and my old application doesn't work anymore because i'm unable to use server.createobject. My...
    2. Error Createobject()
      Muchas gracias antes de nada El problema que tengo es que necesito desde una pagina web en asp ejecutar al aplicación Word en el cliente. Para...
    3. CreateObject() doesn't work. Why?
      On my Windows Server 2003 Web Edition I have installed an application which offers some OLE Automation Objects. On my local system (W2k Prof) it...
    4. Server.CreateObject
      er... you can't. not like that anyway. you could in theory pull a list of all COM objects from the registry, but only a small proportion will be...
    5. ASP CreateObject Error
      I am using a DLL in an ASP page that connects to Database But server is giving an error Server Object 0177 (800A801d) I saw the error information...
  3. #2

    Default RE: CreateObject Failure

    I'd lay 10:1 odds it's a permissions issue. If you're trying to execute these
    COM+ calls from within the asp.net worker process, the asp.net worker process
    will need the privledges to execute your com+ components.

    "G. Harland" wrote:
    > I have a webservice that is attempting to issue a CreateObject call for a
    > COM+ component.
    >
    > When the code passes the name of a load balanced node, it fails. When the
    > code passes a name of one of the servers in the cluster, it works.
    >
    > examples:
    > CreateObject("my_component","cluster.name.fails") ' this fails
    > CreateObject("my_component","servername_in_the_clu ster") ' this works
    >
    > Before I go off and start fighting with our server support staff over this,
    > is it even possible to issue the cluster name? The help docs say it can
    > resolve through DNS or IP address, so is it possible I need to pass the IP to
    > the node? Or is it a code problem, where I will have to change my code to
    > not call the node?
    >
    > Any help/suggestions/ideas would be much obliged.
    >
    > Thanks,
    > Glenn Harland
    David Talbot 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