source: fedd/fedd_messages.wsdl @ ef36c1e

axis_examplecompt_changesinfo-opsversion-1.30version-2.00version-3.01version-3.02
Last change on this file since ef36c1e was ef36c1e, checked in by Ted Faber <faber@…>, 16 years ago

split out project creation

  • Property mode set to 100644
File size: 1.5 KB
Line 
1<?xml version="1.0"?>
2<definitions name="fedd"
3  targetNamespace="http://www.isi.edu/faber/fedd_messages"
4  xmlns:tns="http://www.isi.edu/faber/fedd_messages"
5  xmlns:xsd1="http://www.isi.edu/faber/fedd_types"
6  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
7  xmlns="http://schemas.xmlsoap.org/wsdl/">
8
9  <message name="RequestAccessRequestMessage">
10    <part name="RequestAccessRequestBody" type="xsd1:requestType"/>
11  </message>
12
13  <message name="RequestAccessResponseMessage">
14    <part name="RequestAccessResponseBody" type="xsd1:responseType"/>
15  </message>
16
17  <message name="FaultMessage">
18    <part name="FaultBody" type="xsd1:faultType"/>
19  </message>
20
21  <message name="AllocateProjectRequestMessage">
22    <part name="AllocateProjectRequestBody" type="xsd1:projectAllocType"/>
23  </message>
24
25  <message name="AllocateProjectResponseMessage">
26    <part name="AllocateProjectResponseBody" 
27      type="xsd1:projectAllocResponseType"/>
28  </message>
29
30  <portType name="feddPortType">
31    <operation name="RequestAccess">
32      <documentation>
33        Fill this in
34      </documentation>
35      <input message="tns:RequestAccessRequestMessage"/>
36      <output message="tns:RequestAccessResponseMessage"/>
37      <fault name="RequestAccessFault" 
38        message="tns:FaultMessage"/>
39    </operation>
40
41    <operation name="AllocateProject">
42      <input message="tns:AllocateProjectRequestMessage"/>
43      <output message="tns:AllocateProjectResponseMessage"/>
44      <fault name="AllocateProjectFault" 
45        message="tns:FaultMessage"/>
46    </operation>
47  </portType>
48</definitions>
Note: See TracBrowser for help on using the repository browser.