NUSOAP

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
realdrouin
Forum Newbie
Posts: 5
Joined: Mon Feb 15, 2010 11:36 am

NUSOAP

Post 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 ?
User avatar
yacahuma
Forum Regular
Posts: 870
Joined: Sun Jul 01, 2007 7:11 am

Re: NUSOAP

Post 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
Post Reply