You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by js...@apache.org on 2007/06/04 07:43:52 UTC

svn commit: r544058 - in /incubator/tuscany/java/sca/samples/feed-aggregator/src/main: java/feed/SampleServer.java resources/FeedAggregator.composite

Author: jsdelfino
Date: Sun Jun  3 22:43:52 2007
New Revision: 544058

URL: http://svn.apache.org/viewvc?view=rev&rev=544058
Log:
Changed port number to 8083.

Modified:
    incubator/tuscany/java/sca/samples/feed-aggregator/src/main/java/feed/SampleServer.java
    incubator/tuscany/java/sca/samples/feed-aggregator/src/main/resources/FeedAggregator.composite

Modified: incubator/tuscany/java/sca/samples/feed-aggregator/src/main/java/feed/SampleServer.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/feed-aggregator/src/main/java/feed/SampleServer.java?view=diff&rev=544058&r1=544057&r2=544058
==============================================================================
--- incubator/tuscany/java/sca/samples/feed-aggregator/src/main/java/feed/SampleServer.java (original)
+++ incubator/tuscany/java/sca/samples/feed-aggregator/src/main/java/feed/SampleServer.java Sun Jun  3 22:43:52 2007
@@ -31,10 +31,10 @@
             System.out.println("Sample Feed server started (press enter to shutdown)");
             System.out.println();
             System.out.println("To read the aggregated feeds, point your Web browser to the following addresses:");
-            System.out.println("http://localhost:8080/atomSample");
-            System.out.println("http://localhost:8080/rssSample");
-            System.out.println("http://localhost:8080/atomSample?feedType=rss_2.0");
-            System.out.println("http://localhost:8080/rssSample?feedType=atom_1.0");
+            System.out.println("http://localhost:8083/atomAggregator");
+            System.out.println("http://localhost:8083/rssAggregator");
+            System.out.println("http://localhost:8083/atomAggregator?feedType=rss_2.0");
+            System.out.println("http://localhost:8083/rssAggregator?feedType=atom_1.0");
             System.out.println();
             System.in.read();
         } catch (IOException e) {

Modified: incubator/tuscany/java/sca/samples/feed-aggregator/src/main/resources/FeedAggregator.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/feed-aggregator/src/main/resources/FeedAggregator.composite?view=diff&rev=544058&r1=544057&r2=544058
==============================================================================
--- incubator/tuscany/java/sca/samples/feed-aggregator/src/main/resources/FeedAggregator.composite (original)
+++ incubator/tuscany/java/sca/samples/feed-aggregator/src/main/resources/FeedAggregator.composite Sun Jun  3 22:43:52 2007
@@ -22,10 +22,10 @@
     name="FeedAggregator">
 
 	<service name="rssSample" promote="RssAggregator">
-		<binding.rss/>
+		<binding.rss uri="http://localhost:8083/rssAggregator"/>
 	</service>
 	<service name="atomSample" promote="AtomAggregator">
-		<binding.atom/>
+		<binding.atom  uri="http://localhost:8083/atomAggregator"/>
 	</service>	
 
     <component name="RssAggregator">



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org