Jump to content

responseXML faild


alin19

Recommended Posts

it does'n alert anything where is the red part, so i think that it is an error in the response

 

please help

 

function verificaNume(nume,raspuns) {

if (raspuns !='') {

mesaj = document.getElementById('existaEroare');

if (raspuns == 1)

 

mesaj.className='eroare';

 

else

 

mesaj.className='ascuns';

}

else

{

 

incarcaXML('verifica.php?nume=' + nume);

 

}

}

 

var cerere;

 

function incarcaXML(url) {

if (window.XMLHttpRequest) {

 

cerere= new XMLHttpRequest ();

 

cerere.onreadystatechange = trateazaCererea;

cerere.open("GET", url, true);

cerere.send(null);

}

}

 

function trateazaCererea () {

if (cerere.readyState == 4){

if (cerere.status==200) {

raspuns= cerere.responseXML.documentElement;

alert (raspuns);

var n = response.getElementsByTagName('metoda')[0].firstChild.nodeValue;

    alert(n);

 

metoda=raspuns.getElementsByTagName('metoda')[0].firstChild.data;

    alert(metoda);

 

rezultat= raspuns.getElementsByTagName('rezultat')[0].firstChild.data;

 

eval ( metoda + '(\'\', rezultat)');

}

else {

alert ("a aparut o problema" + cerere.statusText);

}

}

}

 

 

Link to comment
https://forums.phpfreaks.com/topic/121844-responsexml-faild/
Share on other sites

 

 

Assure you have correct header type in your <<verifica.php?nume=' + nume>> file if is dynamic generated. Firefox return error in xml interpretation /parsing

 

<?header('Content-type: application/xml; charset="utf-8"',true);?>

<myxml><root>Hello world!</root></myxml>

 

 

 

 

A good tutorial for how to create a ajax request is

http://www.phpfreaks.com/forums/index.php/topic,115581.0.html

 

 

About diferences between Browsers  you must read Migrate apps from Internet Explorer to Mozilla http://navioo.com/ajax/diferences.php

Link to comment
https://forums.phpfreaks.com/topic/121844-responsexml-faild/#findComment-634053
Share on other sites

The problem here appears to be variable scope to me.  cerere holds the class so this is a little counter-intuitive.  You would think that a method of the class that is held in a variable would have access to that variable, but I'm pretty sure it doesn't work that way.

 

 

Look into variable scope.

Link to comment
https://forums.phpfreaks.com/topic/121844-responsexml-faild/#findComment-634098
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.