I want my page to do requests to a special app (named QuickBooks web connector) on local comp.
Like this: qbwc://docontrol/WSExists?AppName=WCWebService
I have this function:
function CheckQWCLoaded() 
{
    var strURL = 'qbwc://docontrol/WSExists?AppName=Quickbooks+to+eUnify+Integration';
    var CheckResult = false;
    jQuery.ajax({
        url: strURL,
        dataType: "json",
        complete: function (XMLHTTP) 
        { 
            // Response should be a string True/False
            // if (XMLHTTP.status == 200) CheckResult = jQuery.parseJSON(XMLHTTP.responseText);
        }
    });
    return CheckResult;
}When I run it in IE: I get something like 'Access denied', Chrome returns some different error. I understand that it is related to cross domain and scheme restrictions, just want to know if it is possible to do it or should I create a small (.net) windows app instead of running it from web page.
 
    