JSP (Java Server Page) - Objetos ActiveX con JSP

 
Vista:

Objetos ActiveX con JSP

Publicado por Victor (21 intervenciones) el 29/10/2003 14:03:51
Hola a todos, es posible acceder a los objetos ActiveX (OCX) desde JSP?.
Lo que pasa es que tengo un generador de reporte que quiero usar con JSP, el mismo trae un ejemplo con ASP, y la idea es hacer lo mismo con JSP.
El generador de reporte es "Report Manage", es gratuíto y aparenta ser bastante bueno. Esta trae un OCX que permite acceder desde el Internte Explorer a los reportes.
Pueden bajar desde : http://reportman.sourceforge.net.
El código de ejemplo es :

dim blah
set blah = WScript.createobject("ReportMan.ReportManX")
' the object blah is an instance of the activex control
' set some environment variables
blah.Preview = false
blah.ShowProgress = false
blah.ShowPrintDialog = false
' define the location of the report file to be generated
blah.Filename = "C:/sample4.rep"
' generate the report
blah.execute

En conclusión, lo que quiero saber es cómo escribir en JSP el siguiente código ASP:

dim blah
blah = WScript.createobject("ReportMan.ReportManX")

Desde ya, muchas gracias.
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder