phpsoaptoolkit-development Mailing List for PHP Soap (Page 7)
Status: Alpha
Brought to you by:
rodif_bl
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
(21) |
May
(55) |
Jun
(6) |
Jul
(3) |
Aug
(1) |
Sep
(1) |
Oct
(3) |
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2004 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
2006 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2008 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
(2) |
Jul
(2) |
Aug
(1) |
Sep
(7) |
Oct
(7) |
Nov
(26) |
Dec
(32) |
2009 |
Jan
(9) |
Feb
(13) |
Mar
(14) |
Apr
(20) |
May
(39) |
Jun
(21) |
Jul
(26) |
Aug
(9) |
Sep
|
Oct
|
Nov
|
Dec
(8) |
2010 |
Jan
(10) |
Feb
(9) |
Mar
|
Apr
|
May
(3) |
Jun
(3) |
Jul
|
Aug
(2) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
(1) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: Harald R. <har...@nm...> - 2002-04-29 18:15:20
|
hi brad, looks promising. if you intend to port it to php5 (one day ;) pease take a look at ext/rpc first which is intended to be a framework for exactly such extensions as the soap toolkit. harald "Brad Lafountain" <rod...@ya...> schrieb im Newsbeitrag news:<200...@we...>... > Hello all, > > http://phpsoaptoolkit.sourceforge.net/ > > I'd like to introduce you all to ext/soap. I started this project over > a year ago. I got into it very very heavily then summer came and it > got put on the back burner. With recent inquires on this board and > with more interest at my work. I picked the project back up. After > countless more hours. I feel it's in a alpha state. This state IS NOT > ready for production boxes. This release is more to help get more > feedback about the extension (new features / current > features) as well as get all the bugs outta it (im sure there are memory leaks > and segfaults learking all over). I have also have created a small website with > some documentation and samples on it, but not even close to enough. > > With that said, I am asking for interested people to help me test it, > document it and of course request features for it. > > I have 2 mailing lists for the project. > php...@li... > php...@li... > So join up and lets see how good of a product this can be. > > again > http://phpsoaptoolkit.sourceforge.net/ > > Hope to hear your feedback. > > _Brad_ > > __________________________________________________ > Do You Yahoo!? > Yahoo! Health - your guide to health and wellness > http://health.yahoo. |
From: brad l. <rod...@ya...> - 2002-04-29 17:58:12
|
--- phpsurf <ph...@if...> wrote: > 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); what is the uri for in the soap constructor for?... currently the first parameter is the uri of the proxy. $client = new SoapObject("http://proxy.endpoint.com:8080/test.php", "urn:test"); that is the use without wsdls... or $client = new SoapObject("http://proxy.endpoint.com:8080/test.wsdl"); then the wsdl will have to define the endpoint > ... > > - 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 ! Yeah i understand the problems with this.... I'm not sure how this would work seeing that when you use a WSDL this is taken care of. $soapobject = new SoapObject("http://www.server.com/server.wsdl"); $soapobject->getData(); if the wsdl defines the getData method in uppercase then it will send <getData .... instead of <getdata .... Most soap implementations use wsdl's now-a-days. But i will keep that in mind. > > - 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. Again when using wsdl's it will use the name of the parameter that the wsdl supplies it. If this is a huge consern that the server you are talking to doesn't use wsdls and needs named parameters. give me the implementation and specfics and ill look into it further. I tried to make the client code clean as possible with out stuff like $soap->call_method("getData"); and $soap->set_param_name("data"); it is soo much cleaner to read $soap->getData(); and the functionality is there when using wsdls. > > that's all for the moment :) > > once again, good job ! > thanks for the feedback.... Let me know if you still have a consern about the above issues if the wsdl support does do what you will need. _brad_ __________________________________________________ Do You Yahoo!? Yahoo! Health - your guide to health and wellness http://health.yahoo.com |
From: phpsurf <ph...@if...> - 2002-04-29 17:12:56
|
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 |
From: brad l. <rod...@ya...> - 2002-04-14 06:17:11
|
this is another test __________________________________________________ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http://taxes.yahoo.com/ |
From: brad l. <rod...@ya...> - 2002-04-14 02:53:47
|
this is a test __________________________________________________ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http://taxes.yahoo.com/ |