20.01.2012 ismail genel, java, seam,
When you generate entities with using reverse engineering tools first problem you will probably face is wrong type mappings. With seam 2.2.2 and eclipse indigo with jboss tools generates TIMESTAMP columns with Serializable type first fix this. To use rich:calender map the column : @Temporal(TemporalType.TIMESTAMP) @Column(name="CREATE_DATE", nullable=false) @NotNull public Date getCreateDate() { return [...]
calender, jboss, rich:calender, richfaces, seam, timestamp
20.01.2012 ismail genel, java, seam,
There are two ways if you want to use Active Directory or LDAP for authentication in Seam. Either you should do it with components.xml and use the Seam implementation or you should extend Identity class and do it yourself. With components.xml you need to define identity store and idenetity manager. <security:ldap-identity-store name="ldapIdentityStore" server-address="ozeren.org" bind-DN="CN=AD User,OU=System [...]
active directory, authentication, jboss, login, seam