summaryrefslogtreecommitdiffstats
path: root/sandbox/ant/sample.php/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-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
6 files changed, 159 insertions, 0 deletions
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");
+ }
+
+}