[wsdl2php-devel] wsdl help
Status: Alpha
Brought to you by:
cod3gen
|
From: Dusty D. <wsd...@ma...> - 2005-10-27 19:50:46
|
Hello,
I'm brand new to the list. I wanted to send a message to say hi and see
if this list is active and could help. I'm currently trying to use php5
soap to send messages to a Cisco SESM API. I'm having trouble with
figuring out how to form an array to pass arguments to a complextype.
I'm very new to soap, so I'm not sure all the correct wording.
I have run wsdl2php against my wsdl file that I was provided and at first
it failed on line 312 with the following.
Fatal error: Only variables can be passed by reference in
/usr/local/lib/php/pear/wsdl2php.php on line 312
I suspect this might be something in the wsdl file, but I was able to get
it to run by changing that line from
$param = array_pop(explode(' ', $param))
to
array_pop ($param = explode(' ', $param));
After, all said and done and I have my classes, I'm still having issues
with getting php to submit the correct type of XML messages.
I understand I haven't given enough info to help yet.
I was wondering if anyone would be willing to take a look at the wsdl file
and perhaps help me find out what needs to be fixed in that file, or maybe
what I can do with wsdl2php to work around it. If so, great, I'll send
over everything I've got.
Thanks and have a great day.
Dusty Doris
|