Do you know for any good URL, portal, forum, newsgroup, yahoo (etc.) group,
etc., to find more about AJAX and Java?
AJAX + JSP, JSF, EJB, Hibernate, SOA, etc. - anything!!!!
Thanks
Roedy Green - 27 Sep 2005 09:50 GMT
>Do you know for any good URL, portal, forum, newsgroup, yahoo (etc.) group,
>etc., to find more about AJAX and Java?
>AJAX + JSP, JSF, EJB, Hibernate, SOA, etc. - anything!!!!
see http://mindprod.com/jgloss/ajax.html and chase links.

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Again taking new Java programming contracts.
Dag Sunde - 27 Sep 2005 10:39 GMT
> Do you know for any good URL, portal, forum, newsgroup, yahoo (etc.)
> group, etc., to find more about AJAX and Java?
> AJAX + JSP, JSF, EJB, Hibernate, SOA, etc. - anything!!!!
Why do you want to mix Java into it?
AJAX: (A)synchronous (JA)vaScript and (X)ml
Its a fancy name on a technique for doing asynch callbacks
to the web-server without refreshing or POSTing the whole web-page.
The technique is old, implemented with hidden iframes, but these days
the vouge is to use the XmlHttpObject supported by most modern browsers.
The only part I can see Java come into the picture is that it *might* be
a .jsp or servlet that respond to the AJAX call from the browser.

Signature
Dag.
Chris Smith - 27 Sep 2005 19:21 GMT
> Why do you want to mix Java into it?
> AJAX: (A)synchronous (JA)vaScript and (X)ml
[quoted text clipped - 7 lines]
> The only part I can see Java come into the picture is that it *might* be
> a .jsp or servlet that respond to the AJAX call from the browser.
That would indeed be where Java gets involved. Specifically, some easy
way for the JavaScript in the page to make calls to Java methods or
manipulate Java fields is helpful.
I don't know the answer to this question, but I do know that answers
exist. I've written a framework for JSF that allows JavaScript to make
remote calls methods or properties in specifically designated backing
beans. It's proprietary code that I can't share at the moment, but
certainly SOMETHING like this exists and is available freely or for
licensing.

Signature
www.designacourse.com
The Easiest Way To Train Anyone... Anywhere.
Chris Smith - Lead Software Developer/Technical Trainer
MindIQ Corporation
Roedy Green - 27 Sep 2005 20:36 GMT
>Do you know for any good URL, portal, forum, newsgroup, yahoo (etc.) group,
>etc., to find more about AJAX and Java?
The idea of Ajax was likely originally to soup up apps without having
to change the server side logic, just change the HTML. From Java's
point of view, Ajax is just a user who sends in CGI-gets rapidly.
It is a kludge to make up for the fact thin clients are hopeless at
data entry and validation.

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Again taking new Java programming contracts.
Tim Tyler - 27 Sep 2005 22:18 GMT
black <black_xxxx_@hotmail.com> wrote or quoted:
> Do you know for any good URL, portal, forum, newsgroup, yahoo (etc.) group,
> etc., to find more about AJAX and Java?
I don't think I've seen any AJAX sites using Java.

Signature
__________
|im |yler http://timtyler.org/ tim@tt1lock.org Remove lock to reply.
Real Gagnon - 28 Sep 2005 03:21 GMT
> Do you know for any good URL, portal, forum, newsgroup, yahoo (etc.)
> group, etc., to find more about AJAX and Java?
> AJAX + JSP, JSF, EJB, Hibernate, SOA, etc. - anything!!!!
Here a nice one :
http://www-128.ibm.com/developerworks/library/j-ajax1/?ca=dgr-lnxw01Ajax
Bye.

Signature
Real Gagnon from Quebec, Canada
* Looking for Java or PB code examples ? Visit Real's How-to
* http://www.rgagnon.com/howto.html
None - 28 Sep 2005 04:59 GMT
Here's a decent introduction that deals with AJAX from Struts apps:
http://www.omnytex.com/articles/
You also may find this decent little taglib of interest:
http://javawebparts.sourceforge.net/javadocs/javawebparts/taglib/ajaxtags/packag
e-summary.html
It is a subcomponent of the larger Java Web Parts project, a neat
project in it's own right:
http://javawebparts.sourceforge.net
>Do you know for any good URL, portal, forum, newsgroup, yahoo (etc.) group,
>etc., to find more about AJAX and Java?
>AJAX + JSP, JSF, EJB, Hibernate, SOA, etc. - anything!!!!
>
>Thanks