Page 1 of 1

NUSOAP

Posted: Tue Sep 07, 2010 5:50 pm
by realdrouin
First time posting. As you can see, I don't know where to post it.

I'm using nusoap.php for the first time. I'm developping a webservice.
I changed the function a couple time. I'm always getting the same error
<b>Warning</b>: Cannot modify header information - headers already sent by (output started at H:\xampp\htdocs\a

It looks that the WSDL has already been defined and it's too late. I cannot be redefine.
I've cleaned the tmp directory
I changed the ini

I've added
ini_set("soap.wsdl_cache_enabled", "0");
ini_set("soap.wsdl_cache_enabled", 0);
$limit = ini_get('soap.wsdl_cache_limit');
ini_set('soap.wsdl_cache_limit', 0);
ini_set('soap.wsdl_cache_limit', $limit);

But there is no way, it keep the old file.

Any of you has an idea ?

Re: NUSOAP

Posted: Tue Sep 07, 2010 7:16 pm
by yacahuma
Did you try the php soap extension that includes a SoapServer? I have not use it, but is part of php and not a separate library.
http://devzone.zend.com/node/view/id/689#Heading8