INTERACT FORUM

Windows => Plug-in Development => Topic started by: mhwlng on October 14, 2003, 04:11:55 am

Title: out-of-proc automation still broken in 9.1.281
Post by: mhwlng on October 14, 2003, 04:11:55 am
I reporten out-of-proc problems in .net (c#) earlier

the problems are still there in 9.1.280

if I start MC and then my c# application, everything is OK.
if I stop my application, playback stops or MC crashes

it never allows a second connection
mj=new MediaJukebox.MJAutomation(); fails...

edit: 9.1.275 changed into 9.1.277 (15 oct 2003)
edit: 9.1.277 changed into 9.1.279 (16 oct 2003)
edit: 9.1.279 changed into 9.1.280 (17 oct 2003)
edit: 9.1.280 changed into 9.1.281 (18 oct 2003)



Regards,

Marcel Houweling
Title: Re:out-of-proc automation still broken in 9.1.280
Post by: Soundman on October 18, 2003, 12:52:53 am
FWIW, I can't get it to work lately either.  I resort to using MCIO as a workaround.
Title: Re:out-of-proc automation still broken in 9.1.281
Post by: mhwlng on October 18, 2003, 03:53:12 am
Thanks Soundman, that seems to fix the problem

I found the MCIO plugin on :
http://myhtpc.net/plugins/index.php?showthis=2082
 (http://myhtpc.net/plugins/index.php?showthis=2082)

in c#, I use :

using MediaJukebox;
using MCIOServerLib;

MediaJukebox.IMJAutomation mj;
MCIOServerLib.IMediaCentreInsideOutServer mcio;

mcio= new MCIOServerLib.MediaCentreInsideOutServerClass();
mj = (MediaJukebox.IMJAutomation)mcio.GetMJAutomationObject(false,1);



Regards,

Marcel Houweling