How can I pass parameters to java using php?
I'm trying do like this :
This is my php code
The id is posted from my view .
$id=$_POST['id'];
$Plb_Entrance = Yii :: t('report','ENTRANCE');
$Plb_Block = Yii :: t('report','BLOCK');
$sql=sprintf("SELECT * from table WHERE id='".id."'");
$this->format='pdf';
$this->locale='en';
$this->reportfile='jr_print';
$this->params="
<parameter name='Plb_Entrance'><![CDATA[$Plb_Entrance]]</parameter>
<parameter name='Plb_Block'><![CDATA[$Plb_Block]]></parameter>
<parameter name='pQueryCondition'><![CDATA[$sql]]></parameter>";
**this one is normal i passed to jasperserver one**
This is my java code - now I want to pass the value from php to this java code
Map params = new HashMap();
params.put("Plb_Entrance", "**This value is passing from php**");
params.put("Plb_Block", "BLOCK");
params.put("pQueryCondition","ROW");
so is it posible?