Hi,
Increase the loadUrlTimeoutValue from 60000 to sme other value until you get the response with out getting any error.
Otherwise try like this.
- Rename your 'index.html' to 'main.html'
- Create a new(dummy) 'index.html' taht only have to redirect to teh 'main.html'
Content of the new 'index.html'
<!doctype html>
<html>
<head>
<title>tittle</title>
<script>
window.location='./main.html';
</script>
<body>
</body>
</html>
Thanks&Regards
Sridevi