[Mono-bugs] [Bug 77389][Min] New - System.Diagnostics.Process.Start
does not open file/uri-scheme through associated apps
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Sat Jan 28 00:17:38 EST 2006
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 cedricv at neonux.com.
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: mono-bugs at ximian.com
+ReportedBy: cedricv at neonux.com
+QAContact: mono-bugs at ximian.com
+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);
More information about the mono-bugs
mailing list