CRUD « IceFaces « JSF Q&A





1. Collaborative CRUD with JSF 1.7.1    icefaces.org

2. CRUD application in doubt.    icefaces.org

3. Deploying NetBeans/ICEfaces CRUD tutorial to OC4J    icefaces.org

I would like to deploy the NetBeans/ICEfaces CRUD tutorial (http://www.netbeans.org/kb/articles/icefaces-netbeans-crud-apps.html) to either 10.1.3.x or 10.1.2.x OC4J. I built the tutorial up through step 5 where it says to run the project the first time. I can deploy and run it fine on Glassfish V2. I've also been able to deploy and run the ICEfaces component showcase (JSP version) on both oc4j ...

4. CRUD application with edipanel    icefaces.org


5. CRUD application with edipanel    icefaces.org

6. Need Help with the NetBeans "Building Collaborative CRUD Application" Tutorial    icefaces.org

In the Tutorial (found here:http://facestutorials.icefaces.org/tutorial/ide/netbeans/tutorial.html) I first had to add a DataTable, bound to the Data of a Derby Database and make the Columns of this Table sortable and the Rows selectable. So far everything went fine. App worked as expected. Then I added a TextOutput Field and a Button to the Form, the TextOutput Field is bound to PERSON.NAME (of ...

7. JSF EJB CRUD    icefaces.org

hi, I've a backing bean like this: public class OriginRateBacking extends SortableList { @EJB private OriginRateLocal model; public OriginRateBacking() { super("Name"); } protected boolean isDefaultAscending(String sortColumn) { return true; } public List getOriginRates() { if (!oldSort.equals(sortColumnName) || oldAscending != ascending){ oldSort = sortColumnName; oldAscending = ascending; if (ascending) { return model.queryOriginRateFindAllNameAsc(); } else { return model.queryOriginRateFindAllNameDesc(); } } else { return ...

8. CRUD Hibernate    icefaces.org

I'm trying to run the CRUD Hibernate tutorial on Eclipse Java EE IDE for Web Developers and deploying to GlassFish V3.0 - Prelude. The application doesn't deploy to the server. Here are the messages that are generated: java.lang.NullPointerException at com.sun.enterprise.jst.server.sunappsrv.AssembleModules.copyModule(AssembleModules.java:176) at com.sun.enterprise.jst.server.sunappsrv.AssembleModules.assembleWebModule(AssembleModules.java:97) at com.sun.enterprise.jst.server.sunappsrv.SunAppServerBehaviour.publishDeployedDirectory(SunAppServerBehaviour.java:716) at com.sun.enterprise.jst.server.sunappsrv.SunAppServerBehaviour.publishModuleForGlassFishV3(SunAppServerBehaviour.java:591) at com.sun.enterprise.jst.server.sunappsrv.SunAppServerBehaviour.publishModule(SunAppServerBehaviour.java:281) at org.eclipse.wst.server.core.model.ServerBehaviourDelegate.publishModule(ServerBehaviourDelegate.java:949) at org.eclipse.wst.server.core.model.ServerBehaviourDelegate.publishModules(ServerBehaviourDelegate.java:1039) at org.eclipse.wst.server.core.model.ServerBehaviourDelegate.publish(ServerBehaviourDelegate.java:872) at org.eclipse.wst.server.core.model.ServerBehaviourDelegate.publish(ServerBehaviourDelegate.java:708) at org.eclipse.wst.server.core.internal.Server.publishImpl(Server.java:2731) at org.eclipse.wst.server.core.internal.Server$PublishJob.run(Server.java:278) at ...

9. Error in Simple Hibernate CRUD Example    icefaces.org

Hi, everybody. I am new with ICEfaces and while trying to run Simple Hibernate CRUD Example in Eclipse 3.3 on JBoss 4.0 I got this error as soon as I attempt to run it: org.w3c.dom.DOMException: HIERARCHY_REQUEST_ERR: An attempt was made to insert a node where it is not permitted. I either imported it wrong, missing up something or it is a ...