Author: antelder
Date: Sun Jul 24 08:09:25 2011
New Revision: 1150292
URL: http://svn.apache.org/viewvc?rev=1150292&view=rev
Log:
Update sample README
Modified:
tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-jsonp/README
Modified:
tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-jsonp/README
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-jsonp/README?rev=1150292&r1=1150291&r2=1150292&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-jsonp/README
(original)
+++ tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-jsonp/README
Sun Jul 24 08:09:25 2011
@@ -1,27 +1,23 @@
-Tuscany - Getting Started - Helloworld Sample
----------------------------------------------
+Tuscany - Getting Started - Helloworld JSONP Sample
+---------------------------------------------------
-This sample demonstrates a simple helloworld style SCA application and how to
run that with Tuscany.
+This sample extends the helloworld sample to make the helloworld service
available as an HTTP endpoint using JSONP.
+JSONP is a protocol supported by many Web clients that enables client requests
to a server in a different domain.
-See the README in the top-level samples folder for general information on the
Tuscany samples.
+The changes to the helloworld sample are:
+- update the pom.xml with the additional dependencies
+- update the composite to use the JSONP binding
-This project creates an SCA contribution with a deployable composite named
helloworld.composite.
-The composite defines an SCA component, HelloworldComponent, which provides a
Helloworld service,
-the component is implemented by a Java class.
-
-You can use the contribution by starting the composite in the Tuscany Shell.
To do that run the
-following command in the helloworld folder:
+As with all the getting-started samples you can run this sample with:
mvn tuscany:run
+Then at a web browser enter the following URL:
+http://localhost:8080/HelloworldComponent/Helloworld/sayHello?name=world&callback=respFunc
-
http://localhost:8080/HelloworldComponent/Helloworld?method=sayHello¶ms=WyJXb3JsZCJd&id=1
-
-
-
- {"id":1,"result":"Hello World"}
-
+which should return a page saying:
+respFunc("Hello world");