Nusoap CI Library |
[eluser]Unknown[/eluser]
I’ve created a sort of pseudo-library for the NuSoap PHP Library… It basically works as a NuSoap loader. File structure: application | |--libraries | |--Nusoap_core.php |--Nusoap.php Where Nusoap_core.php is the original Soap Library from Sourceforge, and Nusoap is my library class that looks like this: Code: <?php This is just a simple library at this point that will only return a proxy to the web service with the given wsdl location, however, it should be very easy to expand.
[eluser]frenzal[/eluser]
looks like they changed class names in the latest version, took me a while to work out why it wasn't working ![]() function getProxy($wsdl_url) { $soapClient = new soapclient($wsdl_url, 'wsdl'); return $soapClient->getProxy(); }
[eluser]Unknown[/eluser]
The latest "stable" release it is called "soapclient", however the newest code in CVS it is changed to nusoap_client to avoid the conflict with the php5 soap library (whose client is called soapclient). I would strongly recommend getting the latest code out of cvs, as there have been MANY bug fixes and improvements since the latest full release (which was nearly 2 years ago!).
[eluser]WolfgangA[/eluser]
[quote author="bigg-media" date="1196985697"]nusoap library for CI http://codeigniter.com/wiki/CI_Nusoap_Library[/quote] I am actually looking for adding nusaop to CI so your link looks helful. However, as suggested in another thread where you put this link too, it would be great if you would open a support thread. Also some more information would be useful, since the wiki does not contain any and the download contains just one file. Thanks Wolfgang
[eluser]Nathan Pitman (Nine Four)[/eluser]
Yea it would be great to see some simple examples added to the Wiki entry. Great work! |
Welcome Guest, Not a member yet? Register Sign In |