how do we upload an xml file and validate them against WIPO DTD
Hi,
Please see the example for uploading a file on Server: File Upload Tutorial With Examples In JSP.
You can use the following code for validating xml against DTD:
DocumentBuilderFactory.newInstance(); factory.setValidating(true);
Read XML Validate DTD example to see the complete code for validating XML using DTD.
Thanks
Ads