[jboss-user] [JBoss Seam] - Re: Transaction Demarcation

2007-05-03 Thread toni
Hi, I'm still trying to figure out how to span several transactions within the scope of one web request/response. I guess using a TransactionalSeamPhaseListener is not an option, because it always starts a transaction at the beginning and end of the request ie response respectively. So I gues

[jboss-user] [JBoss Seam] - Re: Nested conversations and transaction management

2007-05-03 Thread [EMAIL PROTECTED]
anonymous wrote : | 1) Can you give me some reference to learn more about transactions that span HTTP requests ? | This is extremely rare, it involves suspension of the transaction on a Java EE server. I'd rather not give you any references on this because you will certainly try it - wit

[jboss-user] [Messaging, JMS & JBossMQ] - Re: java.lang.ClassCastException

2007-05-03 Thread vermanaveen
Based on the suggestions, I did all suggested changed. Now I am getting javax.naming.NameNotFoundException: jms not bound Infact, can you please suggest how do I create my own connection factory? I have my MDB | | http://java.sun.com/dtd/ejb-jar_2_0.dtd'> | | | |

[jboss-user] [Management, JMX/JBoss] - Re: JMX URLs

2007-05-03 Thread [EMAIL PROTECTED]
I"m not sure exactly how is this supposed to work, but what does the jndi have to do with it? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043068#4043068 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043068

[jboss-user] [JBoss Seam] - Re: Nested conversations and transaction management

2007-05-03 Thread FabBoco
Christian, thank you for your explanations. I have some more questions: 1) Can you give me some reference to learn more about transactions that span HTTP requests ? 2) Can @Begin(flushMode=MANUAL) help me ? 3) Why seam has not options that let user manage the transactions as needed ? Am I

[jboss-user] [EJB 3.0] - $Proxy146 cannot be cast to servlet... Access ejb bean from

2007-05-03 Thread int2
Hi, Thank you for read my post, I'm new to ejb 3.0, there's a problem when I try to access an example session bean from servlet. Anyone please help :-) The code of the test session bean is: BLocal.java | import ...; | @Local | public interface BLocal{ | publi

[jboss-user] [Security & JAAS/JBoss] - Re: Federated SSO Test Application Problem

2007-05-03 Thread [EMAIL PROTECTED]
Andreas- This is most likely just the manner in which the binaries are packaged. 1) the jboss-sso.sar file contains the core sso engine 2) the federation-server.ear is a standalone web application that helps with secure sso token propgation across web domains. You may have to play around with

[jboss-user] [Management, JMX/JBoss] - Programatically creating XMBean Instance

2007-05-03 Thread toddjtidwell
I've developed an XMBean that works fine when deployed through a jboss-service.xml. However, I've come to a point where I would like to deploy multiple instances of this XMBean programatically. In the past, with a standard MBean, you'd do something like this: | ArrayList serverList = MBean

[jboss-user] [JNDI/Naming/Network] - lookup database source weird problem

2007-05-03 Thread joshuayeo
Hi all , I am using jdk 1.6.0_01 and jboss 4.0.5.GA. I have setup jndi lookup in my startup servlet init() method , however it did not lookup the jndi database name at all. It always give me error message cannot lookup the jndi name. Anyone have any ideas what is happening here ? Thanks Below

[jboss-user] [Beginners Corner] - Re: JVM Bind, port in use, but no application using it

2007-05-03 Thread jboss newbee
Try to telnet to that port from command prompt as " telnet machineipaddress port#". If it opens a window then that port is used otherwise if you get not connected then it's not open. If nothing works then restart your computer and start jboss server first. Hope this helps! View the original

[jboss-user] [JBoss Seam] - Re: Persisting Object from previous screen in one trasaction

2007-05-03 Thread [EMAIL PROTECTED]
That exception indicates that your object is already persistent, but detached (unmanaged). You need to instead use merge. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043059#4043059 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&

[jboss-user] [JBoss Seam] - Re: How to authenticate user by department?

