Hi !

I just started to play with your new extension as soon as I saw your mail
this morning on PHP-DEV !

It's really a good job and I am very impatient to play with the final
release ...

here are a few suggestions/bugs/requests to help you make this ext really
great :

- nice to have : a proxy set up for soap requests
something like :

$client = new SoapObject("uri", "urn");
$client->setProxy("proxyUri", 8080);
...

- bug : but this bug way come from PHP and not from the ext ...
this deals with case-sensitivity of function names !
this reminds me a quite long thread on PHP-DEV about that a few weeks ago !
:)

$myObject = new
SoapObject("http://www.localhost.com/PhpSoapToolkit/samples/object-server-sr
c.php", "urn:Object");
echo $myObject->getData();

the method name getData is used to write the XML request ...
but as function names are not case sensitive, this gives the following XML
tag :
<getdata xmlns="urn:Object" ...

and then this doesn't work when you try to call a SOAP server that is not
writen in PHP !
because in SOAP, method names are case-sensitive !

- important feature : the ability to pass named parameters ...
insteed of having parameters called param0, param1, param2, ... it would be
very usefull to have the ability to specify the name of the parameter.
once again, this would allow to be SOAP-compliant with other systems not
running PHP.

that's all for the moment :)

once again, good job !



 
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to