Hi there,
I got a problem, I have used wsdl2h to generate the C files of my client, but when I call a function I get this message :
SOAP 1.1 fault: SOAP-ENV:Client [no subcode]
"Validation constraint violation: data type mismatch soapenc:Array in element <multiRef>"
Detail: [no detail]
It means that the request is not good, but I don't understand why ... here is my code :
[code=c]
struct soap soap;
char* login;
char* password;
login="blabla";
password="blabl a";
soap_init(&soap );
struct ns4__getUserRes ponse reponse;
soap_call_ns4__ getUser(&soap,
NULL,
NULL,
login,
password,
&reponse
);
[/code]
Has somebody ever had this ?
(please excuse my english)
Nico
I got a problem, I have used wsdl2h to generate the C files of my client, but when I call a function I get this message :
SOAP 1.1 fault: SOAP-ENV:Client [no subcode]
"Validation constraint violation: data type mismatch soapenc:Array in element <multiRef>"
Detail: [no detail]
It means that the request is not good, but I don't understand why ... here is my code :
[code=c]
struct soap soap;
char* login;
char* password;
login="blabla";
password="blabl a";
soap_init(&soap );
struct ns4__getUserRes ponse reponse;
soap_call_ns4__ getUser(&soap,
NULL,
NULL,
login,
password,
&reponse
);
[/code]
Has somebody ever had this ?
(please excuse my english)
Nico
Comment