[jboss-user] [JBoss Seam] - Re: Datmodel(Selection with facelets) does not work

2007-08-30 Thread baz
Any ideas/explanations/pointers? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079424#4079424 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079424 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: the intercept component don't work!

2007-08-30 Thread chlol
that's ok,thank you! but how to define a seam component? Is not it to use @Name to define? pardon my prolixity! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079425#4079425 Reply to the post :

[jboss-user] [JBoss Portal] - preferences in portlet-instances.xml

2007-08-30 Thread habicht
hi! i'm trying to read preferences out of the portlet-instances.xml but it doesn't work. i've read other posts concerning the same topic but i couldn't find a solution. the only thing that works is getting the value from the portlet.xml file. anonymous wrote : public class PortletA extends

[jboss-user] [JBoss Portal] - Re: preferences in portlet-instances.xml

2007-08-30 Thread habicht
ups! used quote instead of code. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079428#4079428 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079428 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: UnsupportedOperationException when using h:selectManyLis

2007-08-30 Thread wise_guybg
Thanks, that worked. As it turns out, there is no need to call entityManager.merge() at all. As the Exam entity is always in the entityManager, any call to entityManager.flush() will do the job of updating the database. I guess no one has got my problem because I shouldn't have called merge()

[jboss-user] [JBoss Seam] - Re: the intercept component don't work!

2007-08-30 Thread matt.drees
Yes, you use @Name to define a seam component. So, if you called Component.getInstance(interceptsTest), the @Logger field would be filled. But when Seam instantiates an interceptor from the class you specify, it just treats it like a normal object. It doesn't inject @Loggers or give it

[jboss-user] [JBoss Seam] - Re: @AutoCreate and create = true does not work

2007-08-30 Thread thejavafreak
Try: @In(create=true) EXAccessPoint exAP View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079433#4079433 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079433 ___ jboss-user mailing

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: problem trying to run a Scheduler MBean from a deployed

2007-08-30 Thread sandesh.tallera
i'm also facing the similar problem. Can any one provide the solution. Its very urgent. thanks in advance View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079434#4079434 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079434

[jboss-user] [JBoss Seam] - Re: @AutoCreate and create = true does not work

2007-08-30 Thread matt.drees
You need | @In EXAccessPoint entryGate; | The field name needs to match the name of the component you want injected. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079435#4079435 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Can I define some

2007-08-30 Thread anescu
Thanks guys, I made it work. For now just some String values, but I will probably transform them into a config class. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079436#4079436 Reply to the post :

[jboss-user] [JBoss Seam] - Re: General object-locking gizmo

2007-08-30 Thread amitev
Create session listener and on destroy notify the application scoped component that this user has left. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079437#4079437 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079437

[jboss-user] [Beginners Corner] - Re: Could not get EJBHome

2007-08-30 Thread jaikiran
anonymous wrote : java] Caused by: javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial Have a look at :

[jboss-user] [Security JAAS/JBoss] - How restrict users ? Please guid to me...

2007-08-30 Thread changemylife
Hi all! I use anonymous wrote : jboss-4.0.5.GA, EJB 3.0. I have a problem that need help: My application allows multi-client access at the same time. But now, I want set up: anonymous wrote : If a client, called John, use his account (ex: called johnA). And at this time, Anna also want

[jboss-user] [JBoss Seam] - Component.getInstance and 64bit java

