Ask a Question related to ASP.NET Web Services, Design and Development.
-
G. Harland #1
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
-
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... -
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... -
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... -
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... -
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... -
David Talbot #2
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 HarlandDavid Talbot Guest



Reply With Quote

