summaryrefslogtreecommitdiffstats
path: root/sandbox/ant/sample.php
diff options
context:
space:
mode:
authordims <dims@13f79535-47bb-0310-9956-ffa450edef68>2008-06-17 00:23:01 +0000
committerdims <dims@13f79535-47bb-0310-9956-ffa450edef68>2008-06-17 00:23:01 +0000
commitbdd0a41aed7edf21ec2a65cfa17a86af2ef8c48a (patch)
tree38a92061c0793434c4be189f1d70c3458b6bc41d /sandbox/ant/sample.php
Move Tuscany from Incubator to top level.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@668359 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/ant/sample.php')
-rw-r--r--sandbox/ant/sample.php/pom.xml74
-rw-r--r--sandbox/ant/sample.php/src/main/java/helloworld/HelloWorldClient.java35
-rw-r--r--sandbox/ant/sample.php/src/main/java/helloworld/HelloWorldService.java25
-rw-r--r--sandbox/ant/sample.php/src/main/resources/HelloWorld.componentType9
-rw-r--r--sandbox/ant/sample.php/src/main/resources/HelloWorld.php7
-rw-r--r--sandbox/ant/sample.php/src/main/resources/META-INF/sca/default.scdl27
-rw-r--r--sandbox/ant/sample.php/src/test/java/helloworld/HelloWorldTestCase.java56
7 files changed, 233 insertions, 0 deletions
diff --git a/sandbox/ant/sample.php/pom.xml b/sandbox/ant/sample.php/pom.xml
new file mode 100644
index 0000000000..0dfc5f0686
--- /dev/null
+++ b/sandbox/ant/sample.php/pom.xml
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<project>
+
+ <parent>
+ <groupId>org.apache.tuscany.samples.sca</groupId>
+ <artifactId>parent</artifactId>
+ <version>1.0-incubator-M2-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>sample-php-helloworld</artifactId>
+ <packaging>jar</packaging>
+ <name>Tuscany helloworld Sample using PHP</name>
+ <description>A helloworld sample using a single SCA PHP component</description>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.osoa</groupId>
+ <artifactId>sca-api-r0.95</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.tuscany.sca.services.containers</groupId>
+ <artifactId>container-jsr223</artifactId>
+ <version>1.0-incubator-M2-SNAPSHOT</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency> <!-- Strangely, the JSR223 PHP engine has a dependency on the servlet API -->
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.3</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>test</artifactId>
+ <version>1.0-incubator-M2-SNAPSHOT</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifest>
+ <mainClass>helloworld.HelloWorldClient</mainClass>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/sandbox/ant/sample.php/src/main/java/helloworld/HelloWorldClient.java b/sandbox/ant/sample.php/src/main/java/helloworld/HelloWorldClient.java
new file mode 100644
index 0000000000..8c83ee7c4a
--- /dev/null
+++ b/sandbox/ant/sample.php/src/main/java/helloworld/HelloWorldClient.java
@@ -0,0 +1,35 @@
+/*
+ * 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 helloworld;
+
+import org.osoa.sca.CurrentCompositeContext;
+
+/**
+ * This client program shows how to create an SCA runtime, start it, locate the HelloWorld service and invoke it.
+ */
+public class HelloWorldClient {
+ public static void main(String[] args) throws Exception {
+
+ HelloWorldService helloWorldService = CurrentCompositeContext.getContext().
+ locateService(HelloWorldService.class, "HelloWorldComponent");
+
+ System.out.println(helloWorldService.sayHello(args.length < 1 ? "world" : args[0]));
+
+ }
+}
diff --git a/sandbox/ant/sample.php/src/main/java/helloworld/HelloWorldService.java b/sandbox/ant/sample.php/src/main/java/helloworld/HelloWorldService.java
new file mode 100644
index 0000000000..fd126a197a
--- /dev/null
+++ b/sandbox/ant/sample.php/src/main/java/helloworld/HelloWorldService.java
@@ -0,0 +1,25 @@
+/*
+ * 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 helloworld;
+
+public interface HelloWorldService {
+
+ String sayHello(String s);
+
+}
diff --git a/sandbox/ant/sample.php/src/main/resources/HelloWorld.componentType b/sandbox/ant/sample.php/src/main/resources/HelloWorld.componentType
new file mode 100644
index 0000000000..75b44eba2a
--- /dev/null
+++ b/sandbox/ant/sample.php/src/main/resources/HelloWorld.componentType
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="ASCII"?>
+
+<componentType xmlns="http://www.osoa.org/xmlns/sca/1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+
+ <service name="HelloWorldService">
+ <interface.java interface="helloworld.HelloWorldService"/>
+ </service>
+
+</componentType>
diff --git a/sandbox/ant/sample.php/src/main/resources/HelloWorld.php b/sandbox/ant/sample.php/src/main/resources/HelloWorld.php
new file mode 100644
index 0000000000..f272383720
--- /dev/null
+++ b/sandbox/ant/sample.php/src/main/resources/HelloWorld.php
@@ -0,0 +1,7 @@
+<?
+
+function sayHello($value) {
+ return "Hello " . $value;
+}
+
+?>
diff --git a/sandbox/ant/sample.php/src/main/resources/META-INF/sca/default.scdl b/sandbox/ant/sample.php/src/main/resources/META-INF/sca/default.scdl
new file mode 100644
index 0000000000..eb8b87a6ca
--- /dev/null
+++ b/sandbox/ant/sample.php/src/main/resources/META-INF/sca/default.scdl
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+ name="HelloWorldComposite">
+
+ <component name="HelloWorldComponent">
+ <implementation.script script="HelloWorld.php"/>
+ </component>
+
+</composite>
diff --git a/sandbox/ant/sample.php/src/test/java/helloworld/HelloWorldTestCase.java b/sandbox/ant/sample.php/src/test/java/helloworld/HelloWorldTestCase.java
new file mode 100644
index 0000000000..0b667829ef
--- /dev/null
+++ b/sandbox/ant/sample.php/src/test/java/helloworld/HelloWorldTestCase.java
@@ -0,0 +1,56 @@
+/*
+ * 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 helloworld;
+
+import java.io.FileReader;
+import java.net.URL;
+
+import javax.script.ScriptEngine;
+import javax.script.ScriptEngineManager;
+
+import org.apache.tuscany.test.SCATestCase;
+import org.osoa.sca.CompositeContext;
+import org.osoa.sca.CurrentCompositeContext;
+
+/**
+ * This shows how to test the HelloWorld service component.
+ */
+public class HelloWorldTestCase extends SCATestCase {
+
+ private CompositeContext context;
+
+ protected void setUp() throws Exception {
+ URL scdl = getClass().getClassLoader().getResource("META-INF/sca/script.system.scdl");
+ addExtension("ScriptContainer", scdl);
+ setApplicationSCDL(HelloWorldClient.class, "META-INF/sca/default.scdl");
+ super.setUp();
+
+ context = CurrentCompositeContext.getContext();
+ }
+
+ protected void tearDown() throws Exception {
+ }
+
+ public void testHelloWorld() throws Exception {
+
+ HelloWorldService helloWorldService = context.locateService(HelloWorldService.class, "HelloWorldComponent");
+ assertEquals(helloWorldService.sayHello("petra"), "Hello petra");
+ }
+
+}