"[EMAIL PROTECTED]" wrote : ?! It's not different from any of the existing
examples. You need to understand how propagation="none" and propagation="join"
work, and that's it.
|
In my opinion, this statement is really an oversimplification.
I tried to understand the conversation mechanisms an
"[EMAIL PROTECTED]" wrote : It is very unlikely that you actually _need_
conversation scope if the user simply navigates into an area. Why do you think
you need it?
The kind of the application is an administration application.
Most of the views should be master / detail views with a list view (
Hi,
I think I understand the benefits of the usage of a "conversational" approach
and how I can use it from a design point of view.
But I'm REALLY not be able to implement this with Seam.
I spent much time to read about this topic in a book (Yuan + Heute) and the
Seam reference and I tried als
Hi,
I've problems using (and understanding) the conversation scope (using Seam 2
CVS)
What I want to achieve is to have a menu with the following behavior:
Behind a menu entry is a component instance (and a view)
When I activate a menu entry an own "workspace" should be created (when no
exists
"thejavafreak" wrote : 1. Perhaps because the conversation has ended, or it has
reached the maximum time-out
| 2. Perhaps it's on a different conversation, make sure it has the same
conversation id
Sorry, I don't understand this.
The component instance is the same when I return to the view. Onl
hi,
I've a really strange problem with a Seam Component which scope is
"CONVERSATION"
I read a Entity List (roomList) with JPA in the case the member variable is
null --> getRoomList().
Then I want to hold the instance as long the component exists.
When I operate on this component from the re
Hi,
I've a problem with redirection after an Exception. (Seam 2 CVS )
When an exception occurs, e.g. javax.persistence.OptimisticLockException, and
the active URL is e.g.
http://localhost:8080/hcare/resident/residentDetail.seam than the redirection
URL is wrong -->
http://localhost:8080/hcare/
The header is always the same.
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
| http://www.w3.org/1999/xhtml";
| xmlns:ui="http://java.sun.com/jsf/facelets";
| xmlns:h="http://java.sun.com/jsf/html";
| xmlns:c="http://java.sun.com/jstl/core";
| xmlns:f
HI,
I've a strange problem on my new notebook and really no idea what I could do.
When I point my browser (IE 6, IE 7) to my seam app I get only a blank page.
When I view the source of the page I see the "right" html code but nothing is
displayed.
With Firefox it works most of the time. But s
"[EMAIL PROTECTED]" wrote : You need to override resourceLoader instead.
|
| But be aware of this bug:
|
| http://jira.jboss.com/jira/browse/JBSEAM-1658
|
| If we can't find an elegant solution to that one, then there is a chance we
might just decide to revert back to the old approa
Hi,
I noticed that, in the newest CVS state, several refactorings took place.
(before, I worked with Seam 2 Beta and my approach worked)
I've a customized ResourceBundle implementation which loads the data from a DB.
@Name("org.jboss.seam.core.resourceBundle")
| @Scope(ScopeType.APPLICATION
"denis-karpov" wrote : What ever you do, you will need some functionality in
your application that is already in EntityHome. At least, I suggest you to
examine sources of it and catch the ideas and approaches . Then you can try to
reuse it.
I know, I already have a common class which is respons
"matt.drees" wrote : So, after a little searching...
| contactlist, dvdstore, quartz, seampay, wiki, and ui each use EntityHome.
|
| Overriding EntityHome is used in quartz, seampay, and wiki.
|
| Defining entity-home in components.xml is used in contactlist, dvdstore,
quartz, seampa
Hi,
in the Seam examples, EntityHome class is rarely used.
Could anybody share experiences of usage of EntityHome.
Is the usage of it recommended?
I would really appreciate a good Seam example app (with documentation) where a
good separation of components is shown.
I come from the "layering"
"[EMAIL PROTECTED]" wrote : All resource bundles are made available under
#{messages} - read the docs to find out about the order the bundles are
accessed in when you request a messages.
Thanks for the hint!
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062
Hi,
I defined an additional resource-bundle with the following definition in
components.xml (Seam 2.0B)
|
| messages
| common
|
|
I see in my debug session that the bundle "common" is loaded. But I've no
success to access a key defined in it when
"fers" wrote : Hello,
|
| I have created Maven packages for Seam 1.3.0.ALPHA.
| I haven't updated dependencies, so maybe there can be some problems.
|
| See http://software.softeu.cz/seam/
|
|
Hi,
to use the Seam 1.3.ALPHA with Maven (softeu) there are problems: I took a
fresh
Hi,
I tried to start a Spring ApplicationContext via components.xml.
(I use Seam 1.2.1). But the loading of the Spring configuration files don't
take place.
There is no output in the log when I switched the log4j config to debug for
package org.jboss.seam.
BTW: Furthermore, it's also not possi
Here is the solution for me working with the softeu maven tool:
e.g.
1) Generate a maven based project with:
mvn archetype:create -DarchetypeArtifactId=softeu-archetype-seam
-DremoteRepositories=http://maven.softeu.cz/ -DgroupId=at.test
-DartifactId=testapp
|
This is equivalent to the seam
"-Arthur-" wrote :
| Go to your maven repo and open
yourRepoPath/jboss/seam/profiles/seam-ajax4jsf and open the pom.xml
|
| Here you find transitive artifacts.
| Comment out the ajax4jsf artifact.
|
| Now go to your projects pom and add the following:
|
| |
| | o
"-Arthur-" wrote :
| Go to your maven repo and open
yourRepoPath/jboss/seam/profiles/seam-ajax4jsf and open the pom.xml
|
| Here you find transitive artifacts.
| Comment out the ajax4jsf artifact.
|
| Now go to your projects pom and add the following:
|
| |
| | o
"Lightguard" wrote : Is it the seam references that are giving you a hard time
or the richfaces stuff?
The maven plugin from softeu define a dependency like this:
| jboss.seam.profiles
| seam-ajax4jsf
| ${seam.version}
| compile
|
But the webapp is not able to resolve the richfaces t
Thanks for answering.
I realized that it is possible to layer the app in such a way.
But it seems that this is not the recommended way to layer the app according to
the "Seam" spirit.
I'm not really bound to such a stateless session layer. I would want to use as
much power Seam can give me.
In my former jsf projects I used a classical layered architecture with spring
(and hibernate) for implementing a completely stateless service layer.
e.g.
UI (JSF) --> Delegate --> Service Layer --> DAO Layer
With the help of Spring I was able to handle the transactions declaratively,
handle exce
"Lightguard" wrote : We're working on doing the same thing here at work. We
have Ajax4JSF and RichFaces in the war file (you could use the ear) and they
seem to be working just fine. Double check to see if you have it loaded twice
(like you thought might be happening) in the war / ear or on JB
Hi
I tried out to generate a seam project with the softeu plugin
(I've strong needs to use maven for the build because of maven is the standard
in our company).
The first steps were really successfully.
But I noticed a problem to integrate richfaces lib. The richfaces tags are not
resolved whe
Hi folks,
is there a way to elimate this kind of exception. I'm evaluating Seam and I use
Spring to handle the backend.
Could anybody give me a hint?
TIA
Martin
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4049320#4049320
Reply to the post :
http://www.j
I would want to try out ejb3
(http://wiki.jboss.org/wiki/Wiki.jsp?page=StarterSkeletonEclipseProject)
I ran in exactly the same problem.
Seems to me that at least my config (JBoss AS 4.0.5 and JBoss IDE 2.0.0 Beta2)
doesn't work in this context.
Regards
Martin
View the original post :
h
28 matches
Mail list logo