|
it was present in Seam2 |
|
Hello...
I have some apps based on Seam2 running on Tomcat Servlet container and now I need to migrate them to Seam3. I was able to put Weld, JSF2 and Primefaces running together on Tomcat, but now I need some other issues, as Persistence and Security and I can't find many examples using the Servlet container.
Could anyone help me to run Seam3 examples on Tomcat or give me some directions to do it before I quitting it all and migrate to Spring?
|
|
Hello everybody,
I am migrating my Seam2 application to JavaEE6/JBoss7/Seam3. The Seam2 application has the following workflow for adding an entity. For example I navigate to exporterEdit.xhtml page, input information in the fields and click submit button. The Exporter entity is persisted... ... the posibility to demarcate conversation "a la" Seam2 in XML file) I initialize conversation in my... .... It seams that Seam2 is closing the conversation after the details view is rendered or doing some |
|
I hope @ViewConfig can repalce the pages.xml to configure the securtiy, global navigation etc, but it seems it is not powerful as the Seam2 pages.xml.
I do not know the progress of Apache DeltaSpike, in fact I like more about the features of MyFaces CODI, type safe navigation is one of them. |
|
<blockquote>
_Bernard Labno wrote on Jan 09, 2012 11:07:_<br/>
How about faces-config.xml?
</blockquote>
I want to modular the pages development, if using the faces-config.xml, many people should maintain the same file, and it's will not be good idea.
Also, we can divide the file into many fragment and configure it in the web.xml, but this will also should maintain the web.xml.
So, it's the best solution if there will be the same seam2's pages.xml configure.
Any other idea? |
|
faces-config.xml can be included in mutil modular applcation.
I used seam2 xxx.page.xml for navigtion.
In Seam 3, I used some h:link and h:button instead of some navigations, and the others are configured in the faces-config.xml. I like use a action method signature(void method) to navigation, luckily, jsf2 also support this feature. |
|
Hello community!
I am a newbie to Seam and other related technologies (JSF, EJB). I have been trying to run Seam2 (GA and CR) with jboss (4, 5 and 6) as a standalone application following mainly the tutorial at this site (http://docs.jboss.org/tools/2.0.0.GA/seam/en/html/crud_database_application.html) for the purpose of database reverse engineering.
I get the corresponding forms for the tables in my database, but if I want - for instance - to update my table by inserting a data record I get |
|
Hi,
Recently we migrated our seam application from Jboss5.1 to Jboss7.1. We had an Seam Application component with @Asynchronous method.
In the @Asynchronous method are new transactions created ?
We tried to verify that by adding a statement
org.jboss.seam.transaction.Transaction.instance().isActive()
at the start of the @Asynchronous method. (N |
|
(I'm cross posting this from the [JBoss Seam Forum=>http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4116298])
Hi,
I have made available for download a work in progress to getting a sample project going with Seam2 building and testing using Maven2 and JBossEmbedded. I thought a lot of the issues would be solved since there is a root pom provided for Seam (and hence the dependencies would be managed for me).
Alas, I always get the following error from the first unit test that attempts |
|
Hi,
I have already developed different project with seam2 and jboss in the last 18 months. I have to start a 3rd similar project this month. But I am really lost between seam2, 3 and javaEE6: do I have to continue with seam 2-jboss or switch to JavaEE6-glassfish or wait for seam 3...
Also, javaEE6 share a lot of features with seam and is very well supported in NetBeans and other IDEs. So what seam 3, Forge... could bring NOW that we already don't have with JavaEE6 and a good IDE?
Any feedback |
|
Hi,
The following links on the 'Getting Started with Seam2' page (http://seamframework.org/Seam2/GettingStarted) page are dead.
http://docs.jboss.com/seam/latest/en-US/html/tutorial.html
http://docs.jboss.com/seam/latest/en-US/html/gettingstarted.html
http://docs.jboss.com/seam/latest/en-US/html/gettingstartedwithjbosstools.html
http://docs.jboss.com/seam/latest/en-US/html/index.html |
|
In seam3/jsf2 what could be the equivalent for s:fragment and s:span with rendered option also.
s:fragment and s:span was present in Seam3 |
|
Hi,
I'm running on Bea 10.0 MP1 with the latest Seam2 Release.
I want to use the JAAS implementation from Bea with Seam so I wrote the following lines in components.xml
`<security:identity jaas-config-name="myrealm" />
<web:authentication-filter auth-type="basic" />`
When the server starts I get the following exception:
`java.lang.IllegalArgumentException: No Configuration was registered that can handle the configuration named myrealm`
My config/config.xml contains the following lines |
|
Hello, all!
I'm having a problem deploying a Maven + Seam app in WebSphere (v.7.0.0.7).
I followed the doc 'Chapter 40. Seam on IBM's WebSphere AS v7' (http://docs.jboss.org/seam/snapshot/en-US/html/websphere.html).
And I used 'Strategy 1: Specify which JNDI name Seam must use for each Session Bean'.
Here is my 'application.xml':
<application>
|
|
Hello,
I plan to write a simple online-game, where we would like to notify our clients when events on the server-side occur.
Does Seam already provide support for server push? If not, what would be the best way to start with?
I already had a look at seam-remoting, but I guess its not exactly what i am looknig for.
- Thindy |