473,606 Members | 2,200 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

XMLHttpRequest Working in FF2.0.0.8 but not NN9???

RMWChaos
137 New Member
Bizarro, that's all I can say. Aren't FF2.0.0.8 and NN9 both Mozilla 2 based browsers? So why would the exact same code work in one and not the other? To add insult to injury, it works just fine in IE7 too.

In particular, I'm grabbing a ".txt" file, which you'll see in my code uses innerHTML to display, whereas ".xml" and ".js" files do not. Perhaps not a good way to do it...does NN9 have an issue with innerHTML?

So here's my code for all you code-junkies to peruse:

Expand|Select|Wrap|Line Numbers
  1. function loadData(url)
  2.  
  3.     {
  4.  
  5.     xmlhttp = null;
  6.  
  7.     fileType = url;
  8.  
  9.     /* **** Code for native XHR **** */
  10.  
  11.     if (window.XMLHttpRequest)
  12.  
  13.         {
  14.  
  15.         xmlhttp = new XMLHttpRequest();
  16.  
  17.         }
  18.  
  19.     /* **** Code for MSIE 6.0+ XHR **** */
  20.  
  21.     else if (window.ActiveXObject("Msxml2.XMLHTTP"))
  22.  
  23.         {
  24.  
  25.         xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
  26.  
  27.         }
  28.  
  29.     /* **** Code for MSIE 5.5+ XHR **** */
  30.  
  31.     else if (window.ActiveXObject("Microsoft.XMLHTTP"))
  32.  
  33.         {
  34.  
  35.         xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  36.  
  37.         };
  38.  
  39.     if (xmlhttp != null)
  40.  
  41.         {
  42.  
  43.         xmlhttp.open("GET", url, false);
  44.  
  45.         xmlhttp.onreadystatechange = processData;
  46.  
  47.         xmlhttp.send(null);
  48.  
  49.         }
  50.  
  51.     else
  52.  
  53.         {
  54.  
  55.         alert("We're sorry, but your browser version does not support XMLHTTP / AJAX.");
  56.  
  57.         };
  58.  
  59.     };
  60.  
  61. function processData()
  62.  
  63.     {
  64.  
  65.     /* **** If xmlhttp shows "loaded" **** */
  66.  
  67.     if (xmlhttp.readyState == 4)
  68.  
  69.         {
  70.  
  71.         /* **** If status is "OK" **** */
  72.  
  73.         if (xmlhttp.status == 200)
  74.  
  75.             {
  76.  
  77.             var responseText = xmlhttp.responseText;
  78.  
  79.             var responseXML = xmlhttp.responseXML;
  80.  
  81.             /* **** If target is a text document **** */
  82.  
  83.             if (fileType.lastIndexOf("txt") > -1)
  84.  
  85.                 {
  86.  
  87.                 document.getElementById('content').innerHTML = responseText;
  88.  
  89.                 };
  90.  
  91.             /* **** If target is a xml document **** */
  92.  
  93.             if (fileType.lastIndexOf("xml") > -1)
  94.  
  95.                 {
  96.  
  97.                 // xml parse code here for responseXML
  98.  
  99.                 };
  100.  
  101.             /* **** If target is a javascript file **** */
  102.  
  103.             if (fileType.lastIndexOf("js") > -1)
  104.  
  105.                 {
  106.  
  107.                 /* **** If MSIE **** */
  108.  
  109.                 if (window.execScript)
  110.  
  111.                     {
  112.  
  113.                     execScript(responseText, "javascript");
  114.  
  115.                     return null;
  116.  
  117.                     }
  118.  
  119.                 /* **** If Mozilla, FireFox, Netscape, etc. **** */
  120.  
  121.                 else if (window.eval)
  122.  
  123.                     {
  124.  
  125.                     eval(responseText);
  126.  
  127.                     }
  128.  
  129.                 /* **** If Safari or other **** */
  130.  
  131.                 else
  132.  
  133.                     {
  134.  
  135.                     setTimeout(responseText, 0);
  136.  
  137.                     };
  138.  
  139.                 };
  140.  
  141.             }
  142.  
  143.         else
  144.  
  145.             {
  146.  
  147.             alert("Problem retrieving data:\n" + xmlhttp.status + "\n" + xmlhttp.statusText);
  148.  
  149.             };
  150.  
  151.         };
  152.  
  153.     };
  154.  
