IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

C# Discussion :

consommer WebService SOAP


Sujet :

C#

  1. #1
    Membre régulier
    Homme Profil pro
    Développeur
    Inscrit en
    Octobre 2014
    Messages
    322
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 32
    Localisation : France, Saône et Loire (Bourgogne)

    Informations professionnelles :
    Activité : Développeur
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2014
    Messages : 322
    Points : 124
    Points
    124
    Par défaut consommer WebService SOAP
    Bonjour,

    Depuis ce matin, je cherche désespérément a consommer un WebService SOAP.

    Je suis sous Visual Studio community 2017, j'ai utilisé le connected service, ça m'a créer plusieurs fichiers dont un "reference.cs" qui contient toutes les définitions des méthodes.

    Maintenant, comment je fais pour appeler les méthodes et récupérer les données ?

    Désolé de ne pas pouvoir vous montrer de code, je n'ai rien trouvé sur internet et je ne sais pas du tout comment faire.

  2. #2
    Membre régulier
    Homme Profil pro
    Développeur
    Inscrit en
    Octobre 2014
    Messages
    322
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 32
    Localisation : France, Saône et Loire (Bourgogne)

    Informations professionnelles :
    Activité : Développeur
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2014
    Messages : 322
    Points : 124
    Points
    124
    Par défaut
    Bonjour,

    Etant donné que personne à l'air de pouvoir aider, ou parce que je suis très mauvais.

    Je vous met le code généré par VS.

    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
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
     
    namespace WebSocietaireWS
    {
     
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("dotnet-svcutil", "1.0.0.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="urn:soap-fault:details")]
        public partial class FaultDetail
        {
     
            private string errorMessageField;
     
            private string requestIDField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
            public string errorMessage
            {
                get
                {
                    return this.errorMessageField;
                }
                set
                {
                    this.errorMessageField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
            public string requestID
            {
                get
                {
                    return this.requestIDField;
                }
                set
                {
                    this.requestIDField = value;
                }
            }
        }
     
        [System.CodeDom.Compiler.GeneratedCodeAttribute("dotnet-svcutil", "1.0.0.1")]
        [System.ServiceModel.ServiceContractAttribute(Namespace="************", ConfigurationName="WebSocietaireWS.webSocietaireObj")]
        public interface webSocietaireObj
        {
     
            // CODEGEN*: Génération du contrat de message dans la mesure où l'opération compte plusieurs valeurs retournées.
            [System.ServiceModel.OperationContractAttribute(Action="", ReplyAction="*")]
            [System.ServiceModel.FaultContractAttribute(typeof(WebSocietaireWS.FaultDetail), Action="", Name="FaultDetail", Namespace="urn:soap-fault:details")]
            [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
            System.Threading.Tasks.Task<WebSocietaireWS.authentifierResponse> authentifierAsync(WebSocietaireWS.authentifierRequest request);
        }
     
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.CodeDom.Compiler.GeneratedCodeAttribute("dotnet-svcutil", "1.0.0.1")]
        [System.ServiceModel.MessageContractAttribute(WrapperName="authentifier", WrapperNamespace="****************", IsWrapped=true)]
        public partial class authentifierRequest
        {
     
            [System.ServiceModel.MessageBodyMemberAttribute(Namespace="***************", Order=0)]
            [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
            public string keyId;
     
            [System.ServiceModel.MessageBodyMemberAttribute(Namespace="********************", Order=1)]
            [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
            public string codeSocietaire;
     
            [System.ServiceModel.MessageBodyMemberAttribute(Namespace="**********************", Order=2)]
            [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
            public string motDePasse;
     
            public authentifierRequest()
            {
            }
     
            public authentifierRequest(string keyId, string codeSocietaire, string motDePasse)
            {
                this.keyId = keyId;
                this.codeSocietaire = codeSocietaire;
                this.motDePasse = motDePasse;
            }
        }
     
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.CodeDom.Compiler.GeneratedCodeAttribute("dotnet-svcutil", "1.0.0.1")]
        [System.ServiceModel.MessageContractAttribute(WrapperName="authentifierResponse", WrapperNamespace="***********************", IsWrapped=true)]
        public partial class authentifierResponse
        {
     
            [System.ServiceModel.MessageBodyMemberAttribute(Namespace="**************************", Order=0)]
            [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
            public string result;
     
            [System.ServiceModel.MessageBodyMemberAttribute(Namespace="*************", Order=1)]
            [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
            public System.Nullable<int> codeInfo;
     
            [System.ServiceModel.MessageBodyMemberAttribute(Namespace="***************", Order=2)]
            [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
            public System.Nullable<System.DateTime> derniereModif;
     
            [System.ServiceModel.MessageBodyMemberAttribute(Namespace="*******************", Order=3)]
            [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
            public string email;
     
            [System.ServiceModel.MessageBodyMemberAttribute(Namespace="***************", Order=4)]
            [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
            public string sigle;
     
            [System.ServiceModel.MessageBodyMemberAttribute(Namespace="*****************", Order=5)]
            [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
            public string nom;
     
            [System.ServiceModel.MessageBodyMemberAttribute(Namespace="********************", Order=6)]
            [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
            public System.Nullable<bool> quittanceVisible;
     
            [System.ServiceModel.MessageBodyMemberAttribute(Namespace="**********************", Order=7)]
            [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
            public string telIdent;
     
            [System.ServiceModel.MessageBodyMemberAttribute(Namespace="******************", Order=8)]
            [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)]
            [System.Xml.Serialization.XmlArrayItemAttribute("listeSocietRow", IsNullable=false)]
            public WebSocietaireWS.authentifier_listeSocietRow[] listeSociet;
     
            public authentifierResponse()
            {
            }
     
            public authentifierResponse(string result, System.Nullable<int> codeInfo, System.Nullable<System.DateTime> derniereModif, string email, string sigle, string nom, System.Nullable<bool> quittanceVisible, string telIdent, WebSocietaireWS.authentifier_listeSocietRow[] listeSociet)
            {
                this.result = result;
                this.codeInfo = codeInfo;
                this.derniereModif = derniereModif;
                this.email = email;
                this.sigle = sigle;
                this.nom = nom;
                this.quittanceVisible = quittanceVisible;
                this.telIdent = telIdent;
                this.listeSociet = listeSociet;
            }
        }
     
        [System.CodeDom.Compiler.GeneratedCodeAttribute("dotnet-svcutil", "1.0.0.1")]
        public interface webSocietaireObjChannel : WebSocietaireWS.webSocietaireObj, System.ServiceModel.IClientChannel
        {
        }
     
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.CodeDom.Compiler.GeneratedCodeAttribute("dotnet-svcutil", "1.0.0.1")]
        public partial class webSocietaireObjClient : System.ServiceModel.ClientBase<WebSocietaireWS.webSocietaireObj>, WebSocietaireWS.webSocietaireObj
        {
     
        /// <summary>
        /// Implémentez cette méthode partielle pour configurer le point de terminaison de service.
        /// </summary>
        /// <param name="serviceEndpoint">Point de terminaison à configurer</param>
        /// <param name="clientCredentials">Informations d'identification du client</param>
        static partial void ConfigureEndpoint(System.ServiceModel.Description.ServiceEndpoint serviceEndpoint, System.ServiceModel.Description.ClientCredentials clientCredentials);
     
            public webSocietaireObjClient() : 
                    base(webSocietaireObjClient.GetDefaultBinding(), webSocietaireObjClient.GetDefaultEndpointAddress())
            {
                this.Endpoint.Name = EndpointConfiguration.webSocietaireObj.ToString();
                ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
            }
     
            public webSocietaireObjClient(EndpointConfiguration endpointConfiguration) : 
                    base(webSocietaireObjClient.GetBindingForEndpoint(endpointConfiguration), webSocietaireObjClient.GetEndpointAddress(endpointConfiguration))
            {
                this.Endpoint.Name = endpointConfiguration.ToString();
                ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
            }
     
            public webSocietaireObjClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : 
                    base(webSocietaireObjClient.GetBindingForEndpoint(endpointConfiguration), new System.ServiceModel.EndpointAddress(remoteAddress))
            {
                this.Endpoint.Name = endpointConfiguration.ToString();
                ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
            }
     
            public webSocietaireObjClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : 
                    base(webSocietaireObjClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress)
            {
                this.Endpoint.Name = endpointConfiguration.ToString();
                ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
            }
     
            public webSocietaireObjClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : 
                    base(binding, remoteAddress)
            {
            }
     
            public System.Threading.Tasks.Task<WebSocietaireWS.authentifierResponse> authentifierAsync(WebSocietaireWS.authentifierRequest request)
            {
                return base.Channel.authentifierAsync(request);
            }
     
            public virtual System.Threading.Tasks.Task OpenAsync()
            {
                return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null, null), new System.Action<System.IAsyncResult>(((System.ServiceModel.ICommunicationObject)(this)).EndOpen));
            }
     
            public virtual System.Threading.Tasks.Task CloseAsync()
            {
                return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginClose(null, null), new System.Action<System.IAsyncResult>(((System.ServiceModel.ICommunicationObject)(this)).EndClose));
            }
     
            private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(EndpointConfiguration endpointConfiguration)
            {
                if ((endpointConfiguration == EndpointConfiguration.webSocietaireObj))
                {
                    System.ServiceModel.BasicHttpBinding result = new System.ServiceModel.BasicHttpBinding();
                    result.MaxBufferSize = int.MaxValue;
                    result.ReaderQuotas = System.Xml.XmlDictionaryReaderQuotas.Max;
                    result.MaxReceivedMessageSize = int.MaxValue;
                    result.AllowCookies = true;
                    return result;
                }
                throw new System.InvalidOperationException(string.Format("Le point de terminaison nommé \'{0}\' est introuvable.", endpointConfiguration));
            }
     
            private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointConfiguration endpointConfiguration)
            {
                if ((endpointConfiguration == EndpointConfiguration.webSocietaireObj))
                {
                    return new System.ServiceModel.EndpointAddress("**********************");
                }
                throw new System.InvalidOperationException(string.Format("Le point de terminaison nommé \'{0}\' est introuvable.", endpointConfiguration));
            }
     
            private static System.ServiceModel.Channels.Binding GetDefaultBinding()
            {
                return webSocietaireObjClient.GetBindingForEndpoint(EndpointConfiguration.webSocietaireObj);
            }
     
            private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress()
            {
                return webSocietaireObjClient.GetEndpointAddress(EndpointConfiguration.webSocietaireObj);
            }
     
            public enum EndpointConfiguration
            {
     
                webSocietaireObj,
            }
        }
    }
    J'ai supprimé beaucoup de lignes (le fichier en avait 3200) et laissé une seule méthode.

    A partir de ce fichier, comment j'appelle les méthodes ?

    Et pourquoi c'est des méthodes asynchrone ? L'obligation de mettre await, me fera changer beaucoup de fonction dans mon code.

    Un simple exemple me suffirait, je ne sais pas du tout sur quoi partir.

    Tellement l'habitude du PHP, où avec un simple SoapClient, je récupère tous facilement....

  3. #3
    Nouveau membre du Club
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Novembre 2015
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Nord (Nord Pas de Calais)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Novembre 2015
    Messages : 19
    Points : 32
    Points
    32
    Par défaut
    La classe proxy générée se termine par "Client".
    Si tu mets "toto" en namespace lors de la génération du code, ta classe cliente sera totoClient

  4. #4
    Membre régulier
    Homme Profil pro
    Développeur
    Inscrit en
    Octobre 2014
    Messages
    322
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 32
    Localisation : France, Saône et Loire (Bourgogne)

    Informations professionnelles :
    Activité : Développeur
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2014
    Messages : 322
    Points : 124
    Points
    124
    Par défaut
    Donc je dois instancier cette classe.
    Et faire les appels aux fonctions en instanciant cette classe.

    Par contre, comment je fais pour ne pas à avoir à utiliser "await" ? Je ne veux pas de méthodes asynchrone.

  5. #5
    Nouveau membre du Club
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Novembre 2015
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Nord (Nord Pas de Calais)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Novembre 2015
    Messages : 19
    Points : 32
    Points
    32
    Par défaut
    Pour appeler les méthodes async de manière synchrone, tu peux faire MaMethodeASync().Result

  6. #6
    Membre régulier
    Homme Profil pro
    Développeur
    Inscrit en
    Octobre 2014
    Messages
    322
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 32
    Localisation : France, Saône et Loire (Bourgogne)

    Informations professionnelles :
    Activité : Développeur
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2014
    Messages : 322
    Points : 124
    Points
    124
    Par défaut
    Merci beaucoup.

    Compliqué de passer d'un langage comme PHP a c#.

  7. #7
    Membre régulier
    Homme Profil pro
    Développeur
    Inscrit en
    Octobre 2014
    Messages
    322
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 32
    Localisation : France, Saône et Loire (Bourgogne)

    Informations professionnelles :
    Activité : Développeur
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2014
    Messages : 322
    Points : 124
    Points
    124
    Par défaut
    Par contre j'ai une erreur en appelant ma méthode.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    societVerifierRequest requete = new societVerifierRequest("Test_keyId", "600034", 3000342, "400805");
                societVerifierResponse reponse = societVerifierAsync(requete).Result;
    {System.InvalidOperationException: Operation 'authentifierAsync' contains a message with parameters. Strongly-typed or untyped message can be paired only with strongly-typed, untyped or void message. at System.ServiceModel.Dispatcher.OperationFormatter.Validate (System.ServiceModel.Description.OperationDescription od, System.Boolean isRpc, System.Boolean isEncoded) [0x00055] in <8d51f4e67ed34c06bae51e3c92f8695b>:0 at System.ServiceModel.Dispatcher.OperationFormatter..ctor (System.ServiceModel.Description.OperationDescription od, System.Boolean isRpc, System.Boolean isEncoded) [0x00006] in <8d51f4e67ed34c06bae51e3c92f8695b>:0 at System.ServiceModel.Description.ContractDescription.PopulateClientOperation (System.ServiceModel.Dispatcher.ClientRuntime proxy, System.ServiceModel.Description.OperationDescription od, System.Boolean isCallback) [0x00194] in <8d51f4e67ed34c06bae51e3c92f8695b>:0 at System.ServiceModel.Description.ContractDescription.FillClientOperations (System.ServiceModel.Dispatcher.ClientRuntime proxy, System.Boolean isCallback) [0x0003e] in <8d51f4e67ed34c06bae51e3c92f8695b>:0 at System.ServiceModel.Description.ContractDescription.CreateClientRuntime (System.Object callbackDispatchRuntime) [0x0002b] in <8d51f4e67ed34c06bae51e3c92f8695b>:0 at System.ServiceModel.Description.ServiceEndpoint.CreateClientRuntime (System.Object callbackDispatchRuntime) [0x00008] in <8d51f4e67ed34c06bae51e3c92f8695b>:0 at System.ServiceModel.MonoInternal.ClientRuntimeChannel..ctor (System.ServiceModel.Description.ServiceEndpoint endpoint, System.ServiceModel.ChannelFactory channelFactory, System.ServiceModel.EndpointAddress remoteAddress, System.Uri via) [0x00000] in <8d51f4e67ed34c06bae51e3c92f8695b>:0 at System.ServiceModel.ChannelFactory`1[TChannel].CreateChannel (System.ServiceModel.EndpointAddress address, System.Uri via) [0x00058] in <8d51f4e67ed34c06bae51e3c92f8695b>:0 at System.ServiceModel.ChannelFactory`1[TChannel].CreateChannel (System.ServiceModel.EndpointAddress address) [0x00000] in <8d51f4e67ed34c06bae51e3c92f8695b>:0 at System.ServiceModel.ChannelFactory`1[TChannel].CreateChannel () [0x00012] in <8d51f4e67ed34c06bae51e3c92f8695b>:0 at System.ServiceModel.ClientBase`1[TChannel].CreateChannel () [0x00006] in <8d51f4e67ed34c06bae51e3c92f8695b>:0 at System.ServiceModel.ClientBase`1[TChannel].get_InnerChannel () [0x00008] in <8d51f4e67ed34c06bae51e3c92f8695b>:0 at System.ServiceModel.ClientBase`1[TChannel].get_Channel () [0x00000] in <8d51f4e67ed34c06bae51e3c92f8695b>:0 at WebSocietaireWS.webSocietaireObjClient.societVerifierAsync (WebSocietaireWS.societVerifierRequest request) [0x00001] in C:\Users\Mathieu\source\repos\AppTest\AppTest\AppTest\Connected Services\WebSocietaireWS\Reference.cs:3135 at AppTest.Models.WebService.societVerifier () [0x0001b] in C:\Users\Mathieu\source\repos\AppTest\AppTest\AppTest\Models\WebService.cs:14 at AppTest.Services.MockDataStore..ctor () [0x0000e] in C:\Users\Mathieu\source\repos\AppTest\AppTest\AppTest\Services\MockDataStore.cs:16 at AppTest.ViewModels.BaseViewModel.get_DataStore () [0x00000] in C:\Users\Mathieu\source\repos\AppTest\AppTest\AppTest\ViewModels\BaseViewModel.cs:15 at AppTest.ViewModels.ItemsViewModel+<ExecuteLoadItemsCommand>d__9.MoveNext () [0x0004a] in C:\Users\Mathieu\source\repos\AppTest\AppTest\AppTest\ViewModels\ItemsViewModel.cs:42 }
    Pour information, j'utilise xamarin pour une appli mobile, j'ai la version NetStandart 2.0.3

  8. #8
    Nouveau membre du Club
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Novembre 2015
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Nord (Nord Pas de Calais)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Novembre 2015
    Messages : 19
    Points : 32
    Points
    32
    Par défaut
    Visiblement c'est un problème connu de xamarin. Tu peux jeter un oeil sur cette discussion https://forums.xamarin.com/discussio...#Comment_44741

  9. #9
    Membre régulier
    Homme Profil pro
    Développeur
    Inscrit en
    Octobre 2014
    Messages
    322
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 32
    Localisation : France, Saône et Loire (Bourgogne)

    Informations professionnelles :
    Activité : Développeur
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2014
    Messages : 322
    Points : 124
    Points
    124
    Par défaut
    J'ai vu ça.

    Donc toujours aucune solution.

    Bon bah tant pis, l'application mobile attendra.

Discussions similaires

  1. Réponses: 13
    Dernier message: 14/03/2017, 16h40
  2. Consommation de webservices SOAP
    Par saitama93 dans le forum Général JavaScript
    Réponses: 2
    Dernier message: 09/08/2016, 07h58
  3. Réponses: 1
    Dernier message: 13/02/2007, 17h43
  4. Webservice SOAP et fichier attaché ?
    Par Bruno13 dans le forum Services Web
    Réponses: 13
    Dernier message: 03/04/2006, 17h36
  5. [AS400][PocketPC] Consommer WebService
    Par DDDDD dans le forum DB2
    Réponses: 3
    Dernier message: 11/02/2006, 22h36

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo