Hi Brent Thanks, i'll try that.
Sergio ----- Original Message ----- From: "Brent Fulgham" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Cc: [email protected] Sent: Tuesday, June 17, 2008 12:03:44 PM GMT -05:00 Columbia Subject: Re: [webkit-dev] Failure to run WinLauncher Try running the dumprendertree utility. This program automatically registers the various elements needed to support the WebKit COM interface. Thanks, -Brent On Jun 16, 2008, at 1:39 AM, [EMAIL PROTECTED] wrote: > Hi > > Thanks for your response. As i noticed that it was a COM object, i > tried runnign regsvr32 on it. It succeeded, but still didn't work. I > checked the code for the DLLRegisterServer and it says "deprecated - > do not use" and only return 0. Any other way of registering? > > Thanks in advance, > > Sergio Aguayo > >> ---- Original Message ---- >> From: [EMAIL PROTECTED] >> To: [email protected] >> Sent: Mon, 16 Jun 2008 06:37:46 -0400 (EDT) >> Subject: Re: [webkit-dev] Failure to run WinLauncher >> >> In Windows the WebKit is a COM object and it looks like it isn't >> registered in your machine. If you don't want to register it, just >> have the WinLauncher.exe, webkit.dll and the file >> WinLauncher.exe.manifest (that you create) with the content below >> in the same directory (for a release build. The debug build uses >> the CRT debug): >> >> <?xml version='1.0' encoding='UTF-8' standalone='yes'?> >> <assembly xmlns='urn:schemas-microsoft-com:asm.v1' >> manifestVersion='1.0'> >> <dependency> >> <dependentAssembly> >> <assemblyIdentity type='win32' name='Microsoft.VC80.CRT' >> version='8.0.50727.762' processorArchitecture='x86' >> publicKeyToken='1fc8b3b9a1e18e3b' /> >> </dependentAssembly> >> </dependency> >> <file name = "WebKit.dll"> >> <comClass clsid="{4FF47097-3FEA-4B47-AC0E-90725C546490}" progid >> = "OpenSourceWebKit.WebView" threadingModel = "Apartment" /> >> </file> >> <file name = "WebKit.dll"> >> <comClass clsid="{97F3EB52-9EAC-4062-82E1-E5C1E7789DEE}" progid >> = "OpenSourceWebKit.WebMutableURLRequest" threadingModel = >> "Apartment" /> >> </file> >> </assembly> >> >> This is the MS CRT I have installed. You may want to check in your >> WinLaucher build release directory the file >> WinLauncher.exe.intermediate.manifest and use the assembyIndentity >> entry you have there. >> >> Manoel Marques >> _______________________________________________ >> webkit-dev mailing list >> [email protected] >> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev > _______________________________________________ > webkit-dev mailing list > [email protected] > http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev _______________________________________________ webkit-dev mailing list [email protected] http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

