You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-users@xerces.apache.org by "Hanumaiahgari, Srinivas" <Sr...@dva.gov.au> on 2002/03/14 00:07:38 UTC

problem with noNamespaceSchemaLocation....urgent!!!

hi everybody,

During validation of my xml file against schema, I could trace out that my
xerces parser is having troubling in finding location of xsd file  while
trying to run on server(which ofcourse, is working fine locally)

Instead, its doing default validation and returning errors
saying.....Element type "abc" must be declared....kind of errors for all the
elements in xml file.

here is my schema location in xml file

<dvaBatch xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	
xsi:noNamespaceSchemaLocation="E:\WebSphere\AppServer\hosts\default_host\Rap
torDev\A\web/xml/RAPInvoiceSchema.xsd">

here is the java code:

org.apache.xerces.parsers.SAXParser parser = new
org.apache.xerces.parsers.SAXParser();
	   	  
try {
	------ ------
	parser.setFeature( "http://xml.org/sax/features/validation", true);
	
parser.setFeature("http://apache.org/xml/features/validation/schema",true);
	parser.parse(filePath);
	----- -----
}//end try

I tried different combinations of schema path including full URI like
"file:///E:\\WebSphere\\....." etc and also something
like...."http://anatdv5/Raptor/xml/RAPInvoiceSchema.xsd" etc.... where
anatdv5 is the server. still no luck.

Can anyone help me in this regard ??

Thanks,
Srinivas



---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-j-user-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-j-user-help@xml.apache.org