source: wsdl/fedd.wsdl @ 57facae

compt_changesinfo-ops
Last change on this file since 57facae was 6e33086, checked in by Ted Faber <faber@…>, 12 years ago

InfoSegment? to emulab access controllers

  • Property mode set to 100644
File size: 21.1 KB
Line 
1<?xml version="1.0"?>
2<definitions name="fedd"
3  targetNamespace="http://www.isi.edu/fedd.wsdl"
4  xmlns:tns="http://www.isi.edu/fedd.wsdl"
5  xmlns:xsd1="http://www.isi.edu/fedd_types"
6  xmlns:topdl="http://www.isi.edu/topdl"
7  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
8  xmlns="http://schemas.xmlsoap.org/wsdl/">
9
10   <import namespace="http://www.isi.edu/fedd_types" 
11     location="fedd_types.xsd"/>
12
13   <import namespace="http://www.isi.edu/topdl" 
14         location="topdl.xsd"/>
15  <!--
16  The message definitions are all simple embeddings of one of the types
17  from fedd_types.xsd
18  -->
19  <message name="RequestAccessRequestMessage">
20    <part name="RequestAccessRequestBody" type="xsd1:accessRequestType"/>
21  </message>
22
23  <message name="RequestAccessResponseMessage">
24    <part name="RequestAccessResponseBody" type="xsd1:accessResponseType"/>
25  </message>
26
27  <message name="ReleaseAccessRequestMessage">
28    <part name="ReleaseAccessRequestBody" type="xsd1:releaseRequestType"/>
29  </message>
30
31  <message name="ReleaseAccessResponseMessage">
32    <part name="ReleaseAccessResponseBody" type="xsd1:releaseResponseType"/>
33  </message>
34
35  <message name="NewRequestMessage">
36    <part name="NewRequestBody" type="xsd1:newRequestType"/>
37  </message>
38
39  <message name="NewResponseMessage">
40    <part name="NewResponseBody" type="xsd1:newResponseType"/>
41  </message>
42
43
44  <message name="CreateRequestMessage">
45    <part name="CreateRequestBody" type="xsd1:createRequestType"/>
46  </message>
47
48  <message name="CreateResponseMessage">
49    <part name="CreateResponseBody" type="xsd1:createResponseType"/>
50  </message>
51
52  <message name="VtopoRequestMessage">
53    <part name="VtopoRequestBody" type="xsd1:vtopoRequestType"/>
54  </message>
55
56  <message name="VtopoResponseMessage">
57    <part name="VtopoResponseBody" type="xsd1:vtopoResponseType"/>
58  </message>
59
60  <message name="VisRequestMessage">
61    <part name="VisRequestBody" type="xsd1:visRequestType"/>
62  </message>
63
64  <message name="VisResponseMessage">
65    <part name="VisResponseBody" type="xsd1:visResponseType"/>
66  </message>
67
68  <message name="InfoRequestMessage">
69    <part name="InfoRequestBody" type="xsd1:infoRequestType"/>
70  </message>
71
72  <message name="InfoResponseMessage">
73    <part name="InfoResponseBody" type="xsd1:infoResponseType"/>
74  </message>
75
76  <message name="MultiInfoRequestMessage">
77    <part name="MultiInfoRequestBody" type="xsd1:multiInfoRequestType"/>
78  </message>
79
80  <message name="MultiInfoResponseMessage">
81    <part name="MultiInfoResponseBody" type="xsd1:multiInfoResponseType"/>
82  </message>
83
84  <message name="TerminateRequestMessage">
85    <part name="TerminateRequestBody" type="xsd1:terminateRequestType"/>
86  </message>
87
88  <message name="TerminateResponseMessage">
89    <part name="TerminateResponseBody" type="xsd1:terminateResponseType"/>
90  </message>
91
92  <message name="StartSegmentRequestMessage">
93    <part name="StartSegmentRequestBody" type="xsd1:startSegmentRequestType"/>
94  </message>
95
96  <message name="StartSegmentResponseMessage">
97    <part name="StartSegmentResponseBody" type="xsd1:startSegmentResponseType"/>
98  </message>
99
100  <message name="TerminateSegmentRequestMessage">
101    <part name="TerminateSegmentRequestBody" 
102      type="xsd1:terminateSegmentRequestType"/>
103  </message>
104
105  <message name="TerminateSegmentResponseMessage">
106    <part name="TerminateSegmentResponseBody" 
107      type="xsd1:terminateSegmentResponseType"/>
108  </message>
109
110  <message name="InfoSegmentRequestMessage">
111    <part name="InfoSegmentRequestBody" 
112      type="xsd1:infoSegmentRequestType"/>
113  </message>
114
115  <message name="InfoSegmentResponseMessage">
116    <part name="InfoSegmentResponseBody" 
117      type="xsd1:infoSegmentResponseType"/>
118  </message>
119
120  <message name="SetValueRequestMessage">
121    <part name="SetValueRequestBody" type="xsd1:setValueRequestType"/>
122  </message>
123
124  <message name="SetValueResponseMessage">
125    <part name="SetValueResponseBody" type="xsd1:setValueResponseType"/>
126  </message>
127
128  <message name="GetValueRequestMessage">
129    <part name="GetValueRequestBody" type="xsd1:getValueRequestType"/>
130  </message>
131
132  <message name="GetValueResponseMessage">
133    <part name="GetValueResponseBody" type="xsd1:getValueResponseType"/>
134  </message>
135
136  <message name="FaultMessage">
137    <part name="FaultBody" type="xsd1:faultType"/>
138  </message>
139
140  <portType name="feddPortType">
141    <operation name="RequestAccess">
142      <documentation>
143        Request access to a testbed.  The request includes the various
144        resources needed (loosely), the identity of the requester, access
145        credentials andscheduling information.  A successful response includes
146        enough information for the federation system to access the testbed and
147        actually request resources.
148      </documentation>
149      <input message="tns:RequestAccessRequestMessage"/>
150      <output message="tns:RequestAccessResponseMessage"/>
151      <fault name="RequestAccessFeddFault" message="tns:FaultMessage"/>
152    </operation>
153    <operation name="ReleaseAccess">
154      <documentation>
155        Release an allocation of access to a testbed. This informs the testbed
156        that it is no longer necessary to allow the access mthods negotiated by
157        a RequestAccess cal.
158      </documentation>
159      <input message="tns:ReleaseAccessRequestMessage"/>
160      <output message="tns:ReleaseAccessResponseMessage"/>
161      <fault name="ReleaseAccessFeddFault" message="tns:FaultMessage"/>
162    </operation>
163    <operation name="New">
164      <documentation>
165        A request to create a federated experiment in an empty state so
166        resources can be attached and attributes delegated.  On success the
167        identity of the new experiment is returned.
168      </documentation>
169      <input message="tns:NewRequestMessage"/>
170      <output message="tns:NewResponseMessage"/>
171      <fault name="NewFeddFault" message="tns:FaultMessage"/>
172    </operation>
173    <operation name="Create">
174      <documentation>
175        A request to create a federated experiment from the included
176        description.  Credentials and access information is also provided.  On
177        success a logical description of the experiment is returned as well as
178        the information about federated testbeds needed to access local
179        services.
180      </documentation>
181      <input message="tns:CreateRequestMessage"/>
182      <output message="tns:CreateResponseMessage"/>
183      <fault name="CreateFeddFault" message="tns:FaultMessage"/>
184    </operation>
185    <operation name="Vtopo">
186      <documentation>
187        A request for the virtual topology of the experiment.  Requesters with
188        different access rights may receive different information.
189      </documentation>
190      <input message="tns:VtopoRequestMessage"/>
191      <output message="tns:VtopoResponseMessage"/>
192      <fault name="VtopoFeddFault" message="tns:FaultMessage"/>
193    </operation>
194    <operation name="Vis">
195      <documentation>
196        A request for the visualization of the experiment.  This is really a
197        legacy interface for visual tools that cannot generate their own
198        visualization.  Requesters with different access rights may receive
199        different information.
200      </documentation>
201      <input message="tns:VisRequestMessage"/>
202      <output message="tns:VisResponseMessage"/>
203      <fault name="VisFeddFault" message="tns:FaultMessage"/>
204    </operation>
205
206    <operation name="Info">
207      <documentation>
208        A one-stop request for meta-data on the experiment.  Includes all the
209        info from a Vtopo and a Vis request.
210      </documentation>
211      <input message="tns:InfoRequestMessage"/>
212      <output message="tns:InfoResponseMessage"/>
213      <fault name="InfoFeddFault" message="tns:FaultMessage"/>
214    </operation>
215
216    <operation name="MultiInfo">
217      <documentation>
218        A one-stop request for meta-data on the experiment.  Includes all the
219        info from a Vtopo and a Vis request.
220      </documentation>
221      <input message="tns:MultiInfoRequestMessage"/>
222      <output message="tns:MultiInfoResponseMessage"/>
223      <fault name="MultiInfoFeddFault" message="tns:FaultMessage"/>
224    </operation>
225
226    <operation name="Terminate">
227      <documentation>
228        Stop this experiment and deallocate its resources.
229      </documentation>
230      <input message="tns:TerminateRequestMessage"/>
231      <output message="tns:TerminateResponseMessage"/>
232      <fault name="TerminateFeddFault" message="tns:FaultMessage"/>
233    </operation>
234
235    <operation name="StartSegment">
236      <documentation>
237        Start a segment of an experiment on a federant
238      </documentation>
239      <input message="tns:StartSegmentRequestMessage"/>
240      <output message="tns:StartSegmentResponseMessage"/>
241      <fault name="StartSegmentFeddFault" message="tns:FaultMessage"/>
242    </operation>
243
244    <operation name="TerminateSegment">
245      <documentation>
246        Start a segment of an experiment on a federant
247      </documentation>
248      <input message="tns:TerminateSegmentRequestMessage"/>
249      <output message="tns:TerminateSegmentResponseMessage"/>
250      <fault name="TerminateSegmentFeddFault" message="tns:FaultMessage"/>
251    </operation>
252
253
254    <operation name="InfoSegment">
255      <documentation>
256        Get info about a segment
257      </documentation>
258      <input message="tns:InfoSegmentRequestMessage"/>
259      <output message="tns:InfoSegmentResponseMessage"/>
260      <fault name="InfoSegmentFeddFault" message="tns:FaultMessage"/>
261    </operation>
262
263    <operation name="SetValue">
264      <documentation>
265        Set a shared value
266      </documentation>
267      <input message="tns:SetValueRequestMessage"/>
268      <output message="tns:SetValueResponseMessage"/>
269      <fault name="SetValueFeddFault" message="tns:FaultMessage"/>
270    </operation>
271
272    <operation name="GetValue">
273      <documentation>
274        Get a shared value
275      </documentation>
276      <input message="tns:GetValueRequestMessage"/>
277      <output message="tns:GetValueResponseMessage"/>
278      <fault name="GetValueFeddFault" message="tns:FaultMessage"/>
279    </operation>
280  </portType>
281
282  <binding name="feddBinding" type="tns:feddPortType">
283      <documentation>
284        These are really very straight ahead SOAP RPC bindings.  They're 1.1
285        SOAP and not much outside the defaults.  No interesting header packing
286        or fault configuration yet.
287      </documentation>
288    <soap:binding style="rpc" 
289      transport="http://schemas.xmlsoap.org/soap/http"/>
290      <operation name="RequestAccess">
291        <documentation>
292          The bindings of this operation are straightforward SOAP RPC 1.1.
293        </documentation>
294        <soap:operation soapAction="RequestAccess"/> 
295        <input>
296          <soap:body use="literal" parts="tns:RequestAccessRequestBody"
297            namespace="http://www.isi.edu/fedd.wsdl"
298            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
299        </input>
300        <output>
301          <soap:body use="literal" parts="tns:RequestAccessResponseBody"
302            namespace="http://www.isi.edu/fedd.wsdl"
303            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
304        </output>
305        <fault name="RequestAccessFeddFault">
306          <soap:fault use="literal"  name="tns:FeddFault"
307            namespace="http://www.isi.edu/fedd.wsdl"
308            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
309        </fault>
310      </operation>
311      <operation name="ReleaseAccess">
312        <documentation>
313          The bindings of this operation are straightforward SOAP RPC 1.1.
314        </documentation>
315        <soap:operation soapAction="ReleaseAccess"/> 
316        <input>
317          <soap:body use="literal" parts="tns:ReleaseAccessRequestBody"
318            namespace="http://www.isi.edu/fedd.wsdl"
319            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
320        </input>
321        <output>
322          <soap:body use="literal" parts="tns:ReleaseAccessResponseBody"
323            namespace="http://www.isi.edu/fedd.wsdl"
324            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
325        </output>
326        <fault name="ReleaseAccessFeddFault">
327          <soap:fault use="literal"  name="tns:FeddFault"
328            namespace="http://www.isi.edu/fedd.wsdl"
329            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
330        </fault>
331      </operation>
332      <operation name="New">
333        <documentation>
334          The bindings of this operation are straightforward SOAP RPC 1.1.
335        </documentation>
336        <soap:operation soapAction="New"/> 
337        <input>
338          <soap:body use="literal" parts="tns:NewRequestBody"
339            namespace="http://www.isi.edu/fedd.wsdl"
340            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
341        </input>
342        <output>
343          <soap:body use="literal" parts="tns:NewResponseBody"
344            namespace="http://www.isi.edu/fedd.wsdl"
345            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
346        </output>
347        <fault name="NewFeddFault">
348          <soap:fault use="literal"  name="tns:FeddFault"
349            namespace="http://www.isi.edu/fedd.wsdl"
350            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
351        </fault>
352      </operation>
353      <operation name="Create">
354        <documentation>
355          The bindings of this operation are straightforward SOAP RPC 1.1.
356        </documentation>
357        <soap:operation soapAction="Create"/> 
358        <input>
359          <soap:body use="literal" parts="tns:CreateRequestBody"
360            namespace="http://www.isi.edu/fedd.wsdl"
361            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
362        </input>
363        <output>
364          <soap:body use="literal" parts="tns:CreateResponseBody"
365            namespace="http://www.isi.edu/fedd.wsdl"
366            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
367        </output>
368        <fault name="CreateFeddFault">
369          <soap:fault use="literal"  name="tns:FeddFault"
370            namespace="http://www.isi.edu/fedd.wsdl"
371            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
372        </fault>
373      </operation>
374      <operation name="Vtopo">
375        <documentation>
376          The bindings of this operation are straightforward SOAP RPC 1.1.
377        </documentation>
378        <soap:operation soapAction="Vtopo"/> 
379        <input>
380          <soap:body use="literal" parts="tns:VtopoRequestBody"
381            namespace="http://www.isi.edu/fedd.wsdl"
382            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
383        </input>
384        <output>
385          <soap:body use="literal" parts="tns:VtopoResponseBody"
386            namespace="http://www.isi.edu/fedd.wsdl"
387            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
388        </output>
389        <fault name="VtopoFeddFault">
390          <soap:fault use="literal"  name="tns:FeddFault"
391            namespace="http://www.isi.edu/fedd.wsdl"
392            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
393        </fault>
394      </operation>
395
396      <operation name="Vis">
397        <documentation>
398          The bindings of this operation are straightforward SOAP RPC 1.1.
399        </documentation>
400        <soap:operation soapAction="Vis"/> 
401        <input>
402          <soap:body use="literal" parts="tns:VisRequestBody"
403            namespace="http://www.isi.edu/fedd.wsdl"
404            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
405        </input>
406        <output>
407          <soap:body use="literal" parts="tns:VisResponseBody"
408            namespace="http://www.isi.edu/fedd.wsdl"
409            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
410        </output>
411        <fault name="VisFeddFault">
412          <soap:fault use="literal"  name="tns:FeddFault"
413            namespace="http://www.isi.edu/fedd.wsdl"
414            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
415        </fault>
416      </operation>
417      <operation name="Info">
418        <documentation>
419          The bindings of this operation are straightforward SOAP RPC 1.1.
420        </documentation>
421        <soap:operation soapAction="Info"/> 
422        <input>
423          <soap:body use="literal" parts="tns:InfoRequestBody"
424            namespace="http://www.isi.edu/fedd.wsdl"
425            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
426        </input>
427        <output>
428          <soap:body use="literal" parts="tns:InfoResponseBody"
429            namespace="http://www.isi.edu/fedd.wsdl"
430            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
431        </output>
432        <fault name="InfoFeddFault">
433          <soap:fault use="literal"  name="tns:FeddFault"
434            namespace="http://www.isi.edu/fedd.wsdl"
435            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
436        </fault>
437      </operation>
438      <operation name="MultiInfo">
439        <documentation>
440          The bindings of this operation are straightforward SOAP RPC 1.1.
441        </documentation>
442        <soap:operation soapAction="MultiInfo"/> 
443        <input>
444          <soap:body use="literal" parts="tns:MultiInfoRequestBody"
445            namespace="http://www.isi.edu/fedd.wsdl"
446            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
447        </input>
448        <output>
449          <soap:body use="literal" parts="tns:MultiInfoResponseBody"
450            namespace="http://www.isi.edu/fedd.wsdl"
451            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
452        </output>
453        <fault name="MultiInfoFeddFault">
454          <soap:fault use="literal"  name="tns:FeddFault"
455            namespace="http://www.isi.edu/fedd.wsdl"
456            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
457        </fault>
458      </operation>
459      <operation name="Terminate">
460        <documentation>
461          The bindings of this operation are straightforward SOAP RPC 1.1.
462        </documentation>
463        <soap:operation soapAction="Terminate"/> 
464        <input>
465          <soap:body use="literal" parts="tns:TerminateRequestBody"
466            namespace="http://www.isi.edu/fedd.wsdl"
467            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
468        </input>
469        <output>
470          <soap:body use="literal" parts="tns:TerminateResponseBody"
471            namespace="http://www.isi.edu/fedd.wsdl"
472            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
473        </output>
474        <fault name="TerminateFeddFault">
475          <soap:fault use="literal"  name="tns:FeddFault"
476            namespace="http://www.isi.edu/fedd.wsdl"
477            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
478        </fault>
479      </operation>
480      <operation name="StartSegment">
481        <documentation>
482          The bindings of this operation are straightforward SOAP RPC 1.1.
483        </documentation>
484        <soap:operation soapAction="StartSegment"/> 
485        <input>
486          <soap:body use="literal" parts="tns:StartSegmentRequestBody"
487            namespace="http://www.isi.edu/fedd.wsdl"
488            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
489        </input>
490        <output>
491          <soap:body use="literal" parts="tns:StartSegmentResponseBody"
492            namespace="http://www.isi.edu/fedd.wsdl"
493            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
494        </output>
495        <fault name="StartSegmentFeddFault">
496          <soap:fault use="literal"  name="tns:FeddFault"
497            namespace="http://www.isi.edu/fedd.wsdl"
498            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
499        </fault>
500      </operation>
501      <operation name="TerminateSegment">
502        <documentation>
503          The bindings of this operation are straightforward SOAP RPC 1.1.
504        </documentation>
505        <soap:operation soapAction="TerminateSegment"/> 
506        <input>
507          <soap:body use="literal" parts="tns:TerminateSegmentRequestBody"
508            namespace="http://www.isi.edu/fedd.wsdl"
509            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
510        </input>
511        <output>
512          <soap:body use="literal" parts="tns:TerminateSegmentResponseBody"
513            namespace="http://www.isi.edu/fedd.wsdl"
514            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
515        </output>
516        <fault name="TerminateSegmentFeddFault">
517          <soap:fault use="literal"  name="tns:FeddFault"
518            namespace="http://www.isi.edu/fedd.wsdl"
519            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
520        </fault>
521      </operation>
522      <operation name="InfoSegment">
523        <documentation>
524          The bindings of this operation are straightforward SOAP RPC 1.1.
525        </documentation>
526        <soap:operation soapAction="InfoSegment"/> 
527        <input>
528          <soap:body use="literal" parts="tns:InfoSegmentRequestBody"
529            namespace="http://www.isi.edu/fedd.wsdl"
530            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
531        </input>
532        <output>
533          <soap:body use="literal" parts="tns:InfoSegmentResponseBody"
534            namespace="http://www.isi.edu/fedd.wsdl"
535            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
536        </output>
537        <fault name="InfoSegmentFeddFault">
538          <soap:fault use="literal"  name="tns:FeddFault"
539            namespace="http://www.isi.edu/fedd.wsdl"
540            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
541        </fault>
542      </operation>
543      <operation name="SetValue">
544        <documentation>
545          The bindings of this operation are straightforward SOAP RPC 1.1.
546        </documentation>
547        <soap:operation soapAction="SetValue"/> 
548        <input>
549          <soap:body use="literal" parts="tns:SetValueRequestBody"
550            namespace="http://www.isi.edu/fedd.wsdl"
551            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
552        </input>
553        <output>
554          <soap:body use="literal" parts="tns:SetValueResponseBody"
555            namespace="http://www.isi.edu/fedd.wsdl"
556            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
557        </output>
558        <fault name="SetValueFeddFault">
559          <soap:fault use="literal"  name="tns:FeddFault"
560            namespace="http://www.isi.edu/fedd.wsdl"
561            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
562        </fault>
563      </operation>
564      <operation name="GetValue">
565        <documentation>
566          The bindings of this operation are straightforward SOAP RPC 1.1.
567        </documentation>
568        <soap:operation soapAction="GetValue"/> 
569        <input>
570          <soap:body use="literal" parts="tns:GetValueRequestBody"
571            namespace="http://www.isi.edu/fedd.wsdl"
572            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
573        </input>
574        <output>
575          <soap:body use="literal" parts="tns:GetValueResponseBody"
576            namespace="http://www.isi.edu/fedd.wsdl"
577            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
578        </output>
579        <fault name="GetValueFeddFault">
580          <soap:fault use="literal"  name="tns:FeddFault"
581            namespace="http://www.isi.edu/fedd.wsdl"
582            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
583        </fault>
584      </operation>
585    </binding>
586
587    <service name="feddService">
588      <documentation>
589        Fedd resource access service
590      </documentation>
591      <port name="feddPort" binding="tns:feddBinding">
592        <soap:address location="http://www.isi.edu/fedd"/>
593      </port>
594    </service>
595</definitions>
Note: See TracBrowser for help on using the repository browser.