2007-05-03 Thread rmemoria
Why don't you implement a property called Department in your authenticator bean. Maybe it's easier. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043057#4043057 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043057 __

[jboss-user] [JBoss jBPM] - Re: jbpm-jpdl-3.2.GA - incomplete project creation in eclips

2007-05-03 Thread [EMAIL PROTECTED]
Found it - thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043056#4043056 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043056 ___ jboss-user mailing list jboss-user@l

[jboss-user] [JBoss Seam] - Persisting Object from previous screen in one trasaction

2007-05-03 Thread thejavafreak
Dear all, Is there any guide I need to follow in order to be able to persist an object from a previous screen that is involved in a pageflow? Since I get this stacktrace: | Caused by: org.hibernate.PersistentObjectException: detached entity passed to persist: org.hireway.model.User at

[jboss-user] [JBoss Seam] - Re: Seam's Identity and Authenticator

2007-05-03 Thread [EMAIL PROTECTED]
Usually "security" means two things: - Authentication: Who are you, can you identify yourself and what are your roles/privileges? - Authorization: An action/display requires a permission, do you have the right roles/privileges for that? The authenticator does Authentication, the Identity compo

[jboss-user] [JBoss Seam] - Re: Seam's Identity and Authenticator

2007-05-03 Thread [EMAIL PROTECTED]
These classes work in concert with each other - by default, the Identity class will use JAAS to authenticate the user, via SeamLoginModule (which is a standard JAAS login module). SeamLoginModule performs authentication by invoking a MethodExpression - i.e, the authenticate-method configured in

[jboss-user] [JBoss Seam] - Re: Is seam-gen really a good idea to learn about seam?

2007-05-03 Thread [EMAIL PROTECTED]
anonymous wrote : the tutorial should try to use SEAM "wrong" As a writer I can tell you that this is a very difficult approach. You should not show readers something that doesn't work, the risk that part of it is memorized is high. You can use that technique sometimes, but I don't think it's a

[jboss-user] [JBoss Seam] - Seam's Identity and Authenticator

2007-05-03 Thread tonylmai
Can someone tell me the correlation between Seam's Identity and Authenticator? It is my understanding that we can declare/override the RuleBasedIdentity as followed: @Name("org.jboss.seam.security.identity") | @Scope(ScopeType.SESSION) | @Intercept(InterceptionType.AFTER_RESTORE_VIEW) | pu

[jboss-user] [Beginners Corner] - Re: session timeout

2007-05-03 Thread shilps
But at what path..we are deploying adobe form server through jboss3.2.2..i checked timeout property..but there are so many web.xml like at: \\192.168.11.40\c$\jboss-3.2.2\server\all\conf \\192.168.11.40\c$\jboss-3.2.2\server\default\deploy\jbossweb-tomcat41.sar \\192.168.11.40\c$\jboss-3.2.2\ser

[jboss-user] [Installation, Configuration & Deployment] - Re: java.net.SocketException: No buffer space available

2007-05-03 Thread kgrjb
hi i searched a lot but havenot found anything useful on this. on starting jboss 4.2.0.CR2 i get warnings UDP failed to join ... on lo: java.net.SocketException: No buffer space available. my hibernate with distributed ehcache used to work on jboss 4.0.5 but now on 4.2.0.CR2 i get this - Error

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-03 Thread fperedo
Btw... any release date on rhds... my exadel trial license is about to end in 11 days... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043043#4043043 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043043 _

[jboss-user] [JBoss Seam] - Re: Is seam-gen really a good idea to learn about seam?

2007-05-03 Thread fperedo
Perhaps, between each of the 3 steps of the tutorial, to show, the difference between more or less integration with J2EE, the tutorial should try to use SEAM "wrong" (trying to do something that can only be done with SEAM tutorial level 3, in tutorial level 1, and showing how to do it right) Vi

[jboss-user] [JBoss Seam] - Re: Is seam-gen really a good idea to learn about seam?

