update the AirlineService reference

This commit is contained in:
Andreas Zweili 2018-08-28 21:56:09 +02:00
parent 41b6c58cd0
commit 387679293d
7 changed files with 160 additions and 94 deletions

View File

@ -4,7 +4,8 @@
<xsd:schema targetNamespace="http://tempuri.org/Imports">
<xsd:import schemaLocation="http://localhost:49949/AirlineService.svc?xsd=xsd0" namespace="http://tempuri.org/" />
<xsd:import schemaLocation="http://localhost:49949/AirlineService.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
<xsd:import schemaLocation="http://localhost:49949/AirlineService.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/AirlineServer.Models" />
<xsd:import schemaLocation="http://localhost:49949/AirlineService.svc?xsd=xsd2" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
<xsd:import schemaLocation="http://localhost:49949/AirlineService.svc?xsd=xsd3" namespace="http://schemas.datacontract.org/2004/07/AirlineServer.Models" />
</xsd:schema>
</wsdl:types>
<wsdl:message name="IAirlineService_GetFlights_InputMessage">
@ -19,6 +20,12 @@
<wsdl:message name="IAirlineService_BookFlight_OutputMessage">
<wsdl:part name="parameters" element="tns:BookFlightResponse" />
</wsdl:message>
<wsdl:message name="IAirlineService_CancelFlight_InputMessage">
<wsdl:part name="parameters" element="tns:CancelFlight" />
</wsdl:message>
<wsdl:message name="IAirlineService_CancelFlight_OutputMessage">
<wsdl:part name="parameters" element="tns:CancelFlightResponse" />
</wsdl:message>
<wsdl:portType name="IAirlineService">
<wsdl:operation name="GetFlights">
<wsdl:input wsaw:Action="http://tempuri.org/IAirlineService/GetFlights" message="tns:IAirlineService_GetFlights_InputMessage" />
@ -28,6 +35,10 @@
<wsdl:input wsaw:Action="http://tempuri.org/IAirlineService/BookFlight" message="tns:IAirlineService_BookFlight_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IAirlineService/BookFlightResponse" message="tns:IAirlineService_BookFlight_OutputMessage" />
</wsdl:operation>
<wsdl:operation name="CancelFlight">
<wsdl:input wsaw:Action="http://tempuri.org/IAirlineService/CancelFlight" message="tns:IAirlineService_CancelFlight_InputMessage" />
<wsdl:output wsaw:Action="http://tempuri.org/IAirlineService/CancelFlightResponse" message="tns:IAirlineService_CancelFlight_OutputMessage" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="BasicHttpBinding_IAirlineService" type="tns:IAirlineService">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
@ -49,6 +60,15 @@
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="CancelFlight">
<soap:operation soapAction="http://tempuri.org/IAirlineService/CancelFlight" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="AirlineService">
<wsdl:port name="BasicHttpBinding_IAirlineService" binding="tns:BasicHttpBinding_IAirlineService">

View File

