[Mono-bugs] [Bug 689548] RootObjectInstance is not used by XamlObjectWriter

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=689548

https://bugzilla.novell.com/show_bug.cgi?id=689548#c1


Atsushi Enomoto aenom...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Atsushi Enomoto aenom...@novell.com 2011-04-28 06:00:45 
UTC ---
Fixed in git master (1ac59d0).

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 688007] WebClient.OpenRead() fails when trying to access an anonymous ftp site

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=688007

https://bugzilla.novell.com/show_bug.cgi?id=688007#c7


--- Comment #7 from QuickJack . test051...@hotmail.com 2011-04-28 06:31:28 
UTC ---
I am using different testing machines. This one runs Ubuntu Maverick and does
have a direct internet connection and is not using a proxy. I have compiled
current Mono master yesterday evening. Anonymous ftp is working now! However,
accessing a password protected ftp site is not fully working. I created a
console application using the following code:

using System;
using System.Net;
using System.IO;

namespace WebClient.Test
{
class MainClass
{
public static void Main (string[] args)
{   
System.Net.WebClient client=new System.Net.WebClient();
//client.Credentials=new
NetworkCredential(user,test);//explicitly setting credentials works
System.IO.Stream
strm=client.OpenRead(ftp://user:test@192.168.1.10/test/divx.txt;);//specifying
credentials via url fails!!!
System.Text.ASCIIEncoding enc=new System.Text.ASCIIEncoding();
byte[] buf=new byte[256];

strm.Read(buf,0,256);
string strContent=enc.GetString(buf);
strm.Close();
Console.WriteLine (Hello World!);
}
}
}

I used the Quick'n'Easy Ftp Server (Freeware) under WinXP to set up a password
protected site on another machine.

Specifiying credentials via the url is not working. The relevant code is in
FtpWebRequest.Authenticate() which tries to access the site using anonymous
credentials in this case. It simply ignores the credentials which are supplied
via the url. This should be fixed.

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 673019] XmlSerializer : Bad Custom serializer generated with char default value

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=673019

https://bugzilla.novell.com/show_bug.cgi?id=673019#c3


Atsushi Enomoto aenom...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #3 from Atsushi Enomoto aenom...@novell.com 2011-04-28 06:45:21 
UTC ---
Fixed in git master (2f86157) and mono-2-10 (02e0ab3). Thanks for the simple
test.

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690474] New: mod_mono autorestart under load drops connections and may corrupt the command stream

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690474

https://bugzilla.novell.com/show_bug.cgi?id=690474#c0


   Summary: mod_mono autorestart under load drops connections and
may corrupt the command stream
Classification: Mono
   Product: Mono: Runtime
   Version: 2.10.x
  Platform: x86-64
OS/Version: Other
Status: NEW
  Severity: Major
  Priority: P5 - None
 Component: misc
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: ben.l...@nearmap.com
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---
   Blocker: ---


Created an attachment (id=427000)
 -- (http://bugzilla.novell.com/attachment.cgi?id=427000)
Contains the aspx page and associated code

User-Agent:   Mozilla/5.0 (X11; U; Linux x86_64; en-US) AppleWebKit/534.13
(KHTML, like Gecko) Chrome/9.0.597.45 Safari/534.13

Ubuntu 9.04, Apache 2.2.11-2ubuntu2.3, mod_mono compiled from 2.10.1 source.

Running a site with the following mod_mono setup:
MonoAutoRestartMode appsite Requests
MonoAutoRestartRequests appsite 1
MonoMaxActiveRequests   appsite 32
MonoMaxWaitingRequests  appsite 1024

The mod-mono executable is /usr/local/mono-2.10.1/bin/mod-mono-server4

Created a minimal site containing a single aspx page with code (see
attachments).  All the page does is return a fixed string.

Using an inhouse load-generator, we caused 128 workers to repeatedly load
/alive.aspx as fast as possible (so there would be a maximum of 128 requests in
parallel at any one time, and a maximum of 128 requests queued if the
mod-mono-server is busy). The load generator typically runs at around 500
requests/second when exercising the mono back-end.  Every 1 requests, the
mod-mono-server is restarted.




Reproducible: Sometimes

Steps to Reproduce:
1. See details

Actual Results:  
We see the following behaviour:
1. In the Apache error log:

[Thu Apr 28 15:07:22 2011] [error] (70014)End of file found: read_data failed
[Thu Apr 28 15:07:22 2011] [error] (70014)End of file found: read_data failed
[Thu Apr 28 15:07:22 2011] [error] Command stream corrupted, last command was 1
[Thu Apr 28 15:07:22 2011] [error] (70014)End of file found: read_data failed
[Thu Apr 28 15:07:22 2011] [error] (70014)End of file found: read_data failed
(many instances of this).

2. In the load-tester clients, at the point that the mod-mono-server is
restarted, we see many connection refused errors and 500 server errors.  We
believe that these are due to the restart since they happen simultaneously with
the errors shown above.

3. The above does not always happen.  For example, in one test run, when 1
requests were reached, all requests waited until the restart and then
continued; though the responses were delayed, no errors occurred.  We therefore
suspect this is a race condition that occurs when a certain pattern of parallel
requests is handled.

Expected Results:  
We would expect that when the mod-mono-server restarts, pending requests are
queued until it is available again.


At present, we believe that the auto restart feature is necessary because (a)
there are slow memory leaks in the mod-mono-server process (probably due to
base heap fragmentation) and there are a number of conditions which cause the
mod-mono-server to consume 100% CPU*.  However, unless the server can restart
cleanly, it is not usable in production under load.

* If we can get a test case for any of these, we'll submit bug reports.  The
bug relating to caching, fixed in 2.10.2 is not the cause here, since we have
worked around that (and also reported that bug).

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690475] New: Unexpected XmlConvert.ToDateTime(string, XmlDateTimeSerializationMode) behaviour

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690475

