You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by fm...@apache.org on 2010/08/16 15:52:27 UTC

svn commit: r985928 - /tuscany/sca-java-2.x/contrib/samples/comet-webapp/src/main/webapp/index.html

Author: fmoga
Date: Mon Aug 16 13:52:27 2010
New Revision: 985928

URL: http://svn.apache.org/viewvc?rev=985928&view=rev
Log:
Removed websocket option as it is outside of comet scope.

Modified:
    tuscany/sca-java-2.x/contrib/samples/comet-webapp/src/main/webapp/index.html

Modified: tuscany/sca-java-2.x/contrib/samples/comet-webapp/src/main/webapp/index.html
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/contrib/samples/comet-webapp/src/main/webapp/index.html?rev=985928&r1=985927&r2=985928&view=diff
==============================================================================
--- tuscany/sca-java-2.x/contrib/samples/comet-webapp/src/main/webapp/index.html (original)
+++ tuscany/sca-java-2.x/contrib/samples/comet-webapp/src/main/webapp/index.html Mon Aug 16 13:52:27 2010
@@ -55,7 +55,7 @@
 			// Tuscany Comet specific API
 			
 			document.getElementById('connect').onclick = function(event) {
-                /* transport can be : long-polling, streaming or websocket */
+                /* transport can be : long-polling or streaming */
 			 	SCA.TuscanyComet.connect(document.getElementById('transport').value);
                 document.getElementById('connect').disabled = true;
                 document.getElementById('transport').disabled = true;
@@ -108,7 +108,6 @@
     	<select id="transport">
     		<option id="streaming" value="streaming">http streaming</option>
 			<option id="long-polling" value="long-polling">long-polling</option>
-			<option id="websocket" value="websocket">websocket</option>
     	</select>
     	<input id='connect' type='submit' value='Connect'/>
 		<h3>Weather Monitor</h3>