[phpxmlrpc] Strange behaviour: double call to functions?

2008-11-18 Thread Jorge López
Hi there, I'm having some trouble with phpxmlrpc 2.2.1 server. This problem began when I tried a Perl XML-RPC client, which told me that it was receiving bad XML as response. I checked its debug output, and I saw that response was duplicated (...). Using phpxmlrpc client I had no problems,

Re: [phpxmlrpc] Strange behaviour: double call to functions?

2008-11-18 Thread Gaetano Giunta
Jorge López a écrit : > Hi there, > > I'm having some trouble with phpxmlrpc 2.2.1 server. > > This problem began when I tried a Perl XML-RPC client, which told me > that it was receiving bad XML as response. I checked its debug output, > and I saw that response was duplicated (...). > Using

Re: [phpxmlrpc] Strange behaviour: double call to functions?

2008-11-18 Thread Jorge López
Hi, 2008/11/18 Gaetano Giunta <[EMAIL PROTECTED]>: > The server constructor executes the call, unless you pass to it a FALSE > parameter. > > So if you build a server object and later call execute on it, it might do > the job twice... That was the problem! Now it works all right :) Thank you v