Architecture Orientée Services: TD: Rest & Soap
Architecture Orientée Services: TD: Rest & Soap
Architecture Orientée Services: TD: Rest & Soap
2020/2021 Services
Enseignant :
Mohamed KOUBAA TD : REST & SOAP
Exercice 2
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/1999/XMLSchema">
<SOAP-ENV:Body>
<ns1:getTime xmlns:ns1="urn:MySoapServices">
< fuseauHoraire xsi:type="xsd:string">GMT</fuseauHoraire>
</ns1:getTime>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
2. Utilisez ces annotations pour coder un web service en java contenant deux méthodes :
1
3- Modifier la méthode sayHello afin qu’elle retourne le message « hello World » sous
forme xml.
Exercice 4
UserBookSimple est un Dynamic Web Project comportant les classes User, Comment,
UsersBD et UserResource représentées dans le diagramme de classe Java ci-dessous présenté.
La classe UserResource permet d’exploiter les utilisateurs stockés dans la classe UsersBD
comme étant des ressources de services web.
User
id: String
name: String
userName: String
email: String
phone: String
comments: List<Comment>
User(id: String, name: String, userName: String, email: String, phone: String)
getEmail():String UserResource
setEmail(String name): void
getPhone():String
setPhone(String phone): void getUsers():List<User>
addComment(Comment c): void getUser(String Id): User
getComments(): List<Comment> createUser(String id, String name, String userName, String email, String phone ): void
searchComments (String firstDate, String lastDate): List<Comment>
addComment(String idUser, String idCom, String title, String body, String date): void
removeComment(String idUser, String idCom): void
updateUser(String idUser, String email):void
Comment
UserBD
id: String users: List<User>
title: String
body: String
date: Date getUsers(): List<User>
Comment(id: String, title: String, body: String,
date:Date)
getTitle():String
setTitle(String name): void
getBody():String
setBody(String phone): void
getDate():Date
setDate(Date date): void
1) Donner le code de la méthode getUsers qui permet de retourner la liste des users