Nusoap in Code Igniter 1.5.4 |
[eluser]Leonardo Radoiu[/eluser]
Hello! After some hard time trying to figure out how I can implement nusoap library in 1.5.4 version I came up with a solution I want to share with all of you who came across the very same problem. First, the nusoap library file that you must put in the system/libraries folder (we assume we have already there the nusoap base class named nusoap.php). I named this Nusoap_lib.php: Code: <?php if (!defined('BASEPATH')) exit('No direct script access allowed'); Let's say we have a nusoap webservice named MemberWSVC saved as a controller file named MemberWSVC.php: Code: <?php Finally, we consume the webservice with a controller named Client.php: Code: <?php Let's say this client will be accesible at http://localhost/webservice.php/client/12345 That's it! I hope it works for you. |
Messages In This Thread |
Nusoap in Code Igniter 1.5.4 - by El Forum - 08-29-2007, 02:58 PM
Nusoap in Code Igniter 1.5.4 - by El Forum - 09-12-2007, 06:42 PM
Nusoap in Code Igniter 1.5.4 - by El Forum - 09-13-2007, 03:10 PM
Nusoap in Code Igniter 1.5.4 - by El Forum - 09-14-2007, 04:54 AM
Nusoap in Code Igniter 1.5.4 - by El Forum - 11-19-2007, 06:31 AM
Nusoap in Code Igniter 1.5.4 - by El Forum - 12-06-2007, 11:59 AM
Nusoap in Code Igniter 1.5.4 - by El Forum - 12-06-2007, 02:27 PM
Nusoap in Code Igniter 1.5.4 - by El Forum - 04-09-2008, 10:13 PM
Nusoap in Code Igniter 1.5.4 - by El Forum - 04-09-2008, 11:28 PM
Nusoap in Code Igniter 1.5.4 - by El Forum - 05-04-2008, 04:34 AM
Nusoap in Code Igniter 1.5.4 - by El Forum - 05-04-2008, 10:34 AM
Nusoap in Code Igniter 1.5.4 - by El Forum - 11-25-2008, 12:56 AM
Nusoap in Code Igniter 1.5.4 - by El Forum - 04-13-2010, 08:31 AM
Nusoap in Code Igniter 1.5.4 - by El Forum - 04-13-2010, 09:09 AM
Nusoap in Code Igniter 1.5.4 - by El Forum - 04-13-2010, 09:13 AM
Nusoap in Code Igniter 1.5.4 - by El Forum - 04-13-2010, 09:21 AM
Nusoap in Code Igniter 1.5.4 - by El Forum - 10-25-2010, 10:57 AM
Nusoap in Code Igniter 1.5.4 - by El Forum - 10-25-2010, 09:39 PM
Nusoap in Code Igniter 1.5.4 - by El Forum - 04-13-2011, 01:57 PM
Nusoap in Code Igniter 1.5.4 - by El Forum - 04-13-2011, 03:07 PM
|