P
Paul Buckley
Hi,
If I pass the enum (defined below) into, or out of, a web method, the client
throws an exception - "There is an error in XML document (1, 17789).". I
have used different enums (defined by me) in other places and they work
fine! Could anyone shed some light?
Thanks,
Paul.
public enum DataTypeEnum {
String = 1,
Date = 2,
Decimal = 3,
Boolean = 4,
Enum = 5,
Int = 6,
Long = 7,
Period = 8,
Time = 9,
Custom = 10,
Unknown = 99
}
If I pass the enum (defined below) into, or out of, a web method, the client
throws an exception - "There is an error in XML document (1, 17789).". I
have used different enums (defined by me) in other places and they work
fine! Could anyone shed some light?
Thanks,
Paul.
public enum DataTypeEnum {
String = 1,
Date = 2,
Decimal = 3,
Boolean = 4,
Enum = 5,
Int = 6,
Long = 7,
Period = 8,
Time = 9,
Custom = 10,
Unknown = 99
}