[Mono-bugs] [Bug 58469][Nor] Changed - mono crash while xml deserializing on OSX
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Fri, 14 May 2004 11:21:11 -0400 (EDT)
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 grompf@sublimeintervention.com.
http://bugzilla.ximian.com/show_bug.cgi?id=58469
--- shadow/58469 2004-05-14 06:26:04.000000000 -0400
+++ shadow/58469.tmp.7409 2004-05-14 11:21:10.000000000 -0400
@@ -57,6 +57,32 @@
Additional Information:
The same class will execute correctly and as expected in mint.
------- Additional Comments From lupus@ximian.com 2004-05-14 06:26 -------
Please provide a test case.
Are you using mono from cvs or the beta1 release?
+
+------- Additional Comments From grompf@sublimeintervention.com 2004-05-14 11:21 -------
+This happens with cvs. It cannot be tested with beta1 due to some bugs in
+System.Web.Services that lluis fixed in cvs.
+
+Test Case:
+
+Sign up for a DataDirect labs account at labs.zap2it.com using the certificate code: DQYN-
+JQ2N-IBUT
+Download the WSDL proxy file from: http://bb.labs.zap2it.com/viewtopic.php?p=503#503
+
+Compile the wsdl proxy file.
+Compile this test method:
+
+string startTime = String.Format("{0:yyyy-MM-dd}T{0:HH:mm:ss}Z",
+DateTime.Today.AddDays(0));
+ string endTime = String.Format("{0:yyyy-MM-dd}T{0:HH:mm:ss}Z",
+DateTime.Today.AddDays(1));
+
+ wsdl = new
+xtvdWebService("YOURDATADIRECTLOGIN", "YOURDATADIRECTPASSWORD");
+ ddResponse = wsdl.download(startTime, endTime);
+ ddListings = new DataDirectListings();
+ ddListings.Convert(ddResponse);
+
+