XMLHTTP and Firefox

M

McKirahan

Which of these should Firefox 1.5 support?

MSXML2.XMLHTTP.5.0
MSXML2.XMLHTTP.4.0
MSXML2.XMLHTTP.3.0
MSXML2.XMLHTTP
Microsoft.XMLHTTP
WinHttp.WinHttpRequest.5
WinHttp.WinHttpRequest.5.1

I've tried them all without success.

Thanks in advance.
 
W

web.dev

McKirahan said:
Which of these should Firefox 1.5 support?

MSXML2.XMLHTTP.5.0
MSXML2.XMLHTTP.4.0
MSXML2.XMLHTTP.3.0
MSXML2.XMLHTTP
Microsoft.XMLHTTP
WinHttp.WinHttpRequest.5
WinHttp.WinHttpRequest.5.1

I've tried them all without success.

Thanks in advance.

Firefox should support none of those because those are all Active X
Objects which is used only in Internet Explorer. For FF, all you need
to do is:

var xhr = new XMLHttpRequest();

Remember to do appropriate try/catch blocks where necessary.
 
M

McKirahan

McKirahan said:
Which of these should Firefox 1.5 support?

MSXML2.XMLHTTP.5.0
MSXML2.XMLHTTP.4.0
MSXML2.XMLHTTP.3.0
MSXML2.XMLHTTP
Microsoft.XMLHTTP
WinHttp.WinHttpRequest.5
WinHttp.WinHttpRequest.5.1

I've tried them all without success.

Thanks in advance.

Nevermind!

I got XMLHttpRequest() to work.
 
T

The Magpie

McKirahan said:
Which of these should Firefox 1.5 support?

MSXML2.XMLHTTP.5.0
MSXML2.XMLHTTP.4.0
MSXML2.XMLHTTP.3.0
MSXML2.XMLHTTP
Microsoft.XMLHTTP
WinHttp.WinHttpRequest.5
WinHttp.WinHttpRequest.5.1

I've tried them all without success.
If you really mean which *should* it support, then the answer is *none*
of them. They are all Windows / Microsoft tools and Firefox is not.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top