Log in to follow, share, and participate in this community.
Thread Seam Search duplicates query
Seam Search duplicates queryHi, I created a list page using seam-gen with a simple inputText search as folllow. CustomersList.xhtml
<h:form id="customersSearch" styleClass="edit">
...
Need Help for Seam Remoting in AS7Hi, I am new to JBoss Seam, I just wanted to create a simple seam remote example using HelloAction given in tutorial. I followed each and every step but, I am not able to get proper result. My app specs. are JBoss ...
loading entity association after redirectHi, I have an entity with a manytoone relation as follow
public class Document extends PO {
private Project project;
@ManyToOne(fetch = FetchType.LAZY)
...
Thread JBOSS seam authentication on clicking a link
JBOSS seam authentication on clicking a linkCurrently I am using JBoss seam authentication using Authenticator component <security:identity authenticate-method="#{authenticator.authenticate}"/> and my authentciation method looks like ...
SeamGen in WildflyIn a previous job I worked with JBoss and used SeamGen to generate a quick database app. I was asked to produce something similar and since they were using Wildfly I suggested that Seamgen would be an easy way t...
Thread How to set seam identity component when authenticating via network
How to set seam identity component when authenticating via networkMy seam 2.2.2 web application needs to authenticate the user via some module that uses kerberos to get user data from network. I managed to create a listener and a filter to get user data at the request contex...
Thread How jboss container load properties in web.xml
How jboss container load properties in web.xmlI have a seam web application in which I have to include a security module for integrated authentication. I can see that the module isn't based on seam application because it uses a spring-like notation. As the module...
Thread Seam how to set @RequestParameter variable in integration test
Seam how to set @RequestParameter variable in integration testHow to set @RequestParameter variable in integration test? for example -------------------------------------- in PasswordUpdateAction bean: @RequestParameter("userAccountId") private Integer userAccount...
Thread Seam 2.2.1 fails in cluster on Weblogic 10.3.0
Seam 2.2.1 fails in cluster on Weblogic 10.3.0I have tried to deploy the JPA sample project to Weblogic 10.3.0 for testing the clustering. I just put some configuration in weblogic.xml as follows: <session-descriptor>
<sharing-enabl...
Thread Migration seam-2.0.2.SP1 application to jboss-as-7.1.1
Migration seam-2.0.2.SP1 application to jboss-as-7.1.1We have seam 2.0.2 application running on jboss-4.2.3. Is it possible to deploy seam 2.0.2 application on jboss-as-7.1.1 or I must upgrade seam to latest version. This suggests that one should upgrade to seam...
Seam graceful timeouts - another approachA great discussion of how to improve Seam's timeout handling can be found at In Relation To... Implementing graceful session timeout with Seam, JSF, and jQuery. But I had a slightly different problem than ...
Thread How to make a hibernate interceptor (session scoped) in Seam please??
How to make a hibernate interceptor (session scoped) in Seam please??Develop a trigger in hibernate as follows: public class extends ValidarCidTrigger EmptyInterceptor { // Implementation of class } // Add the following line of code to the persistence.xml file <property nam...
multipart/form-data requestsI am using jboss-eap-6.2, SEAM 2.3.1.Final, and RichFaces 4.5.4 Final. A third party is POSTing a content-type “multipart/form-data” request to a jspx page in my web application. Parameters are passe...