Localhost:59927 says undefined
Hi guys i am having issue such that when the ajax retrieve data the database on the dashboard for a specific period of time. it would throw me an error saying that localhost:59927 is undefined.
Here is the code in using the ajax.
Note: I have tried to switch the interval to timeout as interval create a bunch of ajax request while timeout only create once after a specific period of time and it did not help.
var marker1 = ;
var circle = ;
L.Circle.include({
contains: function (latLng)
{
return this.getLatLng().distanceTo(latLng) < this.getRadius();
}
});
$.ajax({
type: "GET",
url: 'http://localhost:59927//api//Values//FlagingDevice(WithoutParameters)',
success: function (data, status, xhr)
{
for (var i = 0; i < data.Table.length; i++)
{
circle[i] = L.circle([data.Table[i].Latitude, data.Table[i].Longitude], 50, { color: '#DA2E2E', opacity: 2, fillColor: 'blue', fillOpacity: .3 }).addTo(map);
}
},
error: function (xhr)
{
alert(xhr.responseText);
}
});
function innerOne()
{
$.ajax({
type: "GET",
url: 'http://localhost:59927//api//Values//FlagingDevice(WithoutParameters)',
success: function (data, status, xhr)
{
for (var s = 0; s < marker1.length; s++)
{
map.removeLayer(marker1[s]);
}
for (var i = 0; i < data.Table.length; i++)
{
var value = i + 1;
if (circle[i].contains(L.latLng([data.Table[i].Latitude, data.Table[i].Longitude])))
{
var customPopup1 = 'Station: ' + data.Table[i].StationName;
var customOptions1 =
{
'maxWidth': '500',
'className': 'custom'
};
circle[i].bindPopup(customPopup1, customOptions1);
setTimeout(function () { innerOne(); }, 30000);
}
else
{
marker1[i] = L.marker([data.Table[i].Latitude, data.Table[i].Longitude]).addTo(map);
var customPopup = 'Latitude: ' + data.Table[i].Latitude + '</br>Longitude: ' + data.Table[i].Longitude
+ '</br>Station: ' + data.Table[i].StationName + ' </br>Box: ' + data.Table[i].Name + '</br>Timestamp: ' + data.Table[i].LocationSend + `<br/><a target='_blank' href='/Home/History?DeviceID=${value}' style='color: #000000'>Click Here For Location History</a><br/>`;
marker1[i].bindPopup(customPopup);
setTimeout(function () { innerOne(); }, 30000);
}
}
},
error: function (xhr)
{
alert(xhr.responseText);
}
});
}
javascript
add a comment |
Hi guys i am having issue such that when the ajax retrieve data the database on the dashboard for a specific period of time. it would throw me an error saying that localhost:59927 is undefined.
Here is the code in using the ajax.
Note: I have tried to switch the interval to timeout as interval create a bunch of ajax request while timeout only create once after a specific period of time and it did not help.
var marker1 = ;
var circle = ;
L.Circle.include({
contains: function (latLng)
{
return this.getLatLng().distanceTo(latLng) < this.getRadius();
}
});
$.ajax({
type: "GET",
url: 'http://localhost:59927//api//Values//FlagingDevice(WithoutParameters)',
success: function (data, status, xhr)
{
for (var i = 0; i < data.Table.length; i++)
{
circle[i] = L.circle([data.Table[i].Latitude, data.Table[i].Longitude], 50, { color: '#DA2E2E', opacity: 2, fillColor: 'blue', fillOpacity: .3 }).addTo(map);
}
},
error: function (xhr)
{
alert(xhr.responseText);
}
});
function innerOne()
{
$.ajax({
type: "GET",
url: 'http://localhost:59927//api//Values//FlagingDevice(WithoutParameters)',
success: function (data, status, xhr)
{
for (var s = 0; s < marker1.length; s++)
{
map.removeLayer(marker1[s]);
}
for (var i = 0; i < data.Table.length; i++)
{
var value = i + 1;
if (circle[i].contains(L.latLng([data.Table[i].Latitude, data.Table[i].Longitude])))
{
var customPopup1 = 'Station: ' + data.Table[i].StationName;
var customOptions1 =
{
'maxWidth': '500',
'className': 'custom'
};
circle[i].bindPopup(customPopup1, customOptions1);
setTimeout(function () { innerOne(); }, 30000);
}
else
{
marker1[i] = L.marker([data.Table[i].Latitude, data.Table[i].Longitude]).addTo(map);
var customPopup = 'Latitude: ' + data.Table[i].Latitude + '</br>Longitude: ' + data.Table[i].Longitude
+ '</br>Station: ' + data.Table[i].StationName + ' </br>Box: ' + data.Table[i].Name + '</br>Timestamp: ' + data.Table[i].LocationSend + `<br/><a target='_blank' href='/Home/History?DeviceID=${value}' style='color: #000000'>Click Here For Location History</a><br/>`;
marker1[i].bindPopup(customPopup);
setTimeout(function () { innerOne(); }, 30000);
}
}
},
error: function (xhr)
{
alert(xhr.responseText);
}
});
}
javascript
1
It seems your server is getting overloaded with multiple concurrent request and not responding. Please monitor the server status when this occurs
– Mukund
Nov 23 '18 at 5:02
add a comment |
Hi guys i am having issue such that when the ajax retrieve data the database on the dashboard for a specific period of time. it would throw me an error saying that localhost:59927 is undefined.
Here is the code in using the ajax.
Note: I have tried to switch the interval to timeout as interval create a bunch of ajax request while timeout only create once after a specific period of time and it did not help.
var marker1 = ;
var circle = ;
L.Circle.include({
contains: function (latLng)
{
return this.getLatLng().distanceTo(latLng) < this.getRadius();
}
});
$.ajax({
type: "GET",
url: 'http://localhost:59927//api//Values//FlagingDevice(WithoutParameters)',
success: function (data, status, xhr)
{
for (var i = 0; i < data.Table.length; i++)
{
circle[i] = L.circle([data.Table[i].Latitude, data.Table[i].Longitude], 50, { color: '#DA2E2E', opacity: 2, fillColor: 'blue', fillOpacity: .3 }).addTo(map);
}
},
error: function (xhr)
{
alert(xhr.responseText);
}
});
function innerOne()
{
$.ajax({
type: "GET",
url: 'http://localhost:59927//api//Values//FlagingDevice(WithoutParameters)',
success: function (data, status, xhr)
{
for (var s = 0; s < marker1.length; s++)
{
map.removeLayer(marker1[s]);
}
for (var i = 0; i < data.Table.length; i++)
{
var value = i + 1;
if (circle[i].contains(L.latLng([data.Table[i].Latitude, data.Table[i].Longitude])))
{
var customPopup1 = 'Station: ' + data.Table[i].StationName;
var customOptions1 =
{
'maxWidth': '500',
'className': 'custom'
};
circle[i].bindPopup(customPopup1, customOptions1);
setTimeout(function () { innerOne(); }, 30000);
}
else
{
marker1[i] = L.marker([data.Table[i].Latitude, data.Table[i].Longitude]).addTo(map);
var customPopup = 'Latitude: ' + data.Table[i].Latitude + '</br>Longitude: ' + data.Table[i].Longitude
+ '</br>Station: ' + data.Table[i].StationName + ' </br>Box: ' + data.Table[i].Name + '</br>Timestamp: ' + data.Table[i].LocationSend + `<br/><a target='_blank' href='/Home/History?DeviceID=${value}' style='color: #000000'>Click Here For Location History</a><br/>`;
marker1[i].bindPopup(customPopup);
setTimeout(function () { innerOne(); }, 30000);
}
}
},
error: function (xhr)
{
alert(xhr.responseText);
}
});
}
javascript
Hi guys i am having issue such that when the ajax retrieve data the database on the dashboard for a specific period of time. it would throw me an error saying that localhost:59927 is undefined.
Here is the code in using the ajax.
Note: I have tried to switch the interval to timeout as interval create a bunch of ajax request while timeout only create once after a specific period of time and it did not help.
var marker1 = ;
var circle = ;
L.Circle.include({
contains: function (latLng)
{
return this.getLatLng().distanceTo(latLng) < this.getRadius();
}
});
$.ajax({
type: "GET",
url: 'http://localhost:59927//api//Values//FlagingDevice(WithoutParameters)',
success: function (data, status, xhr)
{
for (var i = 0; i < data.Table.length; i++)
{
circle[i] = L.circle([data.Table[i].Latitude, data.Table[i].Longitude], 50, { color: '#DA2E2E', opacity: 2, fillColor: 'blue', fillOpacity: .3 }).addTo(map);
}
},
error: function (xhr)
{
alert(xhr.responseText);
}
});
function innerOne()
{
$.ajax({
type: "GET",
url: 'http://localhost:59927//api//Values//FlagingDevice(WithoutParameters)',
success: function (data, status, xhr)
{
for (var s = 0; s < marker1.length; s++)
{
map.removeLayer(marker1[s]);
}
for (var i = 0; i < data.Table.length; i++)
{
var value = i + 1;
if (circle[i].contains(L.latLng([data.Table[i].Latitude, data.Table[i].Longitude])))
{
var customPopup1 = 'Station: ' + data.Table[i].StationName;
var customOptions1 =
{
'maxWidth': '500',
'className': 'custom'
};
circle[i].bindPopup(customPopup1, customOptions1);
setTimeout(function () { innerOne(); }, 30000);
}
else
{
marker1[i] = L.marker([data.Table[i].Latitude, data.Table[i].Longitude]).addTo(map);
var customPopup = 'Latitude: ' + data.Table[i].Latitude + '</br>Longitude: ' + data.Table[i].Longitude
+ '</br>Station: ' + data.Table[i].StationName + ' </br>Box: ' + data.Table[i].Name + '</br>Timestamp: ' + data.Table[i].LocationSend + `<br/><a target='_blank' href='/Home/History?DeviceID=${value}' style='color: #000000'>Click Here For Location History</a><br/>`;
marker1[i].bindPopup(customPopup);
setTimeout(function () { innerOne(); }, 30000);
}
}
},
error: function (xhr)
{
alert(xhr.responseText);
}
});
}
javascript
javascript
asked Nov 23 '18 at 2:46
Lee Yue Loong
208
208
1
It seems your server is getting overloaded with multiple concurrent request and not responding. Please monitor the server status when this occurs
– Mukund
Nov 23 '18 at 5:02
add a comment |
1
It seems your server is getting overloaded with multiple concurrent request and not responding. Please monitor the server status when this occurs
– Mukund
Nov 23 '18 at 5:02
1
1
It seems your server is getting overloaded with multiple concurrent request and not responding. Please monitor the server status when this occurs
– Mukund
Nov 23 '18 at 5:02
It seems your server is getting overloaded with multiple concurrent request and not responding. Please monitor the server status when this occurs
– Mukund
Nov 23 '18 at 5:02
add a comment |
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53440075%2flocalhost59927-says-undefined%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53440075%2flocalhost59927-says-undefined%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
It seems your server is getting overloaded with multiple concurrent request and not responding. Please monitor the server status when this occurs
– Mukund
Nov 23 '18 at 5:02