Hi Ayush,
Just add the parameters in the URL like this:
/XMII/Illuminator?QueryTemplate=<Path of Query Object>&Param.1=value&Content-Type=text/xml
and then you can use this URL in the ajax call from your web page (controller of your view in your case).
This would basically use the GET method of http call.
For POST call, add the parameters in the body of the request.
Example using jQuery ajax function:
jQuery.ajax({
url: '/XMII/Illuminator?QueryTemplate=<Path of Query Object>&Content-Type=text/xml',
type: 'POST',
data:{Param.1:'value', Param.2:'value'},
success: function(data)
{
}
});
Regards,
Rohit Negi.