Your Network Error could be a permissions/security issue. AJAX calls can not be made to a server on "another domain" without that server's cross domain permission. I think that violation throws the code 19 you describe.

For example, you're calling your ajax by local/partial URL, calling by host name when the browser loaded the page by IP, calling with an unexpected protocol; or truly calling across domains. Things have to match up pretty much to the letter. Many folks have switched from classic AJAX to JSONP to bypass this sandbox restriction.

Al


On 11/29/2013 6:14 PM, [email protected] wrote:
Here is some additional information.  I can't do much when it's a normal http request that bombs, but when it's an AJAX request that does so, I captured the following information.  Here are the properties of the XMLHTTPRequest object...
 
-onabort - (null)
-onerror - (null)
-onloadend - (null)
-onloadstart - (null)
-onprogress - (null)
-ontimeout - (null)
-response - ()
-responseBody - (null)
-responseType - ()
-timeout - (0)
-upload - ([object XMLHttpRequestEventTarget])
-onload - (null)
-onreadystatechange - (null)
-readyState - (4)
-responseText - ()
-responseXML - (null)
-status - (0)
-statusText - ()
-withCredentials - (false)
-addEventListener - ( function addEventListener() { [native code] } )
-dispatchEvent - ( function dispatchEvent() { [native code] } )
-removeEventListener - ( function removeEventListener() { [native code] } )
-abort - ( function abort() { [native code] } )
-getAllResponseHeaders - ( function getAllResponseHeaders() { [native code] } )
-getResponseHeader - ( function getResponseHeader() { [native code] } )
-open - ( function open() { [native code] } )
-send - ( function send() { [native code] } )
-setRequestHeader - ( function setRequestHeader() { [native code] } )
-DONE - (4)
-HEADERS_RECEIVED - (2)
-LOADING - (3)
-OPENED - (1)
-UNSENT - (0)
 
And here are the properties of the error object that was thrown...
-code - (19)
-message - (NetworkError)
-name - (NetworkError)
-toString - ( function toString() { [native code] } )
 
--
--
online documentation: http://openbd.org/manual/
http://groups.google.com/group/openbd?hl=en
 
---
You received this message because you are subscribed to the Google Groups "Open BlueDragon" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

--
--
online documentation: http://openbd.org/manual/
http://groups.google.com/group/openbd?hl=en
 
---
You received this message because you are subscribed to the Google Groups "Open BlueDragon" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to