Accueil > Forum > > > > Problème WebService/Appli PHP (encodage?)
Problème WebService/Appli PHP (encodage?)
lundi 1 décembre 2008 à 10:06:01 |
Problème WebService/Appli PHP (encodage?)

vincentClimber
|
Quand j'appelle une même webmethod, d'un un webservice non sécurisé écrit en .net, je parviens a bien l'executer, mais j'obtiens une erreur en retour de la page PHP ($client->getError()). Voici le code PHP: require_once('nusoap/nusoap.php'); $client0 = new nusoap_client( "http://localhost:4660/WebServicePHP4/UCAWebServicePHP4.asmx?WSDL",true); $parameters = array( 'loginApplication' => "APPLI", 'passwordApplication' => "QWERTY", 'suid' => "7270187811"); $arrayRes0 = $client0->call('GetAccount',array('parameters' => $parameters), '', '', false, true); $err = $client0->getError(); if ($err) { echo '<h2>Constructor error</h2><pre>' . $err . '</pre>'; echo '<pre>'.$client0->getDebug().'</pre>'; } else { $string0 = implode(",", $arrayRes0); echo $string0; } Voici le code c# [WebMethod] public PublicUser GetAccount(string loginApplication, string passwordApplication, string suid) { CheckAutorization( loginApplication, passwordApplication); try { //Get account with the SUID PublicUser publicUser = _accountManager.GetAccountFromApplication(loginApplication, suid); return publicUser; } catch (Exception e) { throw GetSoapException(1, WebServiceAttribute.DefaultNamespace, "", e.Message); } } Et voila ce que j'obtiens:Constructor errorCharset from HTTP Content-Type 'UTF-8' does not match encoding from XML declaration 'iso-8859-1' 2008-11-27 10:34:36.614823 nusoap_client: ctor wsdl=1 timeout=0 response_timeout=30 endpoint=string(64) "http://localhost:4660/WebServicePHP4/UCAWebServicePHP4.asmx?WSDL" 2008-11-27 10:34:36.615328 nusoap_client: will use lazy evaluation of wsdl from [ Lien ] 2008-11-27 10:34:36.615414 nusoap_client: call: operation=GetAccount, namespace=, soapAction=, rpcParams=1, style=rpc, use=encoded, endpointType=wsdl params=array(1) { ["parameters"]=> array(3) { ["loginApplication"]=> string(4) "QWERTY" ["suid"]=> string(10) "7270187811" } } headers=bool(false) 2008-11-27 10:34:36.615553 nusoap_client: instantiating wsdl class with doc: [ Lien ] 2008-11-27 10:34:36.615738 wsdl: ctor wsdl= timeout=0 response_timeout=30 2008-11-27 10:34:36.615810 wsdl: parse and process WSDL path= 2008-11-27 10:34:36.615870 wsdl: setCredentials username= authtype= certRequest= array(0) { } 2008-11-27 10:34:36.615935 wsdl: parse and process WSDL path= [ Lien ] 2008-11-27 10:34:36.615983 wsdl: parse WSDL at path= [ Lien ] 2008-11-27 10:34:36.616033 wsdl: getting WSDL http(s) URL [ Lien ] 2008-11-27 10:34:36.616122 soap_transport_http: ctor url= [ Lien ] use_curl= curl_options: array(0) { } 2008-11-27 10:34:36.616207 soap_transport_http: parsed URL scheme = http 2008-11-27 10:34:36.616259 soap_transport_http: parsed URL host = localhost 2008-11-27 10:34:36.616294 soap_transport_http: parsed URL port = 4660 2008-11-27 10:34:36.616329 soap_transport_http: parsed URL path = /WebServicePHP4/UCAWebServicePHP4.asmx 2008-11-27 10:34:36.616364 soap_transport_http: parsed URL query = WSDL 2008-11-27 10:34:36.616409 soap_transport_http: set header Host: localhost:4660 2008-11-27 10:34:36.616862 soap_transport_http: set header User-Agent: NuSOAP/0.7.3 (1.114) 2008-11-27 10:34:36.616919 soap_transport_http: set header Accept-Encoding: gzip, deflate 2008-11-27 10:34:36.616963 soap_transport_http: set header Connection: close 2008-11-27 10:34:36.631510 soap_transport_http: entered send() with data of length: 0 2008-11-27 10:34:36.631594 soap_transport_http: connect connection_timeout 0, response_timeout 30, scheme http, host localhost, port 4660 2008-11-27 10:34:36.631650 soap_transport_http: calling fsockopen with host localhost connection_timeout 0 2008-11-27 10:34:36.663363 soap_transport_http: set response timeout to 30 2008-11-27 10:34:36.663601 soap_transport_http: socket connected 2008-11-27 10:34:36.663675 soap_transport_http: set header Content-Length: 0 2008-11-27 10:34:36.663724 soap_transport_http: HTTP request: GET /WebServicePHP4/UCAWebServicePHP4.asmx?WSDL HTTP/1.1 2008-11-27 10:34:36.663771 soap_transport_http: HTTP header: Host: localhost:4660 2008-11-27 10:34:36.663815 soap_transport_http: HTTP header: User-Agent: NuSOAP/0.7.3 (1.114) 2008-11-27 10:34:36.663859 soap_transport_http: HTTP header: Accept-Encoding: gzip, deflate 2008-11-27 10:34:36.663902 soap_transport_http: HTTP header: Connection: close 2008-11-27 10:34:36.663946 soap_transport_http: HTTP header: Content-Length: 0 2008-11-27 10:34:36.664035 soap_transport_http: wrote data to socket, length = 186 2008-11-27 10:34:36.908643 soap_transport_http: read line of 17 bytes: HTTP/1.1 200 OK 2008-11-27 10:34:36.908734 soap_transport_http: read line of 44 bytes: Server: ASP.NET Development Server/8.0.0.0 2008-11-27 10:34:36.908781 soap_transport_http: read line of 37 bytes: Date: Thu, 27 Nov 2008 09:34:36 GMT 2008-11-27 10:34:36.908835 soap_transport_http: read line of 29 bytes: X-AspNet-Version: 2.0.50727 2008-11-27 10:34:36.908880 soap_transport_http: read line of 35 bytes: Cache-Control: private, max-age=0 2008-11-27 10:34:36.908926 soap_transport_http: read line of 39 bytes: Content-Type: text/xml; charset=utf-8 2008-11-27 10:34:36.908971 soap_transport_http: read line of 23 bytes: Content-Length: 20222 2008-11-27 10:34:36.909016 soap_transport_http: read line of 19 bytes: Connection: Close 2008-11-27 10:34:36.909063 soap_transport_http: read line of 2 bytes: 2008-11-27 10:34:36.909158 soap_transport_http: found end of headers after length 245 2008-11-27 10:34:36.909289 soap_transport_http: want to read content of length 20222 2008-11-27 10:34:36.922492 soap_transport_http: read buffer of 8192 bytes 2008-11-27 10:34:36.922626 soap_transport_http: read buffer of 8192 bytes 2008-11-27 10:34:36.922759 soap_transport_http: read buffer of 3838 bytes 2008-11-27 10:34:36.922853 soap_transport_http: read to EOF 2008-11-27 10:34:36.922890 soap_transport_http: read body of length 20222 2008-11-27 10:34:36.922956 soap_transport_http: received a total of 20467 bytes of data from server 2008-11-27 10:34:36.923048 soap_transport_http: closed socket 2008-11-27 10:34:36.923118 soap_transport_http: No Content-Encoding header 2008-11-27 10:34:36.923164 soap_transport_http: end of send() 2008-11-27 10:34:36.923228 wsdl: got WSDL URL 2008-11-27 10:34:36.923264 wsdl: Parse WSDL 2008-11-27 10:34:36.924474 wsdl: Parsing WSDL schema 2008-11-27 10:34:36.924568 nusoap_xmlschema: nusoap_xmlschema class instantiated, inside constructor 2008-11-27 10:34:36.924823 nusoap_xmlschema: processing untyped element Test type _Test_ContainedType 2008-11-27 10:34:36.924869 nusoap_xmlschema: add element Test to elements array 2008-11-27 10:34:36.925017 nusoap_xmlschema: processing unnamed complexType for element Test named _Test_ContainedType 2008-11-27 10:34:36.925296 nusoap_xmlschema: processing typed element popo of type [ Lien ] 2008-11-27 10:34:36.925353 nusoap_xmlschema: add element popo to complexType _Test_ContainedType 2008-11-27 10:34:36.925461 nusoap_xmlschema: done processing element popo 2008-11-27 10:34:36.925585 nusoap_xmlschema: done processing complexType _Test_ContainedType 2008-11-27 10:34:36.925664 nusoap_xmlschema: done processing element Test 2008-11-27 10:34:36.925796 nusoap_xmlschema: processing untyped element TestResponse type _TestResponse_ContainedType 2008-11-27 10:34:36.925840 nusoap_xmlschema: add element TestResponse to elements array 2008-11-27 10:34:36.925977 nusoap_xmlschema: processing unnamed complexType for element TestResponse named _TestResponse_ContainedType 2008-11-27 10:34:36.926249 nusoap_xmlschema: processing typed element TestResult of type [ Lien ] 2008-11-27 10:34:36.926304 nusoap_xmlschema: add element TestResult to complexType _TestResponse_ContainedType 2008-11-27 10:34:36.926381 nusoap_xmlschema: done processing element TestResult 2008-11-27 10:34:36.926496 nusoap_xmlschema: done processing complexType _TestResponse_ContainedType 2008-11-27 10:34:36.926574 nusoap_xmlschema: done processing element TestResponse 2008-11-27 10:34:36.926705 nusoap_xmlschema: processing untyped element GetAccount type _GetAccount_ContainedType 2008-11-27 10:34:36.926748 nusoap_xmlschema: add element GetAccount to elements array 2008-11-27 10:34:36.926900 nusoap_xmlschema: processing unnamed complexType for element GetAccount named _GetAccount_ContainedType 2008-11-27 10:34:36.927168 nusoap_xmlschema: processing typed element loginApplication of type [ Lien ] 2008-11-27 10:34:36.927223 nusoap_xmlschema: add element loginApplication to complexType _GetAccount_ContainedType 2008-11-27 10:34:36.927300 nusoap_xmlschema: done processing element loginApplication 2008-11-27 10:34:36.927468 nusoap_xmlschema: processing typed element passwordApplication of type [ Lien ] 2008-11-27 10:34:36.927521 nusoap_xmlschema: add element passwordApplication to complexType _GetAccount_ContainedType 2008-11-27 10:34:36.927597 nusoap_xmlschema: done processing element passwordApplication 2008-11-27 10:34:36.927765 nusoap_xmlschema: processing typed element suid of type [ Lien ] 2008-11-27 10:34:36.927819 nusoap_xmlschema: add element suid to complexType _GetAccount_ContainedType 2008-11-27 10:34:36.927895 nusoap_xmlschema: done processing element suid 2008-11-27 10:34:36.928014 nusoap_xmlschema: done processing complexType _GetAccount_ContainedType 2008-11-27 10:34:36.928091 nusoap_xmlschema: done processing element GetAccount 2008-11-27 10:34:36.928222 nusoap_xmlschema: processing untyped element GetAccountResponse type _GetAccountResponse_ContainedType 2008-11-27 10:34:36.928270 nusoap_xmlschema: add element GetAccountResponse to elements array 2008-11-27 10:34:36.928417 nusoap_xmlschema: processing unnamed complexType for element GetAccountResponse named _GetAccountResponse_ContainedType 2008-11-27 10:34:36.928677 nusoap_xmlschema: processing typed element GetAccountResult of type [ Lien ] 2008-11-27 10:34:36.928732 nusoap_xmlschema: add element GetAccountResult to complexType _GetAccountResponse_ContainedType 2008-11-27 10:34:36.928809 nusoap_xmlschema: done processing element GetAccountResult 2008-11-27 10:34:36.928925 nusoap_xmlschema: done processing complexType _GetAccountResponse_ContainedType 2008-11-27 10:34:36.929010 nusoap_xmlschema: done processing element GetAccountResponse 2008-11-27 10:34:36.929132 nusoap_xmlschema: processing named complexType PublicUser 2008-11-27 10:34:36.929408 nusoap_xmlschema: extension [ Lien ] 2008-11-27 10:34:36.929562 nusoap_xmlschema: done processing complexType PublicUser 2008-11-27 10:34:36.929709 nusoap_xmlschema: processing named complexType User 2008-11-27 10:34:36.929959 nusoap_xmlschema: extension [ Lien ] 2008-11-27 10:34:36.930223 nusoap_xmlschema: processing typed element Status of type [ Lien ] 2008-11-27 10:34:36.930277 nusoap_xmlschema: add element Status to complexType User 2008-11-27 10:34:36.930354 nusoap_xmlschema: done processing element Status 2008-11-27 10:34:36.930524 nusoap_xmlschema: processing typed element Postofficebox of type [ Lien ] 2008-11-27 10:34:36.930577 nusoap_xmlschema: add element Postofficebox to complexType User 2008-11-27 10:34:36.930653 nusoap_xmlschema: done processing element Postofficebox 2008-11-27 10:34:36.930824 nusoap_xmlschema: processing typed element Country of type [ Lien ] 2008-11-27 10:34:36.930875 nusoap_xmlschema: add element Country to complexType User 2008-11-27 10:34:36.930988 nusoap_xmlschema: done processing element Country 2008-11-27 10:34:36.931170 nusoap_xmlschema: processing typed element State of type [ Lien ] 2008-11-27 10:34:36.931224 nusoap_xmlschema: add element State to complexType User 2008-11-27 10:34:36.931303 nusoap_xmlschema: done processing element State 2008-11-27 10:34:36.931474 nusoap_xmlschema: processing typed element Gender of type [ Lien ] 2008-11-27 10:34:36.931527 nusoap_xmlschema: add element Gender to complexType User 2008-11-27 10:34:36.931604 nusoap_xmlschema: done processing element Gender 2008-11-27 10:34:36.931775 nusoap_xmlschema: processing typed element Company of type [ Lien ] 2008-11-27 10:34:36.931828 nusoap_xmlschema: add element Company to complexType User 2008-11-27 10:34:36.931916 nusoap_xmlschema: done processing element Company 2008-11-27 10:34:36.932095 nusoap_xmlschema: processing typed element City of type [ Lien ] 2008-11-27 10:34:36.932148 nusoap_xmlschema: add element City to complexType User 2008-11-27 10:34:36.932230 nusoap_xmlschema: done processing element City 2008-11-27 10:34:36.932400 nusoap_xmlschema: processing typed element Zipcode of type [ Lien ] 2008-11-27 10:34:36.932454 nusoap_xmlschema: add element Zipcode to complexType User 2008-11-27 10:34:36.932531 nusoap_xmlschema: done processing element Zipcode 2008-11-27 10:34:36.932702 nusoap_xmlschema: processing typed element Phonenumber of type [ Lien ] 2008-11-27 10:34:36.932755 nusoap_xmlschema: add element Phonenumber to complexType User 2008-11-27 10:34:36.932832 nusoap_xmlschema: done processing element Phonenumber 2008-11-27 10:34:36.933008 nusoap_xmlschema: processing typed element Faxnumber of type [ Lien ] 2008-11-27 10:34:36.933062 nusoap_xmlschema: add element Faxnumber to complexType User 2008-11-27 10:34:36.933164 nusoap_xmlschema: done processing element Faxnumber 2008-11-27 10:34:36.933336 nusoap_xmlschema: processing typed element Login of type [ Lien ] 2008-11-27 10:34:36.933389 nusoap_xmlschema: add element Login to complexType User 2008-11-27 10:34:36.933465 nusoap_xmlschema: done processing element Login 2008-11-27 10:34:36.933635 nusoap_xmlschema: processing typed element Lastname of type [ Lien ] 2008-11-27 10:34:36.933688 nusoap_xmlschema: add element Lastname to complexType User 2008-11-27 10:34:36.933764 nusoap_xmlschema: done processing element Lastname 2008-11-27 10:34:36.933941 nusoap_xmlschema: processing typed element Firstname of type [ Lien ] 2008-11-27 10:34:36.933994 nusoap_xmlschema: add element Firstname to complexType User 2008-11-27 10:34:36.934070 nusoap_xmlschema: done processing element Firstname 2008-11-27 10:34:36.934240 nusoap_xmlschema: processing typed element Language of type [ Lien ] 2008-11-27 10:34:36.934293 nusoap_xmlschema: add element Language to complexType User 2008-11-27 10:34:36.934369 nusoap_xmlschema: done processing element Language 2008-11-27 10:34:36.934539 nusoap_xmlschema: processing typed element Address of type [ Lien ] 2008-11-27 10:34:36.934591 nusoap_xmlschema: add element Address to complexType User 2008-11-27 10:34:36.934666 nusoap_xmlschema: done processing element Address 2008-11-27 10:34:36.934863 nusoap_xmlschema: done processing complexType User 2008-11-27 10:34:36.934997 nusoap_xmlschema: processing named complexType UserUCA 2008-11-27 10:34:36.935266 nusoap_xmlschema: processing typed element Roles of type [ Lien ] 2008-11-27 10:34:36.935320 nusoap_xmlschema: add element Roles to complexType UserUCA 2008-11-27 10:34:36.935397 nusoap_xmlschema: done processing element Roles 2008-11-27 10:34:36.935567 nusoap_xmlschema: processing typed element SUID of type [ Lien ] 2008-11-27 10:34:36.935621 nusoap_xmlschema: add element SUID to complexType UserUCA 2008-11-27 10:34:36.935700 nusoap_xmlschema: done processing element SUID 2008-11-27 10:34:36.935840 nusoap_xmlschema: done processing complexType UserUCA 2008-11-27 10:34:36.935967 nusoap_xmlschema: processing named complexType ArrayOfERole 2008-11-27 10:34:36.936239 nusoap_xmlschema: processing typed element ERole of type [ Lien ] 2008-11-27 10:34:36.936294 nusoap_xmlschema: add element ERole to complexType ArrayOfERole 2008-11-27 10:34:36.936410 nusoap_xmlschema: done processing element ERole 2008-11-27 10:34:36.936526 nusoap_xmlschema: done processing complexType ArrayOfERole 2008-11-27 10:34:36.936650 nusoap_xmlschema: processing simpleType for name ERole 2008-11-27 10:34:36.936802 nusoap_xmlschema: restriction [ Lien ] 2008-11-27 10:34:36.936939 nusoap_xmlschema: enumeration Application 2008-11-27 10:34:36.937095 nusoap_xmlschema: enumeration User 2008-11-27 10:34:36.937253 nusoap_xmlschema: enumeration Administrator 2008-11-27 10:34:36.937450 nusoap_xmlschema: enumeration SuperAdministrator 2008-11-27 10:34:36.937607 nusoap_xmlschema: enumeration ADAMAdministrator 2008-11-27 10:34:36.937760 nusoap_xmlschema: done processing simpleType ERole 2008-11-27 10:34:36.937880 nusoap_xmlschema: processing simpleType for name EStatus 2008-11-27 10:34:36.938055 nusoap_xmlschema: restriction [ Lien ] 2008-11-27 10:34:36.938188 nusoap_xmlschema: enumeration N 2008-11-27 10:34:36.938344 nusoap_xmlschema: enumeration Activated 2008-11-27 10:34:36.938501 nusoap_xmlschema: enumeration Deactivated 2008-11-27 10:34:36.938689 nusoap_xmlschema: enumeration Activating 2008-11-27 10:34:36.938847 nusoap_xmlschema: enumeration Anonymising 2008-11-27 10:34:36.939002 nusoap_xmlschema: enumeration Anonymized 2008-11-27 10:34:36.939155 nusoap_xmlschema: done processing simpleType EStatus 2008-11-27 10:34:36.939276 nusoap_xmlschema: processing simpleType for name ECountry 2008-11-27 10:34:36.939432 nusoap_xmlschema: restriction [ Lien ] 2008-11-27 10:34:36.939567 nusoap_xmlschema: enumeration N 2008-11-27 10:34:36.939755 nusoap_xmlschema: enumeration AF 2008-11-27 10:34:36.939941 nusoap_xmlschema: enumeration AX 2008-11-27 10:34:36.940097 nusoap_xmlschema: enumeration AL 2008-11-27 10:34:36.940252 nusoap_xmlschema: enumeration DZ 2008-11-27 10:34:36.940407 nusoap_xmlschema: enumeration AS 2008-11-27 10:34:36.940563 nusoap_xmlschema: enumeration AD 2008-11-27 10:34:36.940737 nusoap_xmlschema: enumeration AO 2008-11-27 10:34:36.940894 nusoap_xmlschema: enumeration AI 2008-11-27 10:34:36.941051 nusoap_xmlschema: enumeration AQ 2008-11-27 10:34:36.941206 nusoap_xmlschema: enumeration AG 2008-11-27 10:34:36.941360 nusoap_xmlschema: enumeration AR 2008-11-27 10:34:36.941515 nusoap_xmlschema: enumeration AM 2008-11-27 10:34:36.941671 nusoap_xmlschema: enumeration AW 2008-11-27 10:34:36.941827 nusoap_xmlschema: enumeration AU 2008-11-27 10:34:36.941985 nusoap_xmlschema: enumeration AT 2008-11-27 10:34:36.942140 nusoap_xmlschema: enumeration AZ 2008-11-27 10:34:36.942298 nusoap_xmlschema: enumeration BS 2008-11-27 10:34:36.942457 nusoap_xmlschema: enumeration BH 2008-11-27 10:34:36.942612 nusoap_xmlschema: enumeration BD 2008-11-27 10:34:36.942768 nusoap_xmlschema: enumeration BB 2008-11-27 10:34:36.942924 nusoap_xmlschema: enumeration BY 2008-11-27 10:34:36.943112 nusoap_xmlschema: enumeration BE 2008-11-27 10:34:36.943269 nusoap_xmlschema: enumeration BZ 2008-11-27 10:34:36.943424 nusoap_xmlschema: enumeration BJ 2008-11-27 10:34:36.943579 nusoap_xmlschema: enumeration BM 2008-11-27 10:34:36.943734 nusoap_xmlschema: enumeration BT 2008-11-27 10:34:36.943888 nusoap_xmlschema: enumeration BO 2008-11-27 10:34:36.944077 nusoap_xmlschema: enumeration BA 2008-11-27 10:34:36.944233 nusoap_xmlschema: enumeration BW 2008-11-27 10:34:36.944388 nusoap_xmlschema: enumeration BV 2008-11-27 10:34:36.944542 nusoap_xmlschema: enumeration BR 2008-11-27 10:34:36.944698 nusoap_xmlschema: enumeration IO 2008-11-27 10:34:36.944855 nusoap_xmlschema: enumeration BN 2008-11-27 10:34:36.945044 nusoap_xmlschema: enumeration BG 2008-11-27 10:34:36.945203 nusoap_xmlschema: enumeration BF 2008-11-27 10:34:36.945361 nusoap_xmlschema: enumeration BI 2008-11-27 10:34:36.945550 nusoap_xmlschema: enumeration KH 2008-11-27 10:34:36.945706 nusoap_xmlschema: enumeration CM 2008-11-27 10:34:36.945897 nusoap_xmlschema: enumeration CA 2008-11-27 10:34:36.946084 nusoap_xmlschema: enumeration CV 2008-11-27 10:34:36.946273 nusoap_xmlschema: enumeration KY 2008-11-27 10:34:36.946431 nusoap_xmlschema: enumeration CF 2008-11-27 10:34:36.946591 nusoap_xmlschema: enumeration TD 2008-11-27 10:34:36.946781 nusoap_xmlschema: enumeration CL 2008-11-27 10:34:36.946945 nusoap_xmlschema: enumeration CN 2008-11-27 10:34:36.947138 nusoap_xmlschema: enumeration CX 2008-11-27 10:34:36.947295 nusoap_xmlschema: enumeration CC 2008-11-27 10:34:36.947454 nusoap_xmlschema: enumeration CO 2008-11-27 10:34:36.947612 nusoap_xmlschema: enumeration KM 2008-11-27 10:34:36.947768 nusoap_xmlschema: enumeration CG 2008-11-27 10:34:36.947924 nusoap_xmlschema: enumeration CD 2008-11-27 10:34:36.948080 nusoap_xmlschema: enumeration CK 2008-11-27 10:34:36.948236 nusoap_xmlschema: enumeration CR 2008-11-27 10:34:36.948393 nusoap_xmlschema: enumeration CI 2008-11-27 10:34:36.948549 nusoap_xmlschema: enumeration HR 2008-11-27 10:34:36.948704 nusoap_xmlschema: enumeration CU 2008-11-27 10:34:36.948868 nusoap_xmlschema: enumeration CY 2008-11-27 10:34:36.949025 nusoap_xmlschema: enumeration CZ 2008-11-27 10:34:36.949182 nusoap_xmlschema: enumeration DK 2008-11-27 10:34:36.949340 nusoap_xmlschema: enumeration DJ 2008-11-27 10:34:36.949498 nusoap_xmlschema: enumeration DM 2008-11-27 10:34:36.949668 nusoap_xmlschema: enumeration DO 2008-11-27 10:34:36.949818 nusoap_xmlschema: enumeration EC 2008-11-27 10:34:36.949950 nusoap_xmlschema: enumeration EG 2008-11-27 10:34:36.950083 nusoap_xmlschema: enumeration SV 2008-11-27 10:34:36.950214 nusoap_xmlschema: enumeration GQ 2008-11-27 10:34:36.950343 nusoap_xmlschema: enumeration ER 2008-11-27 10:34:36.950493 nusoap_xmlschema: enumeration EE 2008-11-27 10:34:36.950626 nusoap_xmlschema: enumeration ET 2008-11-27 10:34:36.950755 nusoap_xmlschema: enumeration FK 2008-11-27 10:34:36.950886 nusoap_xmlschema: enumeration FO 2008-11-27 10:34:36.951017 nusoap_xmlschema: enumeration FJ 2008-11-27 10:34:36.951145 nusoap_xmlschema: enumeration FI 2008-11-27 10:34:36.951275 nusoap_xmlschema: enumeration FR 2008-11-27 10:34:36.951405 nusoap_xmlschema: enumeration GF 2008-11-27 10:34:36.951552 nusoap_xmlschema: enumeration PF 2008-11-27 10:34:36.951682 nusoap_xmlschema: enumeration TF 2008-11-27 10:34:36.951832 nusoap_xmlschema: enumeration GA 2008-11-27 10:34:36.951963 nusoap_xmlschema: enumeration GM 2008-11-27 10:34:36.952116 nusoap_xmlschema: enumeration GE 2008-11-27 10:34:36.952251 nusoap_xmlschema: enumeration DE 2008-11-27 10:34:36.952388 nusoap_xmlschema: enumeration GH 2008-11-27 10:34:36.952526 nusoap_xmlschema: enumeration GI 2008-11-27 10:34:36.952687 nusoap_xmlschema: enumeration GR 2008-11-27 10:34:36.952840 nusoap_xmlschema: enumeration GL 2008-11-27 10:34:36.952994 nusoap_xmlschema: enumeration GD 2008-11-27 10:34:36.953140 nusoap_xmlschema: enumeration GP 2008-11-27 10:34:36.953296 nusoap_xmlschema: enumeration GU 2008-11-27 10:34:36.953449 nusoap_xmlschema: enumeration GT 2008-11-27 10:34:36.953604 nusoap_xmlschema: enumeration GG 2008-11-27 10:34:36.953749 nusoap_xmlschema: enumeration GN 2008-11-27 10:34:36.953901 nusoap_xmlschema: enumeration GW 2008-11-27 10:34:36.954075 nusoap_xmlschema: enumeration GY 2008-11-27 10:34:36.954221 nusoap_xmlschema: enumeration HT 2008-11-27 10:34:36.954366 nusoap_xmlschema: enumeration HM 2008-11-27 10:34:36.954512 nusoap_xmlschema: enumeration VA 2008-11-27 10:34:36.954659 nusoap_xmlschema: enumeration HN 2008-11-27 10:34:36.954806 nusoap_xmlschema: enumeration HK 2008-11-27 10:34:36.954952 nusoap_xmlschema: enumeration HU 2008-11-27 10:34:36.955097 nusoap_xmlschema: enumeration IS 2008-11-27 10:34:36.955242 nusoap_xmlschema: enumeration IN 2008-11-27 10:34:36.955417 nusoap_xmlschema: enumeration ID 2008-11-27 10:34:36.955564 nusoap_xmlschema: enumeration IR 2008-11-27 10:34:36.955696 nusoap_xmlschema: enumeration IQ 2008-11-27 10:34:36.955829 nusoap_xmlschema: enumeration IE 2008-11-27 10:34:36.955975 nusoap_xmlschema: enumeration IM 2008-11-27 10:34:36.956107 nusoap_xmlschema: enumeration IL 2008-11-27 10:34:36.956238 nusoap_xmlschema: enumeration IT 2008-11-27 10:34:36.956368 nusoap_xmlschema: enumeration JM 2008-11-27 10:34:36.956499 nusoap_xmlschema: enumeration JP 2008-11-27 10:34:36.956631 nusoap_xmlschema: enumeration JE 2008-11-27 10:34:36.956761 nusoap_xmlschema: enumeration JO 2008-11-27 10:34:36.956894 nusoap_xmlschema: enumeration KZ 2008-11-27 10:34:36.957026 nusoap_xmlschema: enumeration KE 2008-11-27 10:34:36.957156 nusoap_xmlschema: enumeration KI 2008-11-27 10:34:36.957287 nusoap_xmlschema: enumeration KP 2008-11-27 10:34:36.957418 nusoap_xmlschema: enumeration KR 2008-11-27 10:34:36.957548 nusoap_xmlschema: enumeration KW 2008-11-27 10:34:36.957680 nusoap_xmlschema: enumeration KG 2008-11-27 10:34:36.957811 nusoap_xmlschema: enumeration LA 2008-11-27 10:34:36.957941 nusoap_xmlschema: enumeration LV 2008-11-27 10:34:36.958073 nusoap_xmlschema: enumeration LB 2008-11-27 10:34:36.958203 nusoap_xmlschema: enumeration LS 2008-11-27 10:34:36.958334 nusoap_xmlschema: enumeration LR 2008-11-27 10:34:36.958465 nusoap_xmlschema: enumeration LY 2008-11-27 10:34:36.958597 nusoap_xmlschema: enumeration LI 2008-11-27 10:34:36.958726 nusoap_xmlschema: enumeration LT 2008-11-27 10:34:36.958857 nusoap_xmlschema: enumeration LU 2008-11-27 10:34:36.958993 nusoap_xmlschema: enumeration MO 2008-11-27 10:34:36.959123 nusoap_xmlschema: enumeration MK 2008-11-27 10:34:36.959255 nusoap_xmlschema: enumeration MG 2008-11-27 10:34:36.959386 nusoap_xmlschema: enumeration MW 2008-11-27 10:34:36.959518 nusoap_xmlschema: enumeration MY 2008-11-27 10:34:36.959649 nusoap_xmlschema: enumeration MV 2008-11-27 10:34:36.959778 nusoap_xmlschema: enumeration ML 2008-11-27 10:34:36.959909 nusoap_xmlschema: enumeration MT 2008-11-27 10:34:36.960040 nusoap_xmlschema: enumeration MH 2008-11-27 10:34:36.960172 nusoap_xmlschema: enumeration MQ 2008-11-27 10:34:36.960324 nusoap_xmlschema: enumeration MR 2008-11-27 10:34:36.960454 nusoap_xmlschema: enumeration MU 2008-11-27 10:34:36.960584 nusoap_xmlschema: enumeration YT 2008-11-27 10:34:36.960715 nusoap_xmlschema: enumeration MX 2008-11-27 10:34:36.960845 nusoap_xmlschema: enumeration FM 2008-11-27 10:34:36.960977 nusoap_xmlschema: enumeration MD 2008-11-27 10:34:36.961107 nusoap_xmlschema: enumeration MC 2008-11-27 10:34:36.961237 nusoap_xmlschema: enumeration MN 2008-11-27 10:34:36.961369 nusoap_xmlschema: enumeration ME 2008-11-27 10:34:36.961500 nusoap_xmlschema: enumeration MS 2008-11-27 10:34:36.961631 nusoap_xmlschema: enumeration MA 2008-11-27 10:34:36.961761 nusoap_xmlschema: enumeration MZ 2008-11-27 10:34:36.961891 nusoap_xmlschema: enumeration MM 2008-11-27 10:34:36.962021 nusoap_xmlschema: enumeration NA 2008-11-27 10:34:36.962154 nusoap_xmlschema: enumeration NR 2008-11-27 10:34:36.962285 nusoap_xmlschema: enumeration NP 2008-11-27 10:34:36.962416 nusoap_xmlschema: enumeration NL 2008-11-27 10:34:36.962547 nusoap_xmlschema: enumeration AN 2008-11-27 10:34:36.962678 nusoap_xmlschema: enumeration NC 2008-11-27 10:34:36.962809 nusoap_xmlschema: enumeration NZ 2008-11-27 10:34:36.962941 nusoap_xmlschema: enumeration NI 2008-11-27 10:34:36.963070 nusoap_xmlschema: enumeration NE 2008-11-27 10:34:36.963291 nusoap_xmlschema: enumeration NG 2008-11-27 10:34:36.963429 nusoap_xmlschema: enumeration NU 2008-11-27 10:34:36.963561 nusoap_xmlschema: enumeration NF 2008-11-27 10:34:36.963692 nusoap_xmlschema: enumeration MP 2008-11-27 10:34:36.963825 nusoap_xmlschema: enumeration NO 2008-11-27 10:34:36.963956 nusoap_xmlschema: enumeration OM 2008-11-27 10:34:36.964092 nusoap_xmlschema: enumeration PK 2008-11-27 10:34:36.964224 nusoap_xmlschema: enumeration PW 2008-11-27 10:34:36.964354 nusoap_xmlschema: enumeration PS 2008-11-27 10:34:36.964485 nusoap_xmlschema: enumeration PA 2008-11-27 10:34:36.964622 nusoap_xmlschema: enumeration PG 2008-11-27 10:34:36.964752 nusoap_xmlschema: enumeration PY 2008-11-27 10:34:36.964883 nusoap_xmlschema: enumeration PE 2008-11-27 10:34:36.965014 nusoap_xmlschema: enumeration PH 2008-11-27 10:34:36.965149 nusoap_xmlschema: enumeration PN 2008-11-27 10:34:36.965279 nusoap_xmlschema: enumeration PL 2008-11-27 10:34:36.965409 nusoap_xmlschema: enumeration PT 2008-11-27 10:34:36.965539 nusoap_xmlschema: enumeration PR 2008-11-27 10:34:36.965669 nusoap_xmlschema: enumeration QA 2008-11-27 10:34:36.965799 nusoap_xmlschema: enumeration RE 2008-11-27 10:34:36.965935 nusoap_xmlschema: enumeration RO 2008-11-27 10:34:36.966119 nusoap_xmlschema: enumeration RU 2008-11-27 10:34:36.966257 nusoap_xmlschema: enumeration RW 2008-11-27 10:34:36.966389 nusoap_xmlschema: enumeration BL 2008-11-27 10:34:36.966522 nusoap_xmlschema: enumeration SH 2008-11-27 10:34:36.966653 nusoap_xmlschema: enumeration KN 2008-11-27 10:34:36.966785 nusoap_xmlschema: enumeration LC 2008-11-27 10:34:36.966916 nusoap_xmlschema: enumeration MF 2008-11-27 10:34:36.967048 nusoap_xmlschema: enumeration PM 2008-11-27 10:34:36.967179 nusoap_xmlschema: enumeration VC 2008-11-27 10:34:36.967352 nusoap_xmlschema: enumeration WS 2008-11-27 10:34:36.967485 nusoap_xmlschema: enumeration SM 2008-11-27 10:34:36.967832 nusoap_xmlschema: enumeration ST 2008-11-27 10:34:36.968127 nusoap_xmlschema: enumeration SA 2008-11-27 10:34:36.968261 nusoap_xmlschema: enumeration SN 2008-11-27 10:34:36.968393 nusoap_xmlschema: enumeration RS 2008-11-27 10:34:36.968525 nusoap_xmlschema: enumeration SC 2008-11-27 10:34:36.968656 nusoap_xmlschema: enumeration SL 2008-11-27 10:34:36.968787 nusoap_xmlschema: enumeration SG 2008-11-27 10:34:36.968918 nusoap_xmlschema: enumeration SK 2008-11-27 10:34:36.969050 nusoap_xmlschema: enumeration SI 2008-11-27 10:34:36.969181 nusoap_xmlschema: enumeration SB 2008-11-27 10:34:36.969312 nusoap_xmlschema: enumeration SO 2008-11-27 10:34:36.969443 nusoap_xmlschema: enumeration ZA 2008-11-27 10:34:36.969575 nusoap_xmlschema: enumeration GS 2008-11-27 10:34:36.969706 nusoap_xmlschema: enumeration ES 2008-11-27 10:34:36.970052 nusoap_xmlschema: enumeration LK 2008-11-27 10:34:36.970186 nusoap_xmlschema: enumeration SD 2008-11-27 10:34:36.970316 nusoap_xmlschema: enumeration SR 2008-11-27 10:34:36.970448 nusoap_xmlschema: enumeration SJ 2008-11-27 10:34:36.970579 nusoap_xmlschema: enumeration SZ 2008-11-27 10:34:36.970710 nusoap_xmlschema: enumeration SE 2008-11-27 10:34:36.970841 nusoap_xmlschema: enumeration CH 2008-11-27 10:34:36.971076 nusoap_xmlschema: enumeration SY 2008-11-27 10:34:36.971212 nusoap_xmlschema: enumeration TW 2008-11-27 10:34:36.971343 nusoap_xmlschema: enumeration TJ 2008-11-27 10:34:36.971475 nusoap_xmlschema: enumeration TZ 2008-11-27 10:34:36.971635 nusoap_xmlschema: enumeration TH 2008-11-27 10:34:36.971793 nusoap_xmlschema: enumeration TL 2008-11-27 10:34:36.971926 nusoap_xmlschema: enumeration TG 2008-11-27 10:34:36.972071 nusoap_xmlschema: enumeration TK 2008-11-27 10:34:36.972234 nusoap_xmlschema: enumeration TO 2008-11-27 10:34:36.972370 nusoap_xmlschema: enumeration TT 2008-11-27 10:34:36.972530 nusoap_xmlschema: enumeration TN 2008-11-27 10:34:36.972663 nusoap_xmlschema: enumeration TR 2008-11-27 10:34:36.972792 nusoap_xmlschema: enumeration TM 2008-11-27 10:34:36.972984 nusoap_xmlschema: enumeration TC 2008-11-27 10:34:36.973117 nusoap_xmlschema: enumeration TV 2008-11-27 10:34:36.973248 nusoap_xmlschema: enumeration UG 2008-11-27 10:34:36.973404 nusoap_xmlschema: enumeration UA 2008-11-27 10:34:36.973536 nusoap_xmlschema: enumeration AE 2008-11-27 10:34:36.973667 nusoap_xmlschema: enumeration GB 2008-11-27 10:34:36.973822 nusoap_xmlschema: enumeration US 2008-11-27 10:34:36.973961 nusoap_xmlschema: enumeration UM 2008-11-27 10:34:36.974092 nusoap_xmlschema: enumeration UY 2008-11-27 10:34:36.974246 nusoap_xmlschema: enumeration UZ 2008-11-27 10:34:36.974376 nusoap_xmlschema: enumeration VU 2008-11-27 10:34:36.974506 nusoap_xmlschema: enumeration VE 2008-11-27 10:34:36.974636 nusoap_xmlschema: enumeration VN 2008-11-27 10:34:36.974779 nusoap_xmlschema: enumeration VG 2008-11-27 10:34:36.974916 nusoap_xmlschema: enumeration VI 2008-11-27 10:34:36.975047 nusoap_xmlschema: enumeration WF 2008-11-27 10:34:36.975177 nusoap_xmlschema: enumeration EH 2008-11-27 10:34:36.975308 nusoap_xmlschema: enumeration YE 2008-11-27 10:34:36.975441 nusoap_xmlschema: enumeration ZM 2008-11-27 10:34:36.975572 nusoap_xmlschema: enumeration ZW 2008-11-27 10:34:36.975723 nusoap_xmlschema: done processing simpleType ECountry 2008-11-27 10:34:36.975853 nusoap_xmlschema: processing simpleType for name EGender 2008-11-27 10:34:36.975986 nusoap_xmlschema: restriction [ Lien ] 2008-11-27 10:34:36.976096 nusoap_xmlschema: enumeration N 2008-11-27 10:34:36.976228 nusoap_xmlschema: enumeration Mr 2008-11-27 10:34:36.976361 nusoap_xmlschema: enumeration Mme 2008-11-27 10:34:36.976492 nusoap_xmlschema: enumeration Miss 2008-11-27 10:34:36.976641 nusoap_xmlschema: done processing simpleType EGender 2008-11-27 10:34:36.976743 nusoap_xmlschema: processing simpleType for name ELanguage 2008-11-27 10:34:36.976873 nusoap_xmlschema: restriction [ Lien ] 2008-11-27 10:34:36.977032 nusoap_xmlschema: enumeration N 2008-11-27 10:34:36.977164 nusoap_xmlschema: enumeration Fr 2008-11-27 10:34:36.977294 nusoap_xmlschema: enumeration En 2008-11-27 10:34:36.977464 nusoap_xmlschema: enumeration Es 2008-11-27 10:34:36.977657 nusoap_xmlschema: done processing simpleType ELanguage 2008-11-27 10:34:36.977805 nusoap_xmlschema: processing untyped element LinkUserToApplication type _LinkUserToApplication_ContainedType 2008-11-27 10:34:36.977853 nusoap_xmlschema: add element LinkUserToApplication to elements array 2008-11-27 10:34:36.978019 nusoap_xmlschema: processing unnamed complexType for element LinkUserToApplication named _LinkUserToApplication_ContainedType 2008-11-27 10:34:36.978293 nusoap_xmlschema: processing typed element loginApplication of type [ Lien ] 2008-11-27 10:34:36.978346 nusoap_xmlschema: add element loginApplication to complexType _LinkUserToApplication_ContainedType 2008-11-27 10:34:36.978471 nusoap_xmlschema: done processing element loginApplication 2008-11-27 10:34:36.978620 nusoap_xmlschema: processing typed element passwordApplication of type [ Lien ] 2008-11-27 10:34:36.978671 nusoap_xmlschema: add element passwordApplication to complexType _LinkUserToApplication_ContainedType 2008-11-27 10:34:36.978743 nusoap_xmlschema: done processing element passwordApplication 2008-11-27 10:34:36.978892 nusoap_xmlschema: processing typed element suid of type [ Lien ] 2008-11-27 10:34:36.978942 nusoap_xmlschema: add element suid to complexType _LinkUserToApplication_ContainedType 2008-11-27 10:34:36.979035 nusoap_xmlschema: done processing element suid 2008-11-27 10:34:36.979161 nusoap_xmlschema: done processing complexType _LinkUserToApplication_ContainedType 2008-11-27 10:34:36.979241 nusoap_xmlschema: done processing element LinkUserToApplication 2008-11-27 10:34:36.979356 nusoap_xmlschema: processing untyped element LinkUserToApplicationResponse type _LinkUserToApplicationResponse_ContainedType 2008-11-27 10:34:36.979401 nusoap_xmlschema: add element LinkUserToApplicationResponse to elements array 2008-11-27 10:34:36.979507 nusoap_xmlschema: processing unnamed complexType for element LinkUserToApplicationResponse named _LinkUserToApplicationResponse_ContainedType 2008-11-27 10:34:36.979724 nusoap_xmlschema: processing typed element LinkUserToApplicationResult of type [ Lien ] 2008-11-27 10:34:36.979775 nusoap_xmlschema: add element LinkUserToApplicationResult to complexType _LinkUserToApplicationResponse_ContainedType 2008-11-27 10:34:36.979848 nusoap_xmlschema: done processing element LinkUserToApplicationResult 2008-11-27 10:34:36.979965 nusoap_xmlschema: done processing complexType _LinkUserToApplicationResponse_ContainedType 2008-11-27 10:34:36.980044 nusoap_xmlschema: done processing element LinkUserToApplicationResponse 2008-11-27 10:34:36.980124 wsdl: Parsing WSDL schema done 2008-11-27 10:34:36.980353 wsdl: msg TestSoapIn: found part (with element) parameters: parameters, [ Lien ] 2008-11-27 10:34:36.980579 wsdl: msg TestSoapOut: found part (with element) parameters: parameters, [ Lien ] 2008-11-27 10:34:36.980822 wsdl: msg GetAccountSoapIn: found part (with element) parameters: parameters, [ Lien ] 2008-11-27 10:34:36.981048 wsdl: msg GetAccountSoapOut: found part (with element) parameters: parameters, [ Lien ] 2008-11-27 10:34:36.981274 wsdl: msg LinkUserToApplicationSoapIn: found part (with element) parameters: parameters, [ Lien ] 2008-11-27 10:34:36.981500 wsdl: msg LinkUserToApplicationSoapOut: found part (with element) parameters: parameters, [ Lien ] 2008-11-27 10:34:36.981699 wsdl: portType ServiceSoap operation: Test 2008-11-27 10:34:36.982004 wsdl: portType ServiceSoap operation: GetAccount 2008-11-27 10:34:36.982303 wsdl: portType ServiceSoap operation: LinkUserToApplication 2008-11-27 10:34:36.982666 wsdl: current binding: ServiceSoap of portType: [ Lien ] 2008-11-27 10:34:36.982852 wsdl: current binding operation: Test 2008-11-27 10:34:36.983360 wsdl: current binding operation: GetAccount 2008-11-27 10:34:36.983863 wsdl: current binding operation: LinkUserToApplication 2008-11-27 10:34:36.984440 wsdl: current binding: ServiceSoap12 of portType: [ Lien ] 2008-11-27 10:34:36.984626 wsdl: current binding operation: Test 2008-11-27 10:34:36.985130 wsdl: current binding operation: GetAccount 2008-11-27 10:34:36.985633 wsdl: current binding operation: LinkUserToApplication 2008-11-27 10:34:36.986166 wsdl: current service: Service 2008-11-27 10:34:36.986290 wsdl: current port: ServiceSoap 2008-11-27 10:34:36.986521 wsdl: current port: ServiceSoap12 2008-11-27 10:34:36.986732 wsdl: Parsing WSDL done 2008-11-27 10:34:36.986818 wsdl: post-parse data gathering for Test 2008-11-27 10:34:36.986905 wsdl: post-parse data gathering for GetAccount 2008-11-27 10:34:36.986980 wsdl: post-parse data gathering for LinkUserToApplication 2008-11-27 10:34:36.987061 wsdl: post-parse data gathering for Test 2008-11-27 10:34:36.987136 wsdl: post-parse data gathering for GetAccount 2008-11-27 10:34:36.987212 wsdl: post-parse data gathering for LinkUserToApplication 2008-11-27 10:34:36.987404 nusoap_client: checkWSDL 2008-11-27 10:34:36.987467 nusoap_client: got 3 operations from wsdl [ Lien ] for binding type soap 2008-11-27 10:34:36.987527 nusoap_client: found operation opData=array(9) { ["name"]=> string(10) "GetAccount" ["binding"]=> string(11) "ServiceSoap" ["endpoint"]=> string(59) "http://localhost:4660/WebServicePHP4/UCAWebServicePHP4.asmx" ["soapAction"]=> string(29) "http://tempuri.org/GetAccount" ["style"]=> string(8) "document" ["input"]=> array(3) { ["use"]=> string(7) "literal" ["message"]=> string(16) "GetAccountSoapIn" ["parts"]=> array(1) { ["parameters"]=> string(31) "http://tempuri.org/:GetAccount^" } } ["output"]=> array(3) { ["use"]=> string(7) "literal" ["message"]=> string(17) "GetAccountSoapOut" ["parts"]=> array(1) { ["parameters"]=> string(39) "http://tempuri.org/:GetAccountResponse^" } } ["transport"]=> string(36) "http://schemas.xmlsoap.org/soap/http" ["documentation"]=> string(0) "" } 2008-11-27 10:34:36.987688 nusoap_client: serializing param array for WSDL operation GetAccount 2008-11-27 10:34:36.987732 wsdl: in serializeRPCParameters: operation=GetAccount, direction=input, XMLSchemaVersion= [ Lien ], bindingType=soap parameters=array(1) { ["parameters"]=> array(3) { ["loginApplication"]=> string(4) "MyF2" ["passwordApplication"]=> string(6) "azerty" ["suid"]=> string(10) "7270187811" } } 2008-11-27 10:34:36.987813 wsdl: in serializeRPCParameters: opData: array(9) { ["name"]=> string(10) "GetAccount" ["binding"]=> string(11) "ServiceSoap" ["endpoint"]=> string(59) "http://localhost:4660/WebServicePHP4/UCAWebServicePHP4.asmx" ["soapAction"]=> string(29) "http://tempuri.org/GetAccount" ["style"]=> string(8) "document" ["input"]=> array(3) { ["use"]=> string(7) "literal" ["message"]=> string(16) "GetAccountSoapIn" ["parts"]=> array(1) { ["parameters"]=> string(31) "http://tempuri.org/:GetAccount^" } } ["output"]=> array(3) { ["use"]=> string(7) "literal" ["message"]=> string(17) "GetAccountSoapOut" ["parts"]=> array(1) { ["parameters"]=> string(39) "http://tempuri.org/:GetAccountResponse^" } } ["transport"]=> string(36) "http://schemas.xmlsoap.org/soap/http" ["documentation"]=> string(0) "" } 2008-11-27 10:34:36.987909 wsdl: have 1 part(s) to serialize using document/literal 2008-11-27 10:34:36.987957 wsdl: have 1 parameter(s) provided as arrayStruct to serialize 2008-11-27 10:34:36.987994 wsdl: check whether the caller has wrapped the parameters 2008-11-27 10:34:36.988035 wsdl: serializing part parameters of type [ Lien ] 2008-11-27 10:34:36.988073 wsdl: calling serializeType w/named param 2008-11-27 10:34:36.988117 wsdl: in serializeType: name=parameters, type= [ Lien ], use=literal, encodingStyle=, unqualified=qualified value=array(3) { ["loginApplication"]=> string(4) "MyF2" ["passwordApplication"]=> string(6) "azerty" ["suid"]=> string(10) "7270187811" } 2008-11-27 10:34:36.988182 wsdl: in serializeType: got a prefixed type: GetAccount^, [ Lien ] 2008-11-27 10:34:36.988228 wsdl: in getTypeDef: type=GetAccount^, ns= [ Lien ] 2008-11-27 10:34:36.988270 wsdl: in getTypeDef: have schema for namespace [ Lien ] 2008-11-27 10:34:36.988550 wsdl: in serializeType: found typeDef typeDef=array(6) { ["name"]=> string(10) "GetAccount" ["form"]=> string(9) "qualified" ["type"]=> string(45) "http://tempuri.org/:_GetAccount_ContainedType" ["typeClass"]=> string(7) "element" ["phpType"]=> string(6) "struct" ["elements"]=> array(3) { ["loginApplication"]=> array(5) { ["minOccurs"]=> string(1) "0" ["maxOccurs"]=> string(1) "1" ["name"]=> string(16) "loginApplication" ["type"]=> string(39) "http://www.w3.org/2001/XMLSchema:string" ["form"]=> string(9) "qualified" } ["passwordApplication"]=> array(5) { ["minOccurs"]=> string(1) "0" ["maxOccurs"]=> string(1) "1" ["name"]=> string(19) "passwordApplication" ["type"]=> string(39) "http://www.w3.org/2001/XMLSchema:string" ["form"]=> string(9) "qualified" } ["suid"]=> array(5) { ["minOccurs"]=> string(1) "0" ["maxOccurs"]=> string(1) "1" ["name"]=> string(4) "suid" ["type"]=> string(39) "http://www.w3.org/2001/XMLSchema:string" ["form"]=> string(9) "qualified" } } } 2008-11-27 10:34:36.988662 wsdl: in serializeType: uqType: GetAccount, ns: [ Lien ], phptype: struct, arrayType: 2008-11-27 10:34:36.988713 wsdl: no attributes to serialize for XML Schema type [ Lien ] 2008-11-27 10:34:36.988767 wsdl: in serializeComplexTypeElements, serialize elements for XML Schema type [ Lien ] 2008-11-27 10:34:36.988830 wsdl: in serializeType: name=loginApplication, type= [ Lien ], use=literal, encodingStyle=, unqualified=qualified value=string(4) "MyF2" 2008-11-27 10:34:36.988888 wsdl: in serializeType: got a prefixed type: string, [ Lien ] 2008-11-27 10:34:36.988928 wsdl: in serializeType: type namespace indicates XML Schema or SOAP Encoding type 2008-11-27 10:34:36.988993 wsdl: in getTypeDef: type=string, ns= [ Lien ] 2008-11-27 10:34:36.989038 wsdl: in getTypeDef: do not have schema for namespace [ Lien ] 2008-11-27 10:34:36.989080 wsdl: in serializeType: returning: MyF2 2008-11-27 10:34:36.989136 wsdl: in serializeType: name=passwordApplication, type= [ Lien ], use=literal, encodingStyle=, unqualified=qualified value=string(6) "azerty" 2008-11-27 10:34:36.989193 wsdl: in serializeType: got a prefixed type: string, [ Lien ] 2008-11-27 10:34:36.989233 wsdl: in serializeType: type namespace indicates XML Schema or SOAP Encoding type 2008-11-27 10:34:36.989287 wsdl: in getTypeDef: type=string, ns= [ Lien ] 2008-11-27 10:34:36.989333 wsdl: in getTypeDef: do not have schema for namespace [ Lien ] 2008-11-27 10:34:36.989377 wsdl: in serializeType: returning: azerty 2008-11-27 10:34:36.989433 wsdl: in serializeType: name=suid, type= [ Lien ], use=literal, encodingStyle=, unqualified=qualified value=string(10) "7270187811" 2008-11-27 10:34:36.989491 wsdl: in serializeType: got a prefixed type: string, [ Lien ] 2008-11-27 10:34:36.989531 wsdl: in serializeType: type namespace indicates XML Schema or SOAP Encoding type 2008-11-27 10:34:36.989585 wsdl: in getTypeDef: type=string, ns= [ Lien ] 2008-11-27 10:34:36.989631 wsdl: in getTypeDef: do not have schema for namespace [ Lien ] 2008-11-27 10:34:36.989672 wsdl: in serializeType: returning: 7270187811 2008-11-27 10:34:36.989719 wsdl: in serializeType: returning: MyF2azerty7270187811 2008-11-27 10:34:36.989759 wsdl: serializeRPCParameters returning: MyF2azerty7270187811 2008-11-27 10:34:36.989849 nusoap_client: In serializeEnvelope length=166 body (max 1000 characters)=MyF2azerty7270187811 style=document use=literal encodingStyle= 2008-11-27 10:34:36.989885 nusoap_client: headers: bool(false) 2008-11-27 10:34:36.989929 nusoap_client: namespaces: array(0) { } 2008-11-27 10:34:36.990010 nusoap_client: endpoint= [ Lien ], soapAction= [ Lien ], namespace=, style=document, use=literal, encodingStyle= 2008-11-27 10:34:36.990050 nusoap_client: SOAP message length=496 contents (max 1000 bytes)=MyF2azerty7270187811 2008-11-27 10:34:36.990106 nusoap_client: transporting via HTTP 2008-11-27 10:34:36.990584 nusoap_client: sending message, length=496 2008-11-27 10:34:36.990164 soap_transport_http: ctor url= [ Lien ] use_curl= curl_options: array(0) { } 2008-11-27 10:34:36.990218 soap_transport_http: parsed URL scheme = http 2008-11-27 10:34:36.990255 soap_transport_http: parsed URL host = localhost 2008-11-27 10:34:36.990292 soap_transport_http: parsed URL port = 4660 2008-11-27 10:34:36.990328 soap_transport_http: parsed URL path = /WebServicePHP4/UCAWebServicePHP4.asmx 2008-11-27 10:34:36.990372 soap_transport_http: set header Host: localhost:4660 2008-11-27 10:34:36.990431 soap_transport_http: set header User-Agent: NuSOAP/0.7.3 (1.114) 2008-11-27 10:34:36.990500 soap_transport_http: set header Content-Type: text/xml; charset=ISO-8859-1 2008-11-27 10:34:36.990545 soap_transport_http: set header SOAPAction: "http://tempuri.org/GetAccount" 2008-11-27 10:34:36.990632 soap_transport_http: entered send() with data of length: 496 2008-11-27 10:34:36.990677 soap_transport_http: connect connection_timeout 0, response_timeout 30, scheme http, host localhost, port 4660 2008-11-27 10:34:36.990723 soap_transport_http: calling fsockopen with host localhost connection_timeout 0 2008-11-27 10:34:37.001222 soap_transport_http: set response timeout to 30 2008-11-27 10:34:37.001276 soap_transport_http: socket connected 2008-11-27 10:34:37.001343 soap_transport_http: set header Content-Length: 496 2008-11-27 10:34:37.001391 soap_transport_http: HTTP request: POST /WebServicePHP4/UCAWebServicePHP4.asmx HTTP/1.0 2008-11-27 10:34:37.001443 soap_transport_http: HTTP header: Host: localhost:4660 2008-11-27 10:34:37.001482 soap_transport_http: HTTP header: User-Agent: NuSOAP/0.7.3 (1.114) 2008-11-27 10:34:37.001520 soap_transport_http: HTTP header: Content-Type: text/xml; charset=ISO-8859-1 2008-11-27 10:34:37.001559 soap_transport_http: HTTP header: SOAPAction: "http://tempuri.org/GetAccount" 2008-11-27 10:34:37.001598 soap_transport_http: HTTP header: Content-Length: 496 2008-11-27 10:34:37.001666 soap_transport_http: wrote data to socket, length = 718 2008-11-27 10:34:47.372999 soap_transport_http: read line of 17 bytes: HTTP/1.1 200 OK 2008-11-27 10:34:47.373109 soap_transport_http: read line of 44 bytes: Server: ASP.NET Development Server/8.0.0.0 2008-11-27 10:34:47.373158 soap_transport_http: read line of 37 bytes: Date: Thu, 27 Nov 2008 09:34:47 GMT 2008-11-27 10:34:47.373224 soap_transport_http: read line of 29 bytes: X-AspNet-Version: 2.0.50727 2008-11-27 10:34:47.373277 soap_transport_http: read line of 35 bytes: Cache-Control: private, max-age=0 2008-11-27 10:34:47.373323 soap_transport_http: read line of 39 bytes: Content-Type: text/xml; charset=utf-8 2008-11-27 10:34:47.373369 soap_transport_http: read line of 22 bytes: Content-Length: 1432 2008-11-27 10:34:47.373415 soap_transport_http: read line of 19 bytes: Connection: Close 2008-11-27 10:34:47.373478 soap_transport_http: read line of 2 bytes: 2008-11-27 10:34:47.373569 soap_transport_http: found end of headers after length 244 2008-11-27 10:34:47.373697 soap_transport_http: want to read content of length 1432 2008-11-27 10:34:47.373798 soap_transport_http: read buffer of 1432 bytes 2008-11-27 10:34:47.373868 soap_transport_http: read to EOF 2008-11-27 10:34:47.373907 soap_transport_http: read body of length 1432 2008-11-27 10:34:47.373945 soap_transport_http: received a total of 1676 bytes of data from server 2008-11-27 10:34:47.374150 soap_transport_http: closed socket 2008-11-27 10:34:47.374217 soap_transport_http: No Content-Encoding header 2008-11-27 10:34:47.374264 soap_transport_http: end of send() 2008-11-27 10:34:47.374337 nusoap_client: got response, length=1432 type=text/xml; charset=utf-8 2008-11-27 10:34:47.374382 nusoap_client: Entering parseResponse() for data of length 1432 headers: array(7) { ["server"]=> string(34) "ASP.NET Development Server/8.0.0.0" ["date"]=> string(29) "Thu, 27 Nov 2008 09:34:47 GMT" ["x-aspnet-version"]=> string(9) "2.0.50727" ["cache-control"]=> string(18) "private, max-age=0" ["content-type"]=> string(23) "text/xml; charset=utf-8" ["content-length"]=> string(4) "1432" ["connection"]=> string(5) "Close" } 2008-11-27 10:34:47.374462 nusoap_client: Got response encoding: utf-8 2008-11-27 10:34:47.395950 nusoap_client: Use encoding: UTF-8 when creating nusoap_parser 2008-11-27 10:34:47.409746 nusoap_parser: Charset from HTTP Content-Type 'UTF-8' does not match encoding from XML declaration 'iso-8859-1' 2008-11-27 10:34:47.409853 nusoap_client: Error: Charset from HTTP Content-Type 'UTF-8' does not match encoding from XML declaration 'iso-8859-1'
|
|
J'espère avoir été assez clair, Si qq1 peut m'aider.............................
|
|
Cette discussion est classée dans : http, element, enumeration, xmlschema, nusoap
Répondre à ce message
Sujets en rapport avec ce message
HTTP 500 erreur [ par Toine ]
Salut à tous !j'ai essayé de faire marcher un site sur un serveur NT 4 avec le SP 4 et IIS 4 mais quand j'éssai d'y accéder depuis internet explorer (
HTTP 500 erreur interne au server [ par Toine ]
Salut à tous !j'ai essayé de faire marcher un site sur un serveur NT 4 avec le SP 4 et IIS 4 mais quand j'éssai d'y accéder depuis internet explorer (
erreur Response.Redirect [ par Arken ]
J'ai une erreur quand je fait un response.redirect la voici :The HTTP headers are already written to the client browser. Any HTTP header modifications
CDONTS et "HTTP 500 Erreur Interne de serveur" [ par Step ]
J'ai l'erreur suivante : "HTTP 500 Erreur Interne de serveur" lorsque je veux envoyer un mail avec CDONTS.Voici le code ASP : Set CDOMail = Server.Cre
cherche programmeur [ par jamal ]
bonjour à tous.je cherche une personne qui soit capable de de réaliser un petit module similaire à celui du site :http://www.expressimmo.com/les modul
cherche programmeur [ par jamal ]
bonjour à tous.je cherche une personne qui soit capable de de réaliser un petit module similaire à celui du site :http://www.expressimmo.com/les modul
Vends graveur [ par Graveur Saler ]
Graveur Philips CDD3610 à 190F frais de port comprisC.Boisseau
Vérifier un lien [ par Vanessa ]
j'ai un lien vers un fichier (http://server.com/fichier.truc) et j'aimerais savoir si le lien est toujours valide ...j'ai essayé ça :-----------------
Erreur d'en-tête [ par vero ]
Bonjour, L'erreur suivante m'aparet : Objet Response error 'ASP 0156 : 80004005' Erreur d'en-tête /maPages/admin01.asp, line 14 Les en-têtes HTTP
recherche partenaire [ par stpere ]
Bonjour a tous, je recherche une personne motivée pour m'aider a faire vivre le site http://www.nationale1.fr.stEn effet, je compte faire évoluer ce s
Livres en rapport
|
Derniers Blogs
[WP7] DYNAMICALLY CHANGE STARTUP PAGE[WP7] DYNAMICALLY CHANGE STARTUP PAGE par KooKiz
Let's say that you want to allow the user to customize the startup page of your application. You can easily change the startup page by editing the 'NavigationPage' attribute in the manifest file. But the manifest cannot be modified once the applicatio...
Cliquez pour lire la suite de l'article par KooKiz SESSION SILVERLIGHT 5 3D : SLIDES ET DEMOSSESSION SILVERLIGHT 5 3D : SLIDES ET DEMOS par Groc
Durant les techdays, j'ai eu le plaisir d'animer une session sur Silverlight 5 et la 3D avec Simon Ferquel. Comme promis, voici nos slides et mes démos (celles avec le viper BSG) ici et là. Pour mémoire, les démos utilisent toutes le viper BSG...
Cliquez pour lire la suite de l'article par Groc [TECHDAYS 2012] SESSION WEBMATRIX 2 : LE COUTEAU SUISSE GRATUIT POUR VOS DéVELOPPEMENTS WEB - SLIDES[TECHDAYS 2012] SESSION WEBMATRIX 2 : LE COUTEAU SUISSE GRATUIT POUR VOS DéVELOPPEMENTS WEB - SLIDES par gpommier
Suite à la session que j'ai présenté sur WebMatrix 2, vous pouvez trouver les slides ici, ainsi que les démos en packages nuget : démos1 et démos2 J'en profite pour remercier chaleureusement tous ceux qui sont venus très nombreux à cette sess...
Cliquez pour lire la suite de l'article par gpommier [SHAREPOINT] LES SESSIONS TECHDAYS 2012.[SHAREPOINT] LES SESSIONS TECHDAYS 2012. par Patrick Guimonet
Voici donc pour ceux qui n'ont pas pu venir, ou ceux qui n'ont pas pu toutes les suivre la liste des sessions SharePoint aux TechDays 2012, que je mettrais à jour dès que les liens des vidéo seront disponibles. Ou ici : http...
Cliquez pour lire la suite de l'article par Patrick Guimonet TECHDAYS PARIS 2012 : SESSION PLEINIèRE JOUR 3TECHDAYS PARIS 2012 : SESSION PLEINIèRE JOUR 3 par ROMELARD Fabrice
Speaker: Bernard Ourghanlian Cette session est comme chaque jour transmise en live par BrainSonic, et j'ai donc suivi cette troisième pleinière par ce moyen sur mon iPad . Elle est dédiée comme chaque année à la mise en perspective de l'é...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice
Forum
RE : FORMULAIRERE : FORMULAIRE par ap24dp
Cliquez pour lire la suite par ap24dp RE : FORMULAIRERE : FORMULAIRE par Megafan
Cliquez pour lire la suite par Megafan FORMULAIREFORMULAIRE par ap24dp
Cliquez pour lire la suite par ap24dp
Logiciels
Tribler (2012)TRIBLER (2012)Tribler est un client pair à pair (P2P/Peer-to-Peer) open source avec la capacité de regarder des... Cliquez pour télécharger Tribler OneSwarm (2012)ONESWARM (2012)Le peer-to-peer qui protège votre vie privée, c'est OneSwarm.
Ce logiciel de peer-to-peer crypté... Cliquez pour télécharger OneSwarm PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V8.4)PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V8.4)PONAMEDIA TV DEVIENS HELLLOOO FLASH
LA TV SUR VOTRE ORDINATEUR.
Toute une plateforme Multi... Cliquez pour télécharger PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO Academy System (17.2.1.0)ACADEMY SYSTEM (17.2.1.0)Logiciel de gestion des établissements.
- élèves/étudiants (inscription, dossier, absence...)
-... Cliquez pour télécharger Academy System Easy-Planning (1.0.0.1)EASY-PLANNING (1.0.0.1)Basé sur les mêmes principes que MyPlanning, Easy-Planning permet de créer des plannings sous la ... Cliquez pour télécharger Easy-Planning
|