[jboss-user] [JBoss Seam] - Re: Performence of Seam 2.0 app

2007-10-30 Thread sbublava
"[EMAIL PROTECTED]" wrote : Stephan, please file a jira issue for this. Done. (JBSEAM-2185) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4100238#4100238 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4100238 __

[jboss-user] [JBoss Seam] - Re: Performence of Seam 2.0 app

2007-10-30 Thread sbublava
"MSchmidke" wrote : | The most "complicated" thing on the page is a combobox with about 100 entries, all other of the about 15 components are really simple. | | ... | | Is s:selectItems / s:convertEntity a problem? | I just profiled on of my pages today and s:selectItems can indee

[jboss-user] [JBoss Seam] - - primary key equality

2007-09-25 Thread sbublava
Hi! Does using s:selectItems with s:convertEntity (still) require primary-key equality for entities? Thanks, Stephan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4088286#4088286 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode

[jboss-user] [JBoss Seam] - Re: FYI: Seam 2 CR1 has been released

2007-09-20 Thread sbublava
"[EMAIL PROTECTED]" wrote : CR1 is now in maven with minimal poms http://repository.jboss.org/maven2/org/jboss/seam/ Cool. Thanks. Would it be possible to publish JBoss EL as well? Thanks, Stephan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4086636#408663

[jboss-user] [JBoss Seam] - Re: The feature of closed issue JBSEAM-715 is missed in Jbos

2007-08-14 Thread sbublava
It's "navigation:pages" now and the attribute is named "resources". Example: | | | /WEB-INF/pages.xml | /WEB-INF/more-pages.xml | | | I can't remember whether the namespace change is in Beta 1 or not. Thanks, Stephan View the original post : http://

[jboss-user] [JBoss Seam] - Re: Switching SEAM 1.2 to JSF 1.2 RI problem

2007-03-21 Thread sbublava
I'm using Seam with the 1.2 RI without any problems. What errors do you get? Thanks, Stephan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4030483#4030483 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4030483 _

[jboss-user] [JBoss Seam] - Re: JBoss Seam + SunRI

2007-02-28 Thread sbublava
AFAIK this is only logged as error, due to the conversion between JDK logging (JSF RI) and Log4J (JBoss 4). Your problem is probably somewhere else... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4023682#4023682 Reply to the post : http://www.jboss.com/ind

[jboss-user] [JBoss Seam] - Re: SeamLoginModule

