[Mono-bugs] [Bug 52228][Blo] Changed - Generated WSDL is not fully compatible with Visual Studio 2003

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 16 Dec 2003 09:47:46 -0500 (EST)


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 mordechait@mainsoft.com.

http://bugzilla.ximian.com/show_bug.cgi?id=52228

--- shadow/52228	2003-12-16 07:46:19.000000000 -0500
+++ shadow/52228.tmp.2498	2003-12-16 09:47:46.000000000 -0500
@@ -2,13 +2,13 @@
 Product: Mono/Class Libraries
 Version: unspecified
 OS: All
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Blocker
 Component: System.XML
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: mordechait@mainsoft.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -74,6 +74,13 @@
 bool isString = einfo.TypeData.Type == typeof(string);
 bool isEnum = einfo.TypeData.Type.IsEnum;
 if ((isPrimitive && !isString) || isEnum || encodedFormat) 
     selem.MinOccurs = 1;
 
 This has been tested and works.
+
+------- Additional Comments From mordechait@mainsoft.com  2003-12-16 09:47 -------
+I found what was wrong !
+The programmer accidently wrote  :
+einfo.TypeData.Type.IsPrimitive
+It should have been:
+einfo.IsPrimitive