<div dir="ltr">hi all<div><br></div><div>I've got a new server set up that contains  two websites. One is a set of php soap services and the other is a php site that consumes these services. </div><div><br></div><div>My soap service is returning an array like:</div>
<div><br></div><div> $infoReturned = array(<br></div><div><div>        'studentInfo' => $studentInfo,</div><div>        'Course' => $courses,</div><div>        'Attendance' => $attendance,</div>
<div>        'TargetGrade' => $targetGrade,</div><div>        'Profiler' => $profiler,</div><div>        'Quals_on_Entry' => $quals,</div></div><div>}</div><div><br></div><div>return $infoReturned;<br>
</div><div><br></div><div>When I call this is fails to return any xml. If I comment out any two of the array values then it stops working. I can serialize the returned array and that works but this is an extra step i'd like to avoid.</div>
<div><br></div><div>I'm seeing any errors in the logs but this looks like it could be a php setting related to size.</div><div><br></div><div>Does anyone have any insights please?</div></div>