tags:

views:

200

answers:

2

I've got a simple class which returns results from select classes. The db user only has select privileges.

The class is made available through SOAP so 3rd parties can query the database to create reporting tools.

The problem is the PHP SoapClient throws a SoapFault exception when I try to select too many rows. On a table with about 10 collumn with small pieces of data I can only select about 80 rows.
The return Soap response has a total size of 134KB, which is obviously not very much...

I've tried setting ini parameters as max_input_time, memory_limit and max_execution_time, but nothing hapened...

Why does the SoapClient fail?

Error thrown: ( Fatal error: Uncaught SoapFault exception: [Client] looks like we got no XML document

A: 

I got same problem.

kaveh sadeghi
A: 

update your php version

kaveh sadeghi