https://bugzilla.novell.com/show_bug.cgi?id=690475#c0


   Summary: Unexpected
XmlConvert.ToDateTime(string,XmlDateTimeSerializationM
ode) behaviour
Classification: Mono
   Product: Mono: Class Libraries
   Version: unspecified
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: Sys.XML
AssignedTo: atsu...@ximian.com
ReportedBy: a.se...@subsembly.com
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---
   Blocker: ---


User-Agent:   Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20100101
Firefox/4.0

When converting a UTC time specification using the following method call:

XmlConvert.ToDateTime(2009-12-15T08:44:05.2700544Z,
XmlDateTimeSerializationMode.Local);

the method produces the following exception:

System.FormatException: Invalid format string
  at System.DateTime.ParseExact (System.String s, System.String[] formats,
IFormatProvider provider, DateTimeStyles style) [0x0005c] in
/home/jon/Development/mono-droid/mono/mcs/class/corlib/System/DateTime.cs:1761
  at System.Xml.XmlConvert.ToDateTime (System.String s, System.String[]
formats, DateTimeStyles style) [0x0] in
/home/jon/Development/mono-droid/mono/mcs/class/System.XML/System.Xml/XmlConvert.cs:403
  at System.Xml.XmlConvert.ToDateTime (System.String s, System.String[]
formats) [0x0] in
/home/jon/Development/mono-droid/mono/mcs/class/System.XML/System.Xml/XmlConvert.cs:397
  at System.Xml.XmlConvert.ToDateTime (System.String value,
XmlDateTimeSerializationMode mode) [0x0001d] in
/home/jon/Development/mono-droid/mono/mcs/class/System.XML/System.Xml/XmlConvert.cs:371
..

The Mono implementation of this method requires that a local date time
specification is passed to the method in order to work successfully. This
behaviour, however, is different to the documented (and implemented) Microsoft
NET Framework behaviour where the parameter XmlDateTimeSerializationMode is
documented as:

One of the XmlDateTimeSerializationMode values that specify whether the date
should be converted to local time or preserved as Coordinated Universal Time
(UTC), if it is a UTC date.

Thus the expected behaviour (which is also the actual behaviour of the MS .NET
Framework) would be that the UTC date time specification is parsed
successfully, and then converted to a local date time representation which is
returned to the caller.


Reproducible: Always

Steps to Reproduce:
Just call

XmlConvert.ToDateTime(2009-12-15T08:44:05.2700544Z,
XmlDateTimeSerializationMode.Local);
Actual Results:  
System.FormatException: Invalid format string


Expected Results:  
The UTC date time specification whould be parsed successfully, and then
converted to a local DateTime instance which is returned to the caller.

I observed this when working with Mono for Android, but I think it probably
applies to all Mono class library implementations.

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690474] mod_mono autorestart under load drops connections and may corrupt the command stream

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690474

https://bugzilla.novell.com/show_bug.cgi?id=690474#c1


--- Comment #1 from Ben Last ben.l...@nearmap.com 2011-04-28 07:47:21 UTC ---
Note that in contrast to bug 472732, we do not see any managed code exceptions
thrown.
The Apache process user (www-data) has hard and soft nofile limits of 32000.

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 682619] ERROR building certificate chain: System.NullReferenceException: Object reference not set to an instance of an object

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=682619

https://bugzilla.novell.com/show_bug.cgi?id=682619#c21


--- Comment #21 from Kari Takanen re...@psimerion.org 2011-04-28 08:25:29 UTC 
---
Created an attachment (id=427014)
 -- (http://bugzilla.novell.com/attachment.cgi?id=427014)
mono-A7CB3F49DA01C8E2AAFE3F502F6E9B99587A2932.log

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 682619] ERROR building certificate chain: System.NullReferenceException: Object reference not set to an instance of an object

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=682619

https://bugzilla.novell.com/show_bug.cgi?id=682619#c22


--- Comment #22 from Kari Takanen re...@psimerion.org 2011-04-28 08:26:07 UTC 
---
Created an attachment (id=427015)
 -- (http://bugzilla.novell.com/attachment.cgi?id=427015)
mono-A7CB3F49DA01C8E2AAFE3F502F6E9B99587A2932cer

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 682619] ERROR building certificate chain: System.NullReferenceException: Object reference not set to an instance of an object

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=682619

https://bugzilla.novell.com/show_bug.cgi?id=682619#c23


--- Comment #23 from Kari Takanen re...@psimerion.org 2011-04-28 08:27:20 UTC 
---
Took a few weeks to get these :)

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690475] Unexpected XmlConvert.ToDateTime(string, XmlDateTimeSerializationMode) behaviour

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690475

https://bugzilla.novell.com/show_bug.cgi?id=690475#c1