2007-05-03 Thread fperedo
Hi! well a "transient POJOs to persistent POJOs to J2EE5 tutorial" would be: -First, transient POJOs: show me what can be done in SEAM without JPA or Hibernate. (a really simple in memory POJOs example with 1 page first, and then 2 or three) ¿this part needs the microcontainer? -Second, persiste

[jboss-user] [EJB 3.0] - EjB3 & JBoos AS - JUnit testing

2007-05-03 Thread karl.martens
Hi, I am try to crate an ear using the following technologies: * JBoss AS 4.0.5.GA with EJB3 * JBoss Embeddable EJB3 Container * Hibernate 3 * JUnit I have been able to create an ear the deploys and executes on the JBoss AS but when the same code is executed with JUnit in t

[jboss-user] [JBoss Seam] - Re: @Name's value configuration by convention

2007-05-03 Thread hstang
I would suggest a deprecation to @Name and create a new, but more meaningful name like @SeamComponent View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043039#4043039 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043039

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

2007-05-03 Thread [EMAIL PROTECTED]
"hstang" wrote : A little off-topic here but the latest cvs update complains that Identity don't have securityRules. This causes startup errors. Could you please post the stack trace? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043038#4043038 Reply to

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

2007-05-03 Thread [EMAIL PROTECTED]
"tonylmai" wrote : I took everything out of the login.xhtml page and all things referencing to identity in the pages.xml and am still running into this exception. | | Any idea on where else to look for? Does it work using MyFaces? View the original post : http://www.jboss.com/index.html?

[jboss-user] [JBoss Seam] - Re: How to authenticate user by department?

2007-05-03 Thread [EMAIL PROTECTED]
Just extend the identity class and add a department field. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043036#4043036 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043036

[jboss-user] [JBoss jBPM] - jPDL GPD 3.1.0.alpha4: Full jPDL Support!

2007-05-03 Thread [EMAIL PROTECTED]
Hi all, I wanted to inform you that I finally was able to release the first GPD with full jPDL support. It is the last of the alpha releases and I hope I will be able to quickly stabilize the code. Of course I will need the community for this, so I encourage you to download the latest release

[jboss-user] [JBoss Seam] - Re: Loosing the URL parameters between requests

2007-05-03 Thread RobJellinghaus
The "blogEntryId" *is* a page parameter in the blog example. I don't understand the theme stuff well enough to know of any easy way to pass the page parameters along with the theme re-request. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043034#4043034 Rep

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

2007-05-03 Thread [EMAIL PROTECTED]
The Google thing is in W. That is really close to the JBoss Party and is where most JBoss people will be staying. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043033#4043033 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=repl

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

2007-05-03 Thread modoc
Haha. Ok. Updated. At the W at 8:30 PM. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043032#4043032 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043032 ___ jboss-user m

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

2007-05-03 Thread RobJellinghaus
Er, let me rephrase: let's have the post-JBoss party Seam hangout at the W Hotel, same as the post-GWT work session party. That will be the best for everyone. TRUST ME ON THIS ;-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043031#4043031 Reply to the

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

2007-05-03 Thread RobJellinghaus
Sure that's fine. Let's have the JBoss party at the same place as the GWT party! That way I can go to both at the same time! :-D View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043030#4043030 Reply to the post : http://www.jboss.com/index.html?module=bb&op

[jboss-user] [JBoss Messaging] - Re: RediveryDelay implemented yet?

2007-05-03 Thread parressh
This is certainly becoming an interesting discussion! :) I guess I didn't realize that using an MDB would really change the semantics of how the JMS consumer (MDB) functions. Is my understanding correct that if the MDB throws an exception, the container does not ask for the message again, but

[jboss-user] [JBoss Seam] - Re: @Name's value configuration by convention

2007-05-03 Thread petemuir
I couldn't find it though! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043028#4043028 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043028 ___ jboss-user mailing list jbos

[jboss-user] [JBoss Seam] - Re: @Name's value configuration by convention

2007-05-03 Thread petemuir
There is another one around for @Component I think. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043027#4043027 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043027 ___ jbo

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

