Re: [Mono-list] FtpWebRequest works targeting .net, fails in mono 2.10.9

2013-08-13 Thread MikeN
Aaron, Thank you for your interest. I get an immediate timeout at: FtpWebResponse response = (FtpWebResponse)request.GetResponse(); I thought I mentioned that... sorry. MikeN On 8/2/2013 1:36 PM, Aaron [via Mono] wrote: When and in what way does it fail? Do you receive an exception? On Jul

Re: [Mono-list] FtpWebRequest works targeting .net, fails in mono 2.10.9

2013-08-13 Thread MikeN
System.Net.WebException: Request timed out at System.Net.FtpWebRequest.EndGetRequestStream (IAsyncResult asyncResult) [0x00075] in C:\cygwin\tmp\monobuild\build\BUILD\mono-2.10.9\mcs\class\System\System.Net\FtpWebRequest.cs:468 at System.Net.FtpWebRequest.GetRequestStream () [0x9] in

[Mono-list] FtpWebRequest works targeting .net, fails in mono 2.10.9

2013-08-02 Thread MikeN
I have a simple FTP binary file upload, the code works fine in VS and Xamarin Studio if I target .net, but fails when I target mono 2.10.9 (or 2.6.7). [note: I have obscured the user credentials and IP address] FtpWebRequest request =

Re: [Mono-list] FtpWebRequest works targeting .net, fails in mono 2.10.9

2013-08-02 Thread Aaron Oneal
When and in what way does it fail? Do you receive an exception? On Jul 30, 2013, at 6:31 AM, MikeN mniem...@oowidgets.com wrote: I have a simple FTP binary file upload, the code works fine in VS and Xamarin Studio if I target .net, but fails when I target mono 2.10.9 (or 2.6.7). [note: I have

Re: [Mono-list] FtpWebRequest works targeting .net, fails in mono 2.10.9

2013-08-02 Thread Aaron Oneal
It's under different conditions, but it might help to know I ran this test here with Mono 3.2.0 on Mountain Lion against a Mountain Lion Server and it worked. On Aug 2, 2013, at 10:33 AM, Aaron Oneal aaron.on...@spicypixel.com wrote: When and in what way does it fail? Do you receive an

Re: [Mono-list] FtpWebRequest works targeting .net, fails in mono 2.10.9

2013-08-02 Thread Jonathan Pryor
On Jul 30, 2013, at 9:31 AM, MikeN mniem...@oowidgets.com wrote: I have a simple FTP binary file upload, the code works fine in VS and Xamarin As Aaron Oneal asked, what's the error? If it's a UriFormatException, it could be this: https://bugzilla.xamarin.com/show_bug.cgi?id=13343 -