Author: jsdelfino
Date: Mon Aug 20 21:05:04 2007
New Revision: 567939

URL: http://svn.apache.org/viewvc?rev=567939&view=rev
Log:
Renamed binding.ajax to binding.dwr.

Modified:
    incubator/tuscany/java/sca/samples/chat-webapp/README
    
incubator/tuscany/java/sca/samples/chat-webapp/src/main/resources/chat.composite
    incubator/tuscany/java/sca/samples/chat-webapp/src/main/webapp/chat.html

Modified: incubator/tuscany/java/sca/samples/chat-webapp/README
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/chat-webapp/README?rev=567939&r1=567938&r2=567939&view=diff
==============================================================================
--- incubator/tuscany/java/sca/samples/chat-webapp/README (original)
+++ incubator/tuscany/java/sca/samples/chat-webapp/README Mon Aug 20 21:05:04 
2007
@@ -1,6 +1,6 @@
 Chat WebApp Sample
 ==================
-This sample demonstrates the SCA Ajax binding to implement the classic Ajax 
sample
+This sample demonstrates the SCA DWR binding to implement the classic Ajax 
sample
 of a chat application which allows multiple users to chat from their browsers.
 
 The README in the samples directory (the directory above this) provides 
@@ -20,8 +20,8 @@
 
 Sample Overview
 ---------------
-The sample provides an SCA component which has an SCA service using the SCA 
Ajax
-binding and an SCA reference also using the Ajax binding. The component 
implementation 
+The sample provides an SCA component which has an SCA service using the SCA DWR
+binding and an SCA reference also using the DWR binding. The component 
implementation 
 simply forwards every invocation of the service as an invocation on the 
reference. The
 component reference is scoped by the composite so every active client of the 
composite
 will receive every message sent to the component service, thus implementing 
the chat

Modified: 
incubator/tuscany/java/sca/samples/chat-webapp/src/main/resources/chat.composite
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/chat-webapp/src/main/resources/chat.composite?rev=567939&r1=567938&r2=567939&view=diff
==============================================================================
--- 
incubator/tuscany/java/sca/samples/chat-webapp/src/main/resources/chat.composite
 (original)
+++ 
incubator/tuscany/java/sca/samples/chat-webapp/src/main/resources/chat.composite
 Mon Aug 20 21:05:04 2007
@@ -24,7 +24,7 @@
 
     <service name="ChatService" promote="ChatComponent">
         <interface.java interface="sample.ChatService"/>
-        <binding.ajax/>
+        <binding.dwr/>
     </service>
 
     <component name="ChatComponent">
@@ -33,7 +33,7 @@
 
     <reference name="ChatReference" promote="ChatComponent/chatters">
         <interface.java interface="sample.ChatService" />
-        <binding.ajax/>
+        <binding.dwr/>
     </reference>
 
 </composite>

Modified: 
incubator/tuscany/java/sca/samples/chat-webapp/src/main/webapp/chat.html
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/chat-webapp/src/main/webapp/chat.html?rev=567939&r1=567938&r2=567939&view=diff
==============================================================================
--- incubator/tuscany/java/sca/samples/chat-webapp/src/main/webapp/chat.html 
(original)
+++ incubator/tuscany/java/sca/samples/chat-webapp/src/main/webapp/chat.html 
Mon Aug 20 21:05:04 2007
@@ -18,7 +18,7 @@
 -->
 <html>
   <head>
-    <title>Tuscany AJAX Chat Sample</TITLE>
+    <title>Tuscany Ajax/DWR Chat Sample</TITLE>
 
     <script type="text/javascript" src="SCA/SCADomain/scaDomain.js"></script>
 
@@ -53,7 +53,7 @@
   </head>
   <body onLoad="scaDomain.open()">
 
-    <h2>Tuscany AJAX Chat Sample</h2>
+    <h2>Tuscany Ajax/DWR Chat Sample</h2>
      
       A simple client to chat between multiple web browsers:<br><br>
      



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to