2007-05-03 Thread modoc
Well crap:) I made dinner plans on wednesday, not knowing about the JBoss party. Maybe I"ll move dinner. Anyhow, would people be up for hanging out after the JBoss party at the W? I can change the evite for that. Or whatever works. View the original post : http://www.jboss.com/index.html?

[jboss-user] [JBoss Seam] - Re: @Name's value configuration by convention

2007-05-03 Thread youngm
Though it was rejected.it would be interesting to know some of the why behind it but not a big deal. Mike View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043025#4043025 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p

[jboss-user] [JBoss Seam] - Re: @Name's value configuration by convention

2007-05-03 Thread youngm
You're right: http://jira.jboss.org/jira/browse/JBSEAM-92 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043024#4043024 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043024

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

2007-05-03 Thread [EMAIL PROTECTED]
The JBoss Party is also on Wed: https://www.redhat.com/apps/webform.html?event_type=simple_form&eid=971 It finishes at 8:30pm. Maybe we can hang out after the JBoss Party? I know that conflicts with the Google thingy. Too many parties at J1! ;) The JBoss crowd will be staying in the W hotel. V

[jboss-user] [JBoss jBPM] - Concurrent JPDL & BPEL support

2007-05-03 Thread jerdman
I'm working on a new orchestration project. The higher-ups want to use BPEL because it's the latest and greatest buzzword. I'm more interested in using JPDL so that I can write useful workflows without the added frustration of making everything a webservice. Is there a way that I can configur

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

2007-05-03 Thread modoc
Ok. I setup an evite here: http://www.evite.com/app/publicUrl/[EMAIL PROTECTED]/seam There's three dates/times, so pick which works best for you. I also picked my hotel's bar as the location since I don't know the area. If there's a better place, let me know and I'll move it. Regards, Dev

[jboss-user] [EJB 3.0] - Re: help composite keys

2007-05-03 Thread sashaxiv
well, at first thank you for your time a Ruta can have 0,n Puertos a Puerto can be part of 0,n Rutas the distance(which is also a attribute in Puerto and Ruta with other significant) indicates the distance beetwen the start of the Ruta and start of the Puerto. I need it to calculate a coeficien

[jboss-user] [JBoss Seam] - Re: @Name's value configuration by convention

2007-05-03 Thread petemuir
i belive there is an open issue for this... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043019#4043019 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043019 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Loosing the URL parameters between requests

2007-05-03 Thread petemuir
I think page parameters should do what you are after? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043016#4043016 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043016 ___ j

[jboss-user] [JBoss Seam] - Re: Really simple, please advice (passing h:dataTable to eve

2007-05-03 Thread petemuir
IIRC you need a h:commandLink, not an s:link View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043015#4043015 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043015 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Seam-gen + RichFaces + Firefox = null page

2007-05-03 Thread petemuir
It's just how different browsers handle http streams that close unexpectedly I suspect. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043014#4043014 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043014 __

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

2007-05-03 Thread RobJellinghaus
So... any word on this? Gavin is still out of town, apparently...? I will be at the Seam BoF on Tuesday night at 9 pm, and at the GWT work session / social time at the W Hotel on Wednesday night. It'd be great if the Seam meetup could be some other night so as to not conflict with those two :-

[jboss-user] [JBoss Seam] - Re: Anyone else find SeamTest broken in CVS?

2007-05-03 Thread petemuir
Stu, thanks for finding all this stuff. I'll try to get a fix for this in over the weekend. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043012#4043012 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043012 _

[jboss-user] [JBoss Seam] - Re: Seam JavaOne meetup?

2007-05-03 Thread petemuir
Gavin is around i think. I would love to have a meetup, but as i'm not going... (but instead going on holiday :p). Seriously, I expect Michael is the person to talk to about this :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043011#4043011 Reply to the

[jboss-user] [JBoss Seam] - Re: Is seam-gen really a good idea to learn about seam?

2007-05-03 Thread petemuir
yeah, seam-gen caters for the majority by providing ee5 ootb. i'm not quite sure *what* a "transient POJOs to persistent POJOS to J2EE5 tutorial" is... the tutorial really builds up from basics! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043010#4043010

[jboss-user] [JBoss Seam] - Re: Ajax4jsf UnboundedFifoBuffer

2007-05-03 Thread petemuir
yes, a4j upgraded to newest commons, so we should all be in sync. and i'm gonna refrain from swearing about commons dependencies. In essence, make sure that you the latest ajax4jsf.jar and commons-XXX.jar in your app and you should be ok. And if you aren't, please post back! View the original

[jboss-user] [JBoss jBPM] - Re: fault never reaches catchall

2007-05-03 Thread meghanai_99
I built the jbpm-jpdl.jar locally using the cvs repository I have checked out. After copying that file to default\lib I get this exception - | 14:28:08,571 ERROR [JobExecutorThread] exception in job executor thread. waiting | 32 milliseconds | java.lang.IllegalStateException: DOT nod

[jboss-user] [JBoss Seam] - Re: Trinidad 1.0.0, Seam and JBoss 4.0.5

2007-05-03 Thread stephen.friedrich
"petemuir" wrote : | anonymous wrote : I noticed that seamdiscs puts the myfaces api jar in the ear and only the impl jar in the web module. That's a combination I have not yet tried. Will check if that works this evening. | | I take it you mean trinidad? Thats needed so that you can get

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

2007-05-03 Thread petemuir
i think they nee to be private transient Foo foo - @transient is annotation for jpa iirc View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043005#4043005 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043005 _

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-03 Thread petemuir
and generally, regarding eclipse and seam-gen - rhds will transform seam-gen into an eclipse plugin. i know max is strongly in favour of a wtp style structure so i think that will be in there! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043004#4043004 Re

[jboss-user] [EJB 3.0] - design pattern for canceling an EJB3 timer

2007-05-03 Thread ajay662
I need some advice on how to cancel an active EJB3 timer. Currently below is the flow of things in my application 1. Client schedules a task via SLSB. | 2. SLSB validates task parameters and queues a JMS msg, passing it the Task Object. | 3. Corresponding MDB gets the JMS message and dependi

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-03 Thread petemuir
"stu2" wrote : but personally I suspect the 80 remaining items in Jira mean sometime in June. The 2 blockers (IMO) on a beta of seam 1.3 are now ws and javaone. lots of those 80 issues will get slipped to later betas/versions ;) View the original post : http://www.jboss.com/index.html?modul

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-03 Thread petemuir
"fperedo" wrote : Maybe it is just me.. but I feel that lines between "cant be done without J2EE5" and "can't be done without the microcontainer" and "can be done with just tomcat" are blurry... perhaps if the documentation included some kind of feature matrix comparing the functionality of seam

[jboss-user] [JBoss Seam] - Re: Transaction Timeout Exception

2007-05-03 Thread nsunil76
this is happening only when i try to insert exceptions into the database. Thank you sunil View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043000#4043000 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043000

[jboss-user] [JBoss Seam] - @Name's value configuration by convention

2007-05-03 Thread youngm
Anyone aware of a particular reason why @Name's value attribute is required? It would seem that value would be a perfect candidate for configuration by convention using a camel cased class name. Mike View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042999#404

[jboss-user] [EJB 3.0] - Re: help composite keys

2007-05-03 Thread fhh
anonymous wrote : | This is Database Theory but what can i do to this in EJB3? | This not about database theory nor about EJB 3 but about your data model. I think you should focus first on what you actually want to map. I assume the follwing is true: 1.) One Route consists of many ports

[jboss-user] [JBoss Seam] - Transaction Timeout Exception

2007-05-03 Thread nsunil76
Hi, I am trying to catch an exception and insert them into the database. when ever i try to get a database connection am getting Transaction timeout exception. you check error below. I am guessing this is occuring because of setRollback metod. This method is active when a exception is occered,

[jboss-user] [JBoss Seam] - Loosing the URL parameters between requests

2007-05-03 Thread [EMAIL PROTECTED]
I am looking for a way to keep the GET params between requests (leading to the same page). The blog sample app for instance has nice bookmarkable URLs for the posts: http://localhost:8080/seam-blog/seam/entry.xhtml;jsessionid=81D2CDB39A995308A2E407B5BB2007A3?blogEntryId=book however, when you ch

[jboss-user] [JBoss Messaging] - Re: RediveryDelay implemented yet?

2007-05-03 Thread [EMAIL PROTECTED]
anonymous wrote : | This is an interesting one. | [/quote | | They all are :-) | | The real question, and this is applicable for the expiration stuff as well, is what is the job of the container versus the provider. The JMS spec is pretty thin on what constitutes QOS. The JCA spec

[jboss-user] [JBoss Messaging] - Re: RediveryDelay implemented yet?

2007-05-03 Thread timfox
Actually expiry behaviour should be ok, but anything that's triggered by throwing exceptions will be snagged by the MDB container before JBM has a chance to do anything View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042989#4042989 Reply to the post : http:/

[jboss-user] [JBoss Messaging] - Re: RediveryDelay implemented yet?

2007-05-03 Thread [EMAIL PROTECTED]
anonymous wrote : | It may be possible to confgure the MDB container to not do redelivery and pass the exception back up , I need to check with Weston to see if it supports that. | No we don't. We support catching the exception and taking the appropriate action based on transactional se

[jboss-user] [JBoss Messaging] - Re: RediveryDelay implemented yet?

2007-05-03 Thread timfox
This is an interesting one. JBM implements a lot of nice functionality like delayed redelivery, DLQ configured on a per destination basis, Expiry queues configured on a per destination basis etc. But when using MDBs these aren't used for the previously mentioned reasons. This seems a bit of a

[jboss-user] [JBoss Messaging] - Re: FYI: mssql-persistence.xml uses reserved words for colu

2007-05-03 Thread timfox
This has been fixed some time ago and will be in the next release http://jira.jboss.com/jira/browse/JBMESSAGING-915 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042982#4042982 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=rep

[jboss-user] [EJB 3.0] - Re: help composite keys

2007-05-03 Thread sashaxiv
i do what you say because i need it. I have a many to many relation beetwen "puerto" and "ruta" and the pks in these classes(idRuta and idPuerto) are the composite pk in the "rutapuerto" entity and also they are fks referencing puerto and ruta. This is Database Theory but what can i do to this

[jboss-user] [JBoss Messaging] - Re: JBoss Messaging 1.2.0.GA with JBoss AS 4.2.0.CR1

2007-05-03 Thread timfox
JBM 1.20.SP2 will work seamlessly with 4.2.0.GA (not CR). We haven't tried it with (nor do we support) RC releases. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042986#4042986 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=re

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

2007-05-03 Thread toni
The timeout is set in another .xml file. Maybe this helps you: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=101719 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042984#4042984 Reply to the post : http://www.jboss.com/index.html?module=bb&op=post

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

2007-05-03 Thread petemuir
Please start a new thread and explain your problem in full, and state your environment and code. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042985#4042985 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4042985 _

[jboss-user] [JBoss Messaging] - Re: RediveryDelay implemented yet?

2007-05-03 Thread timfox
If you are using MDBs, then the MDB container lives between JBoss Messaging and your MDB. So if your MDB throws an exception it is caught in the MDB container, which handles redelivery. I don't believe the MDB container contains delayed redelivery functionality. It may be possible to confgure

[jboss-user] [EJB 3.0] - Re: Altering the transaction timeout

2007-05-03 Thread toni
I have tried this on my session bean, but I still run into a TransactionTimeout exception. I used the following my stateful session bean: | @org.jboss.annotation.ejb.TransactionTimeout(1000) | Changing the timeout in jta-service.xml on the other hand works. I'm using seam 1.1 - could

[jboss-user] [EJB 3.0] - Re: package protected interfaces