Oct 23 '07 #1
7 1772
acoder
16,027 Recognized Expert Moderator MVP
In particular, I'm grabbing a ".txt" file, which you'll see in my code uses innerHTML to display, whereas ".xml" and ".js" files do not. Perhaps not a good way to do it...does NN9 have an issue with innerHTML?
So do the XML and JS parts work?
Oct 24 '07 #2
RMWChaos
137 New Member
So do the XML and JS parts work?
Apparently, no. It seems that XMLHttpRequest is not working at all in NN9 for me. Works perfectly in IE7 and FF2.0.0.8 though. Weird. I know my onclick="" is working because I tested it with alert("Test Message"); and it came right up. Javascript is definitely working as well because my login script is functioning.

Any ideas? Isn't NN9 native XHR (i.e. xmlhttp = new XMLHttpRequest( );)?
Oct 24 '07 #3
drhowarddrfine
7,435 Recognized Expert Expert
Aren't FF2.0.0.8 and NN9 both Mozilla 2 based browsers?
NN and FF are based on gecko, the rendering engine. Mozilla is another browser based on gecko.
Oct 24 '07 #4
RMWChaos
137 New Member
Okay, gecko then. If they are both gecko-based, then wtf is the problem with NN? =D
Oct 24 '07 #5
acoder
16,027 Recognized Expert Moderator MVP
Apparently, no. It seems that XMLHttpRequest is not working at all in NN9 for me. Works perfectly in IE7 and FF2.0.0.8 though. Weird. I know my onclick="" is working because I tested it with alert("Test Message"); and it came right up. Javascript is definitely working as well because my login script is functioning.

Any ideas? Isn't NN9 native XHR (i.e. xmlhttp = new XMLHttpRequest( );)?
The XMLHttpRequest object works fine in NN9 for me.

Try some test links, e.g. this one.
Oct 25 '07 #6
RMWChaos
137 New Member
acoder,

And here you are again helping me out! Yes, I tested that in NN and it worked as it always has (that's one the of the sites that I've been learning how to code from, including XHR).

So something is goofy in my code. I've noticed that sometimes my code doesn't work for no reason I can discern, and if I retype it exactly as I have it coded, the code then works. Go figure. So I am going to try that today.

I code mostly in notepad. Is there anything about notepad encoding that could cause this type of hiccup? I can always code in WordPad instead, and I have MS Visual Web Developer 2008 Express Edition, which would probably help me catch errors more often. Sigh. I guess I just need to get in the habit of using it. Old habits (old BASIC & COBOL coder here) die hard, I suppose.

Thanks yet again!
Oct 25 '07 #7
drhowarddrfine
7,435 Recognized Expert Expert
I code mostly in notepad. Is there anything about notepad encoding that could cause this type of hiccup?
I don't recall if Notepad can save in utf8? Is it possible the BOM is involved?
I can always code in WordPad instead,
Ack! Don't do that!
I have MS Visual Web Developer 2008 Express Edition, which would probably help me catch errors more often. Sigh. I guess I just need to get in the habit of using it.
Sometimes more time is spend trying to figure out the tools than coding. Look into Notepad++. I liked it much better but I don't use Windows anymore.
Oct 25 '07 #8

Sign in to post your reply or Sign up for a free account.

Similar topics

