err:ole:CoInitializeEx.. err:ole:CoGetClassObject class

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
yugandhar
Level 2
Level 2
Posts: 25
Joined: Mon Dec 01, 2008 11:08 am

err:ole:CoInitializeEx.. err:ole:CoGetClassObject class

Post by yugandhar »

Hi,

Am running my windows executable in oracle enterprise linux using Wine-1.1.7.
Am getting the following error:


err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded

err:ole:CoGetClassObject class {88d969c1-f192-11d4-a65f-0040963251e5} not registered
err:ole:CoGetClassObject class {88d969c1-f192-11d4-a65f-0040963251e5} not registered
err:ole:create_server class {88d969c1-f192-11d4-a65f-0040963251e5} not registered
err:ole:CoGetClassObject no class object {88d969c1-f192-11d4-a65f-0040963251e5} could be created for context 0x7


Help me if anyone has fixed similar issue.


Thanks,
Yug
msclrhd
Level 2
Level 2
Posts: 11
Joined: Sun Mar 30, 2008 2:31 pm

Post by msclrhd »

hi,

The error you are seeing is that it cannot create an instance of the msxml4 object (that is what 88d969c1-f192-11d4-a65f-0040963251e5 is referring to).

You can install this by running
sh winetricks msxml4

See http://wiki.winehq.org/winetricks for more info on where to get/use winetricks,

HTH,
- Reece
yugandhar
Level 2
Level 2
Posts: 25
Joined: Mon Dec 01, 2008 11:08 am

Post by yugandhar »

Dear Reece,

Thanks for your quick response.This fixed worked but still am getting
one of the following error:

err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded.


Thanks,
Yug
msclrhd
Level 2
Level 2
Posts: 11
Joined: Sun Mar 30, 2008 2:31 pm

Post by msclrhd »

Hi,

That error should (in theory) be ok. Does the application you are trying to run work?

If not, you should create a bug report in Bugzilla. You may also want to check AppDB to see if your application is in there and if it has any known issues and/or a howto on getting the application working.
Locked