2007-02-12 Thread sbublava
anonymous wrote : | ... | Caused by: java.lang.NoClassDefFoundError: org/codehaus/janino/IClassLoader | at java.lang.Class.forName0(Native Method) | at java.lang.Class.forName(Class.java:164) | at org.apache.commons.jci.compilers.JavaCompilerFactory.createCompiler(JavaCompil

[jboss-user] [JBoss Seam] - Re: multiple component instances in one page

2007-02-06 Thread sbublava
Do you need exactly two DumbUser instances or many of them? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4011969#4011969 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4011969 ___

[jboss-user] [JBoss Seam] - Re: multiple component instances in one page

2007-02-06 Thread sbublava
@Name("helloworld") | public class Helloworld { | | @In("dumbUser") | private DumbUser dumbUser1; | | @In("dumbUser") | private DumbUser dumbUser2; | } I believe the second one should be @In("dumbUser2"). View the original post : http://www.jboss.com/i

[jboss-user] [JBoss Seam] - Re: multiple component instances in one page

2007-02-06 Thread sbublava
"soudmaijer" wrote : | Indeed this was the problem, but no nullpointers in the log (strange). | Then it's probably a regular error message. Try adding: View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4011939#4011939 Reply to the post : http://www.jbos

[jboss-user] [JBoss Seam] - Re: multiple component instances in one page

2007-02-06 Thread sbublava
Well dumbUser is null, so the value you enter cannot be assigned to dumbUser.name. Don't you see a NullPointerException in the log file? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4011933#4011933 Reply to the post : http://www.jboss.com/index.html?module

[jboss-user] [JBoss Seam] - Re: Problem with @Logger

2007-02-06 Thread sbublava
Ahh, I'm using something like this: | abstract class Foo { | @Logger | private Log log; | | protected Log getLog() { | return this.log; | } | } | | class Bar extends Foo { | public foobar() { | getLog().debug("..."); | } | }

[jboss-user] [JBoss Seam] - Re: Problem with @Logger

2007-02-06 Thread sbublava
Can you show us your code? Using @Logger in an abstract super-class works fine for me. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4011800#4011800 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4011800 ___

[jboss-user] [JBoss Seam] - Re: An easy DatePicker component with Seam?

2007-02-05 Thread sbublava
"[EMAIL PROTECTED]" wrote : Did you take a look at weblets? What do you think of something like that in the context of Seam? That would be very cool, especially if we can eliminate the custom view handler and some of the strange dependencies (ORO). View the original post : http://www.jboss.co

[jboss-user] [JBoss Seam] - Re: Seam 1.1.0 - Injecting EJB's - Not Working

2007-01-09 Thread sbublava
"sbublava" wrote : | I believe you may be mixing up Seam components (managed with @In) and EJB session beans (managed with @EJB), because Seam components can be (and often are) implemented as session beans. | Please ignore my last comment. It doesn't make any sense ...

[jboss-user] [JBoss Seam] - Re: Seam 1.1.0 - Injecting EJB's - Not Working

2007-01-09 Thread sbublava
anonymous wrote : | For me - the disconnect is the instantiate or create concept - since I am typically asking the container to provide a reference to a bean looked up via JNDI, I don't consider my application to be instantiating or creating session beans; I thought the container takes care o

[jboss-user] [JBoss Seam] - Re: @NotNull annotation not working...

2006-12-18 Thread sbublava
You probably need to add required="true" to the form input components. Otherwise empty values won't be validated by JSF. Thanks, Stephan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3994897#3994897 Reply to the post : http://www.jboss.com/index.html?module

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-16 Thread sbublava
"ffischer" wrote : | I have the exact same problem, but I can't make JBoss Cache available. How can I do this? | Download JBoss Cache 1.4.0.SP1 from http://labs.jboss.com/portal/jbosscache/download, and add lib-50/jboss-cache-jdk50.jar to your EAR file. That should be all (at least I can

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-12 Thread sbublava
One minor glitch: SelectItemsComponentHandler imports org.jboss.cache.CacheException, which causes a java.lang.NoClassDefFoundError exception when Facelets loads the tag library unless JBoss Cache is available. Maybe could change the catch clauses to Exception or at least mention this requireme

[jboss-user] [JBoss Seam] - Re: @SelectItems / EntityConverter Bug

2006-11-12 Thread sbublava
Thanks for investigating. The new design looks great, btw. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3985311#3985311 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3985311

[jboss-user] [JBoss Seam] - @SelectItems / EntityConverter Bug

2006-11-08 Thread sbublava
Hi Mr. Muir, I hope it's ok, to report problems with the SelectItems component (which is great, btw) in this forum... EntityConverter.findIdField() only checks for @Id, but it needs to take into account @EmbeddedId as well. Thanks, Stephan View the original post : http://www.jboss.com/index

[jboss-user] [JBoss Seam] - Re: Could not find Stateful bean

2006-09-25 Thread sbublava
Maybe this is a silly question, but are you deploying your application as ficitec.ear? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3973806#3973806 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3973806 ___

[jboss-user] [JBoss Seam] - Re: Could not find Stateful bean

2006-09-21 Thread sbublava
Check how you set "jndiPattern" in components.xml. I would also suggest to look into the JMX-console to find out how your session beans are registered in JNDI. Thanks, Stephan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3973464#3973464 Reply to the post :

[jboss-user] [EJB 3.0] - Re: @Basic(optional=true) vs @Column(nullable=true)

2006-09-15 Thread sbublava
Thanks, that helps a lot! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971876#3971876 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3971876 ___ jboss-user mailing list jboss

[jboss-user] [EJB 3.0] - @Basic(optional=true) vs @Column(nullable=true)

2006-09-14 Thread sbublava
Hi! Does anyone know, what's the difference between @Basic(optional=true) and @Column(nullable=true)? Don't both do exactly the same thing? Thanks, Stephan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971478#3971478 Reply to the post : http://www.jboss.c