[jboss-user] [JBoss Seam] - Re: Problem with validation and entityHome

2008-01-20 Thread fjgarmu
Thanks for ur answer. I' ve changed the s:button by h:commandButton and in the page.xml I ve written a navigation rule: |navigation from-action=#{reportsHome.mysave} | rule if-outcome=success | end-conversation/ | redirect view-id=/Reports.xhtml/

[jboss-user] [JBoss Seam] - Re: Component Architecture instead of traditional Layers

2008-01-20 Thread ruettimac
Hi, I tried a small example today (with glassfish) and failed to create it. There is a thread and a JIRA-Issue failed against this problem: http://www.jboss.com/index.html?module=bbop=viewtopict=123592 and http://jira.jboss.org/jira/browse/JBSEAM-2430 What's happening here is, that the

[jboss-user] [JBoss Seam] - Re: ELResolver invocation order

2008-01-20 Thread [EMAIL PROTECTED]
FYI Just had a look at the SeamELResolver and SpringELResolver and couldn't see any PropertyNotFound exceptions being thrown. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121593#4121593 Reply to the post :

[jboss-user] [JBoss Seam] - Gravel in Seam 2

2008-01-20 Thread [EMAIL PROTECTED]
Hi all How i can use Gravel in seam project? i add gravel lib to my project and add view handler in faces config but i have error in deploy. please help me View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121594#4121594 Reply to the post :

[jboss-user] [JBoss Seam] - Another conversation question: how to correctly begin one??

