Hi,
   I am using Ajax.request object very frequently. I am using
following code to send a request to servlet which is running on
localhost

URL = 'http://localhost:8080/AT/jsonservlet?option=emplist';
                new Ajax.Request(URL, {
                method: 'get',
                onException: function(transport, ex){
                        for (var exp in ex){
                                alert(exp +" : "+ex[exp]);
                        }
                },
                onSuccess: function(transport) {
                                ....

It is generating error on send request "Component returned failure
code: 0x80070057(NS_ERROR_ILLEGAL_VALUE)"
though this works fine with IE.
Any suggestion to make it work in FF.

- R


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Spinoffs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to