2007-05-03 Thread ALRubinger
Is it possible that the container is deploying your test-ejb.jar before your test-core.jar? If so, it'll be attempting to deploy your EJB3 beans before the required libraries are in place. If this is the case, try: 1) Placing test-core.jar into $JBOSS_HOME/server/[instanceName]/lib (assuming

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-03 Thread supernovasoftware.com
Is there anyone else working on this? From the jira issue is appeared that there was a need. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042979#4042979 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4042979 _

[jboss-user] [Management, JMX/JBoss] - JMX URLs

2007-05-03 Thread argonRyan
I've created an MBean on a JBoss server with all default settings and it is running fine. I can see it on the jmx-console and as well as view it in the JConsole application under 'local'. How do I determine the JMX URL to use to remotely invoke the MBean? I am trying to get it to work with

[jboss-user] [JBoss Messaging] - Re: Security config in 1.2.0.sp1

2007-05-03 Thread cresny
do you have something like this, in messaging-service.xml? | java:/jaas/messaging | | | | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042973#4042973 Reply to the post : h

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

2007-05-03 Thread nsunil76
Gavin, i have all my database connections closed. I tried increasing the transaction timeout parameter in jboss-service.xml. Even then i have the same problem. Actually am getting this error when am trying catch and insert an exception into the database (oracle/derby). Any suggestions/workarou

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-03 Thread [EMAIL PROTECTED]
Well, maybe you can look at the existing asynchronous/scheduled processing with EJB3 timers and submit an implementation for Quartz etc. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042968#4042968 Reply to the post : http://www.jboss.com/index.html?module

[jboss-user] [JBoss Seam] - Injection of LocaleSelector does not work in 1.2.1GA

