Salut,
Je bosse toujours sur mon architecture SOA. J'ai bien compris le principe du WSDL et, si j'ai également bien compris ce qu'offre Visual Studio, le namespace Serialization permet de générer automatiquement le fichier XML de description d'un web service.
Il doit certainement y avoir une manipulation simple que j'aimerais connaitre.
J'ai créé un petit web service comme suit :
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 using System; using System.Web; using System.Web.Services; using System.Web.Services.Protocols; [WebService(Namespace = "http://ezwa2008backend/webservices")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] public class Service : System.Web.Services.WebService { public Service() { //Supprimez les marques de commentaire dans la ligne suivante si vous utilisez des composants conçus //InitializeComponent(); } public struct AboutData { public string Company; public string Application; public string Version; } [WebMethod] public AboutData GetInformation() { EZWA2008 _EZWA2008 = new EZWA2008(); AboutData About; About.Company = _EZWA2008.AppCompany; About.Application = _EZWA2008.AppName; About.Version = _EZWA2008.AppVersion.ToString() + "." + _EZWA2008.AppEdition.ToString() + "." + _EZWA2008.AppRevision.ToString(); return About; } }
Quelqu'un pourrait-il m'aider pour ça ?
D'avance merci
Partager