2008-01-20 Thread MSchmidke
There are a lot of possibilities for starting a conversation, but I still am not sure which is the best for the most cases. What do you think? 1. Beginning a conversation by action method | public class MainMenuBean { | | @Begin(flushMode=FlushModeType.MANUAL) | public String

[jboss-user] [JBoss jBPM] - Re: Problems with persistence factory in Hibernate

2008-01-20 Thread alex_enache
Hi there Ronald, Hope you can give me a hint on this. I have the same problem as daniel. My stacktrace is lot bigger, but it contains also the part you are talking about (with the org.hibernate.TransientObjectException). What am I doing is trying to create at runtime a ProcessDefinition and

[jboss-user] [JBoss Seam] - SFSB vs. JavaBean

2008-01-20 Thread MSchmidke
Hello all, I am wondering which advantage I have from using SFSB as Seam Components compared to POJOs as Seam Components. As far as I understood Seam manages everything for me what usually the SFSB container would manage for me (persistence context, transactions). When using Seam, especially

[jboss-user] [JBoss jBPM] - Re: ProcessArchives and ProcessState problem

2008-01-20 Thread kukeltje
a subprocess does not inherit the parent process classloader afaik. So you have to deploy these classes in both archives or ditch versioning and deploy them at a higher level View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121602#4121602 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Not able to deploy changed mail template configuration v

2008-01-20 Thread kukeltje
you can deploy everything in the process archive, but that does not mean it all gets picked up. Please look in the source code if it should. Then file a jira issue to as a bug or a feature request. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121601#4121601

[jboss-user] [JBoss jBPM] - Re: Problems with persistence factory in Hibernate

2008-01-20 Thread kukeltje
Please have a look at the unit tests. This is such a basic example that I'd suggest to run those first, configured to use your database. If those run, try finding the ones that correspond to your case. If they do not run, please let us know View the original post :

[jboss-user] [JBoss jBPM] - Re: help not so major problem

2008-01-20 Thread kukeltje
Could be that jBPM is unaware of the container managed transaction. Try make jBPM use that. Search the forum and look at the wiki to find more info on this. btw... everyone's problem is major... try choosing a better subject View the original post :

[jboss-user] [JBoss jBPM] - Re: Problems with persistence factory in Hibernate

2008-01-20 Thread alex_enache
Many many thanks Ronald, It appears that the stack trace was not only for the persistence of the ProcessDefinition. I've set Hibernate to output the queries and it was persisting the jbpm classes correctly. The problem was that after that step I was using the hibernate session to do some other

[jboss-user] [JBoss Seam] - Re: ClassCastException: ArrayList in DataModelBinder while o

2008-01-20 Thread [EMAIL PROTECTED]
This works fine without icefaces, and I can't really see how you can get a CCE from Seam there. omitting the scope of the @DataModel is fine. What happens when you put the @DataModel on the field rather than the getter? View the original post :

[jboss-user] [JBoss Seam] - Re: EntityQuery and Icefaces

2008-01-20 Thread [EMAIL PROTECTED]
The EntityQuery isn't designed to be used with the PAGE context. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121607#4121607 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121607

[jboss-user] [JBoss Seam] - Re: How to case seam components in different jars?

2008-01-20 Thread [EMAIL PROTECTED]
Do you have EJBs in the component JAR? If so, register it as an EJB module in the application.xml View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121608#4121608 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121608

[jboss-user] [JBoss Seam] - Re: Problem with Seam tests and

2008-01-20 Thread [EMAIL PROTECTED]
We haven't tested SeamTest with dependsOnGroup. If you file a JIRA issue, I can take a look (I recently overhauled the boot structure for SeamTest, which will show in Seam 2.1.x releases). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121609#4121609 Reply to

[jboss-user] [JBoss Seam] - Re: Bypassing validations when using EntityQuery with exampl

2008-01-20 Thread [EMAIL PROTECTED]
anonymous wrote : I'm not using s:validate or s:validateAll, which I thought was what triggered this behavior. Any suggestions? Is this how it is supposed to be? No, its not. Validation is triggered in two places with Seam. (1) s:validate(All), (2) by hibernate when persisting an entity. Are

[jboss-user] [JBoss Seam] - Re: FailedConfiguration while running test

2008-01-20 Thread [EMAIL PROTECTED]
Read my blog about using Embedded with Java 6: http://in.relation.to/Bloggers/EmbeddedJBossUpdate View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121611#4121611 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121611

[jboss-user] [JBoss Seam] - Re: Seam moves from CVS to SVN

2008-01-20 Thread cavani
Hi, Nice move... Thanks! I used to follow Jira issue by FishEye's links, but now, this feature had gone. i.e.: (same commit comment in both systems) before: http://fisheye.jboss.org/changelog/JBoss/jboss-seam?cs=MAIN:cbauer:20080116014042 now:

[jboss-user] [JBoss Seam] - Integerating Seam Spring

2008-01-20 Thread hubaghdadi
Hi. I have been reading about Spring-Seam integeration. anonymous wrote : To configure Seam to use Spring transactions enable the SpringTransaction component like so: | | spring:spring-transaction platform-transaction-manager=#{transactionManager}/ | Supposed I

[jboss-user] [JBoss Seam] - Re: Web Beans Sneak Peek

2008-01-20 Thread nickarls
What will the evolution of Seam look like once the first implementation of Web Beans is released? A life of its own with a migration path? Some sort of compatibility layer? I assume the Web Bean implementation will have a separate code base although Seam has many features in common? View the

[jboss-user] [JBoss Seam] - Re: Web Beans Sneak Peek

2008-01-20 Thread nickarls
Well I actually found this later on (google seems to do a better job at searching this forums than the forum search itself) http://www.jboss.com/index.html?module=bbop=viewtopicp=4054171 Is this still the case? View the original post :

[jboss-user] [JBoss jBPM] - Re: help major problem

2008-01-20 Thread twiceknightly
Apologies for the naff title. Just an air of desperation after playing around with things for days without any luck. I believe the commiting of the transaction in working in circumstances other that a transition to the end state. The process variables are getting persisted to the db as I

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - how to send messages to http client

2008-01-20 Thread roberto
I need to send a message (an html page.. or a simple alert) to each users connected to the system (also in a cluster env). For example because the sys admin needs to comunicate that the system need to be offline from 10:00 AM to 3:00PM.. So i need to send this message to all live http session ..

[jboss-user] [JBoss Seam] - Re: UTF-encoded characters not displaying

2008-01-20 Thread lanoix
Sorry but... It still get this error, and I don't manage to find a solution... Expect replacing all accents by their HTML coded version, what's supposed not to be done. Can anyone help me please? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121621#4121621

[jboss-user] [JBoss Seam] - Re: Web Beans Sneak Peek

2008-01-20 Thread [EMAIL PROTECTED]
Roughly, yes. Seam is obviously more than Web Beans (Web Beans is more like the core contextual/bijection engine of Seam) and Web Beans is quite different from Seam in its current state. You can expect exciting times ahead for Seam :) View the original post :

[jboss-user] [JBoss Seam] - Re: Seam moves from CVS to SVN

2008-01-20 Thread [EMAIL PROTECTED]
I hadn't noticed that. I asked JBoss IT to take a look. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121620#4121620 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121620 ___

[jboss-user] [JBoss Seam] - Re: Conversations doing my head in - help

2008-01-20 Thread [EMAIL PROTECTED]
hi all Can someone see an error in the way I try and kick-off a long running conversation? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121622#4121622 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121622

[jboss-user] [JBoss Seam] - Re: Component Architecture instead of traditional Layers

2008-01-20 Thread brachie
@Pete: thanks for the answer! :-) [EMAIL PROTECTED] wrote : brachie wrote : In my opinion injecting one SFSB into another should be avoided, but maybe I am wrong.. | | anonymous wrote : | | Why? | | | I thought it would be a too tight dependency between the SFSB. For instance,

[jboss-user] [JBoss Seam] - Re: Component Architecture instead of traditional Layers

2008-01-20 Thread ruettimac
anonymous wrote : I thought it would be a too tight dependency between the SFSB. For instance, if you inject SFSB A into SFSB B and SFSB C and change some business logic in A maybe B or C are broken because they use some methods of A. If you look at service oriented architectures (like SOA) -

[jboss-user] [JBoss Seam] - ClassNotFoundException for SeamListener

2008-01-20 Thread yanlong11
Hi I have trouble getting my own sample to work, it is very simple ear with only one jsp page, but I am trying to include also seam support there, problem is, that I am getting ClassNotFound Exception (full stack trace included below) although RegistrationExample (from seam) works perfectly

[jboss-user] [JBoss Seam] - Re: Component Architecture instead of traditional Layers

