diff options
Diffstat (limited to 'sca-java-2.x/trunk/samples/getting-started')
-rw-r--r-- | sca-java-2.x/trunk/samples/getting-started/helloworld-jsonp/README | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/sca-java-2.x/trunk/samples/getting-started/helloworld-jsonp/README b/sca-java-2.x/trunk/samples/getting-started/helloworld-jsonp/README index 7f901fc77f..5a99f91036 100644 --- a/sca-java-2.x/trunk/samples/getting-started/helloworld-jsonp/README +++ b/sca-java-2.x/trunk/samples/getting-started/helloworld-jsonp/README @@ -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");
|