Re: [fw-general] Is Zend_Soap_Server/PHP slow or the network?

2011-02-13 Thread Simon Walter
On Saturday, February 12, 2011 04:30:05 pm Benjamin Eberlei wrote: You can use KCachegrind and Xdebug to find out exactly what functions of PHP your app take that long. Its either the query, the array to xml transformation or something entirely new ;) Sounds like a plan. I've got Xdebug

[fw-general] Is Zend_Soap_Server/PHP slow or the network?

2011-02-11 Thread Simon Walter
Hi all, I've made a few SOAP services with Zend_Soap_Server by now. The most recent one is very simple. However, the data returned is quite large. I've done some tests: write out to a log a file with a timestamp at variuos places in the execution flow. From that I know the DB (MySQL) is

Re: [fw-general] Is Zend_Soap_Server/PHP slow or the network?

2011-02-11 Thread Benjamin Eberlei
You can use KCachegrind and Xdebug to find out exactly what functions of PHP your app take that long. Its either the query, the array to xml transformation or something entirely new ;) On Sat, 12 Feb 2011 15:26:48 +0900 Simon Walter simon.wal...@hokkaidotracks.com wrote: Hi all, I've made