- FGMDEV backup still not working
- tweaked the script to use /exchange/backups directory…
- PPM
- server code is out of sync, saved all the changes, rechecked in and out.
- working on Project export
- Security error when trying to save Excel file…
- Error: Error #2176: Certain actions, such as those that display a pop-up window, may only be invoked upon user interaction, for example by a mouse click or button press.
- for security reason, FileReference.save() must be initiated from a user interaction… Arrrgh!
- Added Alert to confirm save
- Changed EdgeUtils.ExportUtils to have an option of saving files with and without header
- Eclipse and Tomcat server configuration using Maven for Dynamic Web Project
- set up your Tomcat server instance within Eclipse IDE
- generate Eclipse project settings from the pom.xml you created, the packaging type must be war to use this feature.
- mvn eclipse:eclipse -Dwtpversion=1.5
- web.xml may need some changes as Eclipse complains about the order of elements within <webapp/>. Follow this order….
- icon
- display-name
- description
- distributable
- context-param
- filter
- filter-mapping
- listener
- servlet
- servlet-mapping
- session-config
- mime-mapping
- welcome-file-list
- error-page
- taglib
- resource-env-ref
- resource-ref
- security-constraint
- login-config
- security-role
- env-entry
- ejb-ref
- ejb-local-ref
- add the project to the server by right clicking the Tomcat server in Servers view and selecting Add and Remove in the context menu.
- got weird errors, “Validation Message” that points to nowhere… no effect on building projects, though.
- set a break point, stop and start the server in Debug… now you can debug your Java/Server code!
