http://bugs.winehq.org/show_bug.cgi?id=34983
Bug #: 34983 Summary: Fellowship One Check-In Application needs IBackgroundCopyJob::SetDescription method Product: Wine Version: 1.7.7 Platform: x86 OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: qmgr AssignedTo: wine-bugs@winehq.org ReportedBy: focht@gmx.net Classification: Unclassified
Hello folks,
as the summary says...
Prerequisite: 'winetricks -q dotnet20' in clean 32-bit WINEPREFIX (Mono might work too)
Trace log doesn't really give it away but running the .NET app with managed debugger does ...
--- snip --- $ pwd
$ /home/focht/.wine/drive_c/Program Files/Fellowship Technologies/Fellowship One Check-in 2.5
$ wine ./AppStart.exe ... 000b:fixme:qmgr:BITS_IBackgroundCopyJob_SetDescription Not implemented (2a.37): C++ EH exception - code e06d7363 (first chance) (2a.37): CLR exception - code e0434f4d (first chance) ... OS Thread Id: 0x37 (4) ESP EIP 03ade188 7b83a8ef [ComPlusMethodFrameStandaloneCleanup: 03ade188] Microsoft.ApplicationBlocks.ApplicationUpdater.Downloaders.IBackgroundCopyJob.SetDescription(System.String) 03ade198 038b68ff Microsoft.ApplicationBlocks.ApplicationUpdater.Downloaders.BITSDownloader.CreateCopyJob(Microsoft.ApplicationBlocks.ApplicationUpdater.Downloaders.IBackgroundCopyManager ByRef, Microsoft.ApplicationBlocks.ApplicationUpdater.Downloaders.IBackgroundCopyJob ByRef, System.Guid ByRef, System.String, System.String) 03ade1f0 038b6217 Microsoft.ApplicationBlocks.ApplicationUpdater.Downloaders.BITSDownloader.Microsoft.ApplicationBlocks.ApplicationUpdater.Interfaces.IDownloader.Download(System.String, System.String, System.TimeSpan) 03ade25c 038b47f7 Microsoft.ApplicationBlocks.ApplicationUpdater.DownloaderManager.IsServerManifestDownloaded() 03ade2a8 038b4050 Microsoft.ApplicationBlocks.ApplicationUpdater.DownloaderManager.RunDownloader() 03ade2d4 793d7a7b System.Threading.ThreadHelper.ThreadStart_Context(System.Object) 03ade2dc 793683dd System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object) 03ade2f4 793d7b5c System.Threading.ThreadHelper.ThreadStart() 03ade518 79e88f63 [GCFrame: 03ade518] ... [BITSDownloader.CreateCopyJob] : The BITS downloader experienced an unexpected error. It may have been asked to check job status for a job ID that no longer exists, or a job that was canceled. The jobID was '8fe9ce5b-4708-466f-944c-9576252dfb18', the job name was 'Updater job.', and the description was 'Updater: Download the Server XML File.'. ERROR: The method or operation is not implemented. STACK: at Microsoft.ApplicationBlocks.ApplicationUpdater.Downloaders.IBackgroundCopyJob.SetDescription(String Val) at Microsoft.ApplicationBlocks.ApplicationUpdater.Downloaders.BITSDownloader.CreateCopyJob(IBackgroundCopyManager& copyManager, IBackgroundCopyJob& copyJob, Guid& jobID, String jobNameKey, String jobDescriptionKey) ... --- snip ---
Source: http://source.winehq.org/git/wine.git/blob/53e25cb4f60bd2d760a9b2fe8b83de376...
--- snip --- 324 static HRESULT WINAPI BITS_IBackgroundCopyJob_SetDescription( 325 IBackgroundCopyJob2 *iface, 326 LPCWSTR Val) 327 { 328 FIXME("Not implemented\n"); 329 return E_NOTIMPL; 330 } --- snip ---
$ sha1sum fellowshiponecheckin2_5.msi f038d88910bf3bc108901ff3768f92eb2cc58791 fellowshiponecheckin2_5.msi
$ du -sh fellowshiponecheckin2_5.msi 508K fellowshiponecheckin2_5.msi
$ wine --version wine-1.7.7-119-g3197262
Regards