Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=77389 --- shadow/77389 2006-01-28 00:17:38.000000000 -0500 +++ shadow/77389.tmp.18166 2006-01-28 00:17:38.000000000 -0500 @@ -0,0 +1,45 @@ +Bug#: 77389 +Product: Mono: Class Libraries +Version: 1.1 +OS: +OS Details: mono 1.1.13.2 +Status: NEW +Resolution: +Severity: +Priority: Minor +Component: System +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: System.Diagnostics.Process.Start does not open file/uri-scheme through associated apps + +Description of Problem: +Process.Start on Linux does not load file/uri-scheme through associated apps. + + +Steps to reproduce the problem: +1. System.Diagnostics.Process.Start("http://www.mono-project.com/") + +Actual Results: +throws System.ComponentModel.Win32Exception + +Expected Results: +Open user default web browser to http://www.mono-project.com/ + + +How often does this happen? +Everytime + + +Additional Information: +According to MSDN documentation Process.Start(string) must also open any +file/uri-scheme associated with an application in the desktop environment. +e.g: on Gnome, Process.Start("~") should fire Nautilus as file browser. + +Also, this "other" way gave same result : +ProcessStartInfo psi = new ProcessStartInfo("http://www.mono-project.com/"); +psi.UseShellExecute = true; +Process.Start(psi); _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
