summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/components/smtp/smtp.composite
blob: c740b68bc99caa61c969854c1954b7746e209177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?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://docs.oasis-open.org/ns/opencsa/sca/200912"
  targetNamespace="http://tuscany.apache.org/xmlns/sca/components"
  name="smtp">
        
    <component name="smtppost">
        <implementation.cpp path="." library="libsmtppost"/>
        <service name="smtppost">
            <binding.http uri="smtppost"/>
        </service>
        <reference name="url" target="url-test"/>
        <reference name="user" target="user-test"/>
        <reference name="password" target="password-test"/>
        <reference name="from" target="from-test"/>
        <reference name="to" target="to-test"/>
        <reference name="subject" target="subject-test"/>
        <reference name="content" target="content-test"/>
    </component>

    <component name="url-test">
        <implementation.scheme script="url-test.scm"/>
        <service name="url-test">
            <binding.http uri="url-test"/>
        </service>
    </component>

    <component name="password-test">
        <implementation.scheme script="password-test.scm"/>
        <service name="password-test">
            <binding.http uri="password-test"/>
        </service>
    </component>

    <component name="user-test">
        <implementation.scheme script="user-test.scm"/>
        <service name="user-test">
            <binding.http uri="user-test"/>
        </service>
    </component>

    <component name="from-test">
        <implementation.scheme script="from-test.scm"/>
        <service name="from-test">
            <binding.http uri="from-test"/>
        </service>
    </component>

    <component name="to-test">
        <implementation.scheme script="to-test.scm"/>
        <service name="to-test">
            <binding.http uri="to-test"/>
        </service>
    </component>

    <component name="subject-test">
        <implementation.scheme script="subject-test.scm"/>
        <service name="subject-test">
            <binding.http uri="subject-test"/>
        </service>
    </component>

    <component name="content-test">
        <implementation.scheme script="content-test.scm"/>
        <service name="content-test">
            <binding.http uri="content-test"/>
        </service>
    </component>

</composite>