Atsushi Enomoto aenom...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Atsushi Enomoto aenom...@novell.com 2011-04-28 08:38:55 
UTC ---
Yes it applies to everywhere. Fixed in git master (88c6254) and mono-2-10
(a6e6fbb). Thanks.

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690530] New: Server sources distribution

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690530

https://bugzilla.novell.com/show_bug.cgi?id=690530#c0


   Summary: Server sources distribution
Classification: Mono
   Product: Mono: Runtime
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: Enhancement
  Priority: P5 - None
 Component: packaging
AssignedTo: ajorgen...@novell.com
ReportedBy: mirko-nov...@nextware.it
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---
   Blocker: ---


User-Agent:   Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101
Firefox/4.0

For server installation, please provide
sources without docs and test!
Thank you

Reproducible: Always

Steps to Reproduce:
1.
2.
3.

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 688007] WebClient.OpenRead() fails when trying to access an anonymous ftp site

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=688007

https://bugzilla.novell.com/show_bug.cgi?id=688007#c8


--- Comment #8 from QuickJack . test051...@hotmail.com 2011-04-28 11:18:24 
UTC ---
Hi Gonzalo,

I have taken a deeper look into the issue and found a possible solution.

###
#Analysis
###
The current implementation of WebClient.SetupRequest() is as follows:

WebRequest SetupRequest (Uri uri)
{
WebRequest request = GetWebRequest (uri);
if (Proxy != null)
request.Proxy = Proxy;
if (credentials != null)
request.Credentials = credentials;

//additional code not included for this demo
}

It starts by setting up proxy servers and credentials. But it does not try to
extract credentials from the url.


###
#Solution
###
I have extended the above part as follows:

WebRequest SetupRequest (Uri uri)
{
WebRequest request = GetWebRequest (uri);
if (Proxy != null)
request.Proxy = Proxy;
if (credentials != null)
request.Credentials = credentials;
else if(uri.AbsoluteUri.Contains(@))
{
//extract username/password
request.Credentials = GetCredentials(uri.AbsoluteUri);
}


//additional (unchanged) code not included for this demo
}

internal NetworkCredential GetCredentials(string strUrl)
{
int i = strUrl.IndexOf(//)+2;
int j = strUrl.IndexOf('/', i);
string strCredential=strUrl.Substring(i,j-i);
strCredential = strCredential.Substring(0, strCredential.LastIndexOf('@'));
string[] credentials=strCredential.Split(new char[]{':'});

if (credentials.Length == 2)
{
if (credentials[0].Contains(\\))
{
//extract domain name
string[] names=credentials[0].Split(new char[]{'\\'});

if (names.Length == 2)
return new NetworkCredential(names[1], credentials[1],
names[0]);
}

return new NetworkCredential(credentials[0], credentials[1]);
}

return new NetworkCredential();
}

The GetCredentials() method extracts username/password and possible domain
names from the url and initializes a new NetworkCredential object with them.

I have done tests on a password protected ftp site in the intranet that runs on
IIS and requires username/password/domain name to authenticate as well as on my
Quick'n'Easy ftp test server that requires username/password only. All tests
were successful.

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 680308] Unclear message when compiling against a SDK that doesn't exist

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=680308

https://bugzilla.novell.com/show_bug.cgi?id=680308#c4


Michael Hutchinson mhutchin...@novell.com changed:

   What|Removed |Added

  Component|IPhone add-in   |Tools
 AssignedTo|mhutchin...@novell.com  |gnor...@novell.com
Product|MonoDevelop |MonoTouch
  QAContact|monodevelop-b...@lists.ximi |mono-bugs@lists.ximian.com
   |an.com  |

--- Comment #4 from Michael Hutchinson mhutchin...@novell.com 2011-04-28 
12:07:16 UTC ---
MD will only now pass installed SDKs to mtouch when running the sim (though
that isn't actually the correct solution, since the OS versions in the sim
don't exactly match the installed SDKs, but I don't know how to enumerate sim
OSes). Bouncing back to monotouch so that the error in mtouch can be fixed.

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 682619] ERROR building certificate chain: System.NullReferenceException: Object reference not set to an instance of an object

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=682619

https://bugzilla.novell.com/show_bug.cgi?id=682619#c24


Sebastien Pouliot spoul...@novell.com changed:

   What|Removed |Added

 Status|NEEDINFO|ASSIGNED
   InfoProvider|re...@psimerion.org |

--- Comment #24 from Sebastien Pouliot spoul...@novell.com 2011-04-28 
13:36:22 UTC ---
very nice! and I mean both the delay and getting the original stack trace :-)

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690406] RelativeLayout method parameter should be enum

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690406

https://bugzilla.novell.com/show_bug.cgi?id=690406#c


Jonathan Pobst jpo...@novell.com changed:

   What|Removed |Added

 AssignedTo|mono-bugs@lists.ximian.com  |jpo...@novell.com

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690406] RelativeLayout method parameter should be enum

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690406

https://bugzilla.novell.com/show_bug.cgi?id=690406#c2


--- Comment #2 from Jonathan Pobst jpo...@novell.com 2011-04-28 14:54:18 UTC 
---
Another request: IDialogInterfaceOnKeyListener.OnKey should be KeyCode.

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 682619] ERROR building certificate chain: System.NullReferenceException: Object reference not set to an instance of an object

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=682619

https://bugzilla.novell.com/show_bug.cgi?id=682619#c25


Sebastien Pouliot spoul...@novell.com changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

