Stephen W. Thomas http://www.BizTalkGurus.com
nothing man.
Just need to add some of theese validation flags. settings.ValidationType =
Just need to add some of theese validation flags.
settings.ValidationType =
.Schema; settings.ValidationFlags |=
settings.ValidationFlags |=
.ProcessInlineSchema;
//settings.ValidationFlags |= XmlSchemaValidationFlags.AllowXmlAttributes;
.ProcessSchemaLocation; settings.ValidationFlags |=
.ProcessIdentityConstraints; settings.ValidationFlags |=
.ReportValidationWarnings;
Rather than calling xmlReader.Close, wrap use of the xmlReader in a using statement:
using(XmlReader reader = XmlReader.Create(xpathNavigator.ReadSubtree(), settings)) { while (reader.Read()) {} }
Hello
I have a problem to catch the System.Xml.Schema.XmlSchemaException in the orchestration.
Exception Object Type = System.Xml.Schema.XmlSchemaException
it works only with the Exception Object Type = System.Exception
all exception handling can be done in the scope!! even schema exception handling also!!
Hi,i had same issue with similar code while load testing with 100 + messages .Can you please help me out on that the way you solved?