Login or Sign up Help | Site Map
Connecting Tech Pros Worldwide

Validate Xml from Serialized Web Service Proxy Class throws on soap Array

Question posted by: Joris van Lier (Guest) on June 27th, 2008 07:20 PM
Hi, im trying to validate objects before they are sent over the wire to a
webservice,
the schema embedded into WSDL is not sufficient so i took that schema and
extended it with additional restrictions,
after conversion from local domain class into remote domain class the remote
class (generated from WSDL) is serialized to XML and validated using the
schema, this throws "Undefined complexType
http://schemas.xmlsoap.org/soap/encoding/:Array is used as restriction of
complex type" (translated)


How do i add this schema or map the soap array to another type?

private void ValidateRemoteDomainObject(remote.webservice.entit y o)
{
MemoryStream ms = new MemoryStream();
XmlSerializer xs = new XmlSerializer(o.GetType());
xs.Serialize(ms, o);
ms.Position = 0;
ValidateXmlSchema(new StreamReader(ms), "Schema.xsd");
}


void ValidateXmlSchema(TextReader reader, string schemaUri)
{
XmlReaderSettings xrs = new XmlReaderSettings();
xrs.ValidationType = ValidationType.Schema;
xrs.ValidationFlags &=
~XmlSchemaValidationFlags.AllowXmlAttributes;
xrs.ValidationFlags |=
XmlSchemaValidationFlags.ReportValidationWarnings;
xrs.ValidationEventHandler += new
ValidationEventHandler(ValidationEventHandler);
XmlSchema schema = XmlSchema.Read(
XmlReader.Create(schemaUri), this.ValidationEventHandler);
xrs.Schemas.Add(schema);
XmlReader xr = XmlReader.Create(reader, xrs);
while(xr.Read()){
// do something with node
}
}


void ValidationEventHandler(object sender, ValidationEventArgs e)
{
throw new ApplicationException(
String.Format("{0}", new object[] {e.Message}),
e.Exception
);
}


Joris van Lier

Would you like to answer this question?
Sign up for a free account, or Login (if you're already a member).
Martin Honnen's Avatar
Martin Honnen
Guest
n/a Posts
June 27th, 2008
07:20 PM
#2

Re: Validate Xml from Serialized Web Service Proxy Class throws on soap Array
Joris van Lier wrote:
Quote:
Originally Posted by
Hi, im trying to validate objects before they are sent over the wire to
a webservice,
the schema embedded into WSDL is not sufficient so i took that schema
and extended it with additional restrictions,
after conversion from local domain class into remote domain class the
remote class (generated from WSDL) is serialized to XML and validated
using the schema, this throws "Undefined complexType
http://schemas.xmlsoap.org/soap/encoding/:Array is used as restriction
of complex type" (translated)


You need a schema for the namespace
http://schemas.xmlsoap.org/soap/encoding/ that defines the Array type. I
am not sure whether the various soap specifications define a schema,
perhaps someone in microsoft.public.dotnet.framework.aspnet.webservic es
knows more.

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/

 
Not the answer you were looking for? Post your question . . .
182,373 Experts ready to help you find a solution.
Sign up for a free account, or Login (if you're already a member).

  • Didn't find the answer you were looking for?
    Post Your Question
  • Top Community Contributors