How to communicate JavaScript data in JSF? [closed]

4

I'm developing an application that performs digital signature. In it, I load a PDF file that has the address stored in a JavaScript variable. In the background, there is an application in JSF , which has the nature of signing my PDF file.

What I need is that JSF can get the signature file through my JavaScript application.

Would anyone know how to direct this data from JavaScript to JSF ?

Has anyone ever developed digital signature applications, and would you be able to explain me better how to get files for signing other applications?

    
asked by anonymous 03.06.2015 / 21:23

1 answer

0

You have to pass this "address" to your JSF. You can pass it by including it in some form field that will be submitted or you can do it directly with javascript using the js js API: link

    
23.07.2015 / 19:58