|
Hi,
I have an xml and an xsd. I dont want to specify xsd file name in my xml, because for some reason it is giving me some problem accessing xml.
So, I dont have this line in my xml
xsi:noNamespaceSchemaLocation="address.xsd"
How can I do the validation of xml through my code according to some xsd?
So in my code I might first load the xml in some object, then I would load the xsd on some object, then i would pass the object with xml in it and object with xsd in it as parameter to some method that would do the validation for me.
Thanks, |