[Proto-Scripty] Re: Javascript AJAX applications don't work in Internet Explorer 7 when they aren't located on a server or localhost

2008-10-15 Thread xPIQUEx

Ajax requests use HTTP to send and receive information.  I am not 100%
sure, but I don't think your computer will understand an HTTP request
without some sort of server like IIS or Apache. Also, built in
security of the XmlHttpRequest object does not allow you to make a
request to another server other than the one you are on, and it may
also keep you from accessing files from a file system. Of course I
have not tried this myself. Is there a reason you need it to work
without some sort of server architecture?

On Oct 13, 9:53 am, hds [EMAIL PROTECTED] wrote:
 Hi.
 Does anyone know why? Any solution?

 Thanks.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: Javascript AJAX applications don't work in Internet Explorer 7 when they aren't located on a server or localhost

2008-10-13 Thread T.J. Crowder

Hi,

So if they're not on a server and not on localhost...where are they?

Do you mean file:// URLs?  Perhaps give us an example?
--
T.J. Crowder
tj / crowder software / com

On Oct 13, 3:53 pm, hds [EMAIL PROTECTED] wrote:
 Hi.
 Does anyone know why? Any solution?

 Thanks.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: Javascript AJAX applications don't work in Internet Explorer 7 when they aren't located on a server or localhost

2008-10-13 Thread Baglan

I'm using a Mac, so I'm not entirely sure about IE7, however, I
suggest you to try setting 'method' to 'get' if you have not done that
already (default method is 'post' and browsers tend to fail with
request method not supported error). Here's an example:

new Ajax.Updater('container','file.html',{method:'get'});

On Oct 13, 8:53 pm, hds [EMAIL PROTECTED] wrote:
 Hi.
 Does anyone know why? Any solution?

 Thanks.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---