Hello,
We have a request handler that has to open a pdf that is generated through a java class. We use the JavaObjet object to call the method of the class that we need:
JavaObject convert= JavaObject.New( "Documentos.obtenerPDF", {} )
Dynamic result = convert.InvokeMethod('obtenerPDFMetodo',{ our parameters})
The value of result is true that is ok (it is what the method returns). The problem is that the request never
finish and when we stop eclipse, then the pdf appears. A static pdf appears when we don´t call the method, so the
problem is the call of the method that doesn´t allow the request to finish. The same as with the pdf occurs with a weblingo, the weblingo only appears when we stop the server.
Any idea of what problem do we have?
Thanks in advance.