From 0f3f9b59b310833f31ba234ee4aefa808649833c Mon Sep 17 00:00:00 2001 From: lresende Date: Wed, 11 Nov 2009 23:06:50 +0000 Subject: Moving 1.x branches git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835120 13f79535-47bb-0310-9956-ffa450edef68 --- .../sca-java-0.91/samples/helloworld-dojo/README | 101 ++++++++++++ .../samples/helloworld-dojo/build-dojo.xml | 91 +++++++++++ .../samples/helloworld-dojo/build.xml | 107 +++++++++++++ .../samples/helloworld-dojo/helloworld-jsonrpc.png | Bin 0 -> 9947 bytes .../samples/helloworld-dojo/helloworld-jsonrpc.svg | 177 +++++++++++++++++++++ .../sca-java-0.91/samples/helloworld-dojo/pom.xml | 125 +++++++++++++++ .../java/helloworldjsonrpc/HelloWorldService.java | 28 ++++ .../helloworldjsonrpc/HelloWorldServiceImpl.java | 36 +++++ .../src/main/resources/jsonrpc.composite | 36 +++++ .../src/main/webapp/HelloWorldJSONRPC.html | 91 +++++++++++ .../src/main/webapp/META-INF/sca-contribution.xml | 26 +++ .../src/main/webapp/WEB-INF/web.xml | 45 ++++++ .../helloworld-dojo/src/main/webapp/style.css | 22 +++ 13 files changed, 885 insertions(+) create mode 100644 sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/README create mode 100644 sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/build-dojo.xml create mode 100644 sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/build.xml create mode 100644 sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/helloworld-jsonrpc.png create mode 100644 sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/helloworld-jsonrpc.svg create mode 100644 sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/pom.xml create mode 100644 sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/java/helloworldjsonrpc/HelloWorldService.java create mode 100644 sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/java/helloworldjsonrpc/HelloWorldServiceImpl.java create mode 100644 sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/resources/jsonrpc.composite create mode 100644 sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/HelloWorldJSONRPC.html create mode 100644 sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/META-INF/sca-contribution.xml create mode 100644 sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/WEB-INF/web.xml create mode 100644 sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/style.css (limited to 'sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo') diff --git a/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/README b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/README new file mode 100644 index 0000000000..cc25b50192 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/README @@ -0,0 +1,101 @@ +Hello World Dojo RPC Sample +=========================== +This sample demostrates the SCA JSONRPC binding using a simple web app that +uses the RPC support of the Dojo Toolkit to an SCA service. + +The README in the samples directory (the directory above this) provides +general instructions about building and running samples. Take a look there +first. + +As this sample provides a web app there is a manual step where the WAR file +that contains the sample is copied to your web app container. If you just want +to give this sample a go deploy the WAR file (target/sample-helloworld-dojo.war) +to you web application server. + +Once the web app is deployed use your browser to visit the following URL; + +http://localhost:8080/sample-helloworld-dojo + +The port and hostname will of course vary depending on your local installation. + +See also the similar helloworld-jsonrpc sample which also uses the SCA JSONRPC binding +but uses SCA scaDomain.js script on the client instead of the Dojo Toolkit. + +Sample Overview +--------------- +The sample provides a single service with an operation that reflects +a greeting back to the caller. The service is exposed using the JSONRPC +binding. The web app provided shows how the Dojo Toolkit JSON-RPC support can be +used to invoke the SCA service. + +The web app provided shows how the service can be called by using the DOJO toolkit. + +helloworld-dojo/ + build-dojo.xml - This file is an Ant script used by the + sample build process to download the Dojo Toolkit + and get it included in the WAR file + for use by the sample. + src/ + main/ + java/ + helloworldjsonrpc/ + HelloWorldService.java - service interface + HelloWorldServiceImpl.java - service implementation + resources/ + jsonrpc.composite - the SCA assembly for this sample + webapp + dojo/ - the Dojo toolkit (this directory is created only + when you build the samples from the source distribution) + META-INF/ + sca-contribution.xml - specifies the composite to be deployed + WEB-INF/ + web.xml - defines the listener that starts up the + Tuscany SCA runtime + HelloWorldJSONRPC.html - the web application that calls the + SCA service via JSONRPC + style.css - style sheet + + helloworld-jsonrpc.png - a pictorial representation of the + sample .composite file + build.xml - the Ant build file that unpacks the + dojo installation + pom.xml - the Maven build file + +Building And Running The Sample Using Ant +----------------------------------------- +With the binary distribution the sample can be built using Ant as +follows + +cd helloworld-dojo +ant package + +This should result in a war file (sample-helloworld-dojo.war) in the target +directory. Copy this war file to your web app deployment directory in your +web app container. + +The process for getting the web app running will depend on which web app container +you are using. For example, if you are using Tomcat then it is simply a matter +of copying the WAR file to the webapps directory. + +Once the web app is deployed use your browser to visit the following URL; + +http://localhost:8080/sample-helloworld-dojo + +The port and hostname will of course vary depending on your local installation. + +You should see a web page that allows you to send messages, via JSONRPC, to the +application running in the Tuscany SCA Runtime + +Building And Running The Sample Using Maven +------------------------------------------- +With either the binary or source distributions the sample can be built and run +using Maven as follows. + +cd helloworld-dojo +mvn + +Again this should result in a war file (sample-helloworld-dojo.war) in the target +directory. Follow the steps described in the previous section for running the web +app and for the expected results. + + diff --git a/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/build-dojo.xml b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/build-dojo.xml new file mode 100644 index 0000000000..335a10817a --- /dev/null +++ b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/build-dojo.xml @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/build.xml b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/build.xml new file mode 100644 index 0000000000..839679b909 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/build.xml @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/helloworld-jsonrpc.png b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/helloworld-jsonrpc.png new file mode 100644 index 0000000000..57f90aed01 Binary files /dev/null and b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/helloworld-jsonrpc.png differ diff --git a/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/helloworld-jsonrpc.svg b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/helloworld-jsonrpc.svg new file mode 100644 index 0000000000..5c5cb91157 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/helloworld-jsonrpc.svg @@ -0,0 +1,177 @@ + + + + + + + + + + image/svg+xml + + + + + + + + helloworldjsonrpc + + HelloWorldJSONServiceComponent + HelloWorldService + WebApp + DOJO + + diff --git a/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/pom.xml b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/pom.xml new file mode 100644 index 0000000000..537cfd57b9 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/pom.xml @@ -0,0 +1,125 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-sca + 0.91-incubating-SNAPSHOT + ../../pom.xml + + sample-helloworld-dojo + war + Apache Tuscany Dojo Sample WebApp + + + + apache.incubator + http://people.apache.org/repo/m2-incubating-repository + + + + + + org.apache.tuscany.sca + tuscany-host-webapp + 0.91-incubating-SNAPSHOT + + + + org.apache.tuscany.sca + tuscany-implementation-java-runtime + 0.91-incubating-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-binding-jsonrpc + 0.91-incubating-SNAPSHOT + runtime + + + + junit + junit + 4.2 + test + + + + + + ${artifactId} + + + org.apache.maven.plugins + maven-antrun-plugin + 1.1 + + + install-dojo + validate + + run + + + + + + + + + + + copy-dojo-files + generate-resources + + run + + + + + + + + + + + + clean-dojo-files + clean + + run + + + + + + + + + + + + + + + diff --git a/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/java/helloworldjsonrpc/HelloWorldService.java b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/java/helloworldjsonrpc/HelloWorldService.java new file mode 100644 index 0000000000..3d8ea24f04 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/java/helloworldjsonrpc/HelloWorldService.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package helloworldjsonrpc; + +/** + * This is the business interface of the HelloWorld service component. + */ +public interface HelloWorldService { + + String getGreetings(String name); + +} diff --git a/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/java/helloworldjsonrpc/HelloWorldServiceImpl.java b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/java/helloworldjsonrpc/HelloWorldServiceImpl.java new file mode 100644 index 0000000000..35fd00fabd --- /dev/null +++ b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/java/helloworldjsonrpc/HelloWorldServiceImpl.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package helloworldjsonrpc; + +import org.osoa.sca.annotations.Service; + +/** + * This class implements the HelloWorld service component. + */ +@Service(HelloWorldService.class) +public class HelloWorldServiceImpl implements HelloWorldService { + + /* + * @see org.apache.tuscany.samples.helloworld.HelloWorldServiceComponent#getGreetings() + */ + public String getGreetings(String name) { + return "jsonrpcHello " + name; + } + +} diff --git a/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/resources/jsonrpc.composite b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/resources/jsonrpc.composite new file mode 100644 index 0000000000..6ceef2041f --- /dev/null +++ b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/resources/jsonrpc.composite @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + diff --git a/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/HelloWorldJSONRPC.html b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/HelloWorldJSONRPC.html new file mode 100644 index 0000000000..b6c8f868d3 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/HelloWorldJSONRPC.html @@ -0,0 +1,91 @@ + + + + Tuscany JSON-RPC HelloWorld Example + + + + + + + + + + + + + +