--- Comment #25 from Sebastien Pouliot spoul...@novell.com 2011-04-28 
15:36:07 UTC ---
So the intermediate CA* is signed using an MD4 digest - which is weird
considering MD4 has been broken (first collisions published in 1995) and the
certificate is pretty recent (April 18th, 2011). It even use a 2048bit keypair,
that's far stronger than, even if not broken, MD4 would allow anyway.

* FWIW even the root certificate is using MD4...


968dd21d5a6c9bd6d8e2b401e19141d1bd654a7a (master) fix the issue - it's a
configuration fix so MD4 can be found (and used) automagically.

I'm now closing the bug, hopefully you won't have any more trouble (otherwise
you know the drill ;-)

A huge thank you for tracking/reporting all those failures!

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 682619] ERROR building certificate chain: System.NullReferenceException: Object reference not set to an instance of an object

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=682619

https://bugzilla.novell.com/show_bug.cgi?id=682619#c26


--- Comment #26 from Kari Takanen re...@psimerion.org 2011-04-28 15:37:51 UTC 
---
Thank you for fixing them :)

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 680308] Unclear message when compiling against a SDK that doesn't exist

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=680308

https://bugzilla.novell.com/show_bug.cgi?id=680308#c5


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #5 from Geoff Norton gnor...@novell.com 2011-04-28 15:59:10 UTC 
---
Fixed -- thanks.

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690627] New: Dictionary/List memory usage

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690627

https://bugzilla.novell.com/show_bug.cgi?id=690627#c0


   Summary: Dictionary/List memory usage
Classification: Mono
   Product: Mono: Runtime
   Version: SVN
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: misc
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: gnor...@novell.com
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---
   Blocker: ---


The following sample:


using System;
using System.Collections.Generic;

class Test {
Dictionary string, object t;

public Test () {
t = new Dictionary string, object();
}

static void Main (string [] args) {
long mem = GC.GetTotalMemory(true);
ListTest l = new ListTest();
for (int i = 0; i  3; i++)
l.Add(new Test());
mem = GC.GetTotalMemory(true) - mem;
Console.WriteLine(MEM: {0}, mem);
}
}


is: 

MEM: 11468800

on mono

MS.NET: 2051128

We need to look at why we're blowing up so much.

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690627] Dictionary/List memory usage

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690627

https://bugzilla.novell.com/show_bug.cgi?id=690627#c1


--- Comment #1 from Geoff Norton gnor...@novell.com 2011-04-28 16:25:37 UTC 
---
Providing an initial_capacity of 1 changes our memory usage to:

MEM: 5414912

It looks like this is an implementation detail of the initial capacity, I'm not
sure how much value there is in tuning this.

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690627] Dictionary/List memory usage

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690627

https://bugzilla.novell.com/show_bug.cgi?id=690627#c2


Jonathan Pobst jpo...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||jpo...@novell.com
 Resolution||INVALID

--- Comment #2 from Jonathan Pobst jpo...@novell.com 2011-04-28 16:42:14 UTC 
---
If you add:
Console.WriteLine (l.Count)

*AFTER* the mem = line, the MEM value is 7702744.

If you add it *BEFORE* the mem = line, the MEM value is 9840.

So I think .NET is being clever about disposing things that aren't used
anymore.

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690656] New: Enhancement: Allow the PreserveAttribute to handle class heirarchies

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690656

https://bugzilla.novell.com/show_bug.cgi?id=690656#c0


   Summary: Enhancement: Allow the PreserveAttribute to handle
class heirarchies
Classification: Mono
   Product: MonoTouch
   Version: unspecified
  Platform: iPhone
OS/Version: Apple iOS 4.3
Status: NEW
  Severity: Enhancement
  Priority: P5 - None
 Component: Tools
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: rko...@gmail.com
 QAContact: mono-bugs@lists.ximian.com
  Found By: Customer
   Blocker: ---


Description of Problem:

The linker in MonoTouch is very aggressive and since it only uses Static
Analysis to determine what to keep it causes problems with more dynamic
frameworks such as an IoC.

Currently it only supports a boolean AllMembers param.

Please support a param Scope as an enum 

public enum PreserveScope
{

}

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690660] New: Enhancement: Allow the PreserveAttribute to handle class hierarchies

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690660

https://bugzilla.novell.com/show_bug.cgi?id=690660#c0


   Summary: Enhancement: Allow the PreserveAttribute to handle
class hierarchies
Classification: Mono
   Product: MonoTouch
   Version: unspecified
  Platform: iPhone
OS/Version: Apple iOS 4.3
Status: NEW
  Severity: Minor
  Priority: P5 - None
 Component: Tools
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: rko...@gmail.com
 QAContact: mono-bugs@lists.ximian.com
  Found By: Customer
   Blocker: ---


Description of Problem:

The linker in MonoTouch is very aggressive and since it only uses Static
Analysis to determine what to keep it causes problems with more dynamic
frameworks such as an IoC.

Currently it only supports a boolean AllMembers param.

Please support a param Scope as an enum 

public enum PreserveScope
{
  Class,
  Descendents,
  FullHierarchy
}

The three cases are:

1. Preserve just this class (same as [Preserve] does today)
2. Preserve this class and all its descendents.
3. Preserve this class and all its ancestors and descendents

