Connection error 429

Questions about Wine on Linux
Locked
Broskinator97
Newbie
Newbie
Posts: 2
Joined: Mon Dec 18, 2017 7:30 am

Connection error 429

Post by Broskinator97 »

Hi, I've installed an app that I use on windows on my linux pc with wine, but I can't open it because every time I try it says Connection Error 429 and ActiveX component can't create objects. Is there a way to solve this?
If I try to run it with the terminal the result is
fixme:olepicture:OleLoadPictureEx (0x4b8c304,7366,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x33fa20), partially implemented.
fixme:olepicture:OLEPictureImpl_SaveAsFile (0x153d78)->(0x15f670, 0, (nil)), hacked stub.
fixme:variant:VarDateFromUdateEx unsupported flags: 4
fixme:ole:CLSIDFromProgIDEx L"Scripting.FileSystemObject",0x33f3cc: semi-stub
fixme:scrrun:filesys_QueryInterface Unsupported interface {7fd52380-4e07-101b-ae2d-08002b2ec713}
fixme:scrrun:filesys_QueryInterface Unsupported interface {37d84f60-42cb-11ce-8135-00aa004bb851}
fixme:ole:CLSIDFromProgIDEx L"Scripting.FileSystemObject",0x33f58c: semi-stub
fixme:scrrun:filesys_QueryInterface Unsupported interface {7fd52380-4e07-101b-ae2d-08002b2ec713}
fixme:scrrun:filesys_QueryInterface Unsupported interface {37d84f60-42cb-11ce-8135-00aa004bb851}
err:ole:CoGetClassObject class {00000100-0000-0010-8000-00aa006d2ea4} not registered
err:ole:create_server class {00000100-0000-0010-8000-00aa006d2ea4} not registered
err:ole:CoGetClassObject no class object {00000100-0000-0010-8000-00aa006d2ea4} could be created for context 0x5
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: Connection error 429

Post by Bob Wya »

@Broskinator97

Please don't post terminal output/ commands - inline - without using the forum Code:

Code: Select all

Code
tags.
Otherwise your posts are going to be very unreadable... :roll:

You've also successfully managed to convey very little information in your post...
  • What version of Wine are using?
  • What Linux Distribution?
  • What application are you testing? (This should really be in the forum thread title - not some obscure error message)
What command are you using to run the (unspecified) application you are testing?

Bob
Broskinator97
Newbie
Newbie
Posts: 2
Joined: Mon Dec 18, 2017 7:30 am

Re: Connection error 429

Post by Broskinator97 »

I'm sorry, I forgot to tell those things.
I'm using wine 2.0.3, on Ubuntu 17.10, and the application that I'm trying to run is Total Extreme Wrestling 2016.
(How can I modify my first post to put the terminal output under the Code??
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: Connection error 429

Post by Bob Wya »

Broskinator97 wrote:I'm sorry, I forgot to tell those things.
I'm using wine 2.0.3, on Ubuntu 17.10, and the application that I'm trying to run is Total Extreme Wrestling 2016.
(How can I modify my first post to put the terminal output under the Code??
@Broskinator97

First off - make sure your system winetricks script is up to date...
See: WineHQ: Winetricks ...

Based on: Bug 42857 - Can't select a fixture in FreeStyler's fixture editor ...
I'd update to Wine Development - release 3.0-rc2.
See: WineHQ Download: Ubuntu ...

See also: Bug 37484 - Many applications need Microsoft DAO 3.6 Object Library, CLSID '{00000100-0000-0010-8000-00AA006D2EA4}' ('winetricks -q jet40' is a workaround)

Setup a clean 32-bit WINEPREFIX set to Windows XP Compatibility, e.g. (something like):

Code: Select all

export WINEPREFIX=~/.wine32
WINEARCH=win32 wineboot -u
sleep 2
winetricks winxp
winetricks -q jet40
Then retest your game (remember the export WINEPREFIX=~/.wine32 in every new shell session - you reference that new WINEPREFIX from).
See: WineHQ FAQ: 6.5.3 How do I create a 32 bit wineprefix on a 64 bit system?

Bob
Locked