Android Question AllNetworkDownJump.asp

ykucuk

Well-Known Member
Licensed User
Longtime User
Hello,

I got below response to HTTP job request. I understand it's about timeout or some connection problem but
HttpJob continues as job competed with success. I don't have such web page. I don't know where this response coming from.

Any help ?

B4X:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>replace</title>
<body>
<script language="JavaScript" type="text/javascript">
var pageName = '/html/pub/AllNetworkDownJump.asp';
if (('/' == pageName) || (pageName.indexOf('content.asp') != -1 )
|| (pageName.indexOf('mirror.asp') != -1)
|| (pageName.indexOf('insContent.asp') != -1)
|| (pageName.indexOf('ins2Content.asp') != -1)
|| (pageName.indexOf('quicksetlocation.asp') != -1)
|| (pageName.indexOf('quicksetmode.asp') != -1)
|| (pageName.indexOf('quicksetppp.asp') != -1)
|| (pageName.indexOf('quicksetwlan.asp') != -1)
|| (pageName.indexOf('content1.asp') != -1)
|| (pageName.indexOf('index.asp') != -1)
|| (pageName.indexOf('/html/pub/') != -1)
|| (pageName.indexOf('admin_account.asp') != -1))
{
top.location.replace(pageName);
}
else
{
top.contentfrm.location.replace(pageName);
}
</script>
</head>
</body>
</html>
 

DonManfred

Expert
Licensed User
Longtime User
httpjob does connect to the page and get the response. It is a HTML Page with javascript in this case.

It does successfully get a response. You get the result in JobDone. So from HTTPJOB side it is all OK.

The page you are calling does not seems to be a webservice!

Can you post the link to the webservice?
 
Last edited:
Upvote 0
Top