2008-01-20 Thread mirko27
About the NameNotFoundException you got. Search for my posts on the forum and you will find the solution. You`ll have to declare ejb-reference in ejb-jar.xml when injection EJB. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121626#4121626 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Integerating Seam Spring

2008-01-20 Thread youngm
Nope, your spring and Seam code will not be effected. The configuration might be more difficult though depending upon the transactionManager you are using. For example, if you're using a HibernateTransactionManager you need to make sure that both spring and seam are using the same

[jboss-user] [JBoss Seam] - Legacy code: Integrating with existing servlet

2008-01-20 Thread tonylmai
Hi all, We have a chart library that we use to serve images for our application. To integrate with our Seam app, we wrote a simple servlet that invokes the library and return a URL of the created image. The library requires a datasource and user ID so I use dependency injection. However,

[jboss-user] [JBoss Seam] - Re: Legacy code: Integrating with existing servlet

2008-01-20 Thread mirko27
You can Inject only to a seam component? And seam component is the one which declares @Name annotation. I dont see that on your servlet. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121631#4121631 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Gravel in Seam 2

2008-01-20 Thread [EMAIL PROTECTED]
Gravel has not officially been tested with Seam 2. That said, you can probably use Gravel without using the Gravel view handler (all it does is preserve GET request parameters on forms, which most people probably don't need). Also I suspect that you won't be able to use the Gravel navigation

[jboss-user] [JBoss Seam] - Re: How to reliably count active sessions and connected user

2008-01-20 Thread jacob.orshalick
[EMAIL PROTECTED] wrote : ... perhaps we need a new feature to support some kind of global session tracking. Sounds like a cool feature to me. Relates to an event requested in the comments of: http://jira.jboss.com/jira/browse/JBSEAM-2257 org.jboss.seam.destroyedSession. Maybe raise a JIRA

[jboss-user] [JBoss Seam] - Re: Another conversation question: how to correctly begin on

2008-01-20 Thread jacob.orshalick
I use pages.xml which, IMO, puts the logic where it belongs as generally conversations are scoped to a section of the application. As page flow is defined in the pages.xml file, it makes sense to demarcate the boundaries of the conversation there. MSchmidke wrote : 2. Beginning a conversation

[jboss-user] [JBoss Seam] - Re: Component Architecture instead of traditional Layers

2008-01-20 Thread ruettimac
mirko27, Thanks, you saved my day (frustrations). I saw your post today but did not realise the impact - thought is was about web.xml bindings. Now it works :-) Regards, Cyrill View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121640#4121640 Reply to the post

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Services with EJB dependency do not start up

2008-01-20 Thread tina99
jaikiran wrote : Maybe the name of the service corresponding to your EJB has changed from 4.0.5 to 4.2.2. Go the jmx-console (http://localhost:8080/jmx-console) and see what's the name of the service which corresponds to your EJB and then use this in the depends tag of your MBean Hi, thanks

[jboss-user] [JBoss jBPM] - variable validation

2008-01-20 Thread twiceknightly
Hi, I have been considering how to integrate jbpm within an application and would like to know how other people have approached this and if they could offer some advice. I'm new to this kind of approach and it's taking some time to get it straight in my mind how my application will interact

[jboss-user] [JBoss Seam] - Re: ClassNotFoundException for SeamListener

2008-01-20 Thread jacob.orshalick
Have you referenced jboss-seam.jar from your application.xml? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121644#4121644 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121644

[jboss-user] [JBoss Seam] - Re: ClassNotFoundException for SeamListener

2008-01-20 Thread jacob.orshalick
yanlong11 wrote : code and packaging is almost identical to seam samples Please post the structure of your archive with more details of its contents. Also what version of Seam are you using? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121646#4121646 Reply

[jboss-user] [JBoss Seam] - Re: Conversations doing my head in - help

2008-01-20 Thread jacob.orshalick
[EMAIL PROTECTED] wrote : The last two buttons, executes the action but the conversation Id is incremented. This is because each request initializes a temporary conversation if a long-running conversation is not resumed. This means that your first page request resulted in a temporary

[jboss-user] [JBoss Seam] - Re: ClassNotFoundException for SeamListener

2008-01-20 Thread yanlong11
Yes, I have included it. only WEB facet is not deployed, other parts are and I am able to display jsp, however this error seems to be really strange to me, as my code and packaging is almost identical to seam samples (I am not using any classes so far, only one single jsp.) thanks yanlong

[jboss-user] [JBoss Seam] - Re: Conversations doing my head in - help

2008-01-20 Thread [EMAIL PROTECTED]
Hi Jacob Not quite sure I understood. For the last two buttons the cid is always incremented, which I thought meant that the temporary conversation was never promoted in to a long running one. Is this how it is suppose to be? 1. First page render, cid=1 2. Post back to @Begin(join=true) action

[jboss-user] [Installation, Configuration DEPLOYMENT] - Help! Migrating from tomcat to Jboss

2008-01-20 Thread amol82
Hi, We have a Struts-spring-hibernate application. We just migrated to java 1.6 from 1.4 I am now doing a POC to migrate it to Jboss from Tomcat. I am pretty new to Jboss. We have a docbase and jdbc resource spedified in server.xml in tomcat. So i specified docbase in server.xml in webdeploy

[jboss-user] [JBoss Seam] - Re: expression language empty parameter

2008-01-20 Thread EverlastX1
thx for this hint. You must ensure that the parameters are available not only when the page is rendered, but also when it is sub- mittedIf the arguments can not be resolved when the page is submitted the action method will be called with null arguments -- Stateful bean, right? I did read the

[jboss-user] [JBoss Seam] - Re: Another conversation question: how to correctly begin on

2008-01-20 Thread MSchmidke
Yes ... perhaps this is the problem. Until today I did not understand this page flow thing. I've been a WebObjects developer for years, had the luck to skip Struts and Seam-less JSF. In WebObjects, every html page is represented by a Java class, and directing to a particular page from an

[jboss-user] [JBoss Seam] - Re: ClassNotFoundException for SeamListener

2008-01-20 Thread yanlong11
Hi by chance I have found out, that this error might be due to incorrect IDE behavior, as manual deployment works without error. thanks for help yanlong View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121653#4121653 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Conversations doing my head in - help

2008-01-20 Thread [EMAIL PROTECTED]
Ok, so if I press the submit button again, then the cid should still be 2 right? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121654#4121654 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121654

[jboss-user] [JBoss Seam] - Re: Conversations doing my head in - help

2008-01-20 Thread jacob.orshalick
Yes, since the action is annotated with @Begin(join=true). If join=true was not there you would get an exception. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121655#4121655 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: ProcessArchives and ProcessState problem

2008-01-20 Thread rodrobin
Hey Ronald, Thanks for your reply. You're right that the super process class loader isn't propagated to the sub process and I wasn't expecting that (also verified by looking at the source) since that would seriously mess up the versioning semantics. However, I posted precisely because I

[jboss-user] [Security JAAS/JBoss] - Re: JBOSS Error

2008-01-20 Thread erasmo78
i dolved this problem thanks you View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121663#4121663 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121663 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Conversations doing my head in - help

2008-01-20 Thread jacob.orshalick
[EMAIL PROTECTED] wrote : Is this how it is suppose to be? | 1. First page render, cid=1 Yes. This first rendering starts a temporary conversation which is cid=1. Once the page is rendered that temporary conversation is destroyed. [EMAIL PROTECTED] wrote : 2. Post back to @Begin(join=true)

[jboss-user] [JBoss Tools (users)] - Re: Error when opening richfaces file in Eclipse with Fedora

2008-01-20 Thread [EMAIL PROTECTED]
does any of this help http://labs.jboss.com/wiki/JBosstoolsVisualEditorFAQ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121657#4121657 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121657

[jboss-user] [JBoss jBPM] - Re: variable validation

2008-01-20 Thread kukeltje
anonymous wrote : How/where to do validation of variablesLimit validation in the process. Just do it like you normally would. Store only relevant (meta?) data in the process. We hardly use the jbpm forms for production. Only for rapid prototyping anonymous wrote : How and when to transform the

[jboss-user] [JBoss jBPM] - Re: Problems with persistence factory in Hibernate

2008-01-20 Thread kukeltje
Any time... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121658#4121658 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121658 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: ClassNotFoundException for SeamListener

2008-01-20 Thread nickarls
Might be worth to do cleans once in a while if running eclipse, especially if you have changed the structure or library versions. Cleaning out the deploy and temp deployment directories in JBoss is sometimes useful, too. View the original post :

[jboss-user] [JBoss Seam] - Re: Conversations doing my head in - help

2008-01-20 Thread [EMAIL PROTECTED]
Hi, thanks for your patience :) Here is where I have problems, the cid still gets incremented (and doing my head in). Or at least I think so, pretty sure I tested this. Will make sure again tomorrow at work. I wonder what I've done wrong? And isn't it also a bit strange that the s:button/link

[jboss-user] [JBoss Seam] - Re: Conversations doing my head in - help

2008-01-20 Thread kukeltje
the s:button/link does not call your action method if the form on the page contains validation errors. I've been struggling with this for over a day once. Maybe you have the same problem View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121666#4121666 Reply to

[jboss-user] [Management, JMX/JBoss] - Jboss mbean server (vs) JVM Platform mbean server

2008-01-20 Thread speedveen
Given that the requirements are tighter security and performance, can any one tell me the advantages of using jboss mbean server over jvm internal mbean server? Or, are they both same performance wise and security policy implementation wise?. Actually i want to deploy an mbean and have two

[jboss-user] [JBoss Seam] - Re: Legacy code: Integrating with existing servlet

2008-01-20 Thread nickarls
Are you using a web:context-filter as documented in 25.1.4.7? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121669#4121669 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121669

[jboss-user] [JBoss Seam] - Re: Legacy code: Integrating with existing servlet

2008-01-20 Thread dhinojosa
you can also use Component.getInstance(component Name); and remove all @In annotations. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121667#4121667 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121667

[jboss-user] [JBoss jBPM] - Re: ProcessArchives and ProcessState problem

2008-01-20 Thread kukeltje
hmm... do you have any clue which jar? I personally would not have a clue. Only e.g. that the superprocess referenced a specific version of a subprocess which just did not have it included. Redeploying a subprocess does not make the superprocess use that newer version. Only if you use

[jboss-user] [Installation, Configuration DEPLOYMENT] - Setting up JBoss (JBossWeb) to listen to different ports for

2008-01-20 Thread zzzz8
I am running JBoss AS 4.2.2 GA w/ JBoss Native 2.0.1. My web app should be secure - i.e. accessed via HTTPS on port 443. That's easy enough to change in my server.xml file - which I've already done by having a Connector listen on port 80 and does a redirect to port 443. However, I would also

[jboss-user] [JBoss jBPM] - Re: Problems with persistence factory in Hibernate

2008-01-20 Thread danieltamiosso
Thank you also, I am now trying to integrate the jBPM with Spring. Any hint will be welcome, thank you! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121672#4121672 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121672

[jboss-user] [JBoss Seam] - Re: Another conversation question: how to correctly begin on

2008-01-20 Thread jacob.orshalick
MSchmidke wrote : And since I write many beans which rely on flushmode=MANUAL, I like to have a common base class which sets this for all of them. Maybe instead of a common base class, a way to globally configure the flushmode setting. Say, a way to configure begins to use flushmode=MANUAL by

[jboss-user] [JBoss Tools (users)] - Re: Error when opening richfaces file in Eclipse with Fedora

2008-01-20 Thread kjack
I typed in: yum install compat-libstdc++-33.i386 The response I got was: Package compat-libstdc++-33 - 3.2.3-62.i386 is already installed. The document asked to leave it open in JBOSS TOOLS HTML EDITOR mode and restart eclipse and still I get the same error as mentioned earlier. Is the

[jboss-user] [JBoss Seam] - Re: SFSB vs. JavaBean

2008-01-20 Thread joeyxxx
I was told that in JBoss anyway, the developers have spent a lot more time optimizing EJBs. I haven't run any tests yet to confirm this though. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121670#4121670 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Beginner: Bind SelectOneMenu to @onetoone entity object

2008-01-20 Thread nickarls
Well, if you have a SMPC (as is usually best), you could use a | public ListCategory getAllCategoriesParentList() { | return entityManager.createQuery(from Category).getResultList(); | } | (note, code from memory, not guaranteed to compile, but something like that) and then just use

[jboss-user] [JBoss Seam] - Beginner: Bind SelectOneMenu to @onetoone entity object

2008-01-20 Thread Interista
Hi, I'm a newbie in jsf / seam and I think I have understand the basics, but now I have a question how to set a related object? The case: I have an entity Object, Category. The category has a OneToOne relation with another Category object, the parentCategory. My entity has the @name(category)

[jboss-user] [JBoss Seam] - Re: Another conversation question: how to correctly begin on

2008-01-20 Thread matt.drees
jacob.orshalick wrote : Say, a way to configure begins to use flushmode=MANUAL by default. Maybe this could be configured in components.xml. +1 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121680#4121680 Reply to the post :

[jboss-user] [JBoss Seam] - Conditional redirect after authenticator action

2008-01-20 Thread mki_ffm
Hi, i want to redirect to different pages depending on some logic in my authenticator method. The authenticator has boolean return value, so i can not generate a different outcome (String) in the mehtod. Any ideas appreciated. Best regards mk View the original post :

[jboss-user] [JBoss Seam] - Re: Conditional redirect after authenticator action

2008-01-20 Thread nickarls
How about setting something somwhere in the authenticator method and then placing an observer on the successful login event and redirect there? (note, not tried, just brainstorming) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121679#4121679 Reply to the

[jboss-user] [JBoss Seam] - Re: Another conversation question: how to correctly begin on

2008-01-20 Thread jacob.orshalick
JIRA issue raised: http://jira.jboss.com/jira/browse/JBSEAM-2512 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121684#4121684 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121684

[jboss-user] [JBoss Seam] - Re: Another conversation question: how to correctly begin on

2008-01-20 Thread nickarls
Sounds like a good idea. Even if it would be the silent default, the natural think to do would be to start doing explicit flushes when you don't see anything sticking in the DB... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121682#4121682 Reply to the post

[jboss-user] [JBoss Seam] - Re: Conditional redirect after authenticator action

2008-01-20 Thread nickarls
ok, the something somewhere can probably be used in a test for pages.xml too for redirection. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121681#4121681 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121681

[jboss-user] [JBoss Portal] - JBoss-Portal + Richfaces 3.1.3.GA + FileUpload ? IsPossible

2008-01-20 Thread ameo
Hello, I need a file upload component within a portlet using JSF -Sun RI, RichFaces 3.1.3.GA and Facelets. While there is not a fileUpload RichFaces component I have to use one of another frameworks. Therefore I would like to know which of the frameworks (Seam or tomahwak) is working with

[jboss-user] [JBoss Tools (users)] - Re: Error when opening richfaces file in Eclipse with Fedora

2008-01-20 Thread [EMAIL PROTECTED]
its bundled with jboss tools under the xulrunner plugins. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121683#4121683 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121683 ___

[jboss-user] [JBoss Seam] - Re: Conditional redirect after authenticator action

2008-01-20 Thread jacob.orshalick
Yes, the approach nickarls is describing works quite well. I implemented something similar by wrapping the Seam Identity component and included the authenticate method in the wrapper. Your wrapping login() method can then delegate the login call and then return any navigation String you want

[jboss-user] [JBoss Seam] - Re: seambook tomcatjpa example

2008-01-20 Thread gsawant
Thanks Michael that worked. What I am trying to do is use seam purely as a web frontend framework without using any of its persistence related capabilities. I have gotten this to work with all the config info in place. Now what I need to do is get rid of all the redundant persitence/jta etc

[jboss-user] [JBoss Seam] - Re: Seam without DB/persistence tier:Dependency libs

2008-01-20 Thread gsawant
Hi I had the same problem while using seam 1.2.1 GA with Tomcat 5.5 and did not want to use persistence in the app. Now I downloaded Seam 2.0.0 and ran it on Tomcat 6. The app works if I don't include persistence.xml file but I am still not able to remove the persistence related

[jboss-user] [JBoss Seam] - Re: Seam component not getting called when in default conver

2008-01-20 Thread bludginozzie
Thanks, but the actions are Stateful which is not applicable/permitted in Page scope. A hidden field is probably not the best way to do things in any frameworks but unfortunately I think it's my best option. I have heaps of these glorified crud pages of which this example is a very simple

[jboss-user] [JBoss Tools (users)] - Re: Error when opening richfaces file in Eclipse with Fedora

2008-01-20 Thread kjack
From the following file JBossTools-2.0.0.GA-ALL-linux-gtk.zip I extracted org.mozilla.xulrunner.gtk.linux.x86_1.8.1.3-20070904 I searched in that file for libswt*.* or anything that even contains swt yet wasn't able to find anything.

[jboss-user] [JBoss Seam] - Shared Tomcat/JVM

2008-01-20 Thread MikeDougherty
Hello, I am building a Seam application which will be hosted in a share instance of Tomcat when it is done. I've been able to get the application to load. But there are permission problems with the JSF implementation I try to access one of the pages. | Jan 20, 2008 3:20:47 PM

[jboss-user] [JBoss Seam] - Re: Problems with list page, persistence, and detached entit

2008-01-20 Thread bludginozzie
I find that DataModelSelection stuff really flakey. You could just use tradional JEE development methods for this. This code should work in any view. Eg: In your view; s:button action=#{userEdit.remove(user.id)} value=S. Delete/ Then in your action; | public void remove(Long id){ |

[jboss-user] [JBoss Seam] - Mail example error used Seam2.0.0GA and JBoss AS 4.2.2GA

2008-01-20 Thread alartin
Hi all, I can not run the mail example of jboss-seam2.0.0GA at Jboss AS 4.2.2GA both default config and smtp of gmail are not OK. My config for gmail is: mail:mail-session host=smtp.gmail.com port=465 username=xxx password=xxx ssl=true / Here is error info for the default config of mail

[jboss-user] [JBoss Seam] - Re: Gravel in Seam 2

2008-01-20 Thread ar.mohseni
tanx for your reply. this is faces-config : locale-config default-localeen/default-locale /locale-config view-handlercom.sun.facelets.FaceletViewHandler/view-handler view-handlerorg.jboss.gravel.QueryPreservingViewHandler/view-handler

[jboss-user] [JBossWS] - Re: Reg : Jboss migration from apache axis

2008-01-20 Thread extasy
hi , will any workaround on jboss4.2 help us on supporting rpc/enc format. As there is high necessity to do this operation am raising this query. Thanks Babu View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121707#4121707 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Legacy code: Integrating with existing servlet

2008-01-20 Thread tonylmai
I only enabled the servlet filter suggested in the document. anonymous wrote : web:context-filter url-pattern=* / I must be missing something. The document mentioned that I need to pass along the conversationId but I am sure how to do that. Any suggestion? Thanks View the original post :

[jboss-user] [JBoss Seam] - Re: Multiple field validation and JBoss Seam 2.0 -- Various

2008-01-20 Thread hvram
I did some more digging around and figured out that I can get Case 1 to work if I set the FLUSH MODE to manual . There does not seem to be a way in the components.xml to set the flush mode to manual . All the documentation point to the use of an @Begin in the page.xml . My application does not

[jboss-user] [JBoss Seam] - Re: Legacy code: Integrating with existing servlet

2008-01-20 Thread nickarls
not sure that mapping the * is a good idea, try to hit the URL where the servlet is mapped to... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121715#4121715 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121715

[jboss-user] [JBoss Portal] - Re: https starting up on wrong port

2008-01-20 Thread advaittrivedi
Hi, My AS version is: JBoss [Trinity] 4.2.1.GA View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121714#4121714 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121714 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Legacy code: Integrating with existing servlet

2008-01-20 Thread tonylmai
Component.getInstance(component Name) threw the following exceptions: anonymous wrote : java.lang.IllegalStateException: No application context active :( View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121712#4121712 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Legacy code: Integrating with existing servlet

2008-01-20 Thread tonylmai
BTW, cid is on the URL. Is that sufficient for the servlet filter or I need to do something more? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4121710#4121710 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121710

[jboss-user] [JBoss Seam] - Re: Seam with Hibernate Search

2008-01-20 Thread neilac333
Incidentally, it looks also like the instance of FullTextHibernateSessionProxy is what is returned from the call to em.getDelegate() when Hibernate Search is enabled. Is this so? I see nothing in the documentation about this class, so what purpose does it serve? Thanks. View the original

[jboss-user] [JBoss Seam] - Balloon login model

2008-01-20 Thread hubaghdadi
Hi. A very nice feature of login process of InfoQ.com and ICEfaces.org is the end users don't have to leave their current page in order to login, instead of that, a small balloon is shown and the user provides his credentials. If the login is successful, parts of the page is shown. I'm trying to

[jboss-user] [JBossWS] - Re: WSSE UsernameToken without HTTP basic auth?

2008-01-20 Thread mikaeljl
Hi Alessio! Thank you for investigating this, much appreciated ! Unfortunately I do not have an EJB3 endpoint, I'm starting with a WSDL file so I have a POJO endpoint (using wsconsume to do wsdl -2-java). I do not think WSSE UsernameToken authentication is working for POJO endpoints without

[jboss-user] [JBoss jBPM] - Re: process variables - how to acces

2008-01-20 Thread Pebbels
Thanks for your answer! But doesn't setVariable(data, value) store the variable into the database? I am looking for how to get the value of the variable in the ActionHandler. So when the xhtml-form asks for the date like this: | jbpm:datacell | f:facet name=header |

  1   2   >