Bonjour, j'ai suivi ce tutorial tres simple :
http://www.mti.epita.fr/blogs/2008/0...es-avec-axis2/
Voici le code du web service :
et le classe User.java
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package ws.example; import java.util.ArrayList; public class UserService { public User getUser() { return new User(14, "sami", "15 Toto titi"); } public ArrayList getUsers() { ArrayList userList = new ArrayList(); userList.add(new User(13, "titi", "skl")); return userList; } }
J'ai genere le stub et je me demande comment je peux afficher l adresse de l'utilisateur 14,
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39 package ws.example; public class User { int id; String name; String address; public User(int id, String name, String address) { super(); this.id = id; this.name = name; this.address = address; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } }return new User(14, "sami", "15 Toto titi");merci
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12 try { UserServiceSoap11BindingStub stub = new UserServiceSoap11BindingStub(); GetUserResponse gur = new GetUserResponse(); System.out.println("adresse" + ? ????? ) ; } catch (AxisFault e) { e.printStackTrace(); } catch (RemoteException e) { e.printStackTrace(); }
Partager