So in the case I have a abstract class I can mark it with
[Preserve(Scope=PreserveScope.Descendents)] and not have to add a [Preserve] to
all descendents as I do today.

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690669] New: JIT error when binding a static event of a generic class

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690669

https://bugzilla.novell.com/show_bug.cgi?id=690669#c0


   Summary: JIT error when binding a static event of a generic
class
Classification: Mono
   Product: MonoTouch
   Version: unspecified
  Platform: iPhone
OS/Version: Apple iOS 4.3
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: Runtime
AssignedTo: gnor...@novell.com
ReportedBy: phili...@activa.be
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---
   Blocker: ---


User-Agent:   Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0)
Gecko/20100101 Firefox/4.0

Given the following class definitions:

public class BaseClassT where T:BaseClassT
{
  public delegate void Handler();
  public static event Handler MyEvent;
}

public class MyClass : BaseClassMyClass
{}

Calling the following line of code anywhere in a MonoTouch application crashes
the app:

MyClass.MyEvent += delegate {};

This results in the following exception:

Unhandled Exception: System.ExecutionEngineException: Attempting to JIT compile
method '(wrapper synchronized)
StaticEventBug.BaseClass`1StaticEventBug.MyClass:add_MyEvent
(StaticEventBug.BaseClass`1/HandlerStaticEventBug.MyClass)' while running
with --aot-only



Reproducible: Always

Steps to Reproduce:
1. Add the given classes to any MonoTouch project
2. Add the line MyClass.MyEvent += delegate {}; somewhere in the code
3. Run the app, making sure the line above is executed
Actual Results:  
exception thrown

Expected Results:  
no exception

Using the latest version of MonoTouch 3.x

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690675] New: Globalization still not working in Mono 2.10

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690675

https://bugzilla.novell.com/show_bug.cgi?id=690675#c0


   Summary: Globalization still not working in Mono 2.10
Classification: Mono
   Product: Mono: Class Libraries
   Version: 2.10.x
  Platform: x86
OS/Version: Windows XP
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: System
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: test051...@hotmail.com
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---
   Blocker: ---


User-Agent:   Mozilla/5.0 (Windows NT 5.1; rv:2.0) Gecko/20100101
Firefox/4.0

I have created a simple ASP.NET application using MonoDevelop 2.6 Beta 2. I
added a test.htm file which contains the German text für Flöhe älter als daß
wich contains several special characters which are not displayed correctly in
Mono.

I created the test.htm file with VS2008 in order to ensure that MonoDevelop
will not change it's format behind the scenes. I also copied the the text to
Default.aspx using VS2008.

Reproducible: Always

Steps to Reproduce:
1.Run the application
2.Look at the content of Default.aspx
3.Compare to the content of test.htm (enter http://127.0.0.1:8080/test.htm into
the browser's address bar
Actual Results:  
Mono corrupts all special characters in Default.aspx. But it the text in
test.htm is displayed as expected!

Expected Results:  
Correct display of text including all special characters in Default.aspx.

MonoDevelop 2.6 Beta 2 creates the following section inside of web.config:

globalization requestEncoding=utf-8 responseEncoding=utf-8 /

when changing utf-8 against iso-8859-1 things are changing as follows:

The text im Default.aspx is corrupted. But the displayed characters are
different compared to utf-8 encoding. The text in test.htm is also totally
corrupted.

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690675] Globalization still not working in Mono 2.10

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690675

https://bugzilla.novell.com/show_bug.cgi?id=690675#c1


--- Comment #1 from QuickJack . test051...@hotmail.com 2011-04-28 19:47:04 
UTC ---
Created an attachment (id=427147)
 -- (http://bugzilla.novell.com/attachment.cgi?id=427147)
Example Project that demonstrates the issue

Example Project that demonstrates the issue

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 687066] Debugger hangs connecting when you make a call to a wcf service on start.

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=687066

https://bugzilla.novell.com/show_bug.cgi?id=687066#c2


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
   InfoProvider|jclan...@resdat.com |
 Resolution||NORESPONSE

--- Comment #2 from Geoff Norton gnor...@novell.com 2011-04-28 19:49:03 UTC 
---
- NORESPONSE

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 687057] Unable to Debug|iPhone

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=687057

https://bugzilla.novell.com/show_bug.cgi?id=687057#c3


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
   InfoProvider|rmma...@fastmail.us |
 Resolution||NORESPONSE

--- Comment #3 from Geoff Norton gnor...@novell.com 2011-04-28 19:49:48 UTC 
---
NORESPONSE

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690406] RelativeLayout method parameter should be enum

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690406

https://bugzilla.novell.com/show_bug.cgi?id=690406#c3


Jonathan Pobst jpo...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #3 from Jonathan Pobst jpo...@novell.com 2011-04-28 19:50:45 UTC 
---
Fixed in r10328.

Thanks for reporting!

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 650982] Support debugging over USB

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=650982

https://bugzilla.novell.com/show_bug.cgi?id=650982#c6


Jonathan Pobst jpo...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #6 from Jonathan Pobst jpo...@novell.com 2011-04-28 19:52:17 UTC 
---
Fixed in 1.0.1.

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690660] Enhancement: Allow the PreserveAttribute to handle class hierarchies

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690660

https://bugzilla.novell.com/show_bug.cgi?id=690660#c1


