Run report from JasperServer using PHP SOAP client
问题 I want to run a report from JasperServer using a PHP SOAP client. I found this example online, but I want to attach an XML data source, used for the report data, and I am unsure how it should be correctly attached. How can I attach my XML data source to the SOAP request, that is acceptable to Jasper Server? public function requestReport($report, $format, $params) { $params_xml = ""; foreach ($params as $name => $value) { $params_xml .= "<parameter name=\"$name\"><![CDATA[$value]]></parameter>