Sync with 5.4.0
[deliverable/titan.core.git] / function_test / Semantic_Analyser / xer / soapy.ttcn
CommitLineData
114d1c9a 1/******************************************************************************
3abe9331 2 * Copyright (c) 2000-2015 Ericsson Telecom AB
114d1c9a
EL
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 ******************************************************************************/
8module soapy_OK {
9
10type record ApplicationHeaderContent {
11 integer i
12}
13
14type record of ApplicationHeaderContent SoapHeader;
15
16type record SoapBody {}
17
18type record SoapEnvelope {
19 //record of ApplicationHeaderContent header optional,
20 SoapHeader header optional,
21 SoapBody body
22}
23with {
24 variant "name as 'Envelope'";
25
26 variant (header[-]) "untagged";
27};
28
29
30}
31with {
32 encode "XML";
33}
This page took 0.026661 seconds and 5 git commands to generate.