How to generate a jasperReport in workstation of client

With this funtion:

function Imprimir()
{
var l_Nombre_Reporte = 'Números Arancelarios' ;
application.updateUI() ;
plugins.jasperPluginRMI.runReport( 
	globals.vg_DB ,
	'Números Arancelarios.jasper' ,
	'c:/Aranceles.pdf' ,
	'pdf' ,
	{ p_Nombre_Reporte:l_Nombre_Reporte } ) ;	
}

In Servoy developer:
The PDF file c:/Aranceles.pdf is generated in c:/

In Servoy Smart Client:
The PDF file c:/Aranceles.pdf is generated in c:/ of the Servoy Server.

It is possible to generate de pdf file in the workstation of the client ?

Thanks Armin Kessler

Servoy 501
SQL Anywhere 11
java 1.6.0_14
Windows XP

As a possible approach to saving a file on the client side try using the ‘view’ option so that on the client side the viewer opens and the client is then able to save in a number of formats including pdf on their own workstation.

Another option is instead of using jasperReports plugin to save the file, capture the byte array (should be returned on the runReport function) and use the file plugin to save the file. That will allow the file to be saved on the clients machine.

Jason