[Mono-bugs] [Bug 414373] New: public SoapHexBinary (byte[] value) not implemented correctly
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Mon Aug 4 10:45:29 EDT 2008
https://bugzilla.novell.com/show_bug.cgi?id=414373
Summary: public SoapHexBinary (byte[] value) not implemented
correctly
Product: Mono: Class Libraries
Version: SVN
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: CORLIB
AssignedTo: mono-bugs at lists.ximian.com
ReportedBy: andres.meyer at computer.org
QAContact: mono-bugs at lists.ximian.com
Found By: ---
System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary.Parse("8800FFFF").Value
returns null instead of the correct byte array. (Lower-case hex is not handled
correctly, but I dont know if this is a bug too).
Probably a fix:
mcs/class/corlib/System.Runtime.Remoting.Metadata.W3cXsd2001/SoapHexBinary.cs:
public SoapHexBinary (byte[] value)
{
}
should probably be:
public SoapHexBinary (byte[] value)
{
_value = value;
}
--
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.
More information about the mono-bugs
mailing list