Connecting Tech Pros Worldwide Forums | Help | Site Map

Microsoft.XMLHTTP problem

Botan Guner
Guest
 
Posts: n/a
#1: Jul 23 '05
Hi all,

Here is the problem, i'm using Microsoft.XMLHTTP for ie and
XMLHttpRequest for mozilla, on my local server which is win2000 server
i've no problem with that but when i uploaded the file to the web
server of our company which is redhat 9 i still have no problem with
mozilla but the ie gives an error like this,

System error: -1072896658

I have no clue what that means but as i sad the same page work fine on
my local server. On our rh9 server the site works over https, is
Microsoft.XMLHTTP does any security issues about https?

And my code is;
<scrip...
var xmlhttp=false;
function getData(u,m,n) {
if (window.ActiveXObject)
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
else if(window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
xmlhttp.open("GET", u, true);
xmlhttp.onreadystatechange=function() {
do
{
document.getElementById(n).innerHTML=m;
}
while(xmlhttp.readyState==200)
if (xmlhttp.readyState==4) {
document.getElementById(n).innerHTML=xmlhttp.respo nseText;
}
}
xmlhttp.send(null)
}
</...>

Thanks for helping,


Martin Honnen
Guest
 
Posts: n/a
#2: Jul 23 '05

re: Microsoft.XMLHTTP problem




Botan Guner wrote:

[color=blue]
> Here is the problem, i'm using Microsoft.XMLHTTP for ie and
> XMLHttpRequest for mozilla, on my local server which is win2000 server
> i've no problem with that but when i uploaded the file to the web
> server of our company which is redhat 9 i still have no problem with
> mozilla but the ie gives an error like this,
>
> System error: -1072896658[/color]

For which line/statement of your code does it give that error?
[color=blue]
> xmlhttp.onreadystatechange=function() {
> do
> {
> document.getElementById(n).innerHTML=m;
> }
> while(xmlhttp.readyState==200)[/color]

readyState takes values of 0, 1, 2, 3, 4 so I don't know why you check
for the value 200. And a blocking while loop in an event handler is not
a good idea as that way other events could not be processed. But in your
case the loop will not block as the condition readyState == 200 is never
true so while you should remove that loop that is not likely solving the
error problem you have.


--

Martin Honnen
http://JavaScript.FAQTs.com/
Botan Guner
Guest
 
Posts: n/a
#3: Jul 23 '05

re: Microsoft.XMLHTTP problem


It gives at line;

document.getElementById(n).innerHTML=xmlhttp.respo nseText;

and if i set the readyState anything other then 200 it stops responding

Martin Honnen
Guest
 
Posts: n/a
#4: Jul 23 '05

re: Microsoft.XMLHTTP problem




Botan Guner wrote:
[color=blue]
> It gives at line;
>
> document.getElementById(n).innerHTML=xmlhttp.respo nseText;
>
> and if i set the readyState anything other then 200 it stops responding[/color]

You are setting readyState? Not sure what that is supposed to be good for.
As for that line, how does responseText look when the error occurs?

Also consider checking
xmlhttp.status
and
xmlhttp.statusText
perhaps something goes wrong with the HTTPS access and the HTTP status
message tells what goes wrong.


--

Martin Honnen
http://JavaScript.FAQTs.com/
Botan Guner
Guest
 
Posts: n/a
#5: Jul 23 '05

re: Microsoft.XMLHTTP problem


I thing HTTPS access is my main problem because this script works good
on my local server and remote server (with mozilla) the only problem is
browsing the page with internet explorer. Mozilla outputs nothing. I
wish it generates an error nothing can be understood from the error
that internet explorer gives.

Martin Honnen
Guest
 
Posts: n/a
#6: Jul 23 '05

re: Microsoft.XMLHTTP problem




Botan Guner wrote:
[color=blue]
> I thing HTTPS access is my main problem because this script works good
> on my local server and remote server (with mozilla) the only problem is
> browsing the page with internet explorer. Mozilla outputs nothing. I
> wish it generates an error nothing can be understood from the error
> that internet explorer gives.[/color]

Even over HTTPS the response has
status
statusText
and you could check them to find out more as to what goes wrong.


--

Martin Honnen
http://JavaScript.FAQTs.com/
Botan Guner
Guest
 
Posts: n/a
#7: Jul 23 '05

re: Microsoft.XMLHTTP problem


i have checked ;
xmlhttp.status=200
xmlhttp.statusText=OK
wrote and error dialog opened.

Martin Honnen
Guest
 
Posts: n/a
#8: Jul 23 '05

re: Microsoft.XMLHTTP problem



Botan Guner wrote:
[color=blue]
> i have checked ;
> xmlhttp.status=200
> xmlhttp.statusText=OK[/color]

The HTTP(S) works fine then,
[color=blue]
> wrote and error dialog opened.[/color]

we would need to look then into the responseText and the assignment.
Do you get that error too when you do not assign to innerHTML but
instead simply
alert(xmlhttp.responseText)
?


--

Martin Honnen
http://JavaScript.FAQTs.com/
Botan Guner
Guest
 
Posts: n/a
#9: Jul 23 '05

re: Microsoft.XMLHTTP problem


when i wrote,

alert(xmlhttp.responseText);

before the,
documen....getElemen...innerHTML=xmlhttp.responseT ext;

it gives an empty alert so responseText is empty but at the same time
when i request the same page from my local server it alerts the code
returned from the requested page.

VK
Guest
 
Posts: n/a
#10: Jul 23 '05

re: Microsoft.XMLHTTP problem


You may want to start with this very generic script (the actual call
for getData is up to you). If it works, then the problem with your
script, not with Hedhat.


<script>
var XDataReader = null;

function getData(u,m,n) {
if (window.ActiveXObject) {
XDataReader = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest) {
XDataReader = new XMLHttpRequest();
}
else {
/*NOP*/
}
if (XDataReader != null) {
XDataReader.open("GET", u, true);
XDataReader.onreadystatechange = checkState;
XDataReader.send(null);
}
}

function checkState() {
if (XDataReader.readyState == 4) {
if ((XDataReader.status == 200)||(XDataReader.status == 0)) {
// Status 0 is given in IE if you load a file
// from your local file system. If you don't
// need to debug it there, you may remove it
XDataReader.onreadystatechange = foo;
// Lock the event handler for Opera,
// which gives sometimes double bubble
// for the same event
alert(XDataReader.responseText);
}
}
}

function foo() {
/*NOP*/
}
</script>

Richard Cornford
Guest
 
Posts: n/a
#11: Jul 23 '05

re: Microsoft.XMLHTTP problem


VK wrote:[color=blue]
> You may want to start with this very generic script ...[/color]
<snip>[color=blue]
> <script>
> var XDataReader = null;
>
> function getData(u,m,n) {
> if (window.ActiveXObject) {
> XDataReader = new ActiveXObject("Microsoft.XMLHTTP");
> }
> else if (window.XMLHttpRequest) {
> XDataReader = new XMLHttpRequest();
> }
> else {
> /*NOP*/
> }
> if (XDataReader != null) {
> XDataReader.open("GET", u, true);
> XDataReader.onreadystatechange = checkState;
> XDataReader.send(null);
> }
> }[/color]
<snip>

Using a single global variable to store a reference to the
XMLHttpRequest object while making asynchronous requests is a recipe for
disaster.

Richard.


Jeff
Guest
 
Posts: n/a
#12: Jul 23 '05

re: Microsoft.XMLHTTP problem


Use the MS Script Editor included free with MS Office 2002 and above,
for debugging Internet Explorer (IE).

This subject is of great interest to many JS developers, as there is no
obvious, low cost way to do sophisticated debugging in
IE6 other than to use the debugger described below, which is horribly
documented otherwise. I feel debugging is an important aspect of
projecting the useability of the language and needs to be made more
clear for new users.


Jeff Papineau
yogi@mandala.com


<FAQENTRY>

This is a page that describes how to install and use the MS Script
Editor to debug Javascript in Internet Explorer ( IE ). It has a
powerful debugger built into it that works really well for developers
supporting IE5+. This debugger/editor included with most versions of
Microsoft Office.

http://www.mandala.com/javascript/debug_javascript.html

..NET programmers may have better tools (VStudio) but this comes in
really handy for anyone developing with JSP and PHP and other dynamic
scripting languages which embed javascript, as well as any HTML page
using Javascript in Internet Explorer that needs a (almost) free
debugging environment.

</FAQENTRY>

Botan Guner
Guest
 
Posts: n/a
#13: Jul 23 '05

re: Microsoft.XMLHTTP problem


Thanks everybody, for your help and concern.

Closed Thread