@ -1,37 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://tempuri.org/" elementFormDefault="qualified" targetNamespace="http://tempuri.org/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:import schemaLocation="http://localhost:49949/AirlineService.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/AirlineServer.Models" />
<xs:element name="GetFlights">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="startTime" type="xs:dateTime" />
<xs:element minOccurs="0" name="endTime" type="xs:dateTime" />
<xs:element minOccurs="0" name="origin" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="destination" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="numberOfSeats" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetFlightsResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/AirlineServer.Models" minOccurs="0" name="GetFlightsResult" nillable="true" type="q1:ArrayOfArrayOfFlight" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="BookFlight">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q2="http://schemas.datacontract.org/2004/07/AirlineServer.Models" minOccurs="0" name="flight" nillable="true" type="q2:Flight" />
<xs:element minOccurs="0" name="numberOfSeats" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="BookFlightResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q3="http://schemas.datacontract.org/2004/07/AirlineServer.Models" minOccurs="0" name="BookFlightResult" nillable="true" type="q3:Flight" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="anyType" nillable="true" type="xs:anyType" />
<xs:element name="anyURI" nillable="true" type="xs:anyURI" />
<xs:element name="base64Binary" nillable="true" type="xs:base64Binary" />
<xs:element name="boolean" nillable="true" type="xs:boolean" />
<xs:element name="byte" nillable="true" type="xs:byte" />
<xs:element name="dateTime" nillable="true" type="xs:dateTime" />
<xs:element name="decimal" nillable="true" type="xs:decimal" />
<xs:element name="double" nillable="true" type="xs:double" />
<xs:element name="float" nillable="true" type="xs:float" />
<xs:element name="int" nillable="true" type="xs:int" />
<xs:element name="long" nillable="true" type="xs:long" />
<xs:element name="QName" nillable="true" type="xs:QName" />
<xs:element name="short" nillable="true" type="xs:short" />
<xs:element name="string" nillable="true" type="xs:string" />
<xs:element name="unsignedByte" nillable="true" type="xs:unsignedByte" />
<xs:element name="unsignedInt" nillable="true" type="xs:unsignedInt" />
<xs:element name="unsignedLong" nillable="true" type="xs:unsignedLong" />
<xs:element name="unsignedShort" nillable="true" type="xs:unsignedShort" />
<xs:element name="char" nillable="true" type="tns:char" />
<xs:simpleType name="char">
<xs:restriction base="xs:int" />
</xs:simpleType>
<xs:element name="duration" nillable="true" type="tns:duration" />
<xs:simpleType name="duration">
<xs:restriction base="xs:duration">
<xs:pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?" />
<xs:minInclusive value="-P10675199DT2H48M5.4775808S" />
<xs:maxInclusive value="P10675199DT2H48M5.4775807S" />
</xs:restriction>
</xs:simpleType>
<xs:element name="guid" nillable="true" type="tns:guid" />
<xs:simpleType name="guid">
<xs:restriction base="xs:string">
<xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}" />
</xs:restriction>
</xs:simpleType>
<xs:attribute name="FactoryType" type="xs:QName" />
<xs:attribute name="Id" type="xs:ID" />
<xs:attribute name="Ref" type="xs:IDREF" />
</xs:schema>

View File

@ -1,42 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="anyType" nillable="true" type="xs:anyType" />
<xs:element name="anyURI" nillable="true" type="xs:anyURI" />
<xs:element name="base64Binary" nillable="true" type="xs:base64Binary" />
<xs:element name="boolean" nillable="true" type="xs:boolean" />
<xs:element name="byte" nillable="true" type="xs:byte" />
<xs:element name="dateTime" nillable="true" type="xs:dateTime" />
<xs:element name="decimal" nillable="true" type="xs:decimal" />
<xs:element name="double" nillable="true" type="xs:double" />
<xs:element name="float" nillable="true" type="xs:float" />
<xs:element name="int" nillable="true" type="xs:int" />
<xs:element name="long" nillable="true" type="xs:long" />
<xs:element name="QName" nillable="true" type="xs:QName" />
<xs:element name="short" nillable="true" type="xs:short" />
<xs:element name="string" nillable="true" type="xs:string" />
<xs:element name="unsignedByte" nillable="true" type="xs:unsignedByte" />
<xs:element name="unsignedInt" nillable="true" type="xs:unsignedInt" />
<xs:element name="unsignedLong" nillable="true" type="xs:unsignedLong" />
<xs:element name="unsignedShort" nillable="true" type="xs:unsignedShort" />
<xs:element name="char" nillable="true" type="tns:char" />
<xs:simpleType name="char">
<xs:restriction base="xs:int" />
</xs:simpleType>
<xs:element name="duration" nillable="true" type="tns:duration" />
<xs:simpleType name="duration">
<xs:restriction base="xs:duration">
<xs:pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?" />
<xs:minInclusive value="-P10675199DT2H48M5.4775808S" />
<xs:maxInclusive value="P10675199DT2H48M5.4775807S" />
</xs:restriction>
</xs:simpleType>
<xs:element name="guid" nillable="true" type="tns:guid" />
<xs:simpleType name="guid">
<xs:restriction base="xs:string">
<xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}" />
</xs:restriction>
</xs:simpleType>
<xs:attribute name="FactoryType" type="xs:QName" />
<xs:attribute name="Id" type="xs:ID" />
<xs:attribute name="Ref" type="xs:IDREF" />
<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:import schemaLocation="http://localhost:49949/AirlineService.svc?xsd=xsd3" namespace="http://schemas.datacontract.org/2004/07/AirlineServer.Models" />
<xs:complexType name="ArrayOfKeyValueOfstringArrayOfFlight5WI6MxbP">
<xs:annotation>
<xs:appinfo>
<IsDictionary xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</IsDictionary>
</xs:appinfo>
</xs:annotation>
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="KeyValueOfstringArrayOfFlight5WI6MxbP">
<xs:complexType>
<xs:sequence>
<xs:element name="Key" nillable="true" type="xs:string" />
<xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/AirlineServer.Models" name="Value" nillable="true" type="q1:ArrayOfFlight" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:element name="ArrayOfKeyValueOfstringArrayOfFlight5WI6MxbP" nillable="true" type="tns:ArrayOfKeyValueOfstringArrayOfFlight5WI6MxbP" />
</xs:schema>

