![]() |
php5 SOAP, what is the URI for the WSDL? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: php5 SOAP, what is the URI for the WSDL? (/showthread.php?tid=24407) |
php5 SOAP, what is the URI for the WSDL? - El Forum - 11-09-2009 [eluser]Unknown[/eluser] Normally the URI to the WSDL would be http://hostname/Webservice.php?WSDL how would i navigate to the WSDL with code igniter? Sample SOAP Service code I Found for Code Igniter. Code: <?php php5 SOAP, what is the URI for the WSDL? - El Forum - 11-10-2009 [eluser]Mischievous[/eluser] Code: $path_to_wsdl = $this->config->slash_item('secure_base_url')."system/wsdl/service.wsdl"; then in .htaccess file allow access to the directory ![]() #RewriteCond $1 !^(index\.php|system/wsdl|robots\.txt) |