--- Comment #1 from Geoff Norton gnor...@novell.com 2011-04-28 19:52:27 UTC 
---
*** Bug 690656 has been marked as a duplicate of this bug. *** 
http://bugzilla.novell.com/show_bug.cgi?id=690656

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690656] Enhancement: Allow the PreserveAttribute to handle class heirarchies

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690656

https://bugzilla.novell.com/show_bug.cgi?id=690656#c1


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||gnor...@novell.com
 Resolution||DUPLICATE
   Severity|Enhancement |Minor

--- Comment #1 from Geoff Norton gnor...@novell.com 2011-04-28 19:52:27 UTC 
---
Dupe

*** This bug has been marked as a duplicate of bug 690660 *** 
http://bugzilla.novell.com/show_bug.cgi?id=690660

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690660] Enhancement: Allow the PreserveAttribute to handle class hierarchies

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690660

https://bugzilla.novell.com/show_bug.cgi?id=690660#c2


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 CC||gnor...@novell.com
 AssignedTo|mono-bugs@lists.ximian.com  |jbev...@novell.com

--- Comment #2 from Geoff Norton gnor...@novell.com 2011-04-28 19:53:27 UTC 
---
- jb

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 649383] Auto-generated UIViewController 'view' property conflicts with the View property for type-insensitive languages

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=649383

https://bugzilla.novell.com/show_bug.cgi?id=649383#c1


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

  Component|Tools   |IPhone add-in
 AssignedTo|gnor...@novell.com  |mhutchin...@novell.com
Product|MonoTouch   |MonoDevelop
  QAContact|mono-bugs@lists.ximian.com  |monodevelop-b...@lists.ximi
   ||an.com

--- Comment #1 from Geoff Norton gnor...@novell.com 2011-04-28 19:58:26 UTC 
---
- MonoDevelop

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690675] Globalization still not working in Mono 2.10

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690675

https://bugzilla.novell.com/show_bug.cgi?id=690675#c


Marek Safar msa...@novell.com changed:

   What|Removed |Added

 CC||msa...@novell.com
  Component|System  |Sys.Web
 AssignedTo|mono-bugs@lists.ximian.com  |mhabers...@novell.com

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690357] WebClient and SOAP calls lock up in MonoTouch 4.0.0 and 4.0.1. Works in 3.2.6. Prevents my app from being shipped

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690357

https://bugzilla.novell.com/show_bug.cgi?id=690357#c1


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||gnor...@novell.com
 Resolution||FIXED
   Severity|Major   |Critical

--- Comment #1 from Geoff Norton gnor...@novell.com 2011-04-28 20:25:36 UTC 
---
I am unable to reproduce this in the upcoming MonoTouch 4.0.2, all 3 samples
dont crash.

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690357] WebClient and SOAP calls lock up in MonoTouch 4.0.0 and 4.0.1. Works in 3.2.6. Prevents my app from being shipped

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690357

https://bugzilla.novell.com/show_bug.cgi?id=690357#c2


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |

--- Comment #2 from Geoff Norton gnor...@novell.com 2011-04-28 20:26:12 UTC 
---
Whoops, wrong bug.

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690441] Calling WCF services with down or bad URLs causes app to crash - Can't catch WCF errors

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690441

https://bugzilla.novell.com/show_bug.cgi?id=690441#c1


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Geoff Norton gnor...@novell.com 2011-04-28 20:26:20 UTC 
---
I am unable to reproduce this in the upcoming MonoTouch 4.0.2, all 3 samples
dont crash.

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690357] WebClient and SOAP calls lock up in MonoTouch 4.0.0 and 4.0.1. Works in 3.2.6. Prevents my app from being shipped

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690357

https://bugzilla.novell.com/show_bug.cgi?id=690357#c3


--- Comment #3 from Geoff Norton gnor...@novell.com 2011-04-28 20:26:24 UTC 
---
Whoops, wrong bug.

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690020] MT4.0.1 using LLVM / Arm6+7 crashes during compilation

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690020

https://bugzilla.novell.com/show_bug.cgi?id=690020#c3


--- Comment #3 from Geoff Norton gnor...@novell.com 2011-04-28 20:37:05 UTC 
---
We have a few different crashes here:

#1
MONO_PATH=/Users/plasma/Downloads/bug-690020_MobileAgentSource/mobileagent/bin/iPhone/MobileAgent.app
/Developer/MonoTouch/usr/bin/arm-darwin-mono --llvm
--aot=mtriple=armv6-darwin,full,static,asmonly,nodebug,llvm-path=/Developer/MonoTouch/LLVM/bin/,outfile=/var/folders/Ny/NyElTwhDGD8kZMqIEeLGXE+++TI/-Tmp-/tmp1b6f79b6.tmp/RestSharp.MonoTouch.dll.6.s
/Users/plasma/Downloads/bug-690020_MobileAgentSource/mobileagent/bin/iPhone/MobileAgent.app/RestSharp.MonoTouch.dll
Instruction does not dominate all uses!
  %t631 = load i32* %44
  %47 = inttoptr i32 %t631 to i32*
Instruction does not dominate all uses!
  %47 = inttoptr i32 %t631 to i32*
  %48 = getelementptr i32* %47, i32 2
Instruction does not dominate all uses!
  %48 = getelementptr i32* %47, i32 2
  %t73 = load i32* %48
Instruction does not dominate all uses!
  %t73 = load i32* %48
  %49 = inttoptr i32 %t73 to i32*