2007-08-30 Thread Stankar
Hello, I have custom servlet, when I call | 209: PictureShowAction psa = (PictureShowAction) Component.getInstance(PictureShowAction.class); | 210: Picture mi = psa.getImage(idLong); | in this servlet, I get sometimes null value into psa variable. On my developer notebook (32bit

[jboss-user] [Beginners Corner] - Re: org.jboss.system.ServiceMBeanSupport

2007-08-30 Thread jaikiran
Its in jboss-system.jar which is under %JBOSS_HOME%/lib folder. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079438#4079438 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079438

[jboss-user] [Beginners Corner] - Re: setting logging in a WAR for a JAR?

2007-08-30 Thread jaikiran
I am not sure i have completely understood the question. Assuming that you want to set the logging level of your application to DEBUG, all you have to do is edit the log4j.xml (this file is recently named to jboss-log4j.xml since JBoss 4.2.x) present in %JBOSS_HOME%/server//conf folder. Let us

[jboss-user] [Security JAAS/JBoss] - Re: How restrict users ? Please guid to me...

2007-08-30 Thread changemylife
I want add some informations: I use DatabaseServerLoginModule to authenticate users. Jboss supports some options to me can solve my problem above ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079444#4079444 Reply to the post :

[jboss-user] [JBoss Portal] - dyn. change rendererset ?!

2007-08-30 Thread Jannis84
Good morning everyone =) Is it possible to change the rendererSet dynamically in the Eventlistener or the processAction?! I want to hide a portletWindow(with the emptydivrenderer) and if a user clicks a button it should appear in normal mode with titlebar etc. (divrenderer) At the moment i

[jboss-user] [Beginners Corner] - Re: JBoss Rules 4.0.0GA

2007-08-30 Thread jaikiran
Not sure what the issue is, but you might get more responses from the JBoss Rules users mailing list which is at [EMAIL PROTECTED] Subscribe to that list to ask your question. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079446#4079446 Reply to the post :

[jboss-user] [Beginners Corner] - Re: jboss 4.2.1 and my servlets . . . . HEEEEELP!!!!!!

2007-08-30 Thread jaikiran
anonymous wrote : 00:32:44,392 ERROR [STDERR] java.lang.ClassCastException: $Proxy71 | 00:32:44,393 ERROR [STDERR] at HelloWorld.service(HelloWorld.java:39) Have a look at http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassCastExceptions, specifically the jmx-console method mentioned over there.

[jboss-user] [JBoss Seam] - org.hibernate.exception.GenericJDBCException: Cannot open co

