Hi,
I am new to JSP.

I want to upload a xml file for so that I can parse it.

I have written the following code for it.
Code:
       alert("AJ=======In Tvl.getdata");
	var xmlDoc=null;
	
	if (document.implementation.createDocument)
	{// code for Mozilla, Firefox, Opera, etc.
		
		xmlDoc=document.implementation.createDocument("","",null);
	}	
	else
	{
		alert('Your browser cannot handle this script');
	}
	
	xmlDoc.async=false;
	alert("AJ11111111");

	xmlDoc.loadXML("scheduleServerToSmartTVClient.xml");
        alert("AJ2222222");
In this I can see the AJ111111 alert but cannot see AJ22222 alert.

Any help??