2
1931
by: Dominic Myers | last post by:
Hi there, I'm playing with XMLHttpRequest and followed the article by Bill Bercik at http://www.webpasties.com/xmlHttpRequest/... I'm having problems getting the last two steps to work though. The page that I'm working on is here: http://camshag.co.uk/svg/XMLHttpRequest/. It works fine in Firefox but there is no output for the zip code 12345 (for example) on IE. There is no output in Opera either but I guess that's just one of those...
2
6530
by: dx27s | last post by:
Hi all, I'm working with the XMLHttpRequest object. I receive the following error message: "Permission denied to call method XMLHttpRequest.open" This occurs in Firefox only. IE works fine. From my research so far, it seems like this is a security issue related to the fact that I am trying to access a url on a second server. Both servers are under my control, however. Is there a way to get around this
20
2666
by: chris.schwalm | last post by:
This is part II of this <a href="http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/cd54951e0ea277de/639c67f2f7cadb1f?tvc=2&q=Simple+HTML+read%2Fwrite+question#639c67f2f7cadb1f"> post</a>. I am creating a java script that bascially reads a webpage - forwards it to an external program/parser/servlet - then overwrites the webpage with a slightly modify version. Basically I have two questions: (1) Do I need to set my...
3
1876
by: VK | last post by:
The Web API Working Group has released the First Public Working Draft of The XMLHttpRequest Object. <http://www.w3.org/TR/2006/WD-XMLHttpRequest-20060405/> P.S. Finally some good movement after this over-extended "there will be no XHTML" groggy state.
1
2180
by: 4levels | last post by:
Dear Folks, I stumbled upon a strange behaviour of the XMLHttpRequest.. Maybe I'm just not well informed enough about its possibilities, so could someone please confirm my question? When I put plain javscript in a file that is read-in through a XMLHttpRequest-object, it's like it is totally ignored. Eg. I have the file ajax_include.html with in it's body the following lines <script type="text/javascript" language="javascript">
13
11478
by: TLaufenberg | last post by:
I'm new to Javascript programming and I've run into a bit of a snag with making an XMLHttpRequest in the Safari browser. Actually, the request doesn't work in Firefox either but only when I use a Mac computer. IE and FireFox on a Windows based system works just fine. The problem I am having is that the XMLHttpRequest doesn't open the site that I've programmed into it. When I check the readyState it only returns 0 and never goes through the...
6
3789
by: eulaersivan | last post by:
I would like to use the xmlhttprequest-object to send an http request to my server. The http request is used to switch the light on through home automation. However it's not working, and I can't find the problem. Could it be that the apache-server is located on 192.168.0.21 and that the http request is sent to 192.168.0.21:8080? Thanks for your help.
1
4022
by: geevaa | last post by:
http://www.phpbuilder.com/columns/kassemi20050606.php3 XMLHttpRequest and AJAX for PHP programmers James Kassemi Introduction: Although the concept isn't entirely new, XMLHttpRequest technology is implemented on more sites now than ever. Compatibility is no longer an issue (IE, Mozilla and Opera all support it), and the benefits to using it are amazing. There are too many PHP programmers avoiding any
20
4024
RMWChaos
by: RMWChaos | last post by:
Currently testing in: WinVista / IE7 I have been working on getting xmlhttprequest going for weeks now. I have finally gotten a semi-working script going. Pulling up text or xml files works great and populates into the webpage; however, executing javascript has a few problems: 1. Opens on a blank page, but not a new page. It appears to compeltely overwrite the original page. I want it to update the existing page by loading within a <div>...
6
2297
by: Patrick Nolan | last post by:
I'm working on cross-platform portability of some javascript. My Macintosh testing platform is rather old. It has Safari 1.3.2 and Internet Explorer 5.2. I got Safari working, but now IE is causing trouble. It chokes on this: if (window.XMLHttpRequest) nameReq = new XMLHttpRequest(); else if (window.ActiveXObject) nameReq = new ActiveXObject("Microsoft.XMLHTTP");
0
7951
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8439
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8430
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8094
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8305
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
5966
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
3930
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2448
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
1296
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.