 |
Contribute your how-to articles and tutorials here. (Please make sure the same topic isn't already covered on the Java Studio Creator Tutorials page or the How-To Articles page
Articles
Contribute your articles here.
Tutorials
Oracle on Glassfish (Connection setup)
All about Setting up Oracle Connection Pool on Glassfish (Sun Application Server).
Read tutorial here
by Serge Bornow, 2007.01.04
All About Complibs
Read All About Complibs by EdwinGoei, 2006-09-11
Using JBoss EJBs
JBoss is not a supported application server for EJBs in Creator. But if you really want to use the EJBs deployed in JBoss, there are some tricks you can do to make it work. See Using EJBs deployed in JBoss for more information. By EdwinGoei
File Upload Component
The "uploadedFile" property should be a read-only property of type com.sun.web.ui.model.UploadedFile and should not be manipulated in the Property Inspector. Instead, use the getUploadedFile() method of the component to access the actual uploaded file contents. See the UploadedFile API for more info. You can use IDE completion to get at the UploadedFile API javadoc. File Upload uses a ServletFilter internally which has a limit to the size of files that can be uploaded. If you exceed this limit, the contents will not be available. By EdwinGoei, 2006-09-11
-- Main.carlaking - 01 Dec 2006
Troubleshooting the Bundled Application Server
By EdwinGoei, 2005-07-29
See the document BundledAppServerInfo for detailed information. To erase and reset all app server state to factory settings is to execute on a command line:
${rave-install-dir}/bin/pe-start.{bat,sh} -reset
Using Expression Language for more than Binding
Creator creates EL expressions for you but only for binding to backing beans. EL is useful for more than binding and using it can often result in easier to read and debug code. EL also fits into the Creator lifecycle in a more obvious way and gives expected design time behaviour.
By People.khumalo, 2006-12-05
See ExpressionLanguage
A Simple menu using a page fragment and TabSet component
A Page Fragment / TabSet menu example similar to Sun's example that solves some of the page state issues of Sun's example. It's also very light on code and has exceedly simple navigation logic. This example uses a Map in the SessionBean to store page state and an EL expression to bind to that Map.
By People.khumalo, 2006-12-05
See MenuTabSetExample
Navigating the DOM with Javascript
Some very basic Javascripts that show you how to navigate the Creator DOM especially within a table.
By People.khumalo, 2006-12-10
See BasicJavaScriptExample
|