[jboss-user] [JBoss Seam] - Re: JAAS Authentication and the actor

2007-10-19 Thread jgeraert
Thank you for helping this poor sole :) I think this should go into documentation ... Best regards, Jo View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097155#4097155 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=40

[jboss-user] [JBoss Seam] - Seam architcture question - reusability of jsf include eleme

2007-10-19 Thread gothmog
Hi, I'm pondering how Seam solves the problem of decoupling a ui element from its action class so that it can be reused. Lets take an example, suppose I have a datatable that I want to re-use in several places but i want different clickable actions on (unknown at design time) action classes on

[jboss-user] [JBoss Seam] - Re: trouble with getting to work

2007-10-19 Thread gothmog
Here it is :) | @Name("items") | @Scope(ScopeType.CONVERSATION) | public class Items { | | @Logger Log log; | @In EntityManager entityManager; | | private List groups; | | @Create | public void init() { | log.info("init()"); |

[jboss-user] [JBoss Seam] - Re: trouble with getting to work

2007-10-19 Thread dhinojosa
Can we see the session bean that #{items} refer to? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097152#4097152 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097152 ___ jb

[jboss-user] [JBoss Seam] - trouble with getting to work

2007-10-19 Thread gothmog
Hi, I've read the doc and still can't get this Seam feature to work. Essentially I have something simple but I keep getting this: | 15:18:15,305 WARN [lifecycle] EntityManager is closed | java.lang.IllegalStateException: EntityManager is closed | at org.hibernate.ejb.EntityManagerIm

[jboss-user] [JBoss Seam] - Re: rich:tree nodes expanded by default

2007-10-19 Thread yuriy_zubarev
Got it. stateAdvisor was a solution. Regards, Yuriy View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097150#4097150 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097150 ___ j

[jboss-user] [JBoss Portal] - Re: Portal and using openxchange ldap for users

2007-10-19 Thread saigon_man
check out this link http://jboss.com/index.html?module=bb&op=viewtopic&t=120031 hope this will answer your question SGM View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097149#4097149 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&m

[jboss-user] [JBoss Seam] - rich:tree nodes expanded by default

2007-10-19 Thread yuriy_zubarev
Hi, Any ideas on how to have all nodes of rich:tree to be expanded by default? Thank you, Yuriy View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097145#4097145 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097145

[jboss-user] [JBoss Messaging] - Re: Using JAAS Authentication with SSL

2007-10-19 Thread timfox
Hi btsibr- Sorry, we will answer this in due course. We're just very busy at the moment! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097144#4097144 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097144 _

[jboss-user] [JBoss Messaging] - Re: call ServerPeer.enableMessageCounters on jboss startup

2007-10-19 Thread timfox
There's no way to do this automatically currently. If you like you could add a feature request in JIRA to add a parameter which if true would enable message counters on start up. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097143#4097143 Reply to the post

[jboss-user] [JBoss Seam] - Re: Problems with Seam-gen (and maven i guess)

2007-10-19 Thread bdlink
Same problem happening to me. Trying to run seam-gen, in particular "seam setup" and get error message during the init phase: anonymous wrote : 1 required artifact is missing. | | for artifact: | unspecified:unspecified:jar:0.0 | | from the specified remote repositories: | cent

[jboss-user] [JBoss Seam] - Re: Is passing a object through el to JavaScript possible?

2007-10-19 Thread samdoyle
Just tested this in my case works great! Good stuff. | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097140#4097140 Reply to the post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [JBoss Seam] - Re: @Out-jection fails to work in certain conditions - Bewar

2007-10-19 Thread [EMAIL PROTECTED]
Ok. This sounds suspiciously like a problem that I thought was fixed. I'll take a look at your test case in a little bit. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097137#4097137 Reply to the post : http://www.jboss.com/index.html?module=bb&op=postin

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Deploy native libraries in an ear

2007-10-19 Thread svadu
May be it's a late reply (just found this post occasionally). Try to use resource adapters (look up for J2EE Connector Architecture) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097136#4097136 Reply to the post : http://www.jboss.com/index.html?module=bb&o

[jboss-user] [JBoss Seam] - Caused by: javax.faces.el.EvaluationException: javax.ejb.EJB

2007-10-19 Thread dnewdawgs
@Stateful @Name("registerNewMember") public class RegisterNewMemberAction implements RegisterNewMember { @PersistenceContext EntityManager em; //@Resource //SessionContext ctx; @In Context sessionContext; @In(create=true) @Out NewMember newMember; @

[jboss-user] [JBoss Seam] - Re: Is passing a object through el to JavaScript possible?

2007-10-19 Thread samdoyle
Actually the status field is a var used in interation in a rich:dataTable, in addition the JavaScript I want to pass the object to does not use AJAX put manipulates decorations on a already rendered GoogleMap. S.D. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic

[jboss-user] [JBoss Seam] - Re: Is passing a object through el to JavaScript possible?

2007-10-19 Thread samdoyle
Thanks for the response, I'll take a look at that the jsFunction you mentioned. S.D. "IGx89" wrote : One solution would be to have something like the following in your HEAD section: | | | | | | var status = #{status}; | | | | | | and just use that var in your script

[jboss-user] [JBoss Seam] - Re: selectOneMenu without form submission

2007-10-19 Thread smithbstl
Either use a4j:support nested inside your button using "onclick" or use an a4j:commandButton instead of an s:button. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097130#4097130 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=

[jboss-user] [JBoss Seam] - Re: Excel support in Seam: any interest?

2007-10-19 Thread rjstanford
Did the library ever get opened up? If this is available, I'd love to take a look at it. We're about to be generating really basic (yet functionally important to our customers) XLS reports, and this would be all we needed. View the original post : http://www.jboss.com/index.html?module=bb&op

[jboss-user] [JBoss Seam] - Re: @Out-jection fails to work in certain conditions - Bewar

2007-10-19 Thread gothmog
Hi Norman, Yes I can confirm that by simply changing the scope to SESSION and removing the @Begin does make the example work. I also tried the @Out(required=false) Item and changed the page to read the @Out-jected item instead of the action class getter and left the scope as CONVERSATION. I g

[jboss-user] [JBoss jBPM] - Getting Blank Task Form

2007-10-19 Thread utsaviinindia
I am using Eclipse Version 2.0.0 with bundled plugin and jbpm-jpdl-3.2.2 I am trying to deploy/run first example on jBoss site (Holiday Request). Everything goes fine till I start running the instance. On task form I see blank form, can someone advise how I can resolve it. Thanks in advance.

[jboss-user] [Installation, Configuration & DEPLOYMENT] - nullpointer at DatabasePersistencePolicy.listTimerHandles

2007-10-19 Thread hejulrik
Hi! When I deploy my application in Jboss4.0.5GA ( clustered) I get nullpointer exception at org.jboss.ejb.txtimer.DatabasePersistencePolicy.listTimerHandles . Is it some database-connection problem or some configuration error ? I've succed to deploy it when running non-clustered

[jboss-user] [JBoss Seam] - getter problem

2007-10-19 Thread skanky78
hi, my problem is a well known problem but nonetheless i'm wondering how to do it right..maybe one of you can help me with this issue: i have a datatable which uses an extended datamodel (similar to this example http://wiki.apache.org/myfaces/WorkingWithLargeTables) to cope with large amount o

[jboss-user] [JBossWS] - Re: JBossWS vs Glassfish, do we a 'Tester' ?

2007-10-19 Thread iner
Thanks !! I will put a side saturday for this and get back to you! regards, Inkimar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097120#4097120 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097120 _

[jboss-user] [JBoss Seam] - Re: Is passing a object through el to JavaScript possible?

2007-10-19 Thread IGx89
One solution would be to have something like the following in your HEAD section: | | var status = #{status}; | | and just use that var in your script. Another possible (much more elaborate) method would be to use a4j:jsFunction View the original post : http://www.jboss.com/index.ht

[jboss-user] [EJB 3.0] - Re: comp not bound on redeploy

2007-10-19 Thread DeanoUK
The ear comprises of the wars and jars that depend on each other. There's no seperate files away from the ear. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097116#4097116 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p

[jboss-user] [JBoss Seam] - Is passing a object through el to JavaScript possible?

2007-10-19 Thread samdoyle
Basically I want to do something like this but it doesn't appear to work. Is there something I can do to make it work? | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097115#4097115 Reply to the post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [EJB 3.0] - Re: MDB MessageType problems

2007-10-19 Thread viniciuscarvalho
Forget it :) Correct way was messageListenerInterface=MessageListener.class Sorry :P View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097114#4097114 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097114

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 2.0.0.beta4 released

2007-10-19 Thread [EMAIL PROTECTED]
expand the europa update site first then eclipse update manager can figure out to get the proper dependencies. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097113#4097113 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p

[jboss-user] [JBoss Seam] - Re: document.getElementById() problem with JSF/Seam

2007-10-19 Thread asookazian
thx for the reply. It seems you're right based on the view source (HTML rendered) in IE: bigout I don't know why the hidden field's value ("hideme") is not showing above. val1 is blank and val2 is undefined in the javascript function when I run the app. I modified the main.xhtml from the se

[jboss-user] [EJB 3.0] - MDB MessageType problems

2007-10-19 Thread viniciuscarvalho
Hello there! I'm running JBoss 4.2.1 and I have this class inheritance: | public abstract class AbstractMDB implements MessageListener{ | @EJB | private bizRef; | | public abstract void operateMessage(Element message); | | public void onMessage(Message message){ | bizRef

[jboss-user] [Beginners Corner] - Re: EJB3 Initialization Parameter

2007-10-19 Thread pdgillen
in ejb-jar.xml - inside the tag defining the EJB - SECURITY_PRINCIPAL java.lang.String foo SECURITY_CREDENTIALS java.lang.String bar -

[jboss-user] [Beginners Corner] - Re: Authentication Failure

2007-10-19 Thread pdgillen
So that worked. Next I wanted to externalize the uid/pwd, i.e. remove the hard-coded values. For that see: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=121632 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097108#4097108 Reply to the post : ht

[jboss-user] [Security & JAAS/JBoss] - Re: Will logging out from JOSSO invalidate the application s

2007-10-19 Thread [EMAIL PROTECTED]
JOSSO forums may help you. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097106#4097106 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097106 ___ jboss-user mailing list jbos

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: how to qualify java properties with jboss server instanc

2007-10-19 Thread PeterJ
The jboss.server.config.url property is only available when running JBoss AS. It is not available in standalone Tomcat. I suggest you define your own system property for the location of the properties file and pass it in on the JVM command line. View the original post : http://www.jboss.com/in

[jboss-user] [Security & JAAS/JBoss] - Re: custom login module access httpservletrequest

2007-10-19 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=SecurityFAQ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097105#4097105 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097105 ___ jb

[jboss-user] [Security & JAAS/JBoss] - Re: identity propagation between different instances

2007-10-19 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=SecurityFAQ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097104#4097104 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097104 ___ jb

[jboss-user] [Security & JAAS/JBoss] - Re: Implemenation of SAML 2.0 for SSO

2007-10-19 Thread [EMAIL PROTECTED]
OpenSAML2 implementation is happening in the community. I guess the JBoss-SSO v2 work can start sometime. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097102#4097102 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097

[jboss-user] [Security & JAAS/JBoss] - Re: mapping principals with digital certificates

2007-10-19 Thread [EMAIL PROTECTED]
You will need to provide an implementation of the CertificatePrincipal interface. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097103#4097103 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097103

[jboss-user] [EJB 3.0] - Re: Good build.xml to build the ear file

2007-10-19 Thread waynebaylor
here's one i threw together, i'll leave it to you to figure out the dir structure that goes along with it :) | | | | | | | | | | | | | | | | | | | |

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: The JSF library situation in JBoss explained (it's calle

2007-10-19 Thread [EMAIL PROTECTED]
I don't know if it's working with cluster or not. But cluster and JBoss Portal are two different things, so I don't understand your question. I do know that JBoss Portal is using a custom classloader to deal with some of the JSF issues discussed earlier in this thread. For your OutOfMemoryErr

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 2.0.0.beta4 released

2007-10-19 Thread hemna
I'm having a problem using the updated to get this new version. Eclipse keeps complaining about dependencies when I select the JBossTools Core 2.0.0beta4 Eclipse Modeling Framework Technology Workbench Integration (1.1.0.v200702011903) requires plug-in "org.eclipse.emf.edit.ui (2.2.0)", or com

[jboss-user] [Security & JAAS/JBoss] - Re: Using valves to perform custom login based on http cooki

2007-10-19 Thread [EMAIL PROTECTED]
You need an authenticator along the lines of GenericHeaderAuthenticator. http://anil-identity.blogspot.com/2007/04/tip-3-token-based-perimeter.html View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097098#4097098 Reply to the post : http://www.jboss.com/index.h

[jboss-user] [Security & JAAS/JBoss] - Re: Login information

2007-10-19 Thread [EMAIL PROTECTED]
Disable container authentication and use your own authentication. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097096#4097096 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097096 _

[jboss-user] [JBoss Seam] - selectOneMenu without form submission

2007-10-19 Thread cjalmeida
The scenario: I have a payment form where the user select a supplier by choosing from a dropdown menu. The user can edit supplier's data by selecting one from the menu and clicking the "Edit" button. After editing (or canceling) changes, it returns to the payment form. So, I need to get the

[jboss-user] [Security & JAAS/JBoss] - Re: HOW JAAS works in jboss container

2007-10-19 Thread [EMAIL PROTECTED]
If u r using container authentication, then JAAS is an internal aspect of JBoss AS. Now if you want to do authentication in your application and want to do JAAS, then you instantiate the login context. But the configuration of the login module, still happens in conf/login-config.xml or using

[jboss-user] [Security & JAAS/JBoss] - Re: JACC integration with JBoss

2007-10-19 Thread [EMAIL PROTECTED]
JBoss implements the JACC specification in line with the Java EE 1.4 requirements. http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossSX http://wiki.jboss.org/wiki/Wiki.jsp?page=JACC View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097094#4097094 Reply to the post

[jboss-user] [Security & JAAS/JBoss] - Re: Help securing 3 webapps

2007-10-19 Thread [EMAIL PROTECTED]
Enable the apache single sign on valve in tomcat server.xml http://wiki.jboss.org/wiki/Wiki.jsp?page=SingleSignOn http://anil-identity.blogspot.com/2007/10/tip-7-sso-between-web-applications.html View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097093#4097093 R

[jboss-user] [JNDI/Naming/Network] - Re: javax.naming.NameNotFoundException whe doing jndi lookup

2007-10-19 Thread waynebaylor
i don't know much about web logic, but i imagine JBoss has a different default JNDI naming convention. so, you could probably share the same java code, but you'd still have to provide an app. server specific deployment descriptor. View the original post : http://www.jboss.com/index.html?module=

[jboss-user] [EJB 3.0] - Re: Problem with Entity Manager dependency injection in JBos

2007-10-19 Thread waynebaylor
have you tried putting the persistence.xml in the META-INF dir? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097090#4097090 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097090 ___

[jboss-user] [EJB 3.0] - Re: comp not bound on redeploy

2007-10-19 Thread waynebaylor
is there a separate war or jar that depends on classes in the ear? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097089#4097089 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097089

[jboss-user] [JBoss Seam] - Re: @Out-jection fails to work in certain conditions - Bewar

2007-10-19 Thread [EMAIL PROTECTED]
Can you verify that your example does or doesn't work if you change the scope to SESSION and remove the @Begin. (still using an entity) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097088#4097088 Reply to the post : http://www.jboss.com/index.html?modul

[jboss-user] [JBoss Seam] - Re: javax/el/ELResolver on JBoss 4.2.1.GA

2007-10-19 Thread [EMAIL PROTECTED]
JBoss 4.2 uses the JSF RI whereas JBoss 4.0 uses myfaces. Your app will not work until you make the appropriate configuration changes. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097086#4097086 Reply to the post : http://www.jboss.com/index.html?module=b

[jboss-user] [JBoss Seam] - Re: Seam nightly builds

2007-10-19 Thread asookazian
JIRA for 2.0.0.GA states 53 of 53 complete. good job. when can we download it? it's not available yet on http://labs.jboss.com/jbossseam/download/index.html View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097077#4097077 Reply to the post : http://www.jboss.

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: how to qualify java properties with jboss server instanc

2007-10-19 Thread jesso1607
I also think these libraries can be in a Tomcat server as well. Sorry I forgot to say that. The above would only work in JBoss? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097074#4097074 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

[jboss-user] [EJB 3.0] - avoid lazy-initialization exceptions during Web Service acce

2007-10-19 Thread [EMAIL PROTECTED]
I actually posted this in the JBossWS forum, but due to the underwhelming response (0 replies to date) I was thinking maybe I posted in the wrong forum so I'm posting here, where the EJB3 audience lives. It involves exposing my EJB3 SLSBs as @WebServices. Here's the original post from http:/

[jboss-user] [JBoss jBPM] - Assignable too limited?

2007-10-19 Thread simonbaker
In the interest of purity, the "Assignable" interface is admirably sparse. However, from a practical point of view, it seems it would be useful if the "Assignable" interface included the following methods: getId() getName() getActorId() getPooledActors() These methods could help in writing reus

[jboss-user] [JBoss jBPM] - Re: Missing project file in 3.2.2

2007-10-19 Thread rkapil
"kukeltje" wrote : That is because there is no jbpm source tarball anymore. Use anonymous cvs access to get the source. Nah. I can't access the cvs server from work and don't need the hassle. Thanks anyway. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=40970

[jboss-user] [JBoss Seam] - Re: HELP!!! PDF generation and unicode

2007-10-19 Thread dhinojosa
What does the top declaration of your facelet page look like? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097064#4097064 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097064 _

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools Documentation

2007-10-19 Thread b1costa2
Thanks for the link. The documents I found before were outdated. Almost all of them referred JBoss IDE instead of JBoss Tools. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097063#4097063 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - hibernate search: @Indexed disabled from persitence.xml?

2007-10-19 Thread serj_
how can I disable action for @Indexed from persistence.xml ? thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097060#4097060 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097060

[jboss-user] [JBoss Seam] - Re: JBoss Seam and Mac OSX

2007-10-19 Thread vwiencek
Ok, i've found the solution. Mac OSX default ant installation is not provided with ant-antlr.jar ... so you just have to copy ant-antlr.jar to /usr/share/ant/lib ant that's it !! Vincent View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097055#4097055 Reply to

[jboss-user] [JBoss Seam] - Re: Form Element ID changed

2007-10-19 Thread griffitm
Thanks for the reply. I was able to use the prototype form.getInputs('text') to get an array of my form elements and replace the values that way. However, this doesn't work like I expected. Even though the HTML form contains the correct values, the bean that the search is bound to has the old v

[jboss-user] [JBoss Seam] - Some seam/drools questions

2007-10-19 Thread shakenbrain
Disclosure: I have about four hours of experience with drools. This contrived rule works: rule ReadJobTicket | no-loop | activation-group "permissions" | when | check: PermissionCheck(name == "jt", action == "read", granted == false) | JobTicket(titleName : title) | Role(n

[jboss-user] [JBoss Seam] - Re: UnsupportedOperationException at conversationList

2007-10-19 Thread b.reeve
I am using Woodstock component library and its because of the Woodstock UIComponentELResolver, that the seam built-in components are not working. Is there any way this can be resolved so that we can use Woodstock and Seam together? Thanks ! View the original post : http://www.jboss.com/index

[jboss-user] [JBoss Seam] - Re: @Out-jection fails to work in certain conditions - Bewar

2007-10-19 Thread IGx89
One solution would be to have "@Out private Item item;" in TestPageAction. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097046#4097046 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097046

[jboss-user] [JBoss Seam] - Re: Form Element ID changed

2007-10-19 Thread swd847
JSF pretty much generates id's of the form : container1ID:container2ID:elementID but it depends on the container. If you are still stuck there are other ways to approch this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097044#4097044 Reply to the post :

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: away from console setup for jmx-console?

2007-10-19 Thread ztaps
"PeterJ" wrote : The "cannot find the server" message usually means that there is no host that corresponds to the IP address. Can you ping the server? | | What is in the /etc/hosts file? | | Have you tried setting -Djava.net.preferIPv4Stack=true in the JVM command options. | | So m

[jboss-user] [JBoss Seam] - Re: javax/el/ELResolver on JBoss 4.2.1.GA

2007-10-19 Thread fmeystre
I forget to put first line of Exception : anonymous wrote : | 17:45:12,171 ERROR [[/pvente]] Exception sending context initialized event to listener instance of class org.jboss.web.jsf.integration.config.JBossJSFConfigureListener | ... | View the original post : http://www.jboss.com/in

[jboss-user] [JBoss Getting Started Documentation] - Re: org.jboss.util.ChapterExRepository can't be imported

2007-10-19 Thread PeterJ
How did you encounter this class? It is not in 4.0.5, 4.2.1 or 5.0beta2. I even searched the sources. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097035#4097035 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097035

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: how to qualify java properties with jboss server instanc

2007-10-19 Thread PeterJ
You could access the properties file using one of the system properties that identifies jboss directories. For example, if the properties file is at server/xxx/config/app.properties, you can access it as follows: String configDir = System.getProperties("jboss.server/config.url"); | Properties

[jboss-user] [JBoss Seam] - javax/el/ELResolver on JBoss 4.2.1.GA

2007-10-19 Thread fmeystre
I get an an javax/el/ELResolver Exception when project is deployed on Server 4.2.1.GA. project has been created using Seam-Gen with Server 4.0.5.GA and is working fine on 4.0.5.GA. If I check the libraries folder on the server jboss-4.2.1.GA\server\default\lib, I can see the jar : el-api.jar

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: away from console setup for jmx-console?

2007-10-19 Thread PeterJ
The "cannot find the server" message usually means that there is no host that corresponds to the IP address. Can you ping the server? What is in the /etc/hosts file? Have you tried setting -Djava.net.preferIPv4Stack=true in the JVM command options. So many things that can go wrong. Ain't Linux

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: portal tree expansion doesn't work

2007-10-19 Thread OoSVS
Hello ! I have the same problem but I am using panel collapsible. Is there any solution for this problem? help me please T_T View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097028#4097028 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[jboss-user] [EJB 3.0] - Good build.xml to build the ear file

2007-10-19 Thread urswag
Is there a good template for an ANT build.xml file? I would like to compile, build, deploy, undeploy, test an ear application. Thanks for Your support. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097027#4097027 Reply to the post : http://www.jboss.com/ind

[jboss-user] [JBoss Seam] - Re: s:selectDate of

2007-10-19 Thread [EMAIL PROTECTED]
So use one out of whatever other component set you use - pretty much everyone has one ;) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097025#4097025 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097025 _

[jboss-user] [JBoss Seam] - javax.ejb.EJBTransactionRolledbackException: In attribute re

2007-10-19 Thread dnewdawgs
Can someone help I am using seams 2.0 and I am getting this error when trying it run my code @Stateful @Name("registerNewMember") public class RegisterNewMemberAction implements RegisterNewMember { @PersistenceContext EntityManager em; //@Resource //SessionContext ct

[jboss-user] [JBoss Seam] - Form Element ID changed

2007-10-19 Thread griffitm
Hello All, Using Seam 2.0.0CR1, I have a form where I want to change the value of a element based on the selection of a DDLB. It seems overkill to use Ajax, and to make a round trip to the server in order to change the value of an HTML input -- so I wrote a simple JS function to change the

[jboss-user] [EJB/JBoss] - Re: EJB with infinite loop does not timeout

2007-10-19 Thread eia
Hi, Thank you for your reply. I have found a solution for decouple my App with the SLSB, but i want a way to kill that SLSB that is consuming 100% of CPU. Is there a way to signal the JBoss to kill that instance that is not functioning well ? Because i am dependent of external SLSB which are o

[jboss-user] [JBoss Seam] - Re: s:selectDate of

2007-10-19 Thread [EMAIL PROTECTED]
I think that is bad idea ! I need to use this tag but I dont`t wont to use rich faces library !!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097021#4097021 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097021 ___

[jboss-user] [EJB/JBoss] - Re: EJB with infinite loop does not timeout

2007-10-19 Thread daniel.celentano
1) thinks in JMS for decouple APPs. 2) SLSB not support @Remove. Remove is a SFSB event. regards, DC View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097016#4097016 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097016 _

[jboss-user] [JBoss Portal] - Re: How to set and get Portal session

2007-10-19 Thread saigon_man
Hi, The isUserInRole("String") always returns false for the default roles in jboss which are "Admin" and "Users" or whatever default roles comes with jboss. I don't know if there are any configurations that I should do first. Searching in this forum for this question is hard since there are lots

[jboss-user] [Installation, Configuration & DEPLOYMENT] - how to qualify java properties with jboss server instance

2007-10-19 Thread jesso1607
We have 3 JBoss server instances with Java libraries as war files. In the code they access a common java "properties" file. This is common across the 3 servers, since they share the same code. I need to find a way to qualify the variables in the property file with the name of the server insta

[jboss-user] [JBoss jBPM] - Encoding in Mail.java

2007-10-19 Thread lmichenaud
Hi, I had problems encoding in Mail.java on subject and text. I changed like this : message.addHeader("Content-Transfer-Encoding", "UTF-8"); | message.setSubject(subject, "UTF-8"); | message.setText(text, "UTF-8"); View the original post : http://www.jboss.com/index.html?module=bb&op=view

[jboss-user] [EJB 3.0] - Re: MS SQL View as Entity?

2007-10-19 Thread youngyang
Apparently this is a hibernate bug http://opensource.atlassian.com/projects/hibernate/browse/HHH-2018 the good one for you is this was recently corrected :) just check out the last sources... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097005#4097005 Rep

[jboss-user] [Microcontainer] - Re: version 2 documentation

2007-10-19 Thread newtonm
I've started work on a new Getting Started Guide which you can find in SVN here: http://anonsvn.jboss.org/repos/jbossas/projects/microcontainer/trunk/docs/Getting_Started_Guide/ It's only a couple of pages at the moment as I have still to check in my examples and additional content. To build it

[jboss-user] [Clustering/JBoss] - Re: How to verify isolated all services for 2nd Cluster?

2007-10-19 Thread [EMAIL PROTECTED]
The first four are the standard ones. The last only comes into play if you go out of your way to use an obscure feature in the jmx-console. Unfortunately there's no simple way to verify isolation. A good approach is to give each cluster a different partition name (via the -g swtich at startup)

[jboss-user] [JBossWS] - Re: JBossWS vs Glassfish, do we a 'Tester' ?

2007-10-19 Thread omatzura
Hi, have a look at soapUI (http://www.soapui.org), which is an extremely popular free open-source desktop app for invoking, testing and simulating any web-service. It even has built-in support for the jbossws wsconsume toolset and there are plugins for eclipse, netbeans and IDEA.. Previously

[jboss-user] [JBoss Seam] - Re: HELP!!! PDF generation and unicode

2007-10-19 Thread rmemoria
Hi guys, It's really urgent! Does anybody has a solution for that??? Anything! Thanks, View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096998#4096998 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4096998 _

[jboss-user] [Clustering/JBoss] - Re: Load Balancing?

2007-10-19 Thread [EMAIL PROTECTED]
Yes, although at this point mod_jk remains the preferred solution. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096996#4096996 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4096996

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: away from console setup for jmx-console?

2007-10-19 Thread ztaps
"PeterJ" wrote : Don't forget to open the ports in your firewall. I opened 8080, 1099, 1098, , 4445. The guy that opens up ports here at work isn't available right now to do that for me. Is port 8080 good enough because I know for a fact that port 8080 has been opened but I still get "Cann

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-19 Thread zeeshan.javeed
:) the problem was my constructor was not declard with PUBLIC modifier. The second thing, the war file is never published if it is renamed from .rar extension to .war. It should always be proper zip file and that can renamed to war and it works fine. View the original post : http://www.jboss

[jboss-user] [JBoss Portal] - Re: Portal and using openxchange ldap for users

2007-10-19 Thread Veroland
"roth" wrote : Check out http://wiki.jboss.org/wiki/Wiki.jsp?page=GiveAdminPrivileges I did. The role name in my ldap server is called "Admin", so the name did not change. That is where I am getting confused. Thanks for the reply View the original post : http://www.jboss.com/index.html?module

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-19 Thread zeeshan.javeed
I was doing a mistake and it deployed succesfully. Now , I created consumer.java | import java.rmi.RemoteException; | | import javax.xml.rpc.ServiceException; | import de.iplabs.*; | | public class consumer | { |public static void main(String args[]) |{ | |

[jboss-user] [EJB/JBoss] - EJB with infinite loop does not timeout

2007-10-19 Thread eia
Hi to all, I have an application which calls other Statless Session Beans, and i want that my application be independent and be protected against EJB which have high executions times. My application has the EJB reference which will call and tests if the execution time of an EJB exceeds a defin

[jboss-user] [JBoss jBPM] - jBPM-BPEL as a JBI component in a JBI ESB environment ?

2007-10-19 Thread y(oYo)
Hi all, I'm beginner in Services and Web-Services development, but my boss asked me to do : jBPM-BPEL integration as a JBI component in a JBI ESB platform. Does anybody know if that can be done, and if it is coherent to do ? I read this topic : http://www.jboss.com/index.html?module=bb&op=view

[jboss-user] [JBossWS] - Re: JBossWS vs Glassfish, do we a 'Tester' ?

2007-10-19 Thread [EMAIL PROTECTED]
Hi, JBoss currently lacks something similar to the Glassfish ws Tester, however we're working on this. For further information, take a look at http://www.jboss.com/index.html?module=bb&op=viewtopic&t=121127 Feel free to comment! In the meantime you might evaluate Wise http://www.javalinuxlabs.or

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-19 Thread jtestori
i can't see any problem, i tried it exactly with the code you have posted and it works View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096976#4096976 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4096976 ___

[jboss-user] [JBossWS] - Re: web service and asynchronous processing

2007-10-19 Thread jtestori
dear vitor_b, did you manage to do asynchronous calls as you described here? i would be very interested in how it works. or can anyone else help me? i don't want a stateful shopping card, but a webservice that calls back to the client after processing the request, because in my case this can be

[jboss-user] [Beginners Corner] - Unable to process deoployment descriptor for context 'null'

2007-10-19 Thread mikedunk
Hi, Have looked on the forums and not found any reference to the warning message: Unable to process deoployment descriptor for context 'null' Has anyone had this message when deploying to JBoss and discovered the solution? Thanks in advance, Mike View the original post : http://www.jboss.co

  1   2   >