[Mono-bugs] [Bug 606142] HTTP Does not follow redirects correctly
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Mon May 17 02:09:11 EDT 2010
http://bugzilla.novell.com/show_bug.cgi?id=606142
http://bugzilla.novell.com/show_bug.cgi?id=606142#c1
Gonzalo Paniagua Javier <gonzalo at novell.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |gonzalo at novell.com
--- Comment #1 from Gonzalo Paniagua Javier <gonzalo at novell.com> 2010-05-17 06:09:10 UTC ---
This is a problem in Uri.cs
Simple test case:
----------------
using System;
class Test {
static void Main () {
Uri uri = new Uri
("http://media.libsyn.com/bounce/http://cdn4.libsyn.com/nerdist/somestuff.txt");
Console.WriteLine (uri);
}
}
---------------
Actual output:
http://media.libsyn.com/bounce/http:/cdn4.libsyn.com/nerdist/somestuff.txt
Expected output:
http://media.libsyn.com/bounce/http://cdn4.libsyn.com/nerdist/somestuff.txt
Additional info: the problem is in the Uri.Reduce() method.
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list