Instruction does not dominate all uses!
  %49 = inttoptr i32 %t73 to i32*
  %50 = getelementptr i32* %49, i32 3
Instruction does not dominate all uses!
  %50 = getelementptr i32* %49, i32 3
  %t74 = load i32* %50
Instruction does not dominate all uses!
  %t74 = load i32* %50
  %51 = icmp eq i32 %t74, %t75
Instruction does not dominate all uses!
  %51 = icmp eq i32 %t74, %t75
  br i1 %51, label %BB42, label %BB45
Instruction does not dominate all uses!
  %t1022 = load i32* %69
  %72 = inttoptr i32 %t1022 to i32*
Instruction does not dominate all uses!
  %72 = inttoptr i32 %t1022 to i32*
  %73 = getelementptr i32* %72, i32 2
Instruction does not dominate all uses!
  %73 = getelementptr i32* %72, i32 2
  %t112 = load i32* %73
Instruction does not dominate all uses!
  %t112 = load i32* %73
  %74 = inttoptr i32 %t112 to i32*
Instruction does not dominate all uses!
  %74 = inttoptr i32 %t112 to i32*
  %75 = getelementptr i32* %74, i32 3
Instruction does not dominate all uses!
  %75 = getelementptr i32* %74, i32 3
  %t113 = load i32* %75
Instruction does not dominate all uses!
  %t113 = load i32* %75
  %76 = icmp eq i32 %t113, %t114
Instruction does not dominate all uses!
  %76 = icmp eq i32 %t113, %t114
  br i1 %76, label %BB70, label %BB73
Broken module found, compilation aborted!
0  opt   0x004f60e8
llvm::PrettyStackTraceString::~PrettyStackTraceString() + 12232
1  opt   0x004f6cf7
llvm::PrettyStackTraceString::~PrettyStackTraceString() + 15319
2  libSystem.B.dylib 0x994c245b _sigtramp + 43
3  libSystem.B.dylib 0x _sigtramp + 1723063247
4  opt   0x0003febb std::vectorchar, std::allocatorchar
::_M_fill_insert(__gnu_cxx::__normal_iteratorchar*, std::vectorchar,
std::allocatorchar  , unsigned long, char const) + 1323
5  opt   0x004b56e6 llvm::CallbackVH::deleted() + 95414
6  opt   0x00486aff llvm::BasicBlockPass::~BasicBlockPass() + 31855
7  opt   0x0023bdc9 std::_Rb_treellvm::Function const*,
std::pairllvm::Function const* const, llvm::CallGraphNode*,
std::_Select1ststd::pairllvm::Function const* const, llvm::CallGraphNode* ,
std::lessllvm::Function const*, std::allocatorstd::pairllvm::Function
const* const, llvm::CallGraphNode* 
::_M_insert_unique(std::_Rb_tree_iteratorstd::pairllvm::Function const*
const, llvm::CallGraphNode* , std::pairllvm::Function const* const,
llvm::CallGraphNode* const) + 7385
8  opt   0x0023cdd2 std::_Rb_treellvm::Function const*,
std::pairllvm::Function const* const, llvm::CallGraphNode*,
std::_Select1ststd::pairllvm::Function const* const, llvm::CallGraphNode* ,
std::lessllvm::Function const*, std::allocatorstd::pairllvm::Function
const* const, llvm::CallGraphNode* 
::_M_insert_unique(std::_Rb_tree_iteratorstd::pairllvm::Function const*
const, llvm::CallGraphNode* , std::pairllvm::Function const* const,
llvm::CallGraphNode* const) + 11490
9  opt   0x0048879f llvm::BasicBlockPass::~BasicBlockPass() + 39183
10 opt   0x00488a6c llvm::BasicBlockPass::~BasicBlockPass() + 39900
11 opt   0x00488b6b llvm::BasicBlockPass::~BasicBlockPass() + 40155
12 opt   0x0004ebf4 llvm::scc_iteratorllvm::CallGraphNode*,
llvm::GraphTraitsllvm::CallGraphNode* ::GetNextSCC() + 17588
13 opt   0x00043195 std::vectorstd::pairvoid (*)(void*), void*,
std::allocatorstd::pairvoid (*)(void*), void* 
::_M_insert_aux(__gnu_cxx::__normal_iteratorstd::pairvoid (*)(void*),
void**, std::vectorstd::pairvoid (*)(void*), void*,
std::allocatorstd::pairvoid (*)(void*), void*   , std::pairvoid
(*)(void*), void* const) + 12005
Stack dump:
0.Program arguments: /Developer/MonoTouch/LLVM/bin/opt -f -simplifycfg
-domtree -domfrontier -scalarrepl -instcombine -simplifycfg -basiccg -prune-eh
-inline -functionattrs -domtree -domfrontier -scalarrepl -simplify-libcalls
-instcombine -simplifycfg 

[Mono-bugs] [Bug 690669] JIT error when binding a static event of a generic class

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690669

https://bugzilla.novell.com/show_bug.cgi?id=690669#c1


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 CC||var...@gmail.com

--- Comment #1 from Geoff Norton gnor...@novell.com 2011-04-28 20:55:06 UTC 
---
Zoltan,

  Could you take a look at this please?

Thanks

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 689985] I found the following issue in your latest release of MonoTouch

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=689985

