Visual Basic .NET » ASP.NET General Discussion
Error Status: 12019 -- JimR --


I have clients that intermintantly get the following error when making a async method call:

Message: Unknown Type: ConnectFailure Status:12019

Any ideas? or additional troubleshooting steps or where I can reference status 12019. The method calls do not take long and I have set the AjaxPro.timeoutPeriod = 30000

Thanks.

-- JimR --


By adding additional logging, I found out that it is only AOL 9.0 Security Center users that are getting ConnectFailure errors (and getting every time). I assume this is because of some proxy issues of aol browser. I have to do some more digging. Has anyone else run into this?

-- JimR --


Ok I found another issue and it looks to be a bug. I was getting back This error message when using AOL 9.0:

Message: Ok Type: ConnectFailure Status: 200

But the above error shouldn't be an error so I checked the core.js file and found that the 'OK' response it looks for is case sensitive in line 302 of core.js:

if(this.xmlHttp.status == 200 && this.xmlHttp.statusText == "OK") {

so I changed it to this:

if(this.xmlHttp.status == 200 && this.xmlHttp.statusText.toUpperCase()
== "OK") {

recompiled and my app is now working in AOL.

Why bother with AOL? Well my app is an ecommerce app and I couldn't have the latest version of AOL not be compatible.

[Submit Comment]Home