Re: Struts + Ajax + Firefox

2005-03-30 Thread Frank W. Zammetti
Nope, I haven't looked at it at all. I just checked out the home page for Struts Flow though, where do you see the announcement? -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com On Wed, March 30, 2005 12:11 pm, Matthias Wessendorf said: > Fra

Re: Struts + Ajax + Firefox

2005-03-30 Thread Matthias Wessendorf
Frank, did you took a look at Struts Flow allready? I just surfed the subproject and saw that AJAX is announced there. Thanks, Matthias Frank W. Zammetti wrote: Actually, I didn't intend for it to be private :) I'm not writing it for any publication in particular, although it could wind up one one

Re: Struts + Ajax + Firefox

2005-03-30 Thread Matthias Wessendorf
Ok, thanks! -Matthias Frank W. Zammetti wrote: Actually, I didn't intend for it to be private :) I'm not writing it for any publication in particular, although it could wind up one one somewhere. I'll certainly announce it here when it's done. ---

Re: Struts + Ajax + Firefox

2005-03-30 Thread Frank W. Zammetti
Actually, I didn't intend for it to be private :) I'm not writing it for any publication in particular, although it could wind up one one somewhere. I'll certainly announce it here when it's done. -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.

Re: Struts + Ajax + Firefox

2005-03-30 Thread Frank W. Zammetti
I don't know of any right now, but there *will* be one by the weekend :) (I'm working on an article on this all, and it will include a Struts-based application showing a number of usages... I had hoped to be done already, but you know, life gets in the way...) -- Frank W. Zammetti Founder and Ch

Re: Struts + Ajax + Firefox

2005-03-30 Thread Matthias Wessendorf
I started reading on ajax technology bundle and now I am wondering if anybody knows a *deployable* WAR that demonstrates Struts Actions and *AJAX* :-) -Matthias Stéphane Zuckerman wrote: Joe Germuska a écrit : I don't think this is a problem with Struts, rather with Firefox and its way of handling

Re: Struts + Ajax + Firefox

2005-03-30 Thread Stéphane Zuckerman
Joe Germuska a écrit : I don't think this is a problem with Struts, rather with Firefox and its way of handling XMLHttpRequest... But is there a way to bypass this behaviour ? I don't think you can use ActiveXObjects in Firefox -- you certainly wouldn't be able to reach users of non-Windows sys

Re: Struts + Ajax + Firefox (was: Best practice for "dynamic reloading" of a part of the JSP ?)

2005-03-30 Thread Frank W. Zammetti
Yes, Joe is correct... As per the sample I posted a day or so ago, in simplest terms, use the following Javascript to get the object: if (window.XMLHttpRequest) { // Non-IE browsers req = new XMLHttpRequest(); } else if (window.ActiveXObject) { // IE req = new ActiveXObject("Microsoft.XMLHTTP"

Re: Struts + Ajax + Firefox (was: Best practice for "dynamic reloading" of a part of the JSP ?)

2005-03-30 Thread Joe Germuska
This is working fine AFAIK, but while in IE it displays the result and that is all, in Firefox the page is still in a loading process... even though it has displayed all there was to be displayed ! I don't think this is a problem with Struts, rather with Firefox and its way of handling XMLHttp