https://bugzilla.novell.com/show_bug.cgi?id=689985#c3


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #3 from Geoff Norton gnor...@novell.com 2011-04-28 20:58:24 UTC 
---
This is fixed with what I said in #2

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 686045] iPhoneOSGameView passes incorrect values to OpenTK.FrameEventArgs.set_Time

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=686045

https://bugzilla.novell.com/show_bug.cgi?id=686045#c4


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
   InfoProvider|domini...@savagesoftware.co |
   |m.au|
 Resolution||NORESPONSE

--- Comment #4 from Geoff Norton gnor...@novell.com 2011-04-28 20:58:56 UTC 
---
NORESPONSE

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690669] JIT error when binding a static event of a generic class

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690669

https://bugzilla.novell.com/show_bug.cgi?id=690669#c2


--- Comment #2 from Zoltan Varga var...@gmail.com 2011-04-28 21:03:50 UTC ---
In 2.10, event add/remove methods are no longer synchronized, so this problem
no longer occurs.

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 685837] SIGSEGV in custom TableViewCell while downloading picture(might be a bug in WebClient)

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=685837

https://bugzilla.novell.com/show_bug.cgi?id=685837#c3


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID

--- Comment #3 from Geoff Norton gnor...@novell.com 2011-04-28 21:04:27 UTC 
---
In your ImageList ViewDidLoad you access UI elements from a worker thread.  All
UI elements must be accessed from the main thread.

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 685872] UITableView makes SIGSEGV after upgraded to monotouch 4.0

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=685872

https://bugzilla.novell.com/show_bug.cgi?id=685872#c3


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE
   Severity|Major   |Critical

--- Comment #3 from Geoff Norton gnor...@novell.com 2011-04-28 21:04:45 UTC 
---
Dupe

*** This bug has been marked as a duplicate of bug 685837 *** 
http://bugzilla.novell.com/show_bug.cgi?id=685837

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 685837] SIGSEGV in custom TableViewCell while downloading picture(might be a bug in WebClient)

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=685837

https://bugzilla.novell.com/show_bug.cgi?id=685837#c4


--- Comment #4 from Geoff Norton gnor...@novell.com 2011-04-28 21:04:45 UTC 
---
*** Bug 685872 has been marked as a duplicate of this bug. *** 
http://bugzilla.novell.com/show_bug.cgi?id=685872

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690669] JIT error when binding a static event of a generic class

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690669

https://bugzilla.novell.com/show_bug.cgi?id=690669#c3


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #3 from Geoff Norton gnor...@novell.com 2011-04-28 21:05:17 UTC 
---
Phillippe,

  Please update to MonoTouch 4.

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 679741] Process.GetCurrentProcess crashes the current process

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=679741

https://bugzilla.novell.com/show_bug.cgi?id=679741#c2


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
   InfoProvider|philippe.monteil@dolce-vist |
   |a.com   |
 Resolution||NORESPONSE

--- Comment #2 from Geoff Norton gnor...@novell.com 2011-04-28 21:06:10 UTC 
---
NORESPONSE

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 687727] Mono for Android - Assertion at ../../../../mono/metadata/sgen-internal.c:441, condition `mh-size == size + sizeof (LargeInternalMemHeader)' not met

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=687727

https://bugzilla.novell.com/show_bug.cgi?id=687727#c1


Mark Probst mpro...@novell.com changed:

   What|Removed |Added

 CC||mpro...@novell.com

--- Comment #1 from Mark Probst mpro...@novell.com 2011-04-28 21:19:21 UTC ---
Any chance we could get a stacktrace on this?  Or at least I'd like to know
where mono_sgen_free_internal_full() is called from (if it's called from
mono_sgen_free_internal_dynamic(), then I want the caller of that).

If the assertion failure makes debugging impossible, convert it into an if
(!condition) and break in the conditional block.

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690357] WebClient and SOAP calls lock up in MonoTouch 4.0.0 and 4.0.1. Works in 3.2.6. Prevents my app from being shipped

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690357

https://bugzilla.novell.com/show_bug.cgi?id=690357#c4


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 AssignedTo|mono-bugs@lists.ximian.com  |gonz...@novell.com

--- Comment #4 from Geoff Norton gnor...@novell.com 2011-04-28 21:20:01 UTC 
---
gonzalo,

  Could you please look at this?  I can repo this on mono-2.10 for OSX.

Desktop repo:


using System;
using System.IO;
using System.Threading;
using System.Net;
using System.Collections.Generic;
using System.Linq;

namespace iOSTest
{
public class Application
{   
static void Main (string[] args)
{   
Thread t = new Thread (delegate () {
int i = 0;
while (true) {
WebClient wc = new WebClient (); 
wc.DownloadFile(new
Uri(http:www.wildsau.net/image.axd?picture=2011%2f4%2fDSC05178.JPG),
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal),
test.jpg));
Console.WriteLine (i++);
}   
}); 

t.Start (); 

Thread.Sleep (-1);
}   
}   
}

-- 
Configure bugmail: https://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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 690020] MT4.0.1 using LLVM / Arm6+7 crashes during compilation

2011-04-28 Thread bugzilla_noreply

https://bugzilla.novell.com/show_bug.cgi?id=690020

https://bugzilla.novell.com/show_bug.cgi?id=690020#c4


Geoff Norton gnor...@novell.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #4 from Geoff Norton gnor...@novell.com 2011-04-29 03:06:24 UTC 
---
Fixed in 4.0.2.

Thanks!

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs