Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So, I'm setting up a stand alone test page which uses jquery and yql to perform cross-domain requests. This way my help desk can open up the page, and it will load multiple pages from across domains. the problem is that the json I get back contains: "" which is NOT the content of the page I want... Any thoughts on how to address this?

My reference in this case is: http://james.padolsey.com/javascript/cross-domain-requests-with-jquery/

I can get his example to work no problem... just the redirect in my own case. Yes.. Im using a google.load('jquery',1) and jqueryui in order to keep this page stand alone.

Thoughts?

fyi, this is to test my app and portal in 2 pieces. Dont tell me to host the page. if my server's down, the page wouldnt be there.. yes I know the help desk SHOULD be able to handle this... but I still get texts for our web content manager tool being down and not my app cause they apparently cant figure it out... Im making this lil stand alone page dummy proof.

CODE FOR PAGE


    <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Test</title>
<script
    src="https://www.google.com/jsapi?key=HIDDEN"
    type="text/javascript"></script>
<script>
    google.load("jquery", "1");
    google.load("jqueryui", "1");

    function checkJquery() {
        if (window.jQuery && jQuery.ui) {
            jqueryLoaded();
        } else {
            window.setTimeout(checkJquery, 100);
        }
    }

    function jqueryLoaded() {
        $(document).ready(function(){
              var container = $('#target');
              container.attr('tabIndex','-1');
              $('.ajaxtrigger').click(function(){
                var trigger = $(this);
                var url = trigger.attr('href');
                if(!trigger.hasClass('loaded')){
                  trigger.append('<span></span>');
                  trigger.addClass('loaded');
                  var msg = trigger.find('span::last');
                } else {
                  var msg = trigger.find('span::last');
                }
                doAjax(url,msg,container);
                return false;
              });

              function doAjax(url,msg,container){
                // if the URL starts with http
                if(url.match('^http')){
                  // assemble the YQL call
                  msg.removeClass('error');
                  msg.html(' (loading...)');
                  $.getJSON("http://query.yahooapis.com/v1/public/yql?"+
                            "q=select%20*%20from%20html%20where%20url%3D%22"+
                            encodeURIComponent(url)+
                            "%22&format=xml'&callback=?",
                    function(data){
                      if(data.results[0]){
                        var data = filterData(data.results[0]);
                        msg.html(' (ready.)');
                        container.
                          html(data).
                            focus().
                              effect("highlight",{},1000);
                      } else {
                        msg.html(' (error!)');
                        msg.addClass('error');
                        var errormsg = '<p>Error: could not load the page.</p>';
                        container.
                          html(errormsg).
                            focus().
                              effect('highlight',{color:'#c00'},1000);
                      }
                    }
                  );
                } else {
                  $.ajax({
                    url: url,
                    timeout:5000,
                    success: function(data){
                      msg.html(' (ready.)');
                      container.
                        html(data).
                          focus().
                            effect("highlight",{},1000);
                    },
                    error: function(req,error){
                      msg.html(' (error!)');
                      msg.addClass('error');
                      if(error === 'error'){error = req.statusText;}
                      var errormsg = 'There was a communication error: '+error;
                        container.
                          html(errormsg).
                            focus().
                              effect('highlight',{color:'#c00'},1000);
                    },
                    beforeSend: function(data){
                      msg.removeClass('error');
                      msg.html(' (loading...)');
                    }
                  });
                }
              }
              function filterData(data){
                // filter all the nasties out
                // no body tags
                data = data.replace(/<?\/body[^>]*>/g,'');
                // no linebreaks
                data = data.replace(/[\r|\n]+/g,'');
                // no comments
                data = data.replace(/<--[\S\s]*?-->/g,'');
                // no noscript blocks
                data = data.replace(/<noscript[^>]*>[\S\s]*?<\/noscript>/g,'');
                // no script blocks
                data = data.replace(/<script[^>]*>[\S\s]*?<\/script>/g,'');
                // no self closing scripts
                data = data.replace(/<script.*\/>/,'');
                // [... add as needed ...]
                return data;
              }
            });
    }

checkJquery();

</script>
</head>

<body>
    <ul> 
      <li><a href="http://developer.yaho.com" class="ajaxtrigger">see developer.yahoo.com</a></li> 
      <li><a href="http://tmiweb.cat.com" class="ajaxtrigger">TMIWeb WCM</a></li>
      <li><a href="borked" class="ajaxtrigger">this is a broken link</a></li> 
      <li><a href="http://borked" class="ajaxtrigger">this is an external broken link</a></li> 
      <li><a href="waiting-for-godot.php" class="ajaxtrigger">this times out</a></li>
    </ul> 
    <div id="target"><body/></div> 
</body>
</html>

So, the json response that I'm getting looks like our login page's redirect

I want to force the user to login from their own screen with their own credentials, that way I don't have to pass cookies through the yahoo api or anything when yahoo goes to query my page.

edit I've also modified the code to try to load a frame with body content thinking that it would handle the redirect... but i get the same style of response... and what I end up seeing in an Iframe looks like:

<iframe style="width:80%; height:50%;" id="render">
     <html>
          <head>
          </head>
          <body style=""></body>
     </html>
</iframe>

Whereas the example that I CAN make work from the james.padolsey link actually fills the body content of my iframe.. so again, it's the redirect issue.

share|improve this question
Reading your question, I think your question is "why does my YQL call now for for me?" -- I know that YQL respect robots.txt and similar -- so if "why is YQL not working for me" the actual question, I think you need to include the just actual YQL call rather than just posting code with this particular part "redacted". – Soren Jul 28 '11 at 14:13
edited the link for my page. If you go there, you'd have to login. Which is what I want to force on my page.... Gonna try a few other things. – user189265 Jul 28 '11 at 14:18
added it in the code – user189265 Jul 28 '11 at 14:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.