|
After building a web application using Formspider, I would like to have deployed the application for production (hosting). Is there a tool or steps to be followed to do this? |
|
First, install Formspider to your production environment using the Formspider installer. If you do not want to use the Formspider IDE in your production environment, uncheck “Formspider IDE Database Components” and “Formspider IDE Client” options during installation process. Next, open the Formspider IDE in your development setup. Then select File-->Export from the menu. The export dialog will show up. Select the application you want to export from the combo box and choose the Export Entire Application radio button. Click Export and download the export file. You may import your application in two different ways to production environment. If you installed Formspider IDE application, select File-->Import from the menu. The Import Dialog will show up. Choose your application export file and import it as a new application (If you want to overwrite an application already in production choose replace). If you don’t have the Formspider IDE in your production environment, you may also import your application in the following way. Please note that you need an Oracle directory to place your application export file. The following script will import your application to the Formspider installation in production without the need of an IDE. You will have to provide a value for three parameters: Oracle directory name, Application Name and Application export file name. declare v_cl clob; begin bdf_application_api.applicationdelete( dbms_lob.createtemporary(v_cl,true); dbms_lob.open(v_file, dbms_lob.lob_readonly); dbms_lob.loadclobfromfile(v_cl, dbms_lob.close(v_file); bdf_etl.load(in_bdf_xml=>xmltype(v_cl), commit; end; |
