summaryrefslogtreecommitdiff
path: root/ext/soap/tests/bugs/bug28985.phpt
blob: 291cce0cbb22f5c65ba2bccc10d6c5739018b843 (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
--TEST--
Bug #28985 (__getTypes() returning nothing on complex WSDL)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$client = new SOAPClient(dirname(__FILE__).'/bug28985.wsdl', array('trace'=>1));
var_dump($client->__getTypes());
?>
--EXPECT--
array(42) {
  [0]=>
  string(100) "struct LoginMGDIS {
 string iUserLogin;
 string iUserId;
 string iUserPassword;
 string iProfilId;
}"
  [1]=>
  string(29) "struct LoginMGDISResponse {
}"
  [2]=>
  string(28) "struct GetIdentification {
}"
  [3]=>
  string(77) "struct GetIdentificationResponse {
 ArrayOfAnyType GetIdentificationResult;
}"
  [4]=>
  string(43) "struct ArrayOfAnyType {
 anyType anyType;
}"
  [5]=>
  string(37) "struct RollbackCurrentTransaction {
}"
  [6]=>
  string(45) "struct RollbackCurrentTransactionResponse {
}"
  [7]=>
  string(68) "struct GetListeProfil {
 string iUserLogin;
 string iUserPassword;
}"
  [8]=>
  string(86) "struct MGCodeLibelle {
 string Code;
 string Libelle;
 boolean Defaut;
 anyType Tag;
}"
  [9]=>
  string(61) "struct ArrayOfMGCodeLibelle {
 MGCodeLibelle MGCodeLibelle;
}"
  [10]=>
  string(77) "struct GetListeProfilResponse {
 ArrayOfMGCodeLibelle GetListeProfilResult;
}"
  [11]=>
  string(41) "struct GetListeValCodif {
 string Code;
}"
  [12]=>
  string(43) "struct ArrayOfMGCodif {
 MGCodif MGCodif;
}"
  [13]=>
  string(18) "struct MGCodif {
}"
  [14]=>
  string(75) "struct GetListeValCodifResponse {
 ArrayOfMGCodif GetListeValCodifResult;
}"
  [15]=>
  string(39) "struct TestPhpSoap {
 MGCodif entree;
}"
  [16]=>
  string(57) "struct TestPhpSoapResponse {
 string TestPhpSoapResult;
}"
  [17]=>
  string(50) "struct GetListeCodif {
 boolean iGetListeValeur;
}"
  [18]=>
  string(87) "struct MGCodifGrp {
 string TypeCodif;
 string LibCodif;
 ArrayOfMGCodif ListeCodifs;
}"
  [19]=>
  string(52) "struct ArrayOfMGCodifGrp {
 MGCodifGrp MGCodifGrp;
}"
  [20]=>
  string(72) "struct GetListeCodifResponse {
 ArrayOfMGCodifGrp GetListeCodifResult;
}"
  [21]=>
  string(57) "struct DroitCreation {
 string iObjet;
 string iProfil;
}"
  [22]=>
  string(62) "struct DroitCreationResponse {
 boolean DroitCreationResult;
}"
  [23]=>
  string(74) "struct ListeDroitCreation {
 ArrayOfString iListeObjet;
 string iProfil;
}"
  [24]=>
  string(40) "struct ArrayOfString {
 string string;
}"
  [25]=>
  string(79) "struct ListeDroitCreationResponse {
 ArrayOfAnyType ListeDroitCreationResult;
}"
  [26]=>
  string(87) "struct GetDroitsObjetProtege {
 string iObjet;
 string iProfil;
 string iUtilisateur;
}"
  [27]=>
  string(154) "struct MGDroitsObjetProtege {
 string LbUti;
 string LbProf;
 string LbServ;
 string LbDir;
 boolean isProtected;
 ArrayOfMGDroitAcces ListeDroitsAcces;
}"
  [28]=>
  string(58) "struct ArrayOfMGDroitAcces {
 MGDroitAcces MGDroitAcces;
}"
  [29]=>
  string(104) "struct MGDroitAcces {
 string IdProfil;
 boolean Lecture;
 boolean Modification;
 boolean Suppression;
}"
  [30]=>
  string(91) "struct GetDroitsObjetProtegeResponse {
 MGDroitsObjetProtege GetDroitsObjetProtegeResult;
}"
  [31]=>
  string(76) "struct GetPrivileges {
 string iIdSupport;
 int iIdForme;
 string iProfil;
}"
  [32]=>
  string(68) "struct GetPrivilegesResponse {
 ArrayOfString GetPrivilegesResult;
}"
  [33]=>
  string(46) "struct GetLibelleProfil {
 string iIdProfil;
}"
  [34]=>
  string(67) "struct GetLibelleProfilResponse {
 string GetLibelleProfilResult;
}"
  [35]=>
  string(91) "struct GetValeurRecherche {
 string iChampSource;
 string iTable;
 string iOrderByClause;
}"
  [36]=>
  string(78) "struct GetValeurRechercheResponse {
 ArrayOfString GetValeurRechercheResult;
}"
  [37]=>
  string(128) "struct GetValeurRechercheWithClauseWhere {
 string iChampSource;
 string iTable;
 string iClauseWhere;
 string iOrderByClause;
}"
  [38]=>
  string(108) "struct GetValeurRechercheWithClauseWhereResponse {
 ArrayOfString GetValeurRechercheWithClauseWhereResult;
}"
  [39]=>
  string(27) "struct GetEnvironnement {
}"
  [40]=>
  string(106) "struct MGEnvironnement {
 string RepBureautique;
 string RepBureautiqueImage;
 string RepBureautiqueDoc;
}"
  [41]=>
  string(76) "struct GetEnvironnementResponse {
 MGEnvironnement GetEnvironnementResult;
}"
}