Not sure what's the problem with JDBC driver installation. Any error foundin the Event Logger?And, if you create a new schema, you should add a new Data Source to theAdobe-ds.xml file and shoudl restart JBoss to effect the changes.Nith*
Not sure if it will install the jdbc driver. You can easily make sure thatby locating the mysql-jdbc.jar file from the lib directory of jboss. Ifnot, you can install it manually.Do not create any table on adobe or any other builtin schema. Create yourown database and use it.
If you have installed LC though turn-key option, you should have got thedefault JBoss and MySQL installed.This will create a datasource for MySQL by default in Adobe-ds.XML andmysql.xml configuration files.You need not create a new DSN to connect to the default MySQL instanceinstalled by the turn-ke...
Write the following code in the prePrint event of the formif(txtUser.rawValue == "user1"){ xfa.event.cancelAction = true; // this will prevent saving the form}Nith
Why don't you use the default Save button appears in the workspace? This button will save your form into draft folder and update the Task Status (as draft).PS: I hope the button will be visible only if you use XDP forms.Nith
Yes, there is a better way to do this without Reader Extensions.Ajax is not an option because it is not supported by Adobe Reader.Here is the solution:Write a REST based web service or just any Server Page which accepts query string and responds to the given query string.Let's assume a Server Page h...