View File

@ -1,11 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/AirlineServer.Models" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/AirlineServer.Models" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="ArrayOfArrayOfFlight">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="ArrayOfFlight" nillable="true" type="tns:ArrayOfFlight" />
</xs:sequence>
</xs:complexType>
<xs:element name="ArrayOfArrayOfFlight" nillable="true" type="tns:ArrayOfArrayOfFlight" />
<xs:complexType name="ArrayOfFlight">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="Flight" nillable="true" type="tns:Flight" />

View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://tempuri.org/" elementFormDefault="qualified" targetNamespace="http://tempuri.org/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:import schemaLocation="http://localhost:49949/AirlineService.svc?xsd=xsd2" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
<xs:import schemaLocation="http://localhost:49949/AirlineService.svc?xsd=xsd3" namespace="http://schemas.datacontract.org/2004/07/AirlineServer.Models" />
<xs:element name="GetFlights">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="startTime" type="xs:dateTime" />
<xs:element minOccurs="0" name="endTime" type="xs:dateTime" />
<xs:element minOccurs="0" name="destination" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="numberOfSeats" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GetFlightsResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="GetFlightsResult" nillable="true" type="q1:ArrayOfKeyValueOfstringArrayOfFlight5WI6MxbP" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="BookFlight">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q2="http://schemas.datacontract.org/2004/07/AirlineServer.Models" minOccurs="0" name="flight" nillable="true" type="q2:Flight" />
<xs:element minOccurs="0" name="numberOfSeats" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="BookFlightResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q3="http://schemas.datacontract.org/2004/07/AirlineServer.Models" minOccurs="0" name="BookFlightResult" nillable="true" type="q3:Flight" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CancelFlight">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q4="http://schemas.datacontract.org/2004/07/AirlineServer.Models" minOccurs="0" name="flight" nillable="true" type="q4:Flight" />
<xs:element minOccurs="0" name="numberOfSeats" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CancelFlightResponse">
<xs:complexType>
<xs:sequence>
<xs:element xmlns:q5="http://schemas.datacontract.org/2004/07/AirlineServer.Models" minOccurs="0" name="CancelFlightResult" nillable="true" type="q5:Flight" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@ -374,16 +374,22 @@ namespace Plattform.AirlineService {
public interface IAirlineService {
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAirlineService/GetFlights", ReplyAction="http://tempuri.org/IAirlineService/GetFlightsResponse")]
Plattform.AirlineService.Flight[][] GetFlights(System.DateTime startTime, System.DateTime endTime, string origin, string destination, int numberOfSeats);
System.Collections.Generic.Dictionary<string, Plattform.AirlineService.Flight[]> GetFlights(System.DateTime startTime, System.DateTime endTime, string destination, int numberOfSeats);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAirlineService/GetFlights", ReplyAction="http://tempuri.org/IAirlineService/GetFlightsResponse")]
System.Threading.Tasks.Task<Plattform.AirlineService.Flight[][]> GetFlightsAsync(System.DateTime startTime, System.DateTime endTime, string origin, string destination, int numberOfSeats);
System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string, Plattform.AirlineService.Flight[]>> GetFlightsAsync(System.DateTime startTime, System.DateTime endTime, string destination, int numberOfSeats);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAirlineService/BookFlight", ReplyAction="http://tempuri.org/IAirlineService/BookFlightResponse")]
Plattform.AirlineService.Flight BookFlight(Plattform.AirlineService.Flight flight, int numberOfSeats);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAirlineService/BookFlight", ReplyAction="http://tempuri.org/IAirlineService/BookFlightResponse")]
System.Threading.Tasks.Task<Plattform.AirlineService.Flight> BookFlightAsync(Plattform.AirlineService.Flight flight, int numberOfSeats);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAirlineService/CancelFlight", ReplyAction="http://tempuri.org/IAirlineService/CancelFlightResponse")]
Plattform.AirlineService.Flight CancelFlight(Plattform.AirlineService.Flight flight, int numberOfSeats);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAirlineService/CancelFlight", ReplyAction="http://tempuri.org/IAirlineService/CancelFlightResponse")]
System.Threading.Tasks.Task<Plattform.AirlineService.Flight> CancelFlightAsync(Plattform.AirlineService.Flight flight, int numberOfSeats);
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
@ -413,12 +419,12 @@ namespace Plattform.AirlineService {
base(binding, remoteAddress) {
}
public Plattform.AirlineService.Flight[][] GetFlights(System.DateTime startTime, System.DateTime endTime, string origin, string destination, int numberOfSeats) {
return base.Channel.GetFlights(startTime, endTime, origin, destination, numberOfSeats);
public System.Collections.Generic.Dictionary<string, Plattform.AirlineService.Flight[]> GetFlights(System.DateTime startTime, System.DateTime endTime, string destination, int numberOfSeats) {
return base.Channel.GetFlights(startTime, endTime, destination, numberOfSeats);
}
public System.Threading.Tasks.Task<Plattform.AirlineService.Flight[][]> GetFlightsAsync(System.DateTime startTime, System.DateTime endTime, string origin, string destination, int numberOfSeats) {
return base.Channel.GetFlightsAsync(startTime, endTime, origin, destination, numberOfSeats);
public System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string, Plattform.AirlineService.Flight[]>> GetFlightsAsync(System.DateTime startTime, System.DateTime endTime, string destination, int numberOfSeats) {
return base.Channel.GetFlightsAsync(startTime, endTime, destination, numberOfSeats);
}
public Plattform.AirlineService.Flight BookFlight(Plattform.AirlineService.Flight flight, int numberOfSeats) {
@ -428,5 +434,13 @@ namespace Plattform.AirlineService {
public System.Threading.Tasks.Task<Plattform.AirlineService.Flight> BookFlightAsync(Plattform.AirlineService.Flight flight, int numberOfSeats) {
return base.Channel.BookFlightAsync(flight, numberOfSeats);
}
public Plattform.AirlineService.Flight CancelFlight(Plattform.AirlineService.Flight flight, int numberOfSeats) {
return base.Channel.CancelFlight(flight, numberOfSeats);
}
public System.Threading.Tasks.Task<Plattform.AirlineService.Flight> CancelFlightAsync(Plattform.AirlineService.Flight flight, int numberOfSeats) {
return base.Channel.CancelFlightAsync(flight, numberOfSeats);
}
}
}

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<ReferenceGroup xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ID="cd3cb8c6-533c-4601-a65f-5c41ca9891d5" xmlns="urn:schemas-microsoft-com:xml-wcfservicemap">
<ReferenceGroup xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ID="1515355a-b9bf-424c-bf91-d30c2877e239" xmlns="urn:schemas-microsoft-com:xml-wcfservicemap">
<ClientOptions>
<GenerateAsynchronousMethods>false</GenerateAsynchronousMethods>
<GenerateTaskBasedAsynchronousMethod>true</GenerateTaskBasedAsynchronousMethod>
@ -22,11 +22,12 @@
<MetadataSource Address="http://localhost:49949/AirlineService.svc" Protocol="http" SourceId="1" />
</MetadataSources>
<Metadata>
<MetadataFile FileName="AirlineService.disco" MetadataType="Disco" ID="841f698c-3108-4fa0-8a92-2a9cd455274b" SourceId="1" SourceUrl="http://localhost:49949/AirlineService.svc?disco" />
<MetadataFile FileName="AirlineService.xsd" MetadataType="Schema" ID="f70b1b37-7ceb-44ff-910b-59fb273e19ec" SourceId="1" SourceUrl="http://localhost:49949/AirlineService.svc?xsd=xsd0" />
<MetadataFile FileName="AirlineService.wsdl" MetadataType="Wsdl" ID="03c510b6-8ebf-42e5-b68d-797b06afec9d" SourceId="1" SourceUrl="http://localhost:49949/AirlineService.svc?wsdl" />
<MetadataFile FileName="AirlineService1.xsd" MetadataType="Schema" ID="f258b85d-efd7-49e8-a17b-2dff8b0d4145" SourceId="1" SourceUrl="http://localhost:49949/AirlineService.svc?xsd=xsd1" />
<MetadataFile FileName="AirlineService2.xsd" MetadataType="Schema" ID="053ce53c-a1b2-45bd-a2ec-5d7d1e62125a" SourceId="1" SourceUrl="http://localhost:49949/AirlineService.svc?xsd=xsd2" />
<MetadataFile FileName="AirlineService.xsd" MetadataType="Schema" ID="033d53b0-0a35-4ffe-af46-1cb14915524c" SourceId="1" SourceUrl="http://localhost:49949/AirlineService.svc?xsd=xsd1" />
<MetadataFile FileName="AirlineService.wsdl" MetadataType="Wsdl" ID="c113b2b6-1575-4c39-882b-be56af5a0578" SourceId="1" SourceUrl="http://localhost:49949/AirlineService.svc?wsdl" />
<MetadataFile FileName="AirlineService1.xsd" MetadataType="Schema" ID="5f30e77c-aed3-43a6-aa80-621303db8997" SourceId="1" SourceUrl="http://localhost:49949/AirlineService.svc?xsd=xsd2" />
<MetadataFile FileName="AirlineService2.xsd" MetadataType="Schema" ID="819496ae-2db8-44bb-82ab-39e7e0f2ec87" SourceId="1" SourceUrl="http://localhost:49949/AirlineService.svc?xsd=xsd3" />
<MetadataFile FileName="AirlineService3.xsd" MetadataType="Schema" ID="82c435ce-1c93-465e-b071-7ee239053df8" SourceId="1" SourceUrl="http://localhost:49949/AirlineService.svc?xsd=xsd0" />
<MetadataFile FileName="AirlineService.disco" MetadataType="Disco" ID="067d69d0-675c-4e84-a6c1-49f60ad81e21" SourceId="1" SourceUrl="http://localhost:49949/AirlineService.svc?disco" />
</Metadata>
<Extensions>
<ExtensionFile FileName="configuration91.svcinfo" Name="configuration91.svcinfo" />