Com class failure

  • Thread starter Thread starter DBC User
  • Start date Start date
D

DBC User

I have a web service and when I try to do consume a service I get an
error message something like the following

Server was unable to process request ---> Retrieving the COM class
factory for component with clasid {...} failed due to the following
error : 80070005

Does anyone know how to resolve this?

Thanks.
 
You need to give a little more information on this. Are you trying to
consume an ASP.NET Web Service with code in COM? Are you in control of the
web service? If so, is IT calling a COM component?

This is definitely way too little information.
 
|I have a web service and when I try to do consume a service I get an
| error message something like the following
|
| Server was unable to process request ---> Retrieving the COM class
| factory for component with clasid {...} failed due to the following
| error : 80070005
|
| Does anyone know how to resolve this?
|
| Thanks.
|

80070005 means that you are dealing with a DCOM security issue, probably you
are trying to create an instance of an out-proc component while the caller
has no access privileges to launch or create an instance.
What COM server are you trying to access and what's the identity of the
caller?
Note that webservices (in general) run in the security context of a
restricted user account (defaults : aspnet or network service), unless you
grant them launch and access privileges (see dcomcnfg), these accounts
cannot access COM servers.

Willy.
 
Thanks both, yes I am trying to consume a asp.net web service. I do not
have control over the web services, its been developed by another
group. I will pass along this information for those folks to debug.
Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top