- •1.Темы курсовых работ
- •2.Постановка задачи для Web - сервиса для организации встреч с использованием календаря встреч
- •3.Архитектура для создания Web - сервиса для организации встреч с использованием календаря встреч
- •4.Виртуализация
- •4.1 Создание виртуальных машин
- •4.2 Настройка сети передачи данных
- •4.3 Настройка iis
- •5.Создание баз данных
- •6.Программная реализация web - сервиса для организации встреч с использованием календаря встреч.
- •7. Клиентская часть web – сервиса для организации встреч с использованием календаря встреч
- •8.Список Литературы
- •Приложение а. Исходный код web - сервиса.
- •Приложение б. Исходный код клиентской части
- •Приложение в. Soap и http post документация
- •Приложение г. Wsdl - документ
Приложение г. Wsdl - документ
<?xml version="1.0" encoding="utf-8" ?>
- <wsdl:definitions xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
- <wsdl:types>
- <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
- <s:element name="HelloWorld">
<s:complexType />
</s:element>
- <s:element name="HelloWorldResponse">
- <s:complexType>
- <s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="HelloWorldResult" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
- <s:element name="GetMonth">
<s:complexType />
</s:element>
- <s:element name="GetMonthResponse">
- <s:complexType>
- <s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="GetMonthResult" type="tns:ArrayOfString" />
</s:sequence>
</s:complexType>
</s:element>
- <s:complexType name="ArrayOfString">
- <s:sequence>
<s:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="s:string" />
</s:sequence>
</s:complexType>
- <s:element name="GetDate">
- <s:complexType>
- <s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="month" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
- <s:element name="GetDateResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetDateResult">
- <s:complexType>
- <s:sequence>
<s:element ref="s:schema" />
<s:any />
</s:sequence>
</s:complexType>
</s:element>
</s:sequence>
</s:complexType>
</s:element>
- <s:element name="GetDate1">
- <s:complexType>
- <s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="month" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
- <s:element name="GetDate1Response">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="GetDate1Result">
- <s:complexType>
- <s:sequence>
<s:element ref="s:schema" />
<s:any />
</s:sequence>
</s:complexType>
</s:element>
</s:sequence>
</s:complexType>
</s:element>
</s:schema>
</wsdl:types>
- <wsdl:message name="HelloWorldSoapIn">
<wsdl:part name="parameters" element="tns:HelloWorld" />
</wsdl:message>
- <wsdl:message name="HelloWorldSoapOut">
<wsdl:part name="parameters" element="tns:HelloWorldResponse" />
</wsdl:message>
- <wsdl:message name="GetMonthSoapIn">
<wsdl:part name="parameters" element="tns:GetMonth" />
</wsdl:message>
- <wsdl:message name="GetMonthSoapOut">
<wsdl:part name="parameters" element="tns:GetMonthResponse" />
</wsdl:message>
- <wsdl:message name="GetDateSoapIn">
<wsdl:part name="parameters" element="tns:GetDate" />
</wsdl:message>
- <wsdl:message name="GetDateSoapOut">
<wsdl:part name="parameters" element="tns:GetDateResponse" />
</wsdl:message>
- <wsdl:message name="GetDate1SoapIn">
<wsdl:part name="parameters" element="tns:GetDate1" />
</wsdl:message>
- <wsdl:message name="GetDate1SoapOut">
<wsdl:part name="parameters" element="tns:GetDate1Response" />
</wsdl:message>
- <wsdl:portType name="ServiceSoap">
- <wsdl:operation name="HelloWorld">
<wsdl:input message="tns:HelloWorldSoapIn" />
<wsdl:output message="tns:HelloWorldSoapOut" />
</wsdl:operation>
- <wsdl:operation name="GetMonth">
<wsdl:input message="tns:GetMonthSoapIn" />
<wsdl:output message="tns:GetMonthSoapOut" />
</wsdl:operation>
- <wsdl:operation name="GetDate">
<wsdl:input message="tns:GetDateSoapIn" />
<wsdl:output message="tns:GetDateSoapOut" />
</wsdl:operation>
- <wsdl:operation name="GetDate1">
<wsdl:input message="tns:GetDate1SoapIn" />
<wsdl:output message="tns:GetDate1SoapOut" />
</wsdl:operation>
</wsdl:portType>
- <wsdl:binding name="ServiceSoap" type="tns:ServiceSoap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
- <wsdl:operation name="HelloWorld">
<soap:operation soapAction="http://tempuri.org/HelloWorld" style="document" />
- <wsdl:input>
<soap:body use="literal" />
</wsdl:input>
- <wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
- <wsdl:operation name="GetMonth">
<soap:operation soapAction="http://tempuri.org/GetMonth" style="document" />
- <wsdl:input>
<soap:body use="literal" />
</wsdl:input>
- <wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
- <wsdl:operation name="GetDate">
<soap:operation soapAction="http://tempuri.org/GetDate" style="document" />
- <wsdl:input>
<soap:body use="literal" />
</wsdl:input>
- <wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
- <wsdl:operation name="GetDate1">
<soap:operation soapAction="http://tempuri.org/GetDate1" style="document" />
- <wsdl:input>
<soap:body use="literal" />
</wsdl:input>
- <wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
- <wsdl:binding name="ServiceSoap12" type="tns:ServiceSoap">
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
- <wsdl:operation name="HelloWorld">
<soap12:operation soapAction="http://tempuri.org/HelloWorld" style="document" />
- <wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
- <wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
- <wsdl:operation name="GetMonth">
<soap12:operation soapAction="http://tempuri.org/GetMonth" style="document" />
- <wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
- <wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
- <wsdl:operation name="GetDate">
<soap12:operation soapAction="http://tempuri.org/GetDate" style="document" />
- <wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
- <wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
- <wsdl:operation name="GetDate1">
<soap12:operation soapAction="http://tempuri.org/GetDate1" style="document" />
- <wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
- <wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
- <wsdl:service name="Service">
- <wsdl:port name="ServiceSoap" binding="tns:ServiceSoap">
<soap:address location="http://localhost/WebSite/Service.asmx" />
</wsdl:port>
- <wsdl:port name="ServiceSoap12" binding="tns:ServiceSoap12">
<soap12:address location="http://localhost/WebSite/Service.asmx" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
