Okay, this is loosely related to a previous post I made here, but not really. I've gotten this webservice working perfectly NuSOAP=>NuSOAP. When I try to consume this webservice via MS Visual Studio.Net 2005, something funky happens. It creates the proxy class & in this class it creates a DataType named "Array".
Here's the constructor for this class:
public class Array {
public Array();
[XmlAnyElement]
public XmlElement[] Any { get; set; }
[XmlAnyAttribute]
public XmlAttribute[] AnyAttr { get; set; }
public string arrayType { get; set; }
[XmlAttribute(DataType = "anyURI")]
public string href { get; set; }
[XmlAttribute(DataType = "ID")]
public string id { get; set; }
public string offset { get; set; }
[XmlIgnore]
public bool offsetSpecified { get; set; }
} |
Needless to say, this makes the results totally unusable. So, I was wondering if anyone here had any ideas how I might be able to "fix" this so I can consume it via VS.Net as well?
Thanks,
Ian