TD 2 - Les Services Web SOAP
TD 2 - Les Services Web SOAP
TD 2 - Les Services Web SOAP
U : 2023 - 2024
Institut supérieur d'informatique de Mahdia Enseignants : Hamdi ALOULOU
Département Informatique Auditoire : LCS 3
Module : SOA – TD2
<output>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
use="encoded" namespace="urn:Foo"/>
</output>
<soap:operation soapAction=""/>
</operation>
<soap:binding transport=http://schemas.xmlsoap.org/soap/http style="rpc"/>
</binding>
<service name="CompService">
<port name="CompIFPort" binding="tns:CompIFBinding">
<soap:address location="____________________________"/>
</port>
</service>
</definitions>
Exercice 2 :
Soit le fichier WSDL suivant d’un service web, proposer une requête et une réponse SOAP pour
l’opération GetQuote du portType StockQuoteSoap.
<wsdl:definitions targetNamespace=http://www.webserviceX.NET/
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:s="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"
xmlns:tns="http://www.webserviceX.NET/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:types>
<s:schema elementFormDefault="qualified"
targetNamespace="http://www.webserviceX.NET/">
<s:element name="GetQuote">
<s:complexType>
<s:sequence>
<s:element maxOccurs="1" minOccurs="0" name="symbol" type="s:string"/>
</s:sequence>
</s:complexType>
</s:element>
<s:element name="GetQuoteResponse">
<s:complexType>
<s:sequence>
<s:element maxOccurs="1" minOccurs="0" name="GetQuoteResult"
type="s:string"/>
</s:sequence>
</s:complexType>
</s:element>
<s:element name="string" nillable="true" type="s:string"/>
</s:schema>
</wsdl:types>
<wsdl:message name="GetQuoteSoapIn">
<wsdl:part element="tns:GetQuote" name="parameters"/>
</wsdl:message>
<wsdl:message name="GetQuoteSoapOut">
<wsdl:part element="tns:GetQuoteResponse" name="parameters"/>
</wsdl:message>
Page 2 sur 4
Université de Monastir A.U : 2023 - 2024
Institut supérieur d'informatique de Mahdia Enseignants : Hamdi ALOULOU
Département Informatique Auditoire : LCS 3
Module : SOA – TD2
<wsdl:portType name="StockQuoteSoap">
<wsdl:operation name="GetQuote">
<documentation xmlns="http://schemas.xmlsoap.org/wsdl/">Get Stock quote for a
company Symbol</documentation>
<wsdl:input message="tns:GetQuoteSoapIn"/>
<wsdl:output message="tns:GetQuoteSoapOut"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:service name="StockQuote">
<wsdl:port binding="tns:StockQuoteSoap" name="StockQuoteSoap">
<soap:address location=" ="http://www.webservicex.net/stockquote.asmx"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
Exercice 3 :
Soit le fichier WSDL suivant.
• Cherchez le nom de la méthode unique proposée par ce service.
• Cherchez les entrées et sorties de cette méthode. Quel est le nom des entrées, quel est le
nom des sorties ?
• Quels sont les paramètres (nom et types) qui composent l'entrée ?
• Quels sont les champs de la sortie ?
<definitions targetNamespace=http://v1.fraudlabs.com/soap/FraudLabsWebService
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-
ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:tns="http://v1.fraudlabs.com/soap/FraudLabsWebService"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<xsd:schema targetNamespace="http://v1.fraudlabs.com/soap/FraudLabsWebService">
<xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
<xsd:import namespace="http://schemas.xmlsoap.org/wsdl/"/>
<xsd:complexType name="FraudLabsInput">
<xsd:all>
<xsd:element name="IP" type="xsd:string" minOccurs="0" maxOccurs="1"/>
<xsd:element name="CITY" type="xsd:string" minOccurs="0" maxOccurs="1"/>
<xsd:element name="REGION" type="xsd:string" minOccurs="0" maxOccurs="1"/>
Page 3 sur 4
Université de Monastir A.U : 2023 - 2024
Institut supérieur d'informatique de Mahdia Enseignants : Hamdi ALOULOU
Département Informatique Auditoire : LCS 3
Module : SOA – TD2
<message name="FraudLabsRequest">
<part name="inputdata" type="tns:FraudLabsInput"/>
</message>
<message name="FraudLabsResponse">
<part name="return" type="tns:FraudLabsOutput"/>
</message>
<portType name="FraudLabsWebServicePortType">
<operation name="FraudLabs">
<documentation>The FraudLabs Web Service</documentation>
<input message="tns:FraudLabsRequest"/>
<output message="tns:FraudLabsResponse"/>
</operation>
</portType>
<service name="FraudLabsWebService">
<port name="FraudLabsWebServicePort" binding="tns:FraudLabsWebServiceBinding">
<soap:address location="http://v1.fraudlabs.com/fraudlabswebservice.asmx"/>
</port>
</service>
</definitions>
Page 4 sur 4