[SOAP] Utilisation de SOAPUI
	
	
		Bonjour à tous,
j'ai une petite question sur l'utilisation du logiciel Soapui mais tout d'abord voici mon appel par ce même logiciel.
	Citation:
	
		
		
			<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:myselfcare">
   <soapenv:Header/>
   <soapenv:Body>
      <urn:ExecuteCommand soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
         <Param xsi:type="xsd:string">CreateUser(array('lastname' => 'Patoulachi', 'firstname' => 'Robert'), 'member')</Param>
      </urn:ExecuteCommand>
   </soapenv:Body>
</soapenv:Envelope>
			
		
	
 Bien sur, ce qu'il y a ci-dessus ne fonctionne pas. J'aimerai savoir comment je peux appeler la méthode CreateUser (déclarée en PHP) avec comme paramètre : un tableau associatif.
Merci par avance !