Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Include Page
TUSCANY:Tools - Install Tuscany Eclipse Plugins 1.12
TUSCANY:Tools - Install Tuscany Eclipse Plugins 1.12

Create your Service Business Logic

...

Code Block
<?xml version="1.0" encoding="UTF-8"?>
<composite	 xmlns="http://www.osoa.org/xmlns/sca/1.0"
			    xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0"
			    xmlns:c="http://helloworld"
    targetNamespace="http://helloworld"
			    name="helloworld">


	<component name="HelloWorldComponent">
		<implementation.java class="helloworld.HelloWorldImpl"/>
		<service name="HelloWorld">
			<binding.ws uri="http://localhost:8080/HelloWorld"/>
		</service>
	</component>
</composite>

...