2007-05-03 Thread tonylmai
The following code used to work when I first tried it with 1.1.6GA. Now, the the injection of LocaleSelector no longer works. The value is null. Any idea? Thanks public class LocaleChanger { | | @In | LocaleSelector localeSelector; | | @Logger | Log log; |

[jboss-user] [EJB 3.0] - Re: help composite keys

2007-05-03 Thread fhh
Sorry missde that annotation. But your problem is quite simple. You are using "idruta" as part of the pk and as fk. Regards Felix View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042964#4042964 Reply to the post : http://www.jboss.com/index.html?module=bb&

[jboss-user] [JBoss Seam] - Re: Really simple, please advice (passing h:dataTable to eve

2007-05-03 Thread viniciuscarvalho
Thanks, now, just to understand, why my idea did not work? I'm using the booking example as reference and its pretty much the same code. Could not find why hotelSearch.selectHotel(hot) works and rentalService.start(c) does not... :( Any ideas? View the original post : http://www.jboss.com/ind

[jboss-user] [JNDI/Naming/Network] - Scoped Loader yields null InitialContext.lookup on datasourc

2007-05-03 Thread chip_schoch
JBossAs 4.2.0.CR2 JBossMessaging 1.0.1.GA I have several MBeans that use some shared code I have developed. I am trying to use scoped loading by adding this to my jboss-service.xml: com.eLynx:loader=BpmExecutor When I do this my jndi lookup returns a null datasource, not a NamingNotFoundExc

[jboss-user] [JBoss Seam] - Setting up context into a remote EJB app

2007-05-03 Thread tonylmai
Hello all, I have an existing EJB middle-tier app that was developed and deployed with JBoss 4.0. I would like to put together a Seam Web UI app for this middle-tier app. How would I go about making an initial context into this remote EJB app. This EJB app may or may not seat on the same serve

[jboss-user] [Installation, Configuration & Deployment] - Setting up virtual directories in Jboss

2007-05-03 Thread jboss newbee
Hi, We are converting our ASP application to JSP and we are using jboss 4.0.4 version. In IIS you can set up virtual directories( to get the images, data from other computers). But, is it possible to do this in jboss Thank You! View the original post : http://www.jboss.com/index.htm

[jboss-user] [JBoss jBPM] - Re: jbpm-jpdl-3.2.GA - incomplete project creation in eclips

2007-05-03 Thread jgreiner
On your version it creates the process here. jpdl | `-- simple | |-- gpd.xml | |-- processdefinition.xml | `-- processimage.jpg not in the processes directory, so continue with simple being the the processes directory. Hope this helps. View the original post : http://www.jboss.com/index.

[jboss-user] [EJB 3.0] - Re: Entitymanager Persistent

2007-05-03 Thread ALRubinger
Well, unless the relationship defined is annotated with @Cascade (CascadeType.PERSIST), you can't persist one entity and expect the relationship to be inserted as well. So that's one solution. However, I typically keep the Cascading strategies to NONE as a default (to keep close tabs on what o

[jboss-user] [JBoss Seam] - Re: Really simple, please advice (passing h:dataTable to eve

2007-05-03 Thread stu2
"viniciuscarvalho" wrote : Hi there! I have a really simple question, can not find the answer :( | | I'm trying to start a conversation on a second page after the user clicks on | a link in a view: | | | | | | | | | | | | | | | | My RentalServic

[jboss-user] [JBoss Seam] - Seam, Maven e Facelets

2007-05-03 Thread srpantano
I´m trying to make an application with Seam (1.2.1GA), JSF RI (1.2_b04), facelets (1.1.12) build with Maven2. This application has one EAR module, one EJB and one WAR module. Another import aspect is the version showed of Seam 1.2.0PATCH1, but the libs are of 1.2.1.GA When start the Jboss this

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-03 Thread supernovasoftware.com
I was referring to the following reference of integration of Quartz or jBPM business calendars. http://jira.jboss.com/jira/browse/JBSEAM-161 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042953#4042953 Reply to the post : http://www.jboss.com/index.html?m

[jboss-user] [JBoss Seam] - Really simple, please advice (passing h:dataTable to event)

2007-05-03 Thread viniciuscarvalho
Hi there! I have a really simple question, can not find the answer :( I'm trying to start a conversation on a second page after the user clicks on a link in a view: | | | | | | | My RentalService: | | @Name("rentalService") | @Stateful | @Scope(ScopeType.SESSION

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-03 Thread vwu98034
"stu2" wrote : What sorts of integrations are you concerned about? Scheduling is definitely one integration I am looking for in a web framework. In general, I will use a framework with a great flexibility that allows me to integrate other technologies easily. View the original post : http://

[jboss-user] [JBoss Seam] - Re: Can not persist EJB3 Timer since Jboss 4.2.0cr2 + seam

2007-05-03 Thread gena777
Ok, i've found it! Since the new jboss ts implementation supports only one local-tx-resource per distributed transaction, the timer can not be commited until a bean uses more then one local-tx resource. Timers are hosted by default within the non xa hsqldb. So if we use in our transaction also

[jboss-user] [EJB 3.0] - Re: HQL/ JPA-QL Query Tuning: How to enforce the join order

2007-05-03 Thread fhh
| select * |from Table1 T1, Table2 T2, Table3 T3 |where T1.Key3_ID = T3.Key3_ID | and T1.Key2_ID + 0 * T3.Key3_ID =T2.Key2_ID | This is just sick disgusting rubbish! Who ever invented that stuff - fire him! Regards Felix View the original post : http://www.jboss.com/

[jboss-user] [JBoss Messaging] - Re: RediveryDelay implemented yet?

2007-05-03 Thread parressh
The RedeliveryDelay is not working for me either. I'm using JBoss Messaging 1.2.0SP1 deployed to JBoss 4.0.5.GA. My destination config looks like this: | | jboss.messaging:service=ServerPeer | jboss.messaging:service=PostOffice | 30 | | If I throw a

[jboss-user] [JBoss Seam] - Re: validation message displayed twice

2007-05-03 Thread damianharvey
Do you have showDetail="true"? If so, try removing it. I had the same issue and this was the cause for me. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042945#4042945 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=404

[jboss-user] [JBoss Messaging] - Re: FYI: mssql-persistence.xml uses reserved words for colu

2007-05-03 Thread parressh
It also works to enclose the word CLUSTERED inside brackets to make it [CLUSTERED] View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042944#4042944 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4042944 ___

  1   2   3   >