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

Services Web Discussion :

consommer un webservice php, methode la classe proxy retourne null malgré message soap ok


Sujet :

Services Web

  1. #1
    Membre averti
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    17
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 17
    Par défaut consommer un webservice php, methode la classe proxy retourne null malgré message soap ok
    bonjour,

    je tente de consommer un web service php dont voici le WSDL :

    http://webservices.autobiz.fr/autobi...ntiel.php?wsdl

    la methode GetMake() de la classe proxy retourne toujours null, pourtant si j'intercepte l'echange grace aux soapextensions, je vois que l'echange est correct.
    je ne comprends rien !
    voici mon code :
    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
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using autobiz.fr.autobiz.webservices;
     
    namespace autobiz
    {
        public partial class moteur_autobiz : System.Web.UI.Page
        {
            protected void Page_Load(object sender, EventArgs e)
            {
                Settings settings = new Settings();
                settings.username = "mon_username";
                settings.password = "mon_password";
                settings.pays = CountryType.FR;
                settings.lang = LangType.FR;
                Referentiel refe = new Referentiel();
                Make[] listemake =  refe.GetMake(settings);
                foreach (Make m in listemake)
                    Response.Write(m.MakeCode + " " + m.MakeName + "</BR>");
           }
       }
    }
    et les mesages SOAP echangés :


    -----SoapRequest at 16/06/2011 21:13:14
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
     
    <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetMake xmlns="urn:Referentiel"><Settings xmlns=""><pays>FR</pays><lang>FR</lang><username>mon_username</username><password>mon_password</password></Settings></GetMake></soap:Body></soap:Envelope>
    -----SoapResponse at 16/06/2011 21:13:14
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
     
    <?xml version="1.0" encoding="utf-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsoap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:uddi="urn:uddi-org:api_v2" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:xop="http://www.w3.org/2004/08/xop/include" xmlns:si="http://soapinterop.org/xsd"><soapenv:Body><parameters><item><MakeCode>206</MakeCode><MakeName>ALEKO</MakeName></item><item><MakeCode>54</MakeCode><MakeName>ALFA ROMEO</MakeName></item><item><MakeCode>208</MakeCode><MakeName>ALPINE RENAULT</MakeName></item><item><MakeCode>211</MakeCode><MakeName>ARO</MakeName></item><item><MakeCode>329</MakeCode><MakeName>ASIA</MakeName></item><item><MakeCode>55</MakeCode><MakeName>AUDI</MakeName></item><item><MakeCode>213</MakeCode><MakeName>AUSTIN</MakeName></item><item><MakeCode>215</MakeCode><MakeName>AUTOBIANCHI</MakeName></item><item><MakeCode>217</MakeCode><MakeName>AUVERLAND</MakeName></item><item><MakeCode>330</MakeCode><MakeName>BEDFORD</MakeName></item><item><MakeCode>218</MakeCode><MakeName>BENTLEY</MakeName></item><item><MakeCode>220</MakeCode><MakeName>BERTONE</MakeName></item><item><MakeCode>57</MakeCode><MakeName>BMW</MakeName></item><item><MakeCode>225</MakeCode><MakeName>BUICK</MakeName></item><item><MakeCode>166</MakeCode><MakeName>CADILLAC</MakeName></item><item><MakeCode>60</MakeCode><MakeName>CHEVROLET - DAEWOO</MakeName></item><item><MakeCode>58</MakeCode><MakeName>CHRYSLER</MakeName></item><item><MakeCode>59</MakeCode><MakeName>CITROEN</MakeName></item><item><MakeCode>231</MakeCode><MakeName>DACIA</MakeName></item><item><MakeCode>331</MakeCode><MakeName>DAF</MakeName></item><item><MakeCode>61</MakeCode><MakeName>DAIHATSU</MakeName></item><item><MakeCode>176</MakeCode><MakeName>DAIMLER</MakeName></item><item><MakeCode>234</MakeCode><MakeName>DATSUN</MakeName></item><item><MakeCode>241</MakeCode><MakeName>DODGE</MakeName></item><item><MakeCode>244</MakeCode><MakeName>EBRO</MakeName></item><item><MakeCode>63</MakeCode><MakeName>FIAT</MakeName></item><item><MakeCode>64</MakeCode><MakeName>FORD</MakeName></item><item><MakeCode>332</MakeCode><MakeName>FSO POLSKI</MakeName></item><item><MakeCode>253</MakeCode><MakeName>GME</MakeName></item><item><MakeCode>254</MakeCode><MakeName>GRANDIN</MakeName></item><item><MakeCode>66</MakeCode><MakeName>HONDA</MakeName></item><item><MakeCode>67</MakeCode><MakeName>HYUNDAI</MakeName></item><item><MakeCode>263</MakeCode><MakeName>INFINITI</MakeName></item><item><MakeCode>264</MakeCode><MakeName>INNOCENTI</MakeName></item><item><MakeCode>68</MakeCode><MakeName>ISUZU</MakeName></item><item><MakeCode>172</MakeCode><MakeName>IVECO</MakeName></item><item><MakeCode>69</MakeCode><MakeName>JAGUAR</MakeName></item><item><MakeCode>95</MakeCode><MakeName>JEEP</MakeName></item><item><MakeCode>162</MakeCode><MakeName>KIA</MakeName></item><item><MakeCode>70</MakeCode><MakeName>LADA</MakeName></item><item><MakeCode>71</MakeCode><MakeName>LANCIA</MakeName></item><item><MakeCode>72</MakeCode><MakeName>LAND ROVER</MakeName></item><item><MakeCode>333</MakeCode><MakeName>LDV</MakeName></item><item><MakeCode>164</MakeCode><MakeName>LEXUS</MakeName></item><item><MakeCode>272</MakeCode><MakeName>LOTUS</MakeName></item><item><MakeCode>173</MakeCode><MakeName>MAHINDRA</MakeName></item><item><MakeCode>275</MakeCode><MakeName>MARUTI</MakeName></item><item><MakeCode>74</MakeCode><MakeName>MASERATI</MakeName></item><item><MakeCode>277</MakeCode><MakeName>MATRA</MakeName></item><item><MakeCode>75</MakeCode><MakeName>MAZDA</MakeName></item><item><MakeCode>334</MakeCode><MakeName>MCC</MakeName></item><item><MakeCode>278</MakeCode><MakeName>MEGA</MakeName></item><item><MakeCode>76</MakeCode><MakeName>MERCEDES</MakeName></item><item><MakeCode>77</MakeCode><MakeName>MG</MakeName></item><item><MakeCode>167</MakeCode><MakeName>MINI</MakeName></item><item><MakeCode>79</MakeCode><MakeName>MITSUBISHI</MakeName></item><item><MakeCode>80</MakeCode><MakeName>NISSAN</MakeName></item><item><MakeCode>81</MakeCode><MakeName>OPEL</MakeName></item><item><MakeCode>289</MakeCode><MakeName>PANHARD</MakeName></item><item><MakeCode>82</MakeCode><MakeName>PEUGEOT</MakeName></item><item><MakeCode>292</MakeCode><MakeName>PIAGGIO</MakeName></item><item><MakeCode>295</MakeCode><MakeName>PONTIAC</MakeName></item><item><MakeCode>83</MakeCode><MakeName>PORSCHE</MakeName></item><item><MakeCode>296</MakeCode><MakeName>PROTON</MakeName></item><item><MakeCode>84</MakeCode><MakeName>RENAULT</MakeName></item><item><MakeCode>170</MakeCode><MakeName>ROVER</MakeName></item><item><MakeCode>85</MakeCode><MakeName>SAAB</MakeName></item><item><MakeCode>303</MakeCode><MakeName>SANTANA</MakeName></item><item><MakeCode>86</MakeCode><MakeName>SEAT</MakeName></item><item><MakeCode>88</MakeCode><MakeName>SKODA</MakeName></item><item><MakeCode>163</MakeCode><MakeName>SMART</MakeName></item><item><MakeCode>175</MakeCode><MakeName>SSANGYONG</MakeName></item><item><MakeCode>89</MakeCode><MakeName>SUBARU</MakeName></item><item><MakeCode>307</MakeCode><MakeName>SUNBEAM</MakeName></item><item><MakeCode>90</MakeCode><MakeName>SUZUKI</MakeName></item><item><MakeCode>335</MakeCode><MakeName>TALBOT</MakeName></item><item><MakeCode>336</MakeCode><MakeName>TATA</MakeName></item><item><MakeCode>91</MakeCode><MakeName>TOYOTA</MakeName></item><item><MakeCode>309</MakeCode><MakeName>TRIUMPH</MakeName></item><item><MakeCode>311</MakeCode><MakeName>UMM</MakeName></item><item><MakeCode>92</MakeCode><MakeName>VOLKSWAGEN</MakeName></item><item><MakeCode>94</MakeCode><MakeName>VOLVO</MakeName></item><item><MakeCode>317</MakeCode><MakeName>ZASTAVA</MakeName></item><item><MakeCode>337</MakeCode><MakeName>ZAZ</MakeName></item></parameters></soapenv:Body></soapenv:Envelope>
    merci de m'aider

  2. #2
    Expert confirmé
    Avatar de ludojojo
    Homme Profil pro
    Développeur SharePoint
    Inscrit en
    Avril 2008
    Messages
    2 967
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : France

    Informations professionnelles :
    Activité : Développeur SharePoint
    Secteur : Conseil

    Informations forums :
    Inscription : Avril 2008
    Messages : 2 967
    Billets dans le blog
    5
    Par défaut
    Bonjour,

    La génération de la class proxy s'est déroulée correctement ?
    Peux tu nous mettre le contenu du wsdl ?
    Que doit te retourner ta méthode normalement?
    Si tu consommes ce WebService en php cela fonctionne?
    Aide les autres...
    Et les autres t'aideront....
    Mon site DVP
    N'oubliez pas de consulter les FAQ SharePoint et les cours et tutoriels SharePoint

    N'oubliez pas de voter pour les messages dont la réponse est pertinente

  3. #3
    Membre averti
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    17
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 17
    Par défaut
    si on utilise un client php cela fonctionne ( je n'ai pas fais le test moi-mem mais la personne qui me fournit ce webservice me l'a certifié !)

    -la generation de la classe semble se passer correctement.
    -je peux d'ailleurs instancier mon webservice, appeler ces methodes normalement,
    -le debuggueur ne me signale rien.
    la methode getmake doit me retouner un tableau d'objet make (en fait cette methode doit me retourner un liste de marque de voitures avec un code et un libellé)


    voici le contenu du wsdl
    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
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
     
       <?xml version="1.0" encoding="UTF-8" ?> 
    - <!-- 
     Followings are for revision purposes. Please ***DO NOT*** remove them. 
            $Author: dev4 $
            $E-mail: h.benslimene@autobiz.fr $
            $Version: 1.1.0 $
            $Date     27/10/2010 09:42:25 $
            $Revision 18/04/2011 09:54:20 $
            Initial import into RCS
            Copyright 2010 - 2011, Autobiz
            All Rights Reserved
     
            The Author grants permission to retrieve the WSDL or a copy of the WSDL for building software that
            will consume or consumes the facilities available in this WSDL.
     
            The original of this WSDL file can be located at:
            http://webservices.autobiz.fr/autobiz_ws_referentiel.php?wsdl
     
            THIS SCHEMA/WSDL FILE IS PROVIDED "AS IS", WITHOUT ANY WARRANITIES AS TO ITS
            SUITABILITY OR FITNESS FOR ANY PARTICULAR USE. THE AUTHOR DOES NOT TAKE 
            RESPONSIBILITY FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL
            DAMAGES THAT MAY UNINTENTIONALLY BE CAUSED THROUGH ITS USE OR DISTRIBUTION.
     
            No other rights are granted by implication, estoppel or otherwise.
     
     
      --> 
    - <definitions xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsoap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:uddi="urn:uddi-org:api_v2" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:xop="http://www.w3.org/2004/08/xop/include" xmlns:si="http://soapinterop.org/xsd" xmlns:tns="urn:Referentiel" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:Referentiel">
    - <types>
    - <xsd:schema targetNamespace="urn:Referentiel">
      <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" /> 
      <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/" /> 
    - <xsd:simpleType name="VersionType">
    - <xsd:restriction base="xsd:string">
      <xsd:enumeration value="1.1.0" /> 
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="CountryType">
    - <xsd:restriction base="xsd:string">
      <xsd:enumeration value="FR" /> 
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="LangType">
    - <xsd:restriction base="xsd:string">
      <xsd:enumeration value="FR" /> 
      </xsd:restriction>
      </xsd:simpleType>
      <xsd:element name="GetMake" type="tns:GetMakeRequestType" /> 
      <xsd:element name="GetMakeResponse" type="tns:GetMakeResponseType" /> 
      <xsd:element name="GetModel" type="tns:GetModelRequestType" /> 
      <xsd:element name="GetModelResponse" type="tns:GetModelResponseType" /> 
      <xsd:element name="GetBodyType" type="tns:GetBodyTypeRequestType" /> 
      <xsd:element name="GetBodyTypeResponse" type="tns:GetBodyTypeResponseType" /> 
      <xsd:element name="GetFuelType" type="tns:GetFuelTypeRequestType" /> 
      <xsd:element name="GetFuelTypeResponse" type="tns:GetFuelTypeResponseType" /> 
      <xsd:element name="GetGearType" type="tns:GetGearTypeRequestType" /> 
      <xsd:element name="GetGearTypeResponse" type="tns:GetGearTypeResponseType" /> 
      <xsd:element name="GetFinition" type="tns:GetFinitionRequestType" /> 
      <xsd:element name="GetFinitionResponse" type="tns:GetFinitionResponseType" /> 
      <xsd:element name="GetListVehicule" type="tns:GetListVehiculeRequestType" /> 
      <xsd:element name="GetListVehiculeResponse" type="tns:GetListVehiculeResponseType" /> 
      <xsd:element name="GetSpecs" type="tns:GetSpecsRequestType" /> 
      <xsd:element name="GetSpecsResponse" type="tns:GetSpecsResponseType" /> 
      <xsd:element name="GetOptions" type="tns:GetOptionsRequestType" /> 
      <xsd:element name="GetOptionsResponse" type="tns:GetOptionsResponseType" /> 
      <xsd:element name="GetIdentification" type="tns:GetIdentificationRequestType" /> 
      <xsd:element name="GetIdentificationResponse" type="tns:GetIdentificationResponseType" /> 
      <xsd:element name="GetQuotation" type="tns:GetQuotationRequestType" /> 
      <xsd:element name="GetQuotationResponse" type="tns:GetQuotationResponseType" /> 
      <xsd:element name="GetQuotationB2B" type="tns:GetQuotationB2BRequestType" /> 
      <xsd:element name="GetQuotationB2BResponse" type="tns:GetQuotationB2BResponseType" /> 
      <xsd:element name="GetQuotationM" type="tns:GetQuotationMRequestType" /> 
      <xsd:element name="GetQuotationMResponse" type="tns:GetQuotationMResponseType" /> 
      <xsd:element name="GetQuotationVR" type="tns:GetQuotationVRRequestType" /> 
      <xsd:element name="GetQuotationVRResponse" type="tns:GetQuotationVRResponseType" /> 
    - <!--  All complex Types go here 
      --> 
    - <xsd:complexType name="Settings">
    - <xsd:sequence>
      <xsd:element name="pays" type="tns:CountryType" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="lang" type="tns:LangType" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="username" type="xsd:string" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="password" type="xsd:string" minOccurs="1" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="VersionRequest">
    - <xsd:sequence>
      <xsd:element name="VersionId" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="MakeCode" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="ModelCode" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="Registration" type="xsd:date" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="BodyTypeCode" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="FuelTypeCode" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="GearTypeCode" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="Finition" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="PowerFiscal" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="PowerDIN" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="PowerKW" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="CO2Classification" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="CO2Emission" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="Capacity" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="GearNumber" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="SeatNumber" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="DoorNumber" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="Make">
    - <xsd:sequence>
      <xsd:element name="MakeCode" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="MakeName" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="ArrayMake">
    - <xsd:sequence>
      <xsd:element name="Makes" type="tns:Make" minOccurs="0" maxOccurs="unbounded" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="ModelRequest">
    - <xsd:sequence>
      <xsd:element name="MakeCode" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="Model">
    - <xsd:sequence>
      <xsd:element name="ModelCode" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="ModelName" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="ArrayModel">
    - <xsd:sequence>
      <xsd:element name="Models" type="tns:Model" minOccurs="0" maxOccurs="unbounded" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="BodyRequest">
    - <xsd:sequence>
      <xsd:element name="MakeCode" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="ModelCode" type="xsd:string" minOccurs="1" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="Body">
    - <xsd:sequence>
      <xsd:element name="BodyTypeCode" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="BodyTypeName" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="ArrayBody">
    - <xsd:sequence>
      <xsd:element name="Bodys" type="tns:Body" minOccurs="0" maxOccurs="unbounded" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="FuelRequest">
    - <xsd:sequence>
      <xsd:element name="MakeCode" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="ModelCode" type="xsd:string" minOccurs="1" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="Fuel">
    - <xsd:sequence>
      <xsd:element name="FuelTypeCode" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="FuelTypeName" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="ArrayFuel">
    - <xsd:sequence>
      <xsd:element name="Fuels" type="tns:Fuel" minOccurs="0" maxOccurs="unbounded" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="GearRequest">
    - <xsd:sequence>
      <xsd:element name="MakeCode" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="ModelCode" type="xsd:string" minOccurs="1" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="Gear">
    - <xsd:sequence>
      <xsd:element name="GearTypeCode" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="GearTypeName" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="ArrayGear">
    - <xsd:sequence>
      <xsd:element name="Gears" type="tns:Gear" minOccurs="0" maxOccurs="unbounded" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="FinitionRequest">
    - <xsd:sequence>
      <xsd:element name="MakeCode" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="ModelCode" type="xsd:string" minOccurs="1" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="ArrayFinition">
    - <xsd:sequence>
      <xsd:element name="Finition" type="xsd:string" minOccurs="0" maxOccurs="unbounded" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="Object">
    - <xsd:sequence>
      <xsd:element name="CodeWS" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="LibelleLong" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="Value" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="ObjectList">
    - <xsd:sequence>
      <xsd:element name="ListObjects" type="tns:Object" minOccurs="0" maxOccurs="unbounded" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="ArrayObject">
    - <xsd:sequence>
      <xsd:element name="ArrayObjects" type="tns:ObjectList" minOccurs="0" maxOccurs="unbounded" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="QuotationVORequest">
    - <xsd:sequence>
      <xsd:element name="VersionId" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="Year" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="Month" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="Km" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="QuotationResponse">
    - <xsd:sequence>
      <xsd:element name="prix_reseau" type="xsd:float" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="prix_professionnelle" type="xsd:float" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="prix_particulier" type="xsd:float" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="km_constate" type="xsd:float" minOccurs="1" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="QuotationB2BResponse">
    - <xsd:sequence>
      <xsd:element name="prix_marchand" type="xsd:float" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="km_constate" type="xsd:float" minOccurs="1" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="QuotationMResponse">
    - <xsd:sequence>
      <xsd:element name="prix_absolu" type="xsd:float" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="km_constate" type="xsd:float" minOccurs="1" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="QuotationVRRequest">
    - <xsd:sequence>
      <xsd:element name="VersionId" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="Year" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="YearFutur" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="MonthFutur" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="KmYear" type="xsd:int" minOccurs="1" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="QuotationVRResponse">
    - <xsd:sequence>
      <xsd:element name="prix_actuel" type="xsd:float" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="valeur_residentiel_min" type="xsd:float" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="valeur_residentiel_max" type="xsd:float" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="valeur_residentiel_min_percent" type="xsd:string" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="valeur_residentiel_max_percent" type="xsd:string" minOccurs="1" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="IdentificationRequest">
    - <xsd:sequence>
      <xsd:element name="Version" type="xsd:string" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="MakeName" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="ModelName" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="FuelTypeName" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="BodyTypeName" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="DoorNumber" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="Year" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="IdentificationResponse">
    - <xsd:sequence>
      <xsd:element name="ResultIdentification" type="xsd:string" minOccurs="1" maxOccurs="1" /> 
      <xsd:element name="RefAutobiz" type="xsd:int" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="Version" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="MakeName" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="ModelName" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="FuelTypeName" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      <xsd:element name="BodyTypeName" type="xsd:string" minOccurs="0" maxOccurs="1" /> 
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="GetMakeRequestType">
    - <xsd:all>
      <xsd:element name="Settings" type="tns:Settings" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetMakeResponseType">
    - <xsd:all>
      <xsd:element name="ArrayMake" type="tns:ArrayMake" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetModelRequestType">
    - <xsd:all>
      <xsd:element name="Settings" type="tns:Settings" form="unqualified" /> 
      <xsd:element name="Params" type="tns:ModelRequest" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetModelResponseType">
    - <xsd:all>
      <xsd:element name="MakeCode" type="xsd:int" form="unqualified" /> 
      <xsd:element name="ArrayModel" type="tns:ArrayModel" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetBodyTypeRequestType">
    - <xsd:all>
      <xsd:element name="Settings" type="tns:Settings" form="unqualified" /> 
      <xsd:element name="Params" type="tns:BodyRequest" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetBodyTypeResponseType">
    - <xsd:all>
      <xsd:element name="MakeCode" type="xsd:int" form="unqualified" /> 
      <xsd:element name="ModelCode" type="xsd:int" form="unqualified" /> 
      <xsd:element name="ArrayBody" type="tns:ArrayBody" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetFuelTypeRequestType">
    - <xsd:all>
      <xsd:element name="Settings" type="tns:Settings" form="unqualified" /> 
      <xsd:element name="Params" type="tns:FuelRequest" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetFuelTypeResponseType">
    - <xsd:all>
      <xsd:element name="MakeCode" type="xsd:int" form="unqualified" /> 
      <xsd:element name="ModelCode" type="xsd:int" form="unqualified" /> 
      <xsd:element name="ArrayFuel" type="tns:ArrayFuel" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetGearTypeRequestType">
    - <xsd:all>
      <xsd:element name="Settings" type="tns:Settings" form="unqualified" /> 
      <xsd:element name="Params" type="tns:GearRequest" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetGearTypeResponseType">
    - <xsd:all>
      <xsd:element name="MakeCode" type="xsd:int" form="unqualified" /> 
      <xsd:element name="ModelCode" type="xsd:int" form="unqualified" /> 
      <xsd:element name="ArrayGear" type="tns:ArrayGear" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetFinitionRequestType">
    - <xsd:all>
      <xsd:element name="Settings" type="tns:Settings" form="unqualified" /> 
      <xsd:element name="Params" type="tns:FinitionRequest" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetFinitionResponseType">
    - <xsd:all>
      <xsd:element name="MakeCode" type="xsd:int" form="unqualified" /> 
      <xsd:element name="ModelCode" type="xsd:int" form="unqualified" /> 
      <xsd:element name="ArrayFinition" type="tns:ArrayFinition" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetListVehiculeRequestType">
    - <xsd:all>
      <xsd:element name="Settings" type="tns:Settings" form="unqualified" /> 
      <xsd:element name="Params" type="tns:VersionRequest" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetListVehiculeResponseType">
    - <xsd:all>
      <xsd:element name="MakeCode" type="xsd:int" form="unqualified" /> 
      <xsd:element name="ModelCode" type="xsd:int" form="unqualified" /> 
      <xsd:element name="ArrayVersion" type="tns:ArrayObject" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetSpecsRequestType">
    - <xsd:all>
      <xsd:element name="Settings" type="tns:Settings" form="unqualified" /> 
      <xsd:element name="VersionId" type="xsd:int" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetSpecsResponseType">
    - <xsd:all>
      <xsd:element name="Carateristique" type="tns:ObjectList" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetOptionsRequestType">
    - <xsd:all>
      <xsd:element name="Settings" type="tns:Settings" form="unqualified" /> 
      <xsd:element name="VersionId" type="xsd:int" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetOptionsResponseType">
    - <xsd:all>
      <xsd:element name="Equipement" type="tns:ObjectList" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetIdentificationRequestType">
    - <xsd:all>
      <xsd:element name="Settings" type="tns:Settings" form="unqualified" /> 
      <xsd:element name="Params" type="tns:IdentificationRequest" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetIdentificationResponseType">
    - <xsd:all>
      <xsd:element name="VersionIdentifiee" type="tns:IdentificationResponse" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetQuotationRequestType">
    - <xsd:all>
      <xsd:element name="Settings" type="tns:Settings" form="unqualified" /> 
      <xsd:element name="Params" type="tns:QuotationVORequest" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetQuotationResponseType">
    - <xsd:all>
      <xsd:element name="Quotation" type="tns:QuotationResponse" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetQuotationB2BRequestType">
    - <xsd:all>
      <xsd:element name="Settings" type="tns:Settings" form="unqualified" /> 
      <xsd:element name="Params" type="tns:QuotationVORequest" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetQuotationB2BResponseType">
    - <xsd:all>
      <xsd:element name="Quotation" type="tns:QuotationB2BResponse" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetQuotationMRequestType">
    - <xsd:all>
      <xsd:element name="Settings" type="tns:Settings" form="unqualified" /> 
      <xsd:element name="Params" type="tns:QuotationVORequest" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetQuotationMResponseType">
    - <xsd:all>
      <xsd:element name="Quotation" type="tns:QuotationMResponse" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetQuotationVRRequestType">
    - <xsd:all>
      <xsd:element name="Settings" type="tns:Settings" form="unqualified" /> 
      <xsd:element name="Params" type="tns:QuotationVRRequest" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
    - <xsd:complexType name="GetQuotationVRResponseType">
    - <xsd:all>
      <xsd:element name="Quotation" type="tns:QuotationVRResponse" form="unqualified" /> 
      </xsd:all>
      </xsd:complexType>
      </xsd:schema>
      </types>
    - <message name="GetMakeRequest">
      <part name="parameters" element="tns:GetMake" /> 
      </message>
    - <message name="GetMakeResponse">
      <part name="parameters" element="tns:GetMakeResponse" /> 
      </message>
    - <message name="GetModelRequest">
      <part name="parameters" element="tns:GetModel" /> 
      </message>
    - <message name="GetModelResponse">
      <part name="parameters" element="tns:GetModelResponse" /> 
      </message>
    - <message name="GetBodyTypeRequest">
      <part name="parameters" element="tns:GetBodyType" /> 
      </message>
    - <message name="GetBodyTypeResponse">
      <part name="parameters" element="tns:GetBodyTypeResponse" /> 
      </message>
    - <message name="GetFuelTypeRequest">
      <part name="parameters" element="tns:GetFuelType" /> 
      </message>
    - <message name="GetFuelTypeResponse">
      <part name="parameters" element="tns:GetFuelTypeResponse" /> 
      </message>
    - <message name="GetGearTypeRequest">
      <part name="parameters" element="tns:GetGearType" /> 
      </message>
    - <message name="GetGearTypeResponse">
      <part name="parameters" element="tns:GetGearTypeResponse" /> 
      </message>
    - <message name="GetFinitionRequest">
      <part name="parameters" element="tns:GetFinition" /> 
      </message>
    - <message name="GetFinitionResponse">
      <part name="parameters" element="tns:GetFinitionResponse" /> 
      </message>
    - <message name="GetListVehiculeRequest">
      <part name="parameters" element="tns:GetListVehicule" /> 
      </message>
    - <message name="GetListVehiculeResponse">
      <part name="parameters" element="tns:GetListVehiculeResponse" /> 
      </message>
    - <message name="GetSpecsRequest">
      <part name="parameters" element="tns:GetSpecs" /> 
      </message>
    - <message name="GetSpecsResponse">
      <part name="parameters" element="tns:GetSpecsResponse" /> 
      </message>
    - <message name="GetOptionsRequest">
      <part name="parameters" element="tns:GetOptions" /> 
      </message>
    - <message name="GetOptionsResponse">
      <part name="parameters" element="tns:GetOptionsResponse" /> 
      </message>
    - <message name="GetIdentificationRequest">
      <part name="parameters" element="tns:GetIdentification" /> 
      </message>
    - <message name="GetIdentificationResponse">
      <part name="parameters" element="tns:GetIdentificationResponse" /> 
      </message>
    - <message name="GetQuotationRequest">
      <part name="parameters" element="tns:GetQuotation" /> 
      </message>
    - <message name="GetQuotationResponse">
      <part name="parameters" element="tns:GetQuotationResponse" /> 
      </message>
    - <message name="GetQuotationB2BRequest">
      <part name="parameters" element="tns:GetQuotationB2B" /> 
      </message>
    - <message name="GetQuotationB2BResponse">
      <part name="parameters" element="tns:GetQuotationB2BResponse" /> 
      </message>
    - <message name="GetQuotationMRequest">
      <part name="parameters" element="tns:GetQuotationM" /> 
      </message>
    - <message name="GetQuotationMResponse">
      <part name="parameters" element="tns:GetQuotationMResponse" /> 
      </message>
    - <message name="GetQuotationVRRequest">
      <part name="parameters" element="tns:GetQuotationVR" /> 
      </message>
    - <message name="GetQuotationVRResponse">
      <part name="parameters" element="tns:GetQuotationVRResponse" /> 
      </message>
    - <portType name="ReferentielPortType">
    - <operation name="GetMake">
      <documentation>Retourne la liste des marques disponibles dans le référentiel consuconsultélte</documentation> 
      <input message="tns:GetMakeRequest" /> 
      <output message="tns:GetMakeResponse" /> 
      </operation>
    - <operation name="GetModel">
      <documentation>Retourne la liste des modèles disponibles dans le référentiel consulté pour une marque donné</documentation> 
      <input message="tns:GetModelRequest" /> 
      <output message="tns:GetModelResponse" /> 
      </operation>
    - <operation name="GetBodyType">
      <documentation>Retourne la liste des carrosseries disponibles dans le référentiel consulté pour un couple marque, modèle donné</documentation> 
      <input message="tns:GetBodyTypeRequest" /> 
      <output message="tns:GetBodyTypeResponse" /> 
      </operation>
    - <operation name="GetFuelType">
      <documentation>Retourne la liste des boîtes de vitesses disponibles dans le référentiel consulté pour un couple marque, modèle donné</documentation> 
      <input message="tns:GetFuelTypeRequest" /> 
      <output message="tns:GetFuelTypeResponse" /> 
      </operation>
    - <operation name="GetGearType">
      <documentation>Retourne la liste des boîtes de vitesses disponibles dans le référentiel consulté pour un couple marque, modèle donné</documentation> 
      <input message="tns:GetGearTypeRequest" /> 
      <output message="tns:GetGearTypeResponse" /> 
      </operation>
    - <operation name="GetFinition">
      <documentation>Retourne la liste des finitions disponibles dans le référentiel consulté pour un couple marque, modèle donné</documentation> 
      <input message="tns:GetFinitionRequest" /> 
      <output message="tns:GetFinitionResponse" /> 
      </operation>
    - <operation name="GetListVehicule">
      <documentation>Retourne la liste des versions disponibles dans le référentiel consulté + les informations complémentaires de celles-ci pour un couple marque, modèle ( avec ou sans filtres) , ou un id de version déjà connu</documentation> 
      <input message="tns:GetListVehiculeRequest" /> 
      <output message="tns:GetListVehiculeResponse" /> 
      </operation>
    - <operation name="GetSpecs">
      <documentation>Retourne la spécification technique pour une version disponibles dans le référentiel consulté pour un id de version déjà connu</documentation> 
      <input message="tns:GetSpecsRequest" /> 
      <output message="tns:GetSpecsResponse" /> 
      </operation>
    - <operation name="GetOptions">
      <documentation>Retourne les options pour une version disponibles dans le référentiel consulté pour un id de version déjà connu</documentation> 
      <input message="tns:GetOptionsRequest" /> 
      <output message="tns:GetOptionsResponse" /> 
      </operation>
    - <operation name="GetIdentification">
      <input message="tns:GetIdentificationRequest" /> 
      <output message="tns:GetIdentificationResponse" /> 
      </operation>
    - <operation name="GetQuotation">
      <input message="tns:GetQuotationRequest" /> 
      <output message="tns:GetQuotationResponse" /> 
      </operation>
    - <operation name="GetQuotationB2B">
      <input message="tns:GetQuotationB2BRequest" /> 
      <output message="tns:GetQuotationB2BResponse" /> 
      </operation>
    - <operation name="GetQuotationM">
      <input message="tns:GetQuotationMRequest" /> 
      <output message="tns:GetQuotationMResponse" /> 
      </operation>
    - <operation name="GetQuotationVR">
      <input message="tns:GetQuotationVRRequest" /> 
      <output message="tns:GetQuotationVRResponse" /> 
      </operation>
      </portType>
    - <binding name="ReferentielBinding" type="tns:ReferentielPortType">
      <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" /> 
    - <operation name="GetMake">
      <soap:operation soapAction="urn:Referentiel#GetMake" style="document" /> 
    - <input>
      <soap:body use="literal" /> 
      </input>
    - <output>
      <soap:body use="literal" /> 
      </output>
      </operation>
    - <operation name="GetModel">
      <soap:operation soapAction="urn:Referentiel#GetModel" style="document" /> 
    - <input>
      <soap:body use="literal" /> 
      </input>
    - <output>
      <soap:body use="literal" /> 
      </output>
      </operation>
    - <operation name="GetBodyType">
      <soap:operation soapAction="urn:Referentiel#GetBodyType" style="document" /> 
    - <input>
      <soap:body use="literal" /> 
      </input>
    - <output>
      <soap:body use="literal" /> 
      </output>
      </operation>
    - <operation name="GetFuelType">
      <soap:operation soapAction="urn:Referentiel#GetFuelType" style="document" /> 
    - <input>
      <soap:body use="literal" /> 
      </input>
    - <output>
      <soap:body use="literal" /> 
      </output>
      </operation>
    - <operation name="GetGearType">
      <soap:operation soapAction="urn:Referentiel#GetGearType" style="document" /> 
    - <input>
      <soap:body use="literal" /> 
      </input>
    - <output>
      <soap:body use="literal" /> 
      </output>
      </operation>
    - <operation name="GetFinition">
      <soap:operation soapAction="urn:Referentiel#GetFinition" style="document" /> 
    - <input>
      <soap:body use="literal" /> 
      </input>
    - <output>
      <soap:body use="literal" /> 
      </output>
      </operation>
    - <operation name="GetListVehicule">
      <soap:operation soapAction="urn:Referentiel#GetListVehicule" style="document" /> 
    - <input>
      <soap:body use="literal" /> 
      </input>
    - <output>
      <soap:body use="literal" /> 
      </output>
      </operation>
    - <operation name="GetSpecs">
      <soap:operation soapAction="urn:Referentiel#GetSpecs" style="document" /> 
    - <input>
      <soap:body use="literal" /> 
      </input>
    - <output>
      <soap:body use="literal" /> 
      </output>
      </operation>
    - <operation name="GetOptions">
      <soap:operation soapAction="urn:Referentiel#GetOptions" style="document" /> 
    - <input>
      <soap:body use="literal" /> 
      </input>
    - <output>
      <soap:body use="literal" /> 
      </output>
      </operation>
    - <operation name="GetIdentification">
      <soap:operation soapAction="urn:Referentiel#GetIdentification" style="document" /> 
    - <input>
      <soap:body use="literal" /> 
      </input>
    - <output>
      <soap:body use="literal" /> 
      </output>
      </operation>
    - <operation name="GetQuotation">
      <soap:operation soapAction="urn:Referentiel#GetQuotation" style="document" /> 
    - <input>
      <soap:body use="literal" /> 
      </input>
    - <output>
      <soap:body use="literal" /> 
      </output>
      </operation>
    - <operation name="GetQuotationB2B">
      <soap:operation soapAction="urn:Referentiel#GetQuotationB2B" style="document" /> 
    - <input>
      <soap:body use="literal" /> 
      </input>
    - <output>
      <soap:body use="literal" /> 
      </output>
      </operation>
    - <operation name="GetQuotationM">
      <soap:operation soapAction="urn:Referentiel#GetQuotationM" style="document" /> 
    - <input>
      <soap:body use="literal" /> 
      </input>
    - <output>
      <soap:body use="literal" /> 
      </output>
      </operation>
    - <operation name="GetQuotationVR">
      <soap:operation soapAction="urn:Referentiel#GetQuotationVR" style="document" /> 
    - <input>
      <soap:body use="literal" /> 
      </input>
    - <output>
      <soap:body use="literal" /> 
      </output>
      </operation>
      </binding>
    - <service name="Referentiel">
    - <port name="ReferentielPort" binding="tns:ReferentielBinding">
      <soap:address location="http://webservices.autobiz.fr/autobiz_ws_referentiel.php" /> 
      </port>
      </service>
      </definitions>

  4. #4
    Expert confirmé
    Avatar de ludojojo
    Homme Profil pro
    Développeur SharePoint
    Inscrit en
    Avril 2008
    Messages
    2 967
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : France

    Informations professionnelles :
    Activité : Développeur SharePoint
    Secteur : Conseil

    Informations forums :
    Inscription : Avril 2008
    Messages : 2 967
    Billets dans le blog
    5
    Par défaut
    C'est étonnant, il semble que ta requête te renvoi bien une valeur, donc il ne s'agit pas d'un problème avec la classe proxy, ni d'un problème de droit.

    Essaye de créer une class te permettant de récupérer les informations que tu cherches. Ou récupère juste une partie des informations dans un tableau de string, quelque chose du genre :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    string[] result =  refe.GetMake(settings).MakeName; //peut être avec un ToString()
                foreach (string s in result)
                    Response.Write(s);
    Le but de l'opération est de chercher à voir si ce n'est pas un problème avec ta class...
    Aide les autres...
    Et les autres t'aideront....
    Mon site DVP
    N'oubliez pas de consulter les FAQ SharePoint et les cours et tutoriels SharePoint

    N'oubliez pas de voter pour les messages dont la réponse est pertinente

  5. #5
    Membre averti
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    17
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 17
    Par défaut
    Citation Envoyé par ludojojo Voir le message
    C'est étonnant, il semble que ta requête te renvoi bien une valeur, donc il ne s'agit pas d'un problème avec la classe proxy, ni d'un problème de droit.

    Essaye de créer une class te permettant de récupérer les informations que tu cherches. Ou récupère juste une partie des informations dans un tableau de string, quelque chose du genre :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    string[] result =  refe.GetMake(settings).MakeName; //peut être avec un ToString()
                foreach (string s in result)
                    Response.Write(s);
    Le but de l'opération est de chercher à voir si ce n'est pas un problème avec ta class...
    pour l'instant je n'ai pas créé de classe j'utilise directement la methode du webservice de cette facon :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    Make[] listemake =  refe.GetMake(settings);
    L'objet Make faisant partie du webservice....

    est ce que tu peux detailler ton idée, je n'ai pas compris ce que je dois faire :

    Essaye de créer une class te permettant de récupérer les informations que tu cherches. Ou récupère juste une partie des informations dans un tableau de string, quelque chose du genre :
    je mets quoi dans cette classe ?

  6. #6
    Expert confirmé
    Avatar de ludojojo
    Homme Profil pro
    Développeur SharePoint
    Inscrit en
    Avril 2008
    Messages
    2 967
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : France

    Informations professionnelles :
    Activité : Développeur SharePoint
    Secteur : Conseil

    Informations forums :
    Inscription : Avril 2008
    Messages : 2 967
    Billets dans le blog
    5
    Par défaut
    Ne commence pas par une class, essaye déjà ce bout de code pour tester si tu arrives à récupérer une valeur (on verra ensuite pour la class si cela fonctionne) :
    Citation Envoyé par ludojojo Voir le message
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    string[] result =  refe.GetMake(settings).MakeName; //peut être avec un ToString()
                foreach (string s in result)
                    Response.Write(s);
    le mettre à la place de :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    Make[] listemake =  refe.GetMake(settings);
                foreach (Make m in listemake)
                    Response.Write(m.MakeCode + " " + m.MakeName + "</BR>");
    Citation Envoyé par yarolman Voir le message
    L'objet Make faisant partie du webservice...
    Ca je l'ai bien compris au vu du WSDL
    Aide les autres...
    Et les autres t'aideront....
    Mon site DVP
    N'oubliez pas de consulter les FAQ SharePoint et les cours et tutoriels SharePoint

    N'oubliez pas de voter pour les messages dont la réponse est pertinente

  7. #7
    Membre averti
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    17
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 17
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    string[] result =  refe.GetMake(settings).MakeName; //peut être avec un ToString()
                foreach (string s in result)
                    Response.Write(s);
    ca ne compile pas.

    System.Array' ne contient pas une définition pour 'MakeName' et aucune méthode d'extension 'MakeName' acceptant un premier argument de type 'System.Array' n'a été trouvée (une directive using ou une référence d'assembly est-elle manquante*?)

  8. #8
    Membre averti
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    17
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 17
    Par défaut
    Pour info: voici le contenu de la classe proxy :
    partie 1/2
    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
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
    952
    953
    954
    955
    956
    957
    958
    959
    960
    961
    962
    963
    964
    965
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
    980
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    992
    993
    994
    995
    996
    997
    998
    999
    1000
    1001
    1002
    1003
    1004
    1005
    1006
    1007
    1008
    1009
    1010
    1011
    1012
    1013
    1014
    1015
    1016
    1017
    1018
    1019
    1020
    1021
    1022
    1023
    1024
    1025
    1026
    1027
    1028
    1029
    1030
    1031
    1032
    1033
    1034
    1035
    1036
    1037
    1038
    1039
    1040
    1041
    1042
    1043
    1044
    1045
    1046
    1047
    1048
    1049
    1050
    1051
    1052
    1053
    1054
    1055
    1056
    1057
    1058
    1059
    1060
    1061
    1062
    1063
    1064
    1065
    1066
    1067
    1068
    1069
    1070
    1071
    1072
    1073
    1074
    1075
    1076
    1077
    1078
    1079
    1080
    1081
    1082
    1083
    1084
    1085
    1086
    1087
    1088
    1089
    1090
    1091
    1092
    1093
    1094
    1095
    1096
    1097
    1098
    1099
    1100
    1101
    1102
    1103
    1104
    1105
    1106
    1107
    1108
    1109
    1110
    1111
    1112
    1113
    1114
    1115
    1116
    1117
    1118
    1119
    1120
    1121
    1122
    1123
    1124
    1125
    1126
    1127
    1128
    1129
    1130
    1131
    1132
    1133
    1134
    1135
    1136
    1137
    1138
    1139
    1140
    1141
    1142
    1143
    1144
    1145
    1146
    1147
    1148
    1149
    1150
    1151
    1152
     
    //------------------------------------------------------------------------------
    // <auto-generated>
    //     Ce code a été généré par un outil.
    //     Version du runtime :4.0.30319.225
    //
    //     Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
    //     le code est régénéré.
    // </auto-generated>
    //------------------------------------------------------------------------------
     
    // 
    // Ce code source a été automatiquement généré par Microsoft.VSDesigner, Version 4.0.30319.225.
    // 
    #pragma warning disable 1591
     
    namespace autobiz.fr.autobiz.webservices {
        using System;
        using System.Web.Services;
        using System.Diagnostics;
        using System.Web.Services.Protocols;
        using System.ComponentModel;
        using System.Xml.Serialization;
     
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Web.Services.WebServiceBindingAttribute(Name="ReferentielBinding", Namespace="urn:Referentiel")]
        public partial class Referentiel : System.Web.Services.Protocols.SoapHttpClientProtocol {
     
            private System.Threading.SendOrPostCallback GetMakeOperationCompleted;
     
            private System.Threading.SendOrPostCallback GetModelOperationCompleted;
     
            private System.Threading.SendOrPostCallback GetBodyTypeOperationCompleted;
     
            private System.Threading.SendOrPostCallback GetFuelTypeOperationCompleted;
     
            private System.Threading.SendOrPostCallback GetGearTypeOperationCompleted;
     
            private System.Threading.SendOrPostCallback GetFinitionOperationCompleted;
     
            private System.Threading.SendOrPostCallback GetListVehiculeOperationCompleted;
     
            private System.Threading.SendOrPostCallback GetSpecsOperationCompleted;
     
            private System.Threading.SendOrPostCallback GetOptionsOperationCompleted;
     
            private System.Threading.SendOrPostCallback GetIdentificationOperationCompleted;
     
            private System.Threading.SendOrPostCallback GetQuotationOperationCompleted;
     
            private System.Threading.SendOrPostCallback GetQuotationB2BOperationCompleted;
     
            private System.Threading.SendOrPostCallback GetQuotationMOperationCompleted;
     
            private System.Threading.SendOrPostCallback GetQuotationVROperationCompleted;
     
            private bool useDefaultCredentialsSetExplicitly;
     
            /// <remarks/>
            public Referentiel() {
                this.Url = global::autobiz.Properties.Settings.Default.autobiz_fr_autobiz_webservices_Referentiel;
                if ((this.IsLocalFileSystemWebService(this.Url) == true)) {
                    this.UseDefaultCredentials = true;
                    this.useDefaultCredentialsSetExplicitly = false;
                }
                else {
                    this.useDefaultCredentialsSetExplicitly = true;
                }
            }
     
            public new string Url {
                get {
                    return base.Url;
                }
                set {
                    if ((((this.IsLocalFileSystemWebService(base.Url) == true) 
                                && (this.useDefaultCredentialsSetExplicitly == false)) 
                                && (this.IsLocalFileSystemWebService(value) == false))) {
                        base.UseDefaultCredentials = false;
                    }
                    base.Url = value;
                }
            }
     
            public new bool UseDefaultCredentials {
                get {
                    return base.UseDefaultCredentials;
                }
                set {
                    base.UseDefaultCredentials = value;
                    this.useDefaultCredentialsSetExplicitly = true;
                }
            }
     
            /// <remarks/>
            public event GetMakeCompletedEventHandler GetMakeCompleted;
     
            /// <remarks/>
            public event GetModelCompletedEventHandler GetModelCompleted;
     
            /// <remarks/>
            public event GetBodyTypeCompletedEventHandler GetBodyTypeCompleted;
     
            /// <remarks/>
            public event GetFuelTypeCompletedEventHandler GetFuelTypeCompleted;
     
            /// <remarks/>
            public event GetGearTypeCompletedEventHandler GetGearTypeCompleted;
     
            /// <remarks/>
            public event GetFinitionCompletedEventHandler GetFinitionCompleted;
     
            /// <remarks/>
            public event GetListVehiculeCompletedEventHandler GetListVehiculeCompleted;
     
            /// <remarks/>
            public event GetSpecsCompletedEventHandler GetSpecsCompleted;
     
            /// <remarks/>
            public event GetOptionsCompletedEventHandler GetOptionsCompleted;
     
            /// <remarks/>
            public event GetIdentificationCompletedEventHandler GetIdentificationCompleted;
     
            /// <remarks/>
            public event GetQuotationCompletedEventHandler GetQuotationCompleted;
     
            /// <remarks/>
            public event GetQuotationB2BCompletedEventHandler GetQuotationB2BCompleted;
     
            /// <remarks/>
            public event GetQuotationMCompletedEventHandler GetQuotationMCompleted;
     
            /// <remarks/>
            public event GetQuotationVRCompletedEventHandler GetQuotationVRCompleted;
     
            /// <remarks/>
            [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:Referentiel#GetMake", RequestNamespace="urn:Referentiel", ResponseNamespace="urn:Referentiel", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            [return: System.Xml.Serialization.XmlArrayAttribute("ArrayMake", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            [return: System.Xml.Serialization.XmlArrayItemAttribute("Makes", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
            public Make[] GetMake([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] Settings Settings) {
                object[] results = this.Invoke("GetMake", new object[] {
                            Settings});
                return ((Make[])(results[0]));
            }
     
            /// <remarks/>
            public void GetMakeAsync(Settings Settings) {
                this.GetMakeAsync(Settings, null);
            }
     
            /// <remarks/>
            public void GetMakeAsync(Settings Settings, object userState) {
                if ((this.GetMakeOperationCompleted == null)) {
                    this.GetMakeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetMakeOperationCompleted);
                }
                this.InvokeAsync("GetMake", new object[] {
                            Settings}, this.GetMakeOperationCompleted, userState);
            }
     
            private void OnGetMakeOperationCompleted(object arg) {
                if ((this.GetMakeCompleted != null)) {
                    System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                    this.GetMakeCompleted(this, new GetMakeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
                }
            }
     
            /// <remarks/>
            [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:Referentiel#GetModel", RequestNamespace="urn:Referentiel", ResponseNamespace="urn:Referentiel", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            [return: System.Xml.Serialization.XmlElementAttribute("MakeCode", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int GetModel([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] Settings Settings, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] ModelRequest Params, [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] [System.Xml.Serialization.XmlArrayItemAttribute("Models", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)] out Model[] ArrayModel) {
                object[] results = this.Invoke("GetModel", new object[] {
                            Settings,
                            Params});
                ArrayModel = ((Model[])(results[1]));
                return ((int)(results[0]));
            }
     
            /// <remarks/>
            public void GetModelAsync(Settings Settings, ModelRequest Params) {
                this.GetModelAsync(Settings, Params, null);
            }
     
            /// <remarks/>
            public void GetModelAsync(Settings Settings, ModelRequest Params, object userState) {
                if ((this.GetModelOperationCompleted == null)) {
                    this.GetModelOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetModelOperationCompleted);
                }
                this.InvokeAsync("GetModel", new object[] {
                            Settings,
                            Params}, this.GetModelOperationCompleted, userState);
            }
     
            private void OnGetModelOperationCompleted(object arg) {
                if ((this.GetModelCompleted != null)) {
                    System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                    this.GetModelCompleted(this, new GetModelCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
                }
            }
     
            /// <remarks/>
            [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:Referentiel#GetBodyType", RequestNamespace="urn:Referentiel", ResponseNamespace="urn:Referentiel", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            [return: System.Xml.Serialization.XmlElementAttribute("MakeCode", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int GetBodyType([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] Settings Settings, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] BodyRequest Params, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] out int ModelCode, [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] [System.Xml.Serialization.XmlArrayItemAttribute("Bodys", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)] out Body[] ArrayBody) {
                object[] results = this.Invoke("GetBodyType", new object[] {
                            Settings,
                            Params});
                ModelCode = ((int)(results[1]));
                ArrayBody = ((Body[])(results[2]));
                return ((int)(results[0]));
            }
     
            /// <remarks/>
            public void GetBodyTypeAsync(Settings Settings, BodyRequest Params) {
                this.GetBodyTypeAsync(Settings, Params, null);
            }
     
            /// <remarks/>
            public void GetBodyTypeAsync(Settings Settings, BodyRequest Params, object userState) {
                if ((this.GetBodyTypeOperationCompleted == null)) {
                    this.GetBodyTypeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetBodyTypeOperationCompleted);
                }
                this.InvokeAsync("GetBodyType", new object[] {
                            Settings,
                            Params}, this.GetBodyTypeOperationCompleted, userState);
            }
     
            private void OnGetBodyTypeOperationCompleted(object arg) {
                if ((this.GetBodyTypeCompleted != null)) {
                    System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                    this.GetBodyTypeCompleted(this, new GetBodyTypeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
                }
            }
     
            /// <remarks/>
            [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:Referentiel#GetFuelType", RequestNamespace="urn:Referentiel", ResponseNamespace="urn:Referentiel", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            [return: System.Xml.Serialization.XmlElementAttribute("MakeCode", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int GetFuelType([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] Settings Settings, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] FuelRequest Params, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] out int ModelCode, [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] [System.Xml.Serialization.XmlArrayItemAttribute("Fuels", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)] out Fuel[] ArrayFuel) {
                object[] results = this.Invoke("GetFuelType", new object[] {
                            Settings,
                            Params});
                ModelCode = ((int)(results[1]));
                ArrayFuel = ((Fuel[])(results[2]));
                return ((int)(results[0]));
            }
     
            /// <remarks/>
            public void GetFuelTypeAsync(Settings Settings, FuelRequest Params) {
                this.GetFuelTypeAsync(Settings, Params, null);
            }
     
            /// <remarks/>
            public void GetFuelTypeAsync(Settings Settings, FuelRequest Params, object userState) {
                if ((this.GetFuelTypeOperationCompleted == null)) {
                    this.GetFuelTypeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetFuelTypeOperationCompleted);
                }
                this.InvokeAsync("GetFuelType", new object[] {
                            Settings,
                            Params}, this.GetFuelTypeOperationCompleted, userState);
            }
     
            private void OnGetFuelTypeOperationCompleted(object arg) {
                if ((this.GetFuelTypeCompleted != null)) {
                    System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                    this.GetFuelTypeCompleted(this, new GetFuelTypeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
                }
            }
     
            /// <remarks/>
            [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:Referentiel#GetGearType", RequestNamespace="urn:Referentiel", ResponseNamespace="urn:Referentiel", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            [return: System.Xml.Serialization.XmlElementAttribute("MakeCode", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int GetGearType([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] Settings Settings, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] GearRequest Params, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] out int ModelCode, [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] [System.Xml.Serialization.XmlArrayItemAttribute("Gears", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)] out Gear[] ArrayGear) {
                object[] results = this.Invoke("GetGearType", new object[] {
                            Settings,
                            Params});
                ModelCode = ((int)(results[1]));
                ArrayGear = ((Gear[])(results[2]));
                return ((int)(results[0]));
            }
     
            /// <remarks/>
            public void GetGearTypeAsync(Settings Settings, GearRequest Params) {
                this.GetGearTypeAsync(Settings, Params, null);
            }
     
            /// <remarks/>
            public void GetGearTypeAsync(Settings Settings, GearRequest Params, object userState) {
                if ((this.GetGearTypeOperationCompleted == null)) {
                    this.GetGearTypeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetGearTypeOperationCompleted);
                }
                this.InvokeAsync("GetGearType", new object[] {
                            Settings,
                            Params}, this.GetGearTypeOperationCompleted, userState);
            }
     
            private void OnGetGearTypeOperationCompleted(object arg) {
                if ((this.GetGearTypeCompleted != null)) {
                    System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                    this.GetGearTypeCompleted(this, new GetGearTypeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
                }
            }
     
            /// <remarks/>
            [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:Referentiel#GetFinition", RequestNamespace="urn:Referentiel", ResponseNamespace="urn:Referentiel", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            [return: System.Xml.Serialization.XmlElementAttribute("MakeCode", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int GetFinition([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] Settings Settings, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] FinitionRequest Params, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] out int ModelCode, [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] [System.Xml.Serialization.XmlArrayItemAttribute("Finition", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)] out string[] ArrayFinition) {
                object[] results = this.Invoke("GetFinition", new object[] {
                            Settings,
                            Params});
                ModelCode = ((int)(results[1]));
                ArrayFinition = ((string[])(results[2]));
                return ((int)(results[0]));
            }
     
            /// <remarks/>
            public void GetFinitionAsync(Settings Settings, FinitionRequest Params) {
                this.GetFinitionAsync(Settings, Params, null);
            }
     
            /// <remarks/>
            public void GetFinitionAsync(Settings Settings, FinitionRequest Params, object userState) {
                if ((this.GetFinitionOperationCompleted == null)) {
                    this.GetFinitionOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetFinitionOperationCompleted);
                }
                this.InvokeAsync("GetFinition", new object[] {
                            Settings,
                            Params}, this.GetFinitionOperationCompleted, userState);
            }
     
            private void OnGetFinitionOperationCompleted(object arg) {
                if ((this.GetFinitionCompleted != null)) {
                    System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                    this.GetFinitionCompleted(this, new GetFinitionCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
                }
            }
     
            /// <remarks/>
            [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:Referentiel#GetListVehicule", RequestNamespace="urn:Referentiel", ResponseNamespace="urn:Referentiel", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            [return: System.Xml.Serialization.XmlElementAttribute("MakeCode", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int GetListVehicule([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] Settings Settings, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] VersionRequest Params, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] out int ModelCode, [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] [System.Xml.Serialization.XmlArrayItemAttribute("ArrayObjects", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)] [System.Xml.Serialization.XmlArrayItemAttribute("ListObjects", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false, NestingLevel=1)] out Object[][] ArrayVersion) {
                object[] results = this.Invoke("GetListVehicule", new object[] {
                            Settings,
                            Params});
                ModelCode = ((int)(results[1]));
                ArrayVersion = ((Object[][])(results[2]));
                return ((int)(results[0]));
            }
     
            /// <remarks/>
            public void GetListVehiculeAsync(Settings Settings, VersionRequest Params) {
                this.GetListVehiculeAsync(Settings, Params, null);
            }
     
            /// <remarks/>
            public void GetListVehiculeAsync(Settings Settings, VersionRequest Params, object userState) {
                if ((this.GetListVehiculeOperationCompleted == null)) {
                    this.GetListVehiculeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetListVehiculeOperationCompleted);
                }
                this.InvokeAsync("GetListVehicule", new object[] {
                            Settings,
                            Params}, this.GetListVehiculeOperationCompleted, userState);
            }
     
            private void OnGetListVehiculeOperationCompleted(object arg) {
                if ((this.GetListVehiculeCompleted != null)) {
                    System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                    this.GetListVehiculeCompleted(this, new GetListVehiculeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
                }
            }
     
            /// <remarks/>
            [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:Referentiel#GetSpecs", RequestNamespace="urn:Referentiel", ResponseNamespace="urn:Referentiel", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            [return: System.Xml.Serialization.XmlArrayAttribute("Carateristique", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            [return: System.Xml.Serialization.XmlArrayItemAttribute("ListObjects", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
            public Object[] GetSpecs([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] Settings Settings, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] int VersionId) {
                object[] results = this.Invoke("GetSpecs", new object[] {
                            Settings,
                            VersionId});
                return ((Object[])(results[0]));
            }
     
            /// <remarks/>
            public void GetSpecsAsync(Settings Settings, int VersionId) {
                this.GetSpecsAsync(Settings, VersionId, null);
            }
     
            /// <remarks/>
            public void GetSpecsAsync(Settings Settings, int VersionId, object userState) {
                if ((this.GetSpecsOperationCompleted == null)) {
                    this.GetSpecsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSpecsOperationCompleted);
                }
                this.InvokeAsync("GetSpecs", new object[] {
                            Settings,
                            VersionId}, this.GetSpecsOperationCompleted, userState);
            }
     
            private void OnGetSpecsOperationCompleted(object arg) {
                if ((this.GetSpecsCompleted != null)) {
                    System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                    this.GetSpecsCompleted(this, new GetSpecsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
                }
            }
     
            /// <remarks/>
            [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:Referentiel#GetOptions", RequestNamespace="urn:Referentiel", ResponseNamespace="urn:Referentiel", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            [return: System.Xml.Serialization.XmlArrayAttribute("Equipement", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            [return: System.Xml.Serialization.XmlArrayItemAttribute("ListObjects", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
            public Object[] GetOptions([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] Settings Settings, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] int VersionId) {
                object[] results = this.Invoke("GetOptions", new object[] {
                            Settings,
                            VersionId});
                return ((Object[])(results[0]));
            }
     
            /// <remarks/>
            public void GetOptionsAsync(Settings Settings, int VersionId) {
                this.GetOptionsAsync(Settings, VersionId, null);
            }
     
            /// <remarks/>
            public void GetOptionsAsync(Settings Settings, int VersionId, object userState) {
                if ((this.GetOptionsOperationCompleted == null)) {
                    this.GetOptionsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetOptionsOperationCompleted);
                }
                this.InvokeAsync("GetOptions", new object[] {
                            Settings,
                            VersionId}, this.GetOptionsOperationCompleted, userState);
            }
     
            private void OnGetOptionsOperationCompleted(object arg) {
                if ((this.GetOptionsCompleted != null)) {
                    System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                    this.GetOptionsCompleted(this, new GetOptionsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
                }
            }
     
            /// <remarks/>
            [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:Referentiel#GetIdentification", RequestNamespace="urn:Referentiel", ResponseNamespace="urn:Referentiel", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            [return: System.Xml.Serialization.XmlElementAttribute("VersionIdentifiee", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public IdentificationResponse GetIdentification([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] Settings Settings, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] IdentificationRequest Params) {
                object[] results = this.Invoke("GetIdentification", new object[] {
                            Settings,
                            Params});
                return ((IdentificationResponse)(results[0]));
            }
     
            /// <remarks/>
            public void GetIdentificationAsync(Settings Settings, IdentificationRequest Params) {
                this.GetIdentificationAsync(Settings, Params, null);
            }
     
            /// <remarks/>
            public void GetIdentificationAsync(Settings Settings, IdentificationRequest Params, object userState) {
                if ((this.GetIdentificationOperationCompleted == null)) {
                    this.GetIdentificationOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetIdentificationOperationCompleted);
                }
                this.InvokeAsync("GetIdentification", new object[] {
                            Settings,
                            Params}, this.GetIdentificationOperationCompleted, userState);
            }
     
            private void OnGetIdentificationOperationCompleted(object arg) {
                if ((this.GetIdentificationCompleted != null)) {
                    System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                    this.GetIdentificationCompleted(this, new GetIdentificationCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
                }
            }
     
            /// <remarks/>
            [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:Referentiel#GetQuotation", RequestNamespace="urn:Referentiel", ResponseNamespace="urn:Referentiel", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            [return: System.Xml.Serialization.XmlElementAttribute("Quotation", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public QuotationResponse GetQuotation([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] Settings Settings, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] QuotationVORequest Params) {
                object[] results = this.Invoke("GetQuotation", new object[] {
                            Settings,
                            Params});
                return ((QuotationResponse)(results[0]));
            }
     
            /// <remarks/>
            public void GetQuotationAsync(Settings Settings, QuotationVORequest Params) {
                this.GetQuotationAsync(Settings, Params, null);
            }
     
            /// <remarks/>
            public void GetQuotationAsync(Settings Settings, QuotationVORequest Params, object userState) {
                if ((this.GetQuotationOperationCompleted == null)) {
                    this.GetQuotationOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetQuotationOperationCompleted);
                }
                this.InvokeAsync("GetQuotation", new object[] {
                            Settings,
                            Params}, this.GetQuotationOperationCompleted, userState);
            }
     
            private void OnGetQuotationOperationCompleted(object arg) {
                if ((this.GetQuotationCompleted != null)) {
                    System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                    this.GetQuotationCompleted(this, new GetQuotationCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
                }
            }
     
            /// <remarks/>
            [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:Referentiel#GetQuotationB2B", RequestNamespace="urn:Referentiel", ResponseNamespace="urn:Referentiel", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            [return: System.Xml.Serialization.XmlElementAttribute("Quotation", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public QuotationB2BResponse GetQuotationB2B([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] Settings Settings, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] QuotationVORequest Params) {
                object[] results = this.Invoke("GetQuotationB2B", new object[] {
                            Settings,
                            Params});
                return ((QuotationB2BResponse)(results[0]));
            }
     
            /// <remarks/>
            public void GetQuotationB2BAsync(Settings Settings, QuotationVORequest Params) {
                this.GetQuotationB2BAsync(Settings, Params, null);
            }
     
            /// <remarks/>
            public void GetQuotationB2BAsync(Settings Settings, QuotationVORequest Params, object userState) {
                if ((this.GetQuotationB2BOperationCompleted == null)) {
                    this.GetQuotationB2BOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetQuotationB2BOperationCompleted);
                }
                this.InvokeAsync("GetQuotationB2B", new object[] {
                            Settings,
                            Params}, this.GetQuotationB2BOperationCompleted, userState);
            }
     
            private void OnGetQuotationB2BOperationCompleted(object arg) {
                if ((this.GetQuotationB2BCompleted != null)) {
                    System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                    this.GetQuotationB2BCompleted(this, new GetQuotationB2BCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
                }
            }
     
            /// <remarks/>
            [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:Referentiel#GetQuotationM", RequestNamespace="urn:Referentiel", ResponseNamespace="urn:Referentiel", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            [return: System.Xml.Serialization.XmlElementAttribute("Quotation", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public QuotationMResponse GetQuotationM([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] Settings Settings, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] QuotationVORequest Params) {
                object[] results = this.Invoke("GetQuotationM", new object[] {
                            Settings,
                            Params});
                return ((QuotationMResponse)(results[0]));
            }
     
            /// <remarks/>
            public void GetQuotationMAsync(Settings Settings, QuotationVORequest Params) {
                this.GetQuotationMAsync(Settings, Params, null);
            }
     
            /// <remarks/>
            public void GetQuotationMAsync(Settings Settings, QuotationVORequest Params, object userState) {
                if ((this.GetQuotationMOperationCompleted == null)) {
                    this.GetQuotationMOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetQuotationMOperationCompleted);
                }
                this.InvokeAsync("GetQuotationM", new object[] {
                            Settings,
                            Params}, this.GetQuotationMOperationCompleted, userState);
            }
     
            private void OnGetQuotationMOperationCompleted(object arg) {
                if ((this.GetQuotationMCompleted != null)) {
                    System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                    this.GetQuotationMCompleted(this, new GetQuotationMCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
                }
            }
     
            /// <remarks/>
            [System.Web.Services.Protocols.SoapDocumentMethodAttribute("urn:Referentiel#GetQuotationVR", RequestNamespace="urn:Referentiel", ResponseNamespace="urn:Referentiel", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
            [return: System.Xml.Serialization.XmlElementAttribute("Quotation", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public QuotationVRResponse GetQuotationVR([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] Settings Settings, [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] QuotationVRRequest Params) {
                object[] results = this.Invoke("GetQuotationVR", new object[] {
                            Settings,
                            Params});
                return ((QuotationVRResponse)(results[0]));
            }
     
            /// <remarks/>
            public void GetQuotationVRAsync(Settings Settings, QuotationVRRequest Params) {
                this.GetQuotationVRAsync(Settings, Params, null);
            }
     
            /// <remarks/>
            public void GetQuotationVRAsync(Settings Settings, QuotationVRRequest Params, object userState) {
                if ((this.GetQuotationVROperationCompleted == null)) {
                    this.GetQuotationVROperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetQuotationVROperationCompleted);
                }
                this.InvokeAsync("GetQuotationVR", new object[] {
                            Settings,
                            Params}, this.GetQuotationVROperationCompleted, userState);
            }
     
            private void OnGetQuotationVROperationCompleted(object arg) {
                if ((this.GetQuotationVRCompleted != null)) {
                    System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
                    this.GetQuotationVRCompleted(this, new GetQuotationVRCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
                }
            }
     
            /// <remarks/>
            public new void CancelAsync(object userState) {
                base.CancelAsync(userState);
            }
     
            private bool IsLocalFileSystemWebService(string url) {
                if (((url == null) 
                            || (url == string.Empty))) {
                    return false;
                }
                System.Uri wsUri = new System.Uri(url);
                if (((wsUri.Port >= 1024) 
                            && (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) {
                    return true;
                }
                return false;
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class Settings {
     
            private CountryType paysField;
     
            private LangType langField;
     
            private string usernameField;
     
            private string passwordField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public CountryType pays {
                get {
                    return this.paysField;
                }
                set {
                    this.paysField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public LangType lang {
                get {
                    return this.langField;
                }
                set {
                    this.langField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string username {
                get {
                    return this.usernameField;
                }
                set {
                    this.usernameField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string password {
                get {
                    return this.passwordField;
                }
                set {
                    this.passwordField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public enum CountryType {
     
            /// <remarks/>
            FR,
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public enum LangType {
     
            /// <remarks/>
            FR,
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class QuotationVRResponse {
     
            private float prix_actuelField;
     
            private float valeur_residentiel_minField;
     
            private float valeur_residentiel_maxField;
     
            private string valeur_residentiel_min_percentField;
     
            private string valeur_residentiel_max_percentField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public float prix_actuel {
                get {
                    return this.prix_actuelField;
                }
                set {
                    this.prix_actuelField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public float valeur_residentiel_min {
                get {
                    return this.valeur_residentiel_minField;
                }
                set {
                    this.valeur_residentiel_minField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public float valeur_residentiel_max {
                get {
                    return this.valeur_residentiel_maxField;
                }
                set {
                    this.valeur_residentiel_maxField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string valeur_residentiel_min_percent {
                get {
                    return this.valeur_residentiel_min_percentField;
                }
                set {
                    this.valeur_residentiel_min_percentField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string valeur_residentiel_max_percent {
                get {
                    return this.valeur_residentiel_max_percentField;
                }
                set {
                    this.valeur_residentiel_max_percentField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class QuotationVRRequest {
     
            private int versionIdField;
     
            private int yearField;
     
            private int yearFuturField;
     
            private int monthFuturField;
     
            private int kmYearField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int VersionId {
                get {
                    return this.versionIdField;
                }
                set {
                    this.versionIdField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int Year {
                get {
                    return this.yearField;
                }
                set {
                    this.yearField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int YearFutur {
                get {
                    return this.yearFuturField;
                }
                set {
                    this.yearFuturField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int MonthFutur {
                get {
                    return this.monthFuturField;
                }
                set {
                    this.monthFuturField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int KmYear {
                get {
                    return this.kmYearField;
                }
                set {
                    this.kmYearField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class QuotationMResponse {
     
            private float prix_absoluField;
     
            private float km_constateField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public float prix_absolu {
                get {
                    return this.prix_absoluField;
                }
                set {
                    this.prix_absoluField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public float km_constate {
                get {
                    return this.km_constateField;
                }
                set {
                    this.km_constateField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class QuotationB2BResponse {
     
            private float prix_marchandField;
     
            private float km_constateField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public float prix_marchand {
                get {
                    return this.prix_marchandField;
                }
                set {
                    this.prix_marchandField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public float km_constate {
                get {
                    return this.km_constateField;
                }
                set {
                    this.km_constateField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class QuotationResponse {
     
            private float prix_reseauField;
     
            private float prix_professionnelleField;
     
            private float prix_particulierField;
     
            private float km_constateField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public float prix_reseau {
                get {
                    return this.prix_reseauField;
                }
                set {
                    this.prix_reseauField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public float prix_professionnelle {
                get {
                    return this.prix_professionnelleField;
                }
                set {
                    this.prix_professionnelleField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public float prix_particulier {
                get {
                    return this.prix_particulierField;
                }
                set {
                    this.prix_particulierField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public float km_constate {
                get {
                    return this.km_constateField;
                }
                set {
                    this.km_constateField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class QuotationVORequest {
     
            private int versionIdField;
     
            private int yearField;
     
            private int monthField;
     
            private int kmField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int VersionId {
                get {
                    return this.versionIdField;
                }
                set {
                    this.versionIdField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int Year {
                get {
                    return this.yearField;
                }
                set {
                    this.yearField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int Month {
                get {
                    return this.monthField;
                }
                set {
                    this.monthField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int Km {
                get {
                    return this.kmField;
                }
                set {
                    this.kmField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class IdentificationResponse {
     
            private string resultIdentificationField;
     
            private int refAutobizField;
     
            private bool refAutobizFieldSpecified;
     
            private string versionField;
     
            private string makeNameField;
     
            private string modelNameField;
     
            private string fuelTypeNameField;
     
            private string bodyTypeNameField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string ResultIdentification {
                get {
                    return this.resultIdentificationField;
                }
                set {
                    this.resultIdentificationField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int RefAutobiz {
                get {
                    return this.refAutobizField;
                }
                set {
                    this.refAutobizField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool RefAutobizSpecified {
                get {
                    return this.refAutobizFieldSpecified;
                }
                set {
                    this.refAutobizFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string Version {
                get {
                    return this.versionField;
                }
                set {
                    this.versionField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string MakeName {
                get {
                    return this.makeNameField;
                }
                set {
                    this.makeNameField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string ModelName {
                get {
                    return this.modelNameField;
                }
                set {
                    this.modelNameField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string FuelTypeName {
                get {
                    return this.fuelTypeNameField;
                }
                set {
                    this.fuelTypeNameField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string BodyTypeName {
                get {
                    return this.bodyTypeNameField;
                }
                set {
                    this.bodyTypeNameField = value;
                }
            }
        }

  9. #9
    Membre averti
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    17
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 17
    Par défaut
    partie 2/2 (la suite)
    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
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
    952
    953
    954
    955
    956
    957
    958
    959
    960
    961
    962
    963
    964
    965
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
    980
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    992
    993
    994
    995
    996
    997
    998
    999
    1000
    1001
    1002
    1003
    1004
    1005
    1006
    1007
    1008
    1009
    1010
    1011
    1012
    1013
    1014
    1015
    1016
    1017
    1018
    1019
    1020
    1021
    1022
    1023
    1024
    1025
    1026
    1027
    1028
    1029
    1030
    1031
    1032
    1033
    1034
    1035
    1036
    1037
    1038
    1039
    1040
    1041
    1042
    1043
    1044
    1045
    1046
    1047
    1048
    1049
    1050
    1051
    1052
    1053
    1054
    1055
    1056
    1057
    1058
    1059
    1060
    1061
    1062
    1063
    1064
    1065
    1066
    1067
    1068
    1069
    1070
    1071
    1072
    1073
    1074
    1075
    1076
    1077
    1078
    1079
    1080
    1081
    1082
    1083
    1084
    1085
    1086
    1087
    1088
    1089
    1090
    1091
    1092
    1093
    1094
    1095
    1096
    1097
    1098
    1099
    1100
    1101
    1102
    1103
    1104
    1105
    1106
    1107
    1108
    1109
    1110
    1111
    1112
    1113
    1114
    1115
    1116
    1117
    1118
    1119
    1120
    1121
    1122
    1123
    1124
    1125
    1126
    1127
    1128
    1129
    1130
    1131
    1132
    1133
    1134
    1135
    1136
    1137
    1138
    1139
    1140
    1141
    1142
    1143
    1144
    1145
    1146
    1147
    1148
    1149
    1150
    1151
    1152
    1153
    1154
    1155
    1156
    1157
    1158
    1159
    1160
    1161
    1162
    1163
    1164
    1165
    1166
    1167
    1168
    1169
    1170
    1171
    1172
    1173
    1174
    1175
    1176
    1177
    1178
    1179
    1180
    1181
    1182
    1183
    1184
    1185
    1186
    1187
    1188
    1189
    1190
    1191
    1192
    1193
    1194
    1195
    1196
    1197
    1198
    1199
    1200
    1201
    1202
    1203
    1204
    1205
    1206
    1207
    1208
    1209
    1210
    1211
    1212
    1213
    1214
    1215
    1216
    1217
    1218
    1219
    1220
    1221
    1222
    1223
    1224
    1225
    1226
    1227
    1228
    1229
    1230
    1231
    1232
    1233
    1234
    1235
    1236
    1237
    1238
    1239
    1240
    1241
    1242
    1243
    1244
    1245
    1246
    1247
    1248
    1249
    1250
    1251
    1252
    1253
    1254
    1255
    1256
    1257
    1258
    1259
    1260
    1261
    1262
    1263
    1264
    1265
    1266
    1267
    1268
    1269
    1270
    1271
    1272
    1273
    1274
    1275
    1276
    1277
    1278
    1279
    1280
    1281
    1282
    1283
    1284
    1285
    1286
    1287
    1288
    1289
    1290
    1291
    1292
    1293
    1294
    1295
    1296
    1297
    1298
    1299
    1300
    1301
    1302
    1303
    1304
    1305
    1306
    1307
    1308
    1309
    1310
    1311
    1312
    1313
    1314
    1315
    1316
    1317
    1318
    1319
    1320
    1321
    1322
    1323
    1324
    1325
    1326
    1327
    1328
    1329
    1330
    1331
    1332
    1333
    1334
    1335
    1336
    1337
    1338
    1339
    1340
    1341
    1342
    1343
    1344
    1345
    1346
    1347
    1348
    1349
    1350
    1351
    1352
    1353
    1354
    1355
    1356
    1357
    1358
    1359
    1360
    1361
    1362
    1363
    1364
    1365
    1366
    1367
    1368
    1369
    1370
    1371
    1372
    1373
    1374
    1375
    1376
    1377
    1378
    1379
    1380
    1381
    1382
    1383
    1384
    1385
    1386
    1387
    1388
    1389
    1390
    1391
    1392
    1393
    1394
    1395
    1396
    1397
    1398
    1399
    1400
    1401
    1402
    1403
    1404
    1405
    1406
    1407
    1408
    1409
    1410
    1411
    1412
    1413
    1414
    1415
    1416
    1417
     
    /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class IdentificationRequest {
     
            private string versionField;
     
            private string makeNameField;
     
            private string modelNameField;
     
            private string fuelTypeNameField;
     
            private string bodyTypeNameField;
     
            private int doorNumberField;
     
            private bool doorNumberFieldSpecified;
     
            private int yearField;
     
            private bool yearFieldSpecified;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string Version {
                get {
                    return this.versionField;
                }
                set {
                    this.versionField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string MakeName {
                get {
                    return this.makeNameField;
                }
                set {
                    this.makeNameField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string ModelName {
                get {
                    return this.modelNameField;
                }
                set {
                    this.modelNameField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string FuelTypeName {
                get {
                    return this.fuelTypeNameField;
                }
                set {
                    this.fuelTypeNameField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string BodyTypeName {
                get {
                    return this.bodyTypeNameField;
                }
                set {
                    this.bodyTypeNameField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int DoorNumber {
                get {
                    return this.doorNumberField;
                }
                set {
                    this.doorNumberField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool DoorNumberSpecified {
                get {
                    return this.doorNumberFieldSpecified;
                }
                set {
                    this.doorNumberFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int Year {
                get {
                    return this.yearField;
                }
                set {
                    this.yearField = value;
                }
            }
     
        /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool YearSpecified {
                get {
                    return this.yearFieldSpecified;
                }
                set {
                    this.yearFieldSpecified = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class Object {
     
            private string codeWSField;
     
            private string libelleLongField;
     
            private string valueField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string CodeWS {
                get {
                    return this.codeWSField;
                }
                set {
                    this.codeWSField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string LibelleLong {
                get {
                    return this.libelleLongField;
                }
                set {
                    this.libelleLongField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string Value {
                get {
                    return this.valueField;
                }
                set {
                    this.valueField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class VersionRequest {
     
            private int versionIdField;
     
            private int makeCodeField;
     
            private int modelCodeField;
     
            private System.DateTime registrationField;
     
            private bool registrationFieldSpecified;
     
            private int bodyTypeCodeField;
     
            private bool bodyTypeCodeFieldSpecified;
     
            private int fuelTypeCodeField;
     
            private bool fuelTypeCodeFieldSpecified;
     
            private int gearTypeCodeField;
     
            private bool gearTypeCodeFieldSpecified;
     
            private string finitionField;
     
            private int powerFiscalField;
     
            private bool powerFiscalFieldSpecified;
     
            private int powerDINField;
     
            private bool powerDINFieldSpecified;
     
            private int powerKWField;
     
            private bool powerKWFieldSpecified;
     
            private string cO2ClassificationField;
     
            private int cO2EmissionField;
     
            private bool cO2EmissionFieldSpecified;
     
            private int capacityField;
     
            private bool capacityFieldSpecified;
     
            private int gearNumberField;
     
            private bool gearNumberFieldSpecified;
     
            private int seatNumberField;
     
            private bool seatNumberFieldSpecified;
     
            private int doorNumberField;
     
            private bool doorNumberFieldSpecified;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int VersionId {
                get {
                    return this.versionIdField;
                }
                set {
                    this.versionIdField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int MakeCode {
                get {
                    return this.makeCodeField;
                }
                set {
                    this.makeCodeField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int ModelCode {
                get {
                    return this.modelCodeField;
                }
                set {
                    this.modelCodeField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, DataType="date")]
            public System.DateTime Registration {
                get {
                    return this.registrationField;
                }
                set {
                    this.registrationField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool RegistrationSpecified {
                get {
                    return this.registrationFieldSpecified;
                }
                set {
                    this.registrationFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int BodyTypeCode {
                get {
                    return this.bodyTypeCodeField;
                }
                set {
                    this.bodyTypeCodeField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool BodyTypeCodeSpecified {
                get {
                    return this.bodyTypeCodeFieldSpecified;
                }
                set {
                    this.bodyTypeCodeFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int FuelTypeCode {
                get {
                    return this.fuelTypeCodeField;
                }
                set {
                    this.fuelTypeCodeField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool FuelTypeCodeSpecified {
                get {
                    return this.fuelTypeCodeFieldSpecified;
                }
                set {
                    this.fuelTypeCodeFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int GearTypeCode {
                get {
                    return this.gearTypeCodeField;
                }
                set {
                    this.gearTypeCodeField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool GearTypeCodeSpecified {
                get {
                    return this.gearTypeCodeFieldSpecified;
                }
                set {
                    this.gearTypeCodeFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string Finition {
                get {
                    return this.finitionField;
                }
                set {
                    this.finitionField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int PowerFiscal {
                get {
                    return this.powerFiscalField;
                }
                set {
                    this.powerFiscalField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool PowerFiscalSpecified {
                get {
                    return this.powerFiscalFieldSpecified;
                }
                set {
                    this.powerFiscalFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int PowerDIN {
                get {
                    return this.powerDINField;
                }
                set {
                    this.powerDINField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool PowerDINSpecified {
                get {
                    return this.powerDINFieldSpecified;
                }
                set {
                    this.powerDINFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int PowerKW {
                get {
                    return this.powerKWField;
                }
                set {
                    this.powerKWField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool PowerKWSpecified {
                get {
                    return this.powerKWFieldSpecified;
                }
                set {
                    this.powerKWFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string CO2Classification {
                get {
                    return this.cO2ClassificationField;
                }
                set {
                    this.cO2ClassificationField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int CO2Emission {
                get {
                    return this.cO2EmissionField;
                }
                set {
                    this.cO2EmissionField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool CO2EmissionSpecified {
                get {
                    return this.cO2EmissionFieldSpecified;
                }
                set {
                    this.cO2EmissionFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int Capacity {
                get {
                    return this.capacityField;
                }
                set {
                    this.capacityField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool CapacitySpecified {
                get {
                    return this.capacityFieldSpecified;
                }
                set {
                    this.capacityFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int GearNumber {
                get {
                    return this.gearNumberField;
                }
                set {
                    this.gearNumberField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool GearNumberSpecified {
                get {
                    return this.gearNumberFieldSpecified;
                }
                set {
                    this.gearNumberFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int SeatNumber {
                get {
                    return this.seatNumberField;
                }
                set {
                    this.seatNumberField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool SeatNumberSpecified {
                get {
                    return this.seatNumberFieldSpecified;
                }
                set {
                    this.seatNumberFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int DoorNumber {
                get {
                    return this.doorNumberField;
                }
                set {
                    this.doorNumberField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool DoorNumberSpecified {
                get {
                    return this.doorNumberFieldSpecified;
                }
                set {
                    this.doorNumberFieldSpecified = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class FinitionRequest {
     
            private int makeCodeField;
     
            private string modelCodeField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int MakeCode {
                get {
                    return this.makeCodeField;
                }
                set {
                    this.makeCodeField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string ModelCode {
                get {
                    return this.modelCodeField;
                }
                set {
                    this.modelCodeField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class Gear {
     
            private int gearTypeCodeField;
     
            private bool gearTypeCodeFieldSpecified;
     
            private string gearTypeNameField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int GearTypeCode {
                get {
                    return this.gearTypeCodeField;
                }
                set {
                    this.gearTypeCodeField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool GearTypeCodeSpecified {
                get {
                    return this.gearTypeCodeFieldSpecified;
                }
                set {
                    this.gearTypeCodeFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string GearTypeName {
                get {
                    return this.gearTypeNameField;
                }
                set {
                    this.gearTypeNameField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class GearRequest {
     
            private int makeCodeField;
     
            private string modelCodeField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int MakeCode {
                get {
                    return this.makeCodeField;
                }
                set {
                    this.makeCodeField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string ModelCode {
                get {
                    return this.modelCodeField;
                }
                set {
                    this.modelCodeField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class Fuel {
     
            private int fuelTypeCodeField;
     
            private bool fuelTypeCodeFieldSpecified;
     
            private string fuelTypeNameField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int FuelTypeCode {
                get {
                    return this.fuelTypeCodeField;
                }
                set {
                    this.fuelTypeCodeField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool FuelTypeCodeSpecified {
                get {
                    return this.fuelTypeCodeFieldSpecified;
                }
                set {
                    this.fuelTypeCodeFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string FuelTypeName {
                get {
                    return this.fuelTypeNameField;
                }
                set {
                    this.fuelTypeNameField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class FuelRequest {
     
            private int makeCodeField;
     
            private string modelCodeField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int MakeCode {
                get {
                    return this.makeCodeField;
                }
                set {
                    this.makeCodeField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string ModelCode {
                get {
                    return this.modelCodeField;
                }
                set {
                    this.modelCodeField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class Body {
     
            private int bodyTypeCodeField;
     
            private bool bodyTypeCodeFieldSpecified;
     
            private string bodyTypeNameField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int BodyTypeCode {
                get {
                    return this.bodyTypeCodeField;
                }
                set {
                    this.bodyTypeCodeField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool BodyTypeCodeSpecified {
                get {
                    return this.bodyTypeCodeFieldSpecified;
                }
                set {
                    this.bodyTypeCodeFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string BodyTypeName {
                get {
                    return this.bodyTypeNameField;
                }
                set {
                    this.bodyTypeNameField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class BodyRequest {
     
            private int makeCodeField;
     
            private string modelCodeField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int MakeCode {
                get {
                    return this.makeCodeField;
                }
                set {
                    this.makeCodeField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string ModelCode {
                get {
                    return this.modelCodeField;
                }
                set {
                    this.modelCodeField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class Model {
     
            private int modelCodeField;
     
            private bool modelCodeFieldSpecified;
     
            private string modelNameField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int ModelCode {
                get {
                    return this.modelCodeField;
                }
                set {
                    this.modelCodeField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool ModelCodeSpecified {
                get {
                    return this.modelCodeFieldSpecified;
                }
                set {
                    this.modelCodeFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string ModelName {
                get {
                    return this.modelNameField;
                }
                set {
                    this.modelNameField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class ModelRequest {
     
            private int makeCodeField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int MakeCode {
                get {
                    return this.makeCodeField;
                }
                set {
                    this.makeCodeField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.1")]
        [System.SerializableAttribute()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:Referentiel")]
        public partial class Make {
     
            private int makeCodeField;
     
            private bool makeCodeFieldSpecified;
     
            private string makeNameField;
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public int MakeCode {
                get {
                    return this.makeCodeField;
                }
                set {
                    this.makeCodeField = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlIgnoreAttribute()]
            public bool MakeCodeSpecified {
                get {
                    return this.makeCodeFieldSpecified;
                }
                set {
                    this.makeCodeFieldSpecified = value;
                }
            }
     
            /// <remarks/>
            [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
            public string MakeName {
                get {
                    return this.makeNameField;
                }
                set {
                    this.makeNameField = value;
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        public delegate void GetMakeCompletedEventHandler(object sender, GetMakeCompletedEventArgs e);
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        public partial class GetMakeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
     
            private object[] results;
     
            internal GetMakeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                    base(exception, cancelled, userState) {
                this.results = results;
            }
     
            /// <remarks/>
            public Make[] Result {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((Make[])(this.results[0]));
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        public delegate void GetModelCompletedEventHandler(object sender, GetModelCompletedEventArgs e);
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        public partial class GetModelCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
     
            private object[] results;
     
            internal GetModelCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                    base(exception, cancelled, userState) {
                this.results = results;
            }
     
            /// <remarks/>
            public int Result {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((int)(this.results[0]));
                }
            }
     
            /// <remarks/>
            public Model[] ArrayModel {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((Model[])(this.results[1]));
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        public delegate void GetBodyTypeCompletedEventHandler(object sender, GetBodyTypeCompletedEventArgs e);
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        public partial class GetBodyTypeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
     
            private object[] results;
     
            internal GetBodyTypeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                    base(exception, cancelled, userState) {
                this.results = results;
            }
     
            /// <remarks/>
            public int Result {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((int)(this.results[0]));
                }
            }
     
            /// <remarks/>
            public int ModelCode {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((int)(this.results[1]));
                }
            }
     
            /// <remarks/>
            public Body[] ArrayBody {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((Body[])(this.results[2]));
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        public delegate void GetFuelTypeCompletedEventHandler(object sender, GetFuelTypeCompletedEventArgs e);
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        public partial class GetFuelTypeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
     
            private object[] results;
     
            internal GetFuelTypeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                    base(exception, cancelled, userState) {
                this.results = results;
            }
     
            /// <remarks/>
            public int Result {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((int)(this.results[0]));
                }
            }
     
            /// <remarks/>
            public int ModelCode {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((int)(this.results[1]));
                }
            }
     
            /// <remarks/>
            public Fuel[] ArrayFuel {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((Fuel[])(this.results[2]));
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        public delegate void GetGearTypeCompletedEventHandler(object sender, GetGearTypeCompletedEventArgs e);
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        public partial class GetGearTypeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
     
            private object[] results;
     
            internal GetGearTypeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                    base(exception, cancelled, userState) {
                this.results = results;
            }
     
            /// <remarks/>
            public int Result {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((int)(this.results[0]));
                }
            }
     
            /// <remarks/>
            public int ModelCode {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((int)(this.results[1]));
                }
            }
     
            /// <remarks/>
            public Gear[] ArrayGear {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((Gear[])(this.results[2]));
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        public delegate void GetFinitionCompletedEventHandler(object sender, GetFinitionCompletedEventArgs e);
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        public partial class GetFinitionCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
     
            private object[] results;
     
            internal GetFinitionCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                    base(exception, cancelled, userState) {
                this.results = results;
            }
     
            /// <remarks/>
            public int Result {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((int)(this.results[0]));
                }
            }
     
            /// <remarks/>
            public int ModelCode {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((int)(this.results[1]));
                }
            }
     
            /// <remarks/>
            public string[] ArrayFinition {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((string[])(this.results[2]));
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        public delegate void GetListVehiculeCompletedEventHandler(object sender, GetListVehiculeCompletedEventArgs e);
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        public partial class GetListVehiculeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
     
            private object[] results;
     
            internal GetListVehiculeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                    base(exception, cancelled, userState) {
                this.results = results;
            }
     
            /// <remarks/>
            public int Result {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((int)(this.results[0]));
                }
            }
     
            /// <remarks/>
            public int ModelCode {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((int)(this.results[1]));
                }
            }
     
            /// <remarks/>
            public Object[][] ArrayVersion {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((Object[][])(this.results[2]));
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        public delegate void GetSpecsCompletedEventHandler(object sender, GetSpecsCompletedEventArgs e);
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        public partial class GetSpecsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
     
            private object[] results;
     
            internal GetSpecsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                    base(exception, cancelled, userState) {
                this.results = results;
            }
     
            /// <remarks/>
            public Object[] Result {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((Object[])(this.results[0]));
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        public delegate void GetOptionsCompletedEventHandler(object sender, GetOptionsCompletedEventArgs e);
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        public partial class GetOptionsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
     
            private object[] results;
     
            internal GetOptionsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                    base(exception, cancelled, userState) {
                this.results = results;
            }
     
            /// <remarks/>
            public Object[] Result {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((Object[])(this.results[0]));
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        public delegate void GetIdentificationCompletedEventHandler(object sender, GetIdentificationCompletedEventArgs e);
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        public partial class GetIdentificationCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
     
            private object[] results;
     
            internal GetIdentificationCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                    base(exception, cancelled, userState) {
                this.results = results;
            }
     
            /// <remarks/>
            public IdentificationResponse Result {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((IdentificationResponse)(this.results[0]));
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        public delegate void GetQuotationCompletedEventHandler(object sender, GetQuotationCompletedEventArgs e);
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        public partial class GetQuotationCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
     
            private object[] results;
     
            internal GetQuotationCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                    base(exception, cancelled, userState) {
                this.results = results;
            }
     
            /// <remarks/>
            public QuotationResponse Result {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((QuotationResponse)(this.results[0]));
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        public delegate void GetQuotationB2BCompletedEventHandler(object sender, GetQuotationB2BCompletedEventArgs e);
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        public partial class GetQuotationB2BCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
     
            private object[] results;
     
            internal GetQuotationB2BCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                    base(exception, cancelled, userState) {
                this.results = results;
            }
     
            /// <remarks/>
            public QuotationB2BResponse Result {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((QuotationB2BResponse)(this.results[0]));
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        public delegate void GetQuotationMCompletedEventHandler(object sender, GetQuotationMCompletedEventArgs e);
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        public partial class GetQuotationMCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
     
            private object[] results;
     
            internal GetQuotationMCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                    base(exception, cancelled, userState) {
                this.results = results;
            }
     
            /// <remarks/>
            public QuotationMResponse Result {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((QuotationMResponse)(this.results[0]));
                }
            }
        }
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        public delegate void GetQuotationVRCompletedEventHandler(object sender, GetQuotationVRCompletedEventArgs e);
     
        /// <remarks/>
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        public partial class GetQuotationVRCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
     
            private object[] results;
     
            internal GetQuotationVRCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
                    base(exception, cancelled, userState) {
                this.results = results;
            }
     
            /// <remarks/>
            public QuotationVRResponse Result {
                get {
                    this.RaiseExceptionIfNecessary();
                    return ((QuotationVRResponse)(this.results[0]));
                }
            }
        }
    }
     
    #pragma warning restore 1591

  10. #10
    Rédacteur
    Avatar de WOLO Laurent
    Homme Profil pro
    Architecte de base de données
    Inscrit en
    Mars 2003
    Messages
    2 741
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : Congo-Brazzaville

    Informations professionnelles :
    Activité : Architecte de base de données
    Secteur : Finance

    Informations forums :
    Inscription : Mars 2003
    Messages : 2 741
    Par défaut
    Essaie d'utiliser afin de tester les échanges avec ton service.

    Découvrez la FAQ de MS SQL Server.
    La chance accorde ses faveurs aux esprits avertis !

  11. #11
    Membre averti
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    17
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 17
    Par défaut
    je viens de tester avec wcftestclient et voici le resultat :

    https://picasaweb.google.com/1108031...61718788725106


    on voit que ici aussi le resultat indique un type arrayMake dont la valeur est null

    pourtant on voit bien que le xml généré renvoi la liste de resultats attendu

    https://picasaweb.google.com/1108031...61734337073330

    c'est exactement le comportement que j'ai avec ma classe proxy !

  12. #12
    Rédacteur
    Avatar de WOLO Laurent
    Homme Profil pro
    Architecte de base de données
    Inscrit en
    Mars 2003
    Messages
    2 741
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : Congo-Brazzaville

    Informations professionnelles :
    Activité : Architecte de base de données
    Secteur : Finance

    Informations forums :
    Inscription : Mars 2003
    Messages : 2 741
    Par défaut
    Tu peux me faire voir le code que tu utilises pour générer ton proxy ?

    Découvrez la FAQ de MS SQL Server.
    La chance accorde ses faveurs aux esprits avertis !

  13. #13
    Membre averti
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    17
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 17
    Par défaut
    en fait, j'utilise visual studio en faisant ajouter une reference web, ce qui me genere la classe proxy automatiquement.
    mais j'ai egalement fais le test en generant la classe proxy manuellenement.
    en utilisant wsdl.exe et csc.exe comme ceci:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    wsdl.exe "http://webservices.autobiz.fr/autobiz_ws_referentiel.php?wsdl" /l:cs /o:ws_autobiz.cs
    et

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    csc.exe /target:library ws_autobiz.cs
    et au final , le comportement de la classe proxy est le meme.

  14. #14
    Rédacteur
    Avatar de Nathanael Marchand
    Homme Profil pro
    Expert .Net So@t
    Inscrit en
    Octobre 2008
    Messages
    3 615
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Expert .Net So@t
    Secteur : Conseil

    Informations forums :
    Inscription : Octobre 2008
    Messages : 3 615
    Par défaut
    J'ai réalisé un petit programme qui héberge un service similaire à celui que tu essayes d'interroger.
    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
    using System;
    using System.Runtime.Serialization;
    using System.ServiceModel;
    using System.ServiceModel.Description;
     
    namespace ConsoleApplication4
    {
    	class Program
    	{
    		static void Main(string[] args)
    		{
    			var host = new ServiceHost(typeof(Impl), new Uri("http://localhost:9999/TestService"));
    			host.AddServiceEndpoint(typeof(IContract), new BasicHttpBinding(BasicHttpSecurityMode.None), "");
     
    			var metadataBehavior = host.Description.Behaviors.Find<ServiceMetadataBehavior>();
    			if (metadataBehavior == null)
    			{
    				metadataBehavior = new ServiceMetadataBehavior();
    				host.Description.Behaviors.Add(metadataBehavior);
    			}
     
    			metadataBehavior.HttpGetEnabled = true;
     
    			host.AddServiceEndpoint(ServiceMetadataBehavior.MexContractName, MetadataExchangeBindings.CreateMexHttpBinding(), "mex");
     
    			host.Open();
     
    			Console.ReadLine();
     
    			host.Close();
    		}
    	}
     
    	public class Impl : IContract
    	{
    		public Make[] GetMakes()
    		{
    			return new[]
    			       	{
    			       		new Make()
    			       			{
    			       				MakeCode = 0,
    			       				MakeName = "bla"
    			       			},
    			       		new Make()
    			       			{
    			       				MakeCode = 1,
    			       				MakeName = "bl0"
    			       			}
    			       	};
    		}
    	}
     
    	[ServiceContract]
    	public interface IContract
    	{
    		[OperationContract]
    		Make[] GetMakes();
    	}
     
    	[DataContract]
    	public class Make
    	{
    		[DataMember]
    		public int MakeCode { get; set; }
     
    		[DataMember]
    		public string MakeName { get; set; }
    	}
     
    }
    On peut voir que les wsdl sont à peu près les mêmes.

    On s'apercoit surtout que la réponse est différente:

    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
    <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
      <s:Header />
      <s:Body>
        <GetMakesResponse xmlns="http://tempuri.org/">
          <GetMakesResult xmlns:a="http://schemas.datacontract.org/2004/07/ConsoleApplication4" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
            <a:Make>
              <a:MakeCode>0</a:MakeCode>
              <a:MakeName>bla</a:MakeName>
            </a:Make>
            <a:Make>
              <a:MakeCode>1</a:MakeCode>
              <a:MakeName>bl0</a:MakeName>
            </a:Make>
          </GetMakesResult>
        </GetMakesResponse>
      </s:Body>
    </s:Envelope>
    Il semblerait que l'implémentation PHP qui soit défaillante: on remarque que chaque elément est dans une balise item tandis qu'ici c'est un a:Make. Or item n'est defini nul part dans le contrat

  15. #15
    Membre averti
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    17
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 17
    Par défaut
    j'avais remarqué cet histoire de balise <item> presente dans le flux de reponse
    mais je ne sais pas si c'est de la que vient le souci.
    je crois que le web service que je consomme à été réalisé à partir de nusoap.
    je vais voir avec la personne qui me fournit ce service web pour qu'il reétudie
    le contenu des messages soap de son service web...
    ce qui va pas etre simple vu que ce web service est deja en production pour d'autres clients (client php).

  16. #16
    Expert confirmé
    Avatar de ludojojo
    Homme Profil pro
    Développeur SharePoint
    Inscrit en
    Avril 2008
    Messages
    2 967
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : France

    Informations professionnelles :
    Activité : Développeur SharePoint
    Secteur : Conseil

    Informations forums :
    Inscription : Avril 2008
    Messages : 2 967
    Billets dans le blog
    5
    Par défaut
    Citation Envoyé par Nathanael Marchand Voir le message
    Il semblerait que l'implémentation PHP qui soit défaillante: on remarque que chaque elément est dans une balise item tandis qu'ici c'est un a:Make. Or item n'est defini nul part dans le contrat
    Bien vue ! +1
    Aide les autres...
    Et les autres t'aideront....
    Mon site DVP
    N'oubliez pas de consulter les FAQ SharePoint et les cours et tutoriels SharePoint

    N'oubliez pas de voter pour les messages dont la réponse est pertinente

  17. #17
    Membre confirmé
    Profil pro
    Inscrit en
    Juillet 2007
    Messages
    65
    Détails du profil
    Informations personnelles :
    Âge : 35
    Localisation : France

    Informations forums :
    Inscription : Juillet 2007
    Messages : 65
    Par défaut
    Bonjour à tous,

    J'ai effectué une recherche rapide sur le forum avant de poster ma demande d'aide. Je suis donc tombé sur ce sujet et j'ai exactement le même soucis.

    Je tiens à préciser que je ne connais que très peu le c# mais j'ai réalisé le wsdl et toutes les fonctions derrière pour que quelqu'un (qui attend que ça fonctionne correctement :p) puisse travailler.

    Donc j'ai testé avec Soap Toolkit et il semblerait que mes requêtes en envoie et en réception soient correcte comme pour yarolman.

    Vous pouvez consulter le wsdl (pas final, mais je préfère commencer avec un plus simple) à cette adresse : http://api.sms-pas-cher.com/api-dtw-1.0.wsdl
    Il a entièrement été crée à la main, et j'ai aucun soucis pour la passer dans la moulinette "wsdl.exe".

    Merci beaucoup de votre aide, j'ai passé beaucoup de temps sur ce problème et j'aimerais le solutionner !

    Au passage, avec la version 7.0a du sdk les paramètres sont envoyés en array, et dans la 7.1 ils sont en objects. bizarre.

    Merci !

    EDIT : J'ai testé cette méthode. Même soucis.

  18. #18
    Membre averti
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    17
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 17
    Par défaut
    afin de tester ta solution :


    je viens de tester un nouveau web service qui me renvoie une reponse qui suit le format que tu conseilles dans ton exemple.
    le resultat est le meme, les echanges soap se passent bien mais la classe proxy renvoie null.

    Citation Envoyé par Nathanael Marchand Voir le message
    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
    <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
      <s:Header />
      <s:Body>
        <GetMakesResponse xmlns="http://tempuri.org/">
          <GetMakesResult xmlns:a="http://schemas.datacontract.org/2004/07/ConsoleApplication4" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
            <a:Make>
              <a:MakeCode>0</a:MakeCode>
              <a:MakeName>bla</a:MakeName>
            </a:Make>
            <a:Make>
              <a:MakeCode>1</a:MakeCode>
              <a:MakeName>bl0</a:MakeName>
            </a:Make>
          </GetMakesResult>
        </GetMakesResponse>
      </s:Body>
    </s:Envelope>
    Il semblerait que l'implémentation PHP qui soit défaillante: on remarque que chaque elément est dans une balise item tandis qu'ici c'est un a:Make. Or item n'est defini nul part dans le contrat

Discussions similaires

  1. Réponses: 8
    Dernier message: 12/01/2011, 19h00
  2. [Web Service] Consommer un WebService .Net depuis PHP en asynchrone
    Par Joooooon dans le forum Bibliothèques et frameworks
    Réponses: 6
    Dernier message: 02/04/2009, 16h15
  3. Consommer Webservice PHP
    Par Papy214 dans le forum Services Web
    Réponses: 0
    Dernier message: 21/01/2009, 10h24
  4. webservice,silverligth et classe proxy
    Par inno007 dans le forum Silverlight
    Réponses: 2
    Dernier message: 01/07/2008, 16h19
  5. [C#][WebServices] Appel methode avec une classe en paramètre
    Par bran_noz dans le forum Windows Forms
    Réponses: 6
    Dernier message: 10/09/2004, 16h41

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