2007-08-30 Thread robin.hultman
I have a SFSB with this factory: | @Factory(userSubscriptions) | public void getUserSubscriptions() { | userSubscriptions = em.createQuery(FROM Subscription s WHERE s.user.sign=:sign ORDER BY s.prio) | .setParameter(sign, getCurrentUser().getSign()) |

Re: [jboss-user] [JBoss Seam] - Re: seam-gen and hibernate tools!. Target Unreachable, identifier...

2007-08-30 Thread Ian Darwin
Unlike the original poster, I used seam-gen directly, and I get exactly the same problem, except it's the authenticator if I try to login, or my own component if a simple page. And yes, in both cases the target does exist, is annotated correctly (and case sensitively) and is in the .jar file

[jboss-user] [Beginners Corner] - Re: jboss 2.4 + netbeans 5.5

2007-08-30 Thread jaikiran
I personally dont have any idea about NetBeans. But do you really mean JBoss 2.4? The latest version of JBoss that is available is JBoss 4.2.1, why use such a old version of JBoss? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079449#4079449 Reply to the

[jboss-user] [JBossWS] - Re: jbossws with apache

2007-08-30 Thread palin
gerry744 wrote : I'm using Jboss behind apache. | '/jbossws/services' works fine, the wsdls's work fine, but the actual services don't work. They do work if I connect directly on port 8080, but not through apache. Everything else is working fine through apache. | If I try connecting a

[jboss-user] [JBoss Seam] - Re: Instances get lost - strange behavior in conversational

2007-08-30 Thread thejavafreak
1. Perhaps because the conversation has ended, or it has reached the maximum time-out 2. Perhaps it's on a different conversation, make sure it has the same conversation id View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079452#4079452 Reply to the post :

[jboss-user] [Management, JMX/JBoss] - Re: gets stuck configuting log4j.xml

2007-08-30 Thread jaikiran
anonymous wrote : 12:52:30,203 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:log4j.xml Its not stuck. That log messages indicates that the log configuration has been updated with the latest changes. View the original post :

[jboss-user] [JBoss Seam] - Re: How to make JBoss (+seam) to use my development xhtml fi

2007-08-30 Thread damianharvey
I second that. Use the exploded deploy and also use the incremental deployment (classes in WEB-INF/dev - it's all in the link smith just mentioned). I make a change to an XHTML file or java class and then hit the run external tools button on my Eclipse toolbar (this is set to run the last Ant

[jboss-user] [Beginners Corner] - HOW FindMBeanServer in JBOSS

2007-08-30 Thread shankha
HI, My JBOSS is running in http://localhost:8080. I have a stadalone Java code. From there I have to access the MBean server of my JBOSS. How can I get the Instance of the MBean server from my Standalone java code? please help me. /sh View the original post :

[jboss-user] [JBoss Seam] - Re: Trying to build seam-2.0.0.BETA1

2007-08-30 Thread davidjoseph
I've got exactly the same error in the 2.0.0 BETA1 I then got the most recent release from CVS and there the Seam IOC compon ent does not compile A lot of example do not compile either: like spring, hibernate2 View the original post :

[jboss-user] [EJB 3.0] - Re: EAR Scoped PersistenceUnit

2007-08-30 Thread mzeijen
Nobody got any Idea. Should I just register this as a Bug in Jira? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079460#4079460 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079460

[jboss-user] [Beginners Corner] - Re: Could not get EJBHome

2007-08-30 Thread stefan_jing
Thank you! But a typical jndi.properties file is already in my classpath: C:\Programme\jboss\server\default\conf View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079461#4079461 Reply to the post :

[jboss-user] [Beginners Corner] - Re: HOW FindMBeanServer in JBOSS

2007-08-30 Thread jaikiran
See if this helps http://wiki.jboss.org/wiki/Wiki.jsp?page=HowDoIGetRemoteAccessToMyMBean View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079454#4079454 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079454

[jboss-user] [JBoss Seam] - Re: pdf in Internet Explorer is not working

2007-08-30 Thread nhieb
I created JIRA issue, it can be found here http://jira.jboss.org/jira/browse/JBSEAM-1884. Thanks for ur time, Norman! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079465#4079465 Reply to the post :

[jboss-user] [JBoss Seam] - Re: selectOneMenu in dataTable

2007-08-30 Thread damianharvey
Apparently extended EL can work oddly inside iterative components : http://www.jboss.com/index.html?module=bbop=viewtopict=115162 You could always build a Bean to hold all of this when you populate productPropertyList. Cheers, Damian. View the original post :

[jboss-user] [JBoss Seam] - Re: Anyway to create JSF components dynamically?

2007-08-30 Thread damianharvey
Have you looked at something like richfaces modal? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079469#4079469 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079469 ___

[jboss-user] [JBoss Seam] - Identity remove all roles

2007-08-30 Thread urswag
Hello There is no cleanup method for the Seam Identity class. If I authenticate again with another user the roles of the logged in before are still active. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079471#4079471 Reply to the post :

[jboss-user] [JBoss Seam] - Re: General object-locking gizmo

2007-08-30 Thread nickarls
amitev wrote : Create session listener and on destroy notify the application scoped component that this user has left. Is there any convinient util to get to the seam application context from a servletcontext? View the original post :

[jboss-user] [JCA/JBoss] - Re: IDLE Connections and Pool ConnectionDestroyedCount near

2007-08-30 Thread skajotde
Hello, I sorry for long code pasted. vickyk wrote : | Check the listInUseConnections() operation in the CachedConnectionManager Mbean from the jmx-console . This will tell you what connections are not getting closed from your application . | All you need is to identify the application

[jboss-user] [JBoss Seam] - Re: Running the booking example on JBoss with the JSF 1.2 RI

2007-08-30 Thread chuaky
hi, Appreciate very much advice from the community on this issue that i encountered. I was try to get an example portal working in this environment: - JBoss portal 2.6.1 (with AS 4.2.1) - Seam 1.2.1GA - use JSF RI 1.2 I combine the sample code from ajax trunk (ajaxPortlet), and got the

[jboss-user] [Beginners Corner] - Re: Could not get EJBHome

2007-08-30 Thread jaikiran
As you are using a standalone java client to lookup, you will have to have that jndi.properties file in the classpath of your standalone java client too. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079479#4079479 Reply to the post :

[jboss-user] [JBossWS] - Problem with publishing a web service

2007-08-30 Thread AnisBM
Hi all, I have this message when I try to publish a class as a web service : Running JBossWS wstools for [jbossws-test1] directory: C:\FitNetManager\workspaces\workspaceFitNet\jbossws-test1 command: cmd.exe /C C:\FitNetManager\Jboss-4.0.5.GA\bin\wstools.bat -cp bin -config

[jboss-user] [JBoss Seam] - Re: Trying to build seam-2.0.0.BETA1

2007-08-30 Thread [EMAIL PROTECTED]
There was a problem with the BETA1 distribution - it was missing some required files for compiling. Sorry about that. This was fixed for the nightly builds. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079483#4079483 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: jbpm-bpel-1.1.Beta3 examples problem!

2007-08-30 Thread ZazzaZ
Hi, I had the same problem on hello world. What I forgot to do was to add the xalan implementation (you can find the jars in the jboss/lib/endorsed) to the jre libs. So copy the directory endorsed to javahome--- jre -- lib Your jre/lib will now have an endorsed dir. Hope I was useful. bye

[jboss-user] [JBossCache] - Cache loading in a clustered environment

2007-08-30 Thread spennec
Hello, I'm in front of a very strange situation here: There are two members in my cluster. Each instanciates a treecache object, with the same properties. (Mode INVALIDATION_ASYNC, Optimistic locking, TreeCache V1.4.1SP4). When they start, each of them loads the initial state of the cache

[jboss-user] [Beginners Corner] - java.lang.ClassCastException -

2007-08-30 Thread shankha
Hi, I want to get the reference of the MBeanServer of my running JBOSS from my standalone program. And on the MBeanServer instance I want to invoke getVersionName() of the MBean Server. But after getting the Server Object Instance Class I can not type case to the

[jboss-user] [JBoss Seam] - Re: can not access a member of class ... with modifiers

2007-08-30 Thread [EMAIL PROTECTED]
Post the whole class. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079487#4079487 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079487 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: s:selectItems problems Seam 2 Beta1

2007-08-30 Thread [EMAIL PROTECTED]
What is departmentSectionId? Do you not need to use .equals on that as well? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079489#4079489 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079489

[jboss-user] [JBoss Seam] - Re: Dumb question: xhtml AND jsp

2007-08-30 Thread [EMAIL PROTECTED]
No. You can mix and match jsp/facelets inside an application but not a page. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079492#4079492 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079492

[jboss-user] [JBoss Seam] - Re: Seam mail ...

2007-08-30 Thread [EMAIL PROTECTED]
Post the error message (exception stack trace), your code, and output with Seam Mail debug enabled. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079494#4079494 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079494

[jboss-user] [JBoss Seam] - Re: Problems with Seam 2

2007-08-30 Thread [EMAIL PROTECTED]
CVS should build correctly. Post back if it doesn't with the problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079495#4079495 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079495

[jboss-user] [JBoss jBPM] - [JBPM 3.2.1] Updating Deployed Version of Process

2007-08-30 Thread dleerob
Hi, When deploying, for example, the websale process definition, along with all it's files: forms.xml, form.create.xhtml, form.fix.xhtml etc... It will initially deploy the process as version 1. If users now start this process, and you then realise there is a problem with the websale process,

[jboss-user] [JBoss Portal] - how to enable drag and drop on a new portal

2007-08-30 Thread tellarsrinivasprabhu
hi I am using jboss portal 2.6.1 . i created new portal from management portal available for admin user. Then i created a new page called portfolio. Later i added some portlets to this page. Now how do i enable drag and drop for these portlets. I added following entry to my default.xml

[jboss-user] [JCA/JBoss] - Re: IDLE Connections and Pool ConnectionDestroyedCount near

2007-08-30 Thread vickyk
I am not familiar with the Hibernate , you might need to the Hibernate forums for getting it reviewed . The correct usage of connection in the application code is explained here http://wiki.jboss.org/wiki/Wiki.jsp?page=WhatDoesTheMessageDoYourOwnHousekeepingMean I have helped you to find out

[jboss-user] [JBoss Portal] - Re: how to enable drag and drop on a new portal

2007-08-30 Thread tellarsrinivasprabhu
cont .. i have restarted my jboss application server after i added above entry to default-object.xml. But i could not find drag and drop enabled. can any one tell what else i can to do to enable drag and drop. thanks View the original post :

[jboss-user] [JBoss Seam] - @In-jection fails on randomly applicaion scoped components w

2007-08-30 Thread gothmog
Hi, I have two seam application scoped components, one holds an internal list which is added to by the other. So.. | @Name(entryGate) | @Scope(ScopeType.APPLICATION) | public class EXAccessPoint { | | @Logger Log log; | @In EntityManager em; | ListEntryExit exs = new

[jboss-user] [JBoss Seam] - problems with refreshing view after entity change

2007-08-30 Thread przadka
Hello, I am a seam beginner and after 3 weeks of evaluation I am totally impressed by it. Right now I am developing a test application and I came across a problem which seems very easy but I coudnt find any solution on the forum. What I have is a view with a form which displays entity beans

[jboss-user] [EJB/JBoss] - List all connected users

2007-08-30 Thread linoux
Hi, Is there a way to list login of all users connected to a JBoss application ? Using getCallerPrincipal I can determine the owner of the current session, but how do I know about all other users in all other sessions ? I tried to subclass a loginModule to maintain this list myself, but the

[jboss-user] [JBoss Seam] - Re: No Seam component Actor injected

2007-08-30 Thread [EMAIL PROTECTED]
Actor isn't declared @AutoCreate so you'll need to do create=true View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079514#4079514 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079514

[jboss-user] [JBoss Seam] - Re: problems with refreshing view after entity change

2007-08-30 Thread [EMAIL PROTECTED]
Make sure you clear out the context variable: Contexts.getConversationContext().remove(resaerch); View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079515#4079515 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079515

[jboss-user] [JBoss Seam] - Re: can not access a member of class ... with modifiers

2007-08-30 Thread floba
Here you are: --- package de.axone.shop.context; import java.util.Locale; import javax.ejb.Local; import de.axone.shop.client.Client; import de.axone.shop.selector.SelectorQuery; import de.axone.shop.shop.Shop; import

[jboss-user] [JCA/JBoss] - Re: IDLE Connections and Pool ConnectionDestroyedCount near

2007-08-30 Thread skajotde
vickyk wrote : | I have helped you to find out the root cause of the leak , | Thanks ; View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079526#4079526 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079526

[jboss-user] [JBoss Seam] - Re: Problems with converter

2007-08-30 Thread Frippe
I dropped this matter because I managed to solve my task without the use of a converter. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079527#4079527 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079527

[jboss-user] [JBoss Portal] - Re: how to enable drag and drop on a new portal

2007-08-30 Thread tellarsrinivasprabhu
update on this i have updated database table JBP_PORTAL_OBJECT_PROPS manually. here i set theme.dyna.dnd_enabled and theme.dyna.partial_refresh_enabled to true. I am sure there is a better way to do this. Waiting for some suggestions. View the original post :

[jboss-user] [Beginners Corner] - Re: Could not get EJBHome

2007-08-30 Thread stefan_jing
i have both client and server, and there is jndi.properties file in the client classpath(C:\Programme\jboss\client) too. i guess the problem is with the Code: javax.ejb.EJBHome homeNew = (FlugSucheHome)handleNeu.getEJBHome(); i think the object handleNeu has the method getEJBHome(), but i

[jboss-user] [JBoss jBPM] - Re: Urgent Help Required

2007-08-30 Thread kukeltje
You have to configure your Applicationserver correctly for working with oracle. Only after that jbPM comes into play View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079530#4079530 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: [JBPM 3.2.1] Updating Deployed Version of Process

2007-08-30 Thread kukeltje
this has been discussed in the forum several times... it is not that easy if the process changes. There is also a jira issue for this. So look there to View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079532#4079532 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: JBoss + JBPM + Mysql - Deployment is not going through

2007-08-30 Thread kukeltje
from the jBPM source it is easy to generate ddl scripts for other databases. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079534#4079534 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079534

[jboss-user] [JBoss Seam] - Re: can not access a member of class ... with modifiers

2007-08-30 Thread [EMAIL PROTECTED]
Make the class public. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079535#4079535 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079535 ___ jboss-user mailing list

[jboss-user] [Beginners Corner] - MDB InstanceNotFoundException +MBean

2007-08-30 Thread shankha
Hi, I deploy a simple MDB (MessageEJB) in JBOSS. In the jboss.j2ee in the JMX console MBean responsible for operating the MessageEJB is JMSContainerInvoker. MBean Name: Domain Name:jboss.j2ee service:EJB plugin: invoker binding:

[jboss-user] [Beginners Corner] - Re: MDB InstanceNotFoundException +MBean

2007-08-30 Thread jaikiran
Have a look at this http://wiki.jboss.org/wiki/Wiki.jsp?page=WhyDoesTheLocalNameContainARandomNumber View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079539#4079539 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079539

[jboss-user] [JBoss Seam] - Re: can not access a member of class ... with modifiers

2007-08-30 Thread floba
oh. ok. I thought it must be something _very_ stupid. Well, it is. I missinterpreted the error message and thougt I had too much and not to less public. Now its obvious. Thanks very much. Florian View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079540#4079540

[jboss-user] [JBoss Seam] - Re: Instances get lost - strange behavior in conversational

2007-08-30 Thread maku01
thejavafreak wrote : 1. Perhaps because the conversation has ended, or it has reached the maximum time-out | 2. Perhaps it's on a different conversation, make sure it has the same conversation id Sorry, I don't understand this. The component instance is the same when I return to the view. Only

[jboss-user] [Clustering/JBoss] - Replication of configuration/management data across a distri

2007-08-30 Thread ozlevanon
Hi, I?ve developed a JMX MBean for an application management (mostly in order to configure application specific parameters, such as 3rd party, IPs, etc.). The MBean persistence is accomplished using the local file system. My problem, however, is that the application resides in a cluster, and I

[jboss-user] [JBoss Seam] - Re: Seam mail ...

2007-08-30 Thread tjakopec
Another question about seam mail Its possible to use seam mail in classic jsp pages (not facelets)?? I try with | %@ taglib uri=http://jboss.com/products/seam/mail; prefix=sm% | and got error Cannot find tag library descriptor If is possible, please give me one example, default seam doc

[jboss-user] [JBoss Seam] - Bug or not?

2007-08-30 Thread LockDog
Class @Name(userHome) /** * User entity home class * Contains user management functions */ public class UserHome extends EntityHome { ... @Restrict(#{s:hasRole('Librarian')}) public void addUser() { getInstance().setRole(Role.USER); persist(); } Form:

[jboss-user] [Beginners Corner] - Re: MDB InstanceNotFoundException +MBean

2007-08-30 Thread shankha
I update my jboss.xml by adding local-jndi-name TestMessageEJB. jboss | enterprise-beans | session | ejb-nameMBeanTestEJB/ejb-name | jndi-nameMBeanTestEJB/jndi-name | /session | message-driven |

[jboss-user] [JBoss Seam] - Generic URLs

2007-08-30 Thread floba
Hi, in order to keep the thousands of google links when the project goes online and replaces the old website I have to use the same url scheme. Is it possible to complete replace the url - jsf.xhtml mapping and the way s:link generates its targets? e.g. default: /showarticle.seam?aid=00801 i

[jboss-user] [JBoss Seam] - Re: Generic URLs

2007-08-30 Thread [EMAIL PROTECTED]
Search the forum for urlrewrite filter. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079557#4079557 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079557 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: Generic URLs

2007-08-30 Thread floba
ok. thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079559#4079559 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079559 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Seam mail ...

2007-08-30 Thread [EMAIL PROTECTED]
No, its a facelets only library for now. A good community contribution would be make the library run with JSP (it should work, it's just missing the .tld and the Tag classes) - the best way to achieve this would probably to port the library to the CDK. View the original post :

[jboss-user] [JBossWS] - Re: Problem with publishing a web service

2007-08-30 Thread omatzura
Hi! hmm.. the JBOSS_HOME variable looks a bit strange: C:\FitNetManager\Jboss-4.0.5.GA\bin\\.. can you set it to C:\FitNetManager\Jboss-4.0.5.GA somehow? regards! /Ole eviware.com View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079562#4079562 Reply to

[jboss-user] [JBoss jBPM] - Re: Urgent Help Required

2007-08-30 Thread muddsar
i have downloaded the jbpm3.2.1 suite and i m using it with default configuration.i m not using any other application sever...i have tried to solve the problem and now i m getting following error... 16:34:27,479 ERROR [URLDeploymentScanner] Incomplete Deployment listing: --- MBeans waiting for

[jboss-user] [Beginners Corner] - Re: MDB InstanceNotFoundException +MBean

2007-08-30 Thread shankha
Problem is getting solved. I did some mistake in the jboss.xml file. message-driven | ejb-nameMessageEJB/ejb-name | destination-jndi-namequeue/testQueue/destination-jndi-name | local-jndi-nameMessageEJB/local-jndi-name | /message-driven Here

[jboss-user] [JBoss Seam] - Re: Bug or not?

2007-08-30 Thread [EMAIL PROTECTED]
Try @Restrict(#{s:hasRole('Librarian')}) | @Transactional | public void addUser() { | getInstance().setRole(Role.USER); | persist(); | } View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079571#4079571 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Identity remove all roles

2007-08-30 Thread urswag
It does clear the roles. I had an implementation problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079573#4079573 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079573 ___

[jboss-user] [JBoss Seam] - Re: Seam2, Pageflow, start-state

2007-08-30 Thread patrickr
Hey there, I experienced the same thing today. I use MyEclipse for deploying applications and the default behaviour of the web application module is to include all referenced JARs. So even if you don't have jboss-seam.jar copied to your WEB-INF/lib MyEclipse will copy it on deployment if your

[jboss-user] [JBoss Seam] - Re: Seam mail ...

2007-08-30 Thread tjakopec
My another question (desired behavior) is On my jboss as install mail server (I read about buni project), from app send mails, BUT I want that mail save in sent items of user mail account on jboss mail server. Is that possible, do you have link to tutorial. Then off course from my app read

[jboss-user] [Beginners Corner] - How can I Stop MDB via Programming ?

2007-08-30 Thread shankha
I have deployed a MDB in the JBOSS. I send a simple message to the JBOSS testQueue and the MDB reads that message. Is there any way to stop the MDB to get the message from the testQueue ? I already invoke the JMSContainerInvokerMBean for that MDB and also invoke the stopDelivery();/stop();

[jboss-user] [JBoss Messaging] - Re: JMS Bridge Question

2007-08-30 Thread mclu
Hi Tim! I think I have the same issue. I am using 2 instances of jboss 4.2.1GA with messaging 1.3 The source is a remote server (on my local machine). | mbean code=org.jboss.jms.jndi.JMSProviderLoader name=jboss.messaging:service=JMSProviderLoaderRemote,name=RemoteJMSProvider_A |

[jboss-user] [JBoss jBPM] - Re: Urgent Help Required

2007-08-30 Thread kukeltje
jbpmsuite contains a JBoss Application Server (JBoss AS). As stated before, that is where the problem is, not jBPM. You datasource in the AS is not configured correctly. The link you refere to in your initial post is about MySQL totally different... so please, please, see how to configure

[jboss-user] [JBoss Seam] - Re: Trying to build seam-2.0.0.BETA1

2007-08-30 Thread [EMAIL PROTECTED]
davidjoseph: Working with jboss-seam-CVS.2007-08-29_01-13-07 I have no problem with any of core modules or the examples mentioned compiling. Which specific build are you having problems with? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079583#4079583

[jboss-user] [JBoss Seam] - Re: Seam mail ...

2007-08-30 Thread [EMAIL PROTECTED]
If you want to keep a copy of items sent using Seam Mail, the best way is to add a bcc to a special address, and use a mail filter to direct it to the correct place. You'll need to ask over on buni.org for how to do this with Meldware. View the original post :

[jboss-user] [JBossWS] - Deploying EJB Endpoint Web Services on Jboss-4.0.5.GA

2007-08-30 Thread letincho5
Hi, I'm in a very similar situacion than: http://www.jboss.com/index.html?module=bbop=viewtopicp=4060099#4060099 My web services runs on jboss 4.0.3_SP1 without problems. Unfortunatly on jboss 4.0.5.GA it doesn't work. I guess there is a deploy problem: 08:49:45,421 INFO [EARDeployer]

[jboss-user] [JBoss Seam] - Re: s:selectItems problems Seam 2 Beta1

2007-08-30 Thread smithbstl
Its a Long so I guess .equals would work but the method is failing on this condition if (!(object instanceof DepartmentSection)) return false; View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079586#4079586 Reply to the post :

[jboss-user] [JBoss Seam] - please help me out of this problem

2007-08-30 Thread mnrz
Hi I have a SFSB as follows, it has an entity named user, in page when I change a list box I want the selected user to be loaded but nothing will be displayed | @Stateful | @Name(userRegister) | @Scope(ScopeType.SESSION) | public class UserRegisterAction implements UserRegister { |

[jboss-user] [JBoss Seam] - Re: s:selectItems problems Seam 2 Beta1

2007-08-30 Thread [EMAIL PROTECTED]
What class is object? What's its hierachy? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079588#4079588 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079588 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Downloading the PDF , XLS file.

2007-08-30 Thread amitev
I have the same problem too. Idea how to get it work? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079590#4079590 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079590 ___

[jboss-user] [JBoss Seam] - Re: please help me out of this problem

2007-08-30 Thread mnrz
#{userRegister.user} always returns value [EMAIL PROTECTED] even after I set the user to new User() it won't change !!! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079591#4079591 Reply to the post :

[jboss-user] [JBossWS] - Re: WS-Security with JAX-RPC

2007-08-30 Thread FabrizioLXXIII
It seems to work! Thanks a lot! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079592#4079592 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079592 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - Help needed publishing remote portlet

2007-08-30 Thread moroboshi
Hi, I have developed a very simple portlet that I have deployed in Jboss Portal 2.6.1 with success. It's a remote portlet and everything seems to be working fine. I can create a new instance of my portlet and use it anywhere in the portal. What I can't understand is how can another another

  1   2   3   >