Tuscany Dojo JSON-RPC HelloWorld Sample

+ + + + + + + + + + + + + + + + + + +
Dojo Example
+

This example uses the Dojo Toolkit + to create a JavaScript object helloWorldService for the SCA service + 'HelloWorldService' using Dojo's RPC classes + and providing them with SCA/SCADomain/HelloWorldService?smd + for Simple Method Description (SMD) input.

+

It then creates a Dojo button that will envoke the getGreetings method of the HelloWorldService object.

+
RequestResponse
+
helloWorldService.getGreetings("Dojo").addCallback(contentCallBack);

+
+
None Yet.
+
+
Dojo Debug:
+
+ + + + + + + + diff --git a/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/META-INF/sca-contribution.xml b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..1cc4ac12af --- /dev/null +++ b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/META-INF/sca-contribution.xml @@ -0,0 +1,26 @@ + + + + + + + diff --git a/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/WEB-INF/web.xml b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000000..61b1057974 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,45 @@ + + + + + + + Tuscany sample HelloWorld JSON-RPC + + + org.apache.tuscany.sca.webapp.TuscanyContextListener + + + + TuscanyServlet + org.apache.tuscany.sca.webapp.TuscanyServlet + + + + TuscanyServlet + /SCA/* + + + + HelloWorldJSONRPC.html + + + diff --git a/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/style.css b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/style.css new file mode 100644 index 0000000000..1071583264 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-0.91/samples/helloworld-dojo/src/main/webapp/style.css @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +* { font-family: arial; } + +table, th, td { border: 2px solid blue; border-collapse: collapse; } +th { color: white; background-color: blue; } -- cgit v1.2.3