See www/index.html for more information. About ANT tasks --------------- cvsup syncs with CVS war compiles into dwr/web/WEB-INF/classes in a similar way to eclipse targetwar creates a war directory in dwr/target/ant/war for external deployment clean undoes the previous 2. About role membership --------------------- I approve anyone to be an observer, but generally deny requests for developer access preferring more controlled access to CVS. My standard reply is: Hi, I have generaly worked on open source projects using a patch system rather than very open CVS which often ends up with much wasted time spent on resolving developer conflicts, and I'd like to use that model on this project too. Thanks, Joe. Hype ---- If I post an announcement to some site I record it here, so I can cut and paste next time faster TSS: 2005-03-07 Direct Web Remoting: Call server-side Java from JavaScript Direct Web Remoting (DWR) is a very simple way to call Java code directly from within browser JavaScript. New in version 0.4 is the ability to convert Javascript arrays into Java arrays, Java Objects into Javascript objects and so on. DWR gets rid of almost all the boiler plate code between the web browser and your Java code. So you don't need to create servlets, web.xml, struts config files or JSF magic incantations, no writing Actions or implementing some special interface. It helps you create sites like G-Mail or Google Suggest that update themselves without loading new pages. DWR comes as a simple jar file and a few lines to add to your web.xml file to configure the remoted classes. In a web page you add a couple of <script> tags to indicate which classes you wish to import and can then call your Java code directly from Javascript. Instructions and examples are available on the DWR site. TSS: 2004-12-11 Direct Web Remoting: Call server-side Java from JavaScript Direct Web Remoting (DWR) is a very simple way to call Java code directly from within browser JavaScript. It helps you create sites like G-Mail, Google Suggest or Kuro5hin that update themselves without loading new pages. DWR comes as a simple jar file and a few lines to add to your web.xml file to configure the remoted classes. In a web page you add a couple of <script> tags to indicate which classes you wish to import and can then call your Java code directly from Javascript. More detailed instructions are available on the DWR site. The Javascript works by dynamically creating an iframe through which it calls the DWR servlet with instructions about what Java code to call. The DWR servlet marshals the parameters, calls the server-side Java code and returns the reply to the iframe, which triggers an onload, which returns the reply to the calling Javascript. CafeAuLait: 2004-12-15 I thought you might be interested in DWR for Cafe-Au-Lait. Version 0.3 just released: http://dwr.dev.java.net/ DWR (Direct Web Remoting) is a very simple way to call server-side Java code directly from browser JavaScript. It helps you create sites like G-Mail, Google Suggest or Kuro5hin that update themselves without loading new pages. DWR comes as a simple jar file and a few lines to add to your web.xml file to configure the remoted classes. In a web page you add a couple of <script> tags to indicate which classes you wish to import and can then call your Java code directly from Javascript. The Javascript works, depending on your browser, either using XMLHttpRequest or by dynamically creating an iframe. Through this it calls the DWR servlet with instructions about what Java code to call. The DWR servlet marshals the parameters, calls the server-side Java code and returns the reply, which returns the reply to the calling Javascript. More detailed instructions are available on the DWR site. Java.Net: 2004-12-15 DWR 0.3 Released: Call server side Java directly from browser Javascript http://dwr.dev.java.net/ DWR (Direct Web Remoting) is a very simple way to call server-side Java code directly from browser JavaScript. It helps you create sites like G-Mail, Google Suggest or Kuro5hin that update themselves without loading new pages. DWR comes as a simple jar file and a few lines to add to your web.xml file to configure the remoted classes. In a web page you add a couple of <script> tags to indicate which classes you wish to import and can then call your Java code directly from Javascript. The Javascript works, depending on your browser, either using XMLHttpRequest or by dynamically creating an iframe. Through this it calls the DWR servlet with instructions about what Java code to call. The DWR servlet marshals the parameters, calls the server-side Java code and returns the reply, which returns the reply to the calling Javascript. More detailed instructions are available on the DWR site: http://dwr.dev.java.net/ License ------- This project includes code from the commons-lang project, licensed under the Apache License Version 2.0. See http://jakarta.apache.org/commons/license.html