I am mygrating my application from Jboss 5.1.0 to Wild Fly 8.2. While starting the server we are fetching the data from data base and storing in application scope. This was working fine in Jboss 5.1.0 and not working on WildFly 8.2. It is showing the
I want to show to the user the "Save as" Windows when i click in the option "Export File" of my app, the file is an excel 2007 than i have created with Apache POI. The file is correctly saved in the Folder "D:\jboss-6.1.0.Final\bi
I am using SEAM with JPA (implemented as a Seam Managed Persistance Context), in my backing bean I load a collection of entities (ArrayList) into the backing bean. If a different user modifies one of the entities in a different session I want these c
I'm migrating from RF3.3.3, JSF1.2 and jboss 5 to JSF2/ RF4. We have a rich toolbar group with dropdown menus that is generated from a database table. I made the changes to web.xml, renamed the applicable components in the backing bean, but the toolb
After executing the following operation in my Seam/Glassfish/JPA container: @ApplicationScoped public class JpaGlossaryDataAccessObject implements IGlossaryDataAccessObject { // ... @Transactional public void deleteColumn(String glossaryName, String
I have a strange behaviour with Seam 2.2.2, JBoss 5.1, MySQL 5.1.5.1 and MySQL JDBC connector 5.1.12 and asynchronous methods (using quartz) and pojos. I've got a pool of 10 async threads for various tasks. They normally work fine, performing db quer
I am trying to deploy a simple Seam 3 application on JBoss 7.1.1. The project uses Maven but is also a Dynamic web project so it can be run directly on my configured JBoss server. I am using Eclipse Juno for Java EE. The project structure is: src/mai
I have problem pertaining to the maintaining state of the particular @Request scope bean. I have a Seam Entity List request scope component. And after a particular request i want it to maintain its state and not to be refreshed, a4j:keepAlive do the
I'm working with some legacy code and I need to test that some expensive service is called (it makes network calls, send emails, etc.). I'm able to inject a fake service instead of the original one by means of the framework in use (jboss seam 2). See
Closely following this example, I'm uploading a small file and trying to store into postgresql bytea column. Here is error (first two outputs are logging statements outputting attributes of bean before the INSERT is attempted: SAGE 1 -- action.regist
My project is a WAR project generated with seam-gen. It contains a RESTEasy web service class like this (simplified, only the relevant parts): @Scope(ScopeType.APPLICATION) public abstract class RestService { @In protected EntityManager entityManager
I'm having a problem with <s:convertEntity> in <h:selectManyCheckbox>. I'm getting this error: Unkown Entity com.example.EntityName But with my entity I can persist and retrieve values from it. Here is the code: <h:selectManyCheckbox value=
I want to render a richfaces calendar in readonly mode, when I use the readonly attribute it works, but is still displaying the calendar when clicking on the text input. I've been looking but I didn't find any property to disable this behaviour, with
I need to add an 'export' function to an existing web app using seam. The purpose is to export search results to a csv file. I have no problem generating a csv, but I do not know how the send the csv back to the user. I do not want to store the csv o
UPDATE: This problem goes away when I deploy as an exploded EAR i.e. by unzipping the EAR, WAR and JAR files into their constituent components. Weird. I have a Seam application (using 2.2.1-Final) which I'm trying to deploy on a brand-new JBoss AS 5
I am new to JBoss Seam. I wanted to test some stuff on Eclipse so I created a new project and attached it to a mysql db. I then created a seam entity that I wanted to use to connect to my db. This seam entity created a .xhtml file and then a .java fi
I use an ant script for my seam application to explode or deploy the project. The problem is that it also deploys some temp file: .pages.xml in my WEB-INF directory which makes JBOSS server to cycle.. Do you know what can be the cause or how can I av
I have an entity in my JBoss Seam-based project that makes use of Hibernate Validator annotations throughout. Although I've got directives in my JSF pages to require elements, etc. I'd like to be able to do one last failsafe validation before calling
I've got a Menu, and I want to click on the menu, but not on the text if you guys know what i mean. The MenuItem has a border, or something like this, but when I click on it it won't redirect to the page I want unless I click on text. Is it possible
Spring security provides this switch user feature which I used in previous projects. I checked the document of Seam 2.2.0.GA and found a RunAsOperation class for this purpose, but how can I implement a switch user function (something like su - <usern
I'm using Seam 2.2.1 for a little project of mine. I know there is a excel export for richfaces:dataTable but is there something like this for PDFs too? I don't really want to write a PDF export with iText. RegardsYou can easily export the generated
I've been looking all over for this question... How do I build a soap web service client in SEAM?? it seems like a straightforward question-answer but I cant seem to make it work no matter how I try... If anyone has an example of what should be done
Quick version: We're looking for a way to force a transaction to rollback when specific situations occur during the execution of a method on a backing bean but we'd like the rollback to happen without having to show the user a generic 500 error page.
I am using Seam to inject beans to my controller using @In annotation. The injected class has a custom annotation, when calling injectedClass.getClass().getAnnotation(annotationClass) it returns null. When debug I found that Seam passes a proxy insta
I have a Seam application that have to use an external one to login. The logic is as follows: My app sends user to external SSO URL User does what it takes to authenticate there On success, the external app redirects user back to my app with a random
HI, I am having a webservice running successfully on JBoss App Server. However, when I try deploying the webservice example on Weblogic 10.0 MP1 after making the necessary changes I get the message that "No business interface, component interface or
I'm trying to add a new entity and then after a successful commit, redirect them to the list action. Here's a summary of what I'm doing: @Name("offerAction") @Scope(ScopeType.CONVERSATION) public class OfferAction implements Serializable { @In p
What is the best java based web framework backend for a GWT frontend? Possible Backends: seam, jsf, spring web ... ? Specially I am interested in practical experience and PROS and CONS. Btw: - No dynamic typed Languages please - Have anybody tried se
I am having problems with my Seam application, I'm not sure if it is from using Maven along with Jetty for testing or simply a misconfiguration on my part. The error I am getting is rather simple, when Seam attempts to close the event context, it exp
I have a client that's running an application based on JBoss 4.0.5, Seam 1.2 and RichFaces 3.0.1. Their system is having performance problems due to the fact that a lot of data is coming back from the server to be displayed on screen and it seems lik