Versions Compared

Key

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

...

(warning) the scenario details here are currently copied from unit tests. We should replace with the big bank scenario now that is being checked in.
Scenario 1

Anchor
Scenario1
Scenario1
1. Use implementation.composite as a component implementation - Implicit declaration

...

Code Block
    <component name="SpringComponent">
        <implementation.spring location="META-INF/sca/SpringComponent-context.xml"/>
        <service name="testService">
            <binding.ws>
        </service>
        <reference name="testReference" target="ReferenceComponent">
            <binding.ws/>
        </reference>
        <property name="TestProperty">Hello</property>

    </component>

Or

Code Block
    <component name="SpringComponent">
        <implementation.spring location="META-INF/sca/SpringComponent-context.xml"/>
        <service name="testService">
            <binding.jms>
        </service>
        <reference name="testReference" target="ReferenceComponent">
            <binding.jms/>
        </reference>
        <property name="TestProperty">Hello</property>
    </component>

...