[jboss-user] [EJB 3.0] - Re: Programmatically query @RolesAllowed or if caller can ac

2006-08-08 Thread Juergen.Zimmermann
You also can do it this way | // Get the authentified subject | Subject subject = null; | try { |subject = (Subject) PolicyContext.getContext(javax.security.auth.Subject.container); | } | catch (PolicyContextException e) { |LOG.error(...); | } | if (DEBUG)

[jboss-user] [Security JAAS/JBoss] - JACC on the fly method permission changes not reflecting at

2006-08-08 Thread tpnaidu79
Hi all, I am using JbossAS for my JEE application which involves ejb3. I have given role based permission to an ejb session bean method using annotations. This works fine along expected lines for allowing / denying users belonging to certain roles to access the method. However, when I try

[jboss-user] [JBoss jBPM] - Re: jbpm and portlet

2006-08-08 Thread yxyang
kukeltje wrote : 1: Yes, primarily for the owner, both role/group tasklist and individual tasklist. Each individual and combined (so 3 portlets?) | 2: Less important, but just show a list of all processes to be started, either by retrieving a list from jbpm or configure it statically based on

[jboss-user] [JBossCache] - Re: Using OPTIMISTIC locking does not notify the TreeCacheLi

2006-08-08 Thread prese
Hi Manik, I have tried it only using 1.4GA and not 1.3. I have txn started, and the txn is commited afterwards, but I have seen during the debug that the listeners are never notified. Thanks Sebi View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963704#3963704

[jboss-user] [JBoss Portal] - how to avoid cacheing last visted user hit in Portlet ?

2006-08-08 Thread itok
I have created application using jboss portal 2.2.1. In the application, when user hits the portlet back.. its remembering the last vistied page showing that page only.. I dont want my portlet to remeber its state. I understand its a feature of portlet, But thats critical for me. any next

[jboss-user] [EJB/JBoss] - Re: ParseException : expecting one of DATETIME_VALUED_PARAM

2006-08-08 Thread lippke
Did you find a solution? I have a similar problem. It seams to occur only with dates?! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963706#3963706 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963706

[jboss-user] [JBoss jBPM] - Re: How to implent Timer and scheduler in JBPM.

2006-08-08 Thread JbossNetweb
Hi, if you getting information about sheduler and timer means how to implement it? then plz, forward me. i am very appriceate you if you give me information. Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963707#3963707 Reply to the post :

[jboss-user] [Messaging, JMS JBossMQ] - Re: Error

2006-08-08 Thread jaazz
Hi, I am experiencing same issue, did you solve this problem? Thans View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963710#3963710 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963710

[jboss-user] [EJB 3.0] - Re: Simple EJB3 Transaction Question

2006-08-08 Thread grdzeli_kaci
thanks. It's working but i have another problem :( working code : | @TransactionManagement(TransactionManagementType.BEAN) | @Remote(Fasade.class) | public @Stateless class FasadeBean implements Fasade | { | @PersistenceContext(unitName = TEST) | private EntityManager

[jboss-user] [JBoss Seam] - Re: pressing enter doesn't submit the form in IE when there'

2006-08-08 Thread [EMAIL PROTECTED]
This is an interesting thread related to the issue: http://forum.sun.com/jive/thread.jspa?forumID=123threadID=46551 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963716#3963716 Reply to the post :

[jboss-user] [JBoss Portal] - Re: default portlet preferences

2006-08-08 Thread pap01
I think I could do it by getting the reference to the current instance and then by calling getPreferences() I would have had access to management of these preferences (I'm also not sure whether it would affect only current user or the default preferences). But I am experiencing a problem -- I

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: EntityManager not working correctly

2006-08-08 Thread andydale
Yesterday we managed to get it working with pure JDBC without any problems. We then integrated the EntityManager with the JDBC statements, and we think the problem exists with the .persist() method. It seems as if it returns from the method without waiting for the commit to happen at the

[jboss-user] [JBoss Seam] - few questions abous seam...

2006-08-08 Thread sherkan777
Hello, Could anyone answer for my questons. For what we use nested conversations, when we use it? (any examples welcome) For what is @LoggedIn, is this a king of filter that we check acces for that logged user? Has this any connection with JAAS? For what and how we user RedirectFilter thanks for

[jboss-user] [EJB 3.0] - Re: @EJB problem

2006-08-08 Thread ziqew
I replace javax.ejb.EJB with javax.annotation.EJB,this problem resolved.I use jboss application server 4.0.4patch 1,jboss-EJB-3.0_RC8-FD. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963723#3963723 Reply to the post :

[jboss-user] [JBoss Eclipse IDE (users)] - Re: Fibo-tutorial -- I cannot run it???

2006-08-08 Thread esgargs
I, too, cannot run the tutorial, and have checked all the files. My config is Eclipse 3.2 with the IDE 2.0a1 bundled download. when I goto /fibo, I get a directory listing for /, but nothing in it, even after running the server in debug mode and setting breakpoints. Also, when I deploy the EAR

[jboss-user] [EJB 3.0] - Problem with jboss-4.0.4.GA doing lookup for EJB3.0

2006-08-08 Thread vedgunjan
Hi Experts, Im using jboss-4.0.4.GA and trying to lookup for ejb from the web client.It throws exception while doing a look up for the remote service. I have run the patch also. The same remote is looked up properly in the jboss-4.0.4.CR2 Here's the exception

[jboss-user] [JBoss Seam] - Re: DataModel sincronization issue...

2006-08-08 Thread bfo81
Your code looks good. The only problem source - as far as I can imagine - could be if roleGroup is null (for any reason). Maybe you should try setting a breakpoint in the listRolesFromRoleGroup() method to see if it's called correctly. If this ain't possible (I have problems with debugging to

[jboss-user] [Beginners Corner] - Total Newbie Needs Help

2006-08-08 Thread cagri
I am a total newbie to JBOSS and trying to run it on my computer. I always get this message (below). I have just downloaded JDK (1.5.0_07) and run.conf is pointing to it as well. What do you think I am doing wrong. Please help. C:\PROGRA~1\JBOSS-~1.GA\binrun

[jboss-user] [Beginners Corner] - Re: Total Newbie Needs Help

2006-08-08 Thread dpansica
It seems that it is trying to use tha jvm of your oracle distribution, take a look at the environment variable JAVA_HOME and modify to point to the jdk you downloaded. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963729#3963729 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Conversation on both action and actionListener

2006-08-08 Thread bfo81
Since JSF calls the two methods sequentially I think it should be sufficient to annotate one of them. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963730#3963730 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963730

[jboss-user] [JBoss Portal] - Re: default portlet preferences

2006-08-08 Thread bdaw
It's opensource - all stuff you get in portal you can get from CVS. Nothing is hidden ;) For transaction error - you need to set in your jboss-portlet.xml | portlet | portlet-namePortletName/portlet-name | transaction | trans-attributeRequired/trans-attribute |

[jboss-user] [Beginners Corner] - Re: Total Newbie Needs Help

2006-08-08 Thread cagri
C:\Program Files\jboss-4.0.4.GA\binRUN === . JBoss Bootstrap Environment . JBOSS_HOME: C:\Program Files\jboss-4.0.4.GA\bin\\.. . JAVA: java . JAVA_OPTS: -Dprogram.name=run.bat -Xms128m -Xmx512m

[jboss-user] [JBoss Portal] - Re: have any one get chartcreator to work with jboss portal?

2006-08-08 Thread javajedi
Doesn't really have anything to do with JBoss Portal, but I just patched the chart creator to work inside JBoss Portal. In case anyone cares, here is the patch: diff --new-file -rc ./net/sf/jsfcomp/chartcreator/ChartListener.java

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Multiple database mappings in one EAR file

2006-08-08 Thread Gzus
Hello As it is now we build one ear file to support each database (MySQL, PostgreSQL, MSSQL) we support. This is done because we have three different jbosscmp-jdbc.xml file, for each of these database. Now I wish to make one ear file which support all three database connections. But how do I

[jboss-user] [Beginners Corner] - Re: Total Newbie Needs Help

2006-08-08 Thread visolvejboss
Hello, Have a look at the JAVA variable in the your output log. It seems that, JBoss unable to find the java binary. Specify the correct path of java binary in the PATH variable or modify the JAVA variable in run.conf to point to the java binary. View the original post :

[jboss-user] [Beginners Corner] - Re: Total Newbie Needs Help

2006-08-08 Thread dpansica
I see the same problem, JBOSS_HOME: C:\Program Files\jboss-4.0.4.GA\bin\\.. . JAVA: java . JAVA_OPTS: -Dprogr you have to set the JAVA_HOME variable to the correct path for example set JAVA_HOME=path to your jdk and then run View the original post :

[jboss-user] [JBoss Portal] - Re: default portlet preferences

2006-08-08 Thread pap01
Thanks, that does it. Everything else worked just as I wanted, so the problem is solved. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963738#3963738 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963738

[jboss-user] [JBoss Seam] - Re: pressing enter doesn't submit the form in IE when there'

2006-08-08 Thread liudan2005
aha, it's a jsf issue. Looks like the simplest solution is to add one more field with width: 0px; height: 0px to make it invisible. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963739#3963739 Reply to the post :

[jboss-user] [EJB 3.0] - Re: @EJB problem

2006-08-08 Thread wolfc
That's weird, as of RC8 javax.annotation.EJB shouldn't exist. javax.ejb.EJB is the right one. http://jira.jboss.com/jira/browse/EJBTHREE-608 Can you check if you have more than 1 version of jboss-ejb3x.jar installed? View the original post :

[jboss-user] [Installation, Configuration Deployment] - Error downloading jems-installer1.2beta.jar

2006-08-08 Thread vpetcu
Hello everyone, Does anyone experiments problems downloadin this jar ? I try to use this installer along with seam, but I cannot do the download Regards, Vali View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963741#3963741 Reply to the post :

[jboss-user] [JBoss Seam] - Error downloading jems-installer1.2beta.jar

2006-08-08 Thread vpetcu
Hello everyone, Does anyone experiments problems downloadin this jar ? I try to use this installer along with seam, but I cannot do the download Regards, Vali View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963742#3963742 Reply to the post :

[jboss-user] [JBoss Seam] - Re: few questions abous seam...

2006-08-08 Thread bfo81
- Nested conversations or good for e.g. multiple sub-conversations within a conversation. The main conversation could be a complex product search, and the sub-conversations could be product orders. Or imagine that you edit an entity in a conversation, and during that you edit multiple

[jboss-user] [JBoss Seam] - Re: few questions abous seam...

2006-08-08 Thread bfo81
- RedirectFilters are important for keeping the state of a conversation or other scope even after a page redirect. In classic JSF all redirects lead to the loss of non-session/application scoped data. View the original post :

[jboss-user] [EJB 3.0] - Re: Simple EJB3 Transaction Question

2006-08-08 Thread wolfc
Read either EJB 1.1 11.6.1 or EJB3 13.6.1. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963746#3963746 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963746 ___ jboss-user

[jboss-user] [JBoss/Spring Integration] - Spring integration and embeddable EJB3

2006-08-08 Thread jaboj
HI, I'm trying to use the spring integration with the embeddable EJB3. How can I make my spring-context available on the JNDI-tree so that this sentence will return an spring wired object: @Spring(jndiName=myapp, bean=DaoFactory) This injection work fine when running on the application

[jboss-user] [JBoss jBPM] - jBPM BPEL dependence (Runtime)

2006-08-08 Thread fwshk
Hi all, I am going to deploy jBPM BPEL into minimal server of jboss-4.0.4.GA. However, I am not able found any document about the dependence or architecture of jBPM BPEL. 1. Would anyone tell me what server is jBPM BPEL depend on at runtime (Default setting - Using HSQL as database) ? For

[jboss-user] [EJB 3.0] - Re: Applying interceptors to

2006-08-08 Thread wolfc
It is possibly by creating your own container-configurations in jboss.xml (see standardjboss.xml for examples) and implementing the org.jboss.ejb.Interceptor interface (http://docs.jboss.org/jbossas/jboss4guide/r5/html/ch5.chapter.html#d0e12136). View the original post :

[jboss-user] [EJB 3.0] - Re: Applying interceptors to

2006-08-08 Thread wolfc
For your second question: it is possible to rewrite the beans for use as 2.1 beans. See http://docs.jboss.org/ejb3/app-server/tutorial/ejb21_client_adaptors/ejb21_client_adaptors.html for details. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963750#3963750

[jboss-user] [EJB 3.0] - Re: Starting embeddable EJB3 server

2006-08-08 Thread wolfc
You've got the latest release. While RC8 is derived from the JBoss 4 source, Embeddable Alpha 8 is derived from JBoss 5 source. Please check your classpath. TransactionImpl.xidFactory is incompatible between JBoss 4.0.4.GA and JBoss Embeddable Alpha 8. Make sure the embeddable jars in

[jboss-user] [JBoss jBPM] - Re: Deployment Problems

2006-08-08 Thread mailinator
Didn't work. But I did a new install of the starterkit plus the jboss eclipse IDE on another computer and now it works... -Florian View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963758#3963758 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Undeploying.....

2006-08-08 Thread stevenm
In fact I tried to remove it by using SQL commands but it doesnt work so my question again is How do I removed a process once it has been deployed? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963759#3963759 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: @TransactionAttribute ignored on generic interface metho

2006-08-08 Thread akovcic
JBoss AOP bug? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963760#3963760 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963760 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: seam frames

2006-08-08 Thread bfo81
Depends on what you want to do exactly, but I would say: Generally no problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963761#3963761 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963761

[jboss-user] [JBoss Seam] - Re: Seam and Hibernate

2006-08-08 Thread justinwalsh
anonymous wrote : 13:38:54,018 WARN [ServiceController] Problem starting service persistence.unit | s:ear=jboss-seam-nodes.ear,jar=jboss-seam-nodes.jar,unitName=joms | java.lang.RuntimeException: java.lang.NoSuchMethodError: org.hibernate.cfg.Annot |

[jboss-user] [JBoss Seam] - Re: Graceful Session expiration

2006-08-08 Thread justinwalsh
Are you referring to conversation timeouts or session timeouts? Session timeouts can be handled gracefully a number of ways (filters, @LoggedIn annotations etc). Conversation timeouts are a little more subtle - perhaps someone can shed some light. View the original post :

[jboss-user] [Security JAAS/JBoss] - Invalid authentication attempt, principal=null BaseConnectio

2006-08-08 Thread Yilativs
Hello My application runs on JBoss 3.2.8.SP1 all works fine until application stays without activity about 30mins after that I recieve. Invalid authentication attempt, principal=null | java.lang.SecurityException: Invalid authentication attempt, principal=null | at |

[jboss-user] [JBossWS] - Re: MTOM JBossWS1.0.2 and JAX-WS2.0

2006-08-08 Thread amon123
The error doesn't happen if I do not set setEnableMtom(true); on the client side. However, the image is not appended at that time. Please lend me your wisdom. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963766#3963766 Reply to the post :

[jboss-user] [JBoss jBPM] - ExpressionAssignmentHandler

2006-08-08 Thread dlipski
Hi I want to use ExpressionAssignmentHandler but i don't want to use identity component. So as it is written in documentation(11.11.3) i have to provide my own class extending ExpressionAssignmentHandler and bind it to my user data store. I dont't know how to do this binding ? where ? View the

[jboss-user] [EJB 3.0] - Difference between JPA and Hibernate

2006-08-08 Thread taras1984
Hi, I am not sure if it is the right place to post this question ... What is the difference between the Java Persistence API and Hibernate? I think the things go this way: JPA is only specification (like EJB3.0) and TopLink, Hibernate and others persistence providers are implementations of this

[jboss-user] [JBoss Seam] - Re: DataModel sincronization issue...

2006-08-08 Thread angelogalvao
Yes, this code enters... and the rolesFromRoleGroup references the same Set of roleGroup.roles, but if a add or remove some item from this Set the t:datatable dont show, its just show the first modification (when the references is set) and if the Set is with 1000 elements , he doesn't care,

[jboss-user] [JBoss Seam] - How to start a conversation with immediate=true ???

2006-08-08 Thread angelogalvao
I have a SFSB with this two annotations: @Interceptors(SeamInterceptor.class) @Intercept(InterceptionType.ALWAYS) But if a call a mehtod from a command button with no existing conversation all my components in my SFSB is null... How can i do that??? View the original post :

[jboss-user] [JBoss Seam] - Re: seam frames

2006-08-08 Thread mrohad
can you explain what would cause a problem? thanks! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963773#3963773 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963773 ___

[jboss-user] [EJB 3.0] - Re: Setting timeout for EJB3 session beans

2006-08-08 Thread hubaer
Thanks you wolfc. I will try this. But is there another way to configure the timeout not using annotations? I found the solution for EJB3 to override the configuration from the standardjboss.xml in my local jboss.xml a good solution. If I use annotition I'll have to make all changes in all

[jboss-user] [JBoss Messaging] - Re: Finding redelivery count with 1.0.1 CR3

2006-08-08 Thread mskonda
I think you can use the property JMSXDeliveryCount to retrive the delivery count: | int deliveryCount = getIntProperty(JMSXDeliveryCount); | View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963775#3963775 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - Re: JACC on the fly method permission changes not reflecting

2006-08-08 Thread jaikiran
The login credentials are cached. Have a look at: http://www.jboss.org/wiki/Wiki.jsp?page=CachingLoginCredentials View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963778#3963778 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: SQLServer configuration file?

2006-08-08 Thread timfox
I think this is partially done. Luc has volunteered to finish it off. http://jira.jboss.com/jira/browse/JBMESSAGING-502 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963780#3963780 Reply to the post :

[jboss-user] [JBossWS] - Re: JSR181 Web Service Client

2006-08-08 Thread sappenin
In your client, when you call the endpoint, can you confirm that the System.getProperty(user.name) call is returning a non-null value? | String ret = port.getHello(System.getProperty(user.name)); | My guess is that System.getProperty(user.name) might be returning null on you. Try the

[jboss-user] [JBossWS] - Re: Upgrading from JBoss 4.0.0 to 4.0.4, jax-rpc problems

2006-08-08 Thread sappenin
There's not a really simple upgrade path (in terms of it happening automatically). I suggest reading the JBossWS User guide, and go through some examples. There will probably be a small learning curve, but it's worth it. I'm using JSR181 endpoints, so everything can be set using

[jboss-user] [JCA/JBoss] - State: NOTYETINSTALLED during deploying my resource adapter

2006-08-08 Thread fshabestari
my resource adapter, which works wit JBoss 3.2.5, does not work with JBoss 4.0.3SP1. I get Problems deploying my resource adapter. perhaps the problem was caused, because JBoss 4.0.3 supports JCA 1.5, but how can I change my JCA 1.0 to 1.5 ? I get following message: ERROR main 16:06:17,187

[jboss-user] [JBossWS] - Re: passing arrays to ejb3 WS

2006-08-08 Thread sappenin
Not sure if this will solve your problem, but you might try the IBM link below to see the different schema formats that the various web-service document types will produce. Either you're using the wrong WSDL-type, in which case you could use a different type, or, you're using the correct wsdl

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - JBoss 3.2.8SP1/CMP/SQL TIME DATETIME

2006-08-08 Thread mailinator
I migrated an existing JBoss application to mySQL from MSSQL that has a DATETIME activityTime column in a specific table and a CMP EntityBean that uses the java.sql.Time to get and set values from that column. Now I am getting the following exception: javax.ejb.CreateException: Could not create

[jboss-user] [JBoss Seam] - Re: How to start a conversation with immediate=true ???

2006-08-08 Thread bfo81
Usually SFSB beans don't need Interceptor annotations. They get some via ejb-jar.xml automatically. How about your code? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963789#3963789 Reply to the post :

[jboss-user] [JBoss Seam] - Re: DataModel sincronization issue...

2006-08-08 Thread bfo81
So that was the problem? :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963790#3963790 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963790 ___ jboss-user mailing list

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: JBoss 3.2.8SP1/CMP/SQL TIME DATETIME

2006-08-08 Thread mailinator
My bad. I know realized that even with the if using == the returned value would be a java.sql.Time object. So whether it uses a == or an instanceof wouldnt change the equation. But any ideas why I am getting the javax.ejb.CreateException: Could not create entity:java.sql.SQLException: Data

[jboss-user] [JBoss Seam] - Re: How to start a conversation with immediate=true ???

2006-08-08 Thread angelogalvao
bfo81 wrote : Usually SFSB beans don't need Interceptor annotations. They get some via ejb-jar.xml automatically. How about your code? my code is the same from the last post, ehehe... But my question is how make components to be injected if i call a method from a method with immediate =

[jboss-user] [JBoss jBPM] - Re: Undeploying.....

2006-08-08 Thread cpob
Trying to remove things straight from the DB can be hairy, as there are a lot of interconnected tables. It's there in the API, look at GraphSession and it's method .deleteProcessDefinition You get the graphSession from jbpmContext.getGraphSession() View the original post :

[jboss-user] [JBoss jBPM] - Re: How to implent Timer and scheduler in JBPM.

2006-08-08 Thread cpob
So, for clarity's sake, you want to have the timer create a new task every n days? So, it would just sit on the same node and generate tasks every so often? Or it would progress through the graph? Implementing timers w/ the included scheduler is very simple. There are JUnit tests with the

[jboss-user] [EJB 3.0] - Extended Pers.Context and getResultList - old data

2006-08-08 Thread bfo81
I got a list of Person entities, e.g. anonymous wrote : Doe, John | Miller, Pete | Sixpack, John They are stored in a database and represented in a java.util.List(Person). Ok, now I edit Sixpack, John to Fivepack, John. The List gets updated like this: persons = em.createQuery(from Person

[jboss-user] [JBoss Eclipse IDE (users)] - Re: JBoss Eclipse IDE 2.0.0.Alpha released! - NOT WORKING

2006-08-08 Thread smmartins
Hi, I'm using: Version: 3.2.0 Build id: M20060628-1325 WTP: 1.5.0 JBoss Eclipse IDE 2.0.0.Alpha1a JBossIDE JBossAS 1.0.0.Alpha1a and I could not create a new server using JBoss Inc - JBoss AS 4.0. Several startup errors for JBoss AS plugin After hitting with my head on the monitor several

[jboss-user] [JBoss jBPM] - Re: Process Definition Tutorials

2006-08-08 Thread Ibnsina
Hello marazik. Please i am a begginer in this field and i need your tutorials that you have mentionned. can you send it to this adress [EMAIL PROTECTED] or to give me the url from where you download it. thanks View the original post :

[jboss-user] [JNDI/Naming/Network] - JNDI lookup of a clustered EJB hosted on WAS from standalone

2006-08-08 Thread bharat_kk_2000
Hi all, Please suggest a solution for following problem. Problem - Standalone JAVA client unable to access clustered EJBs hosted on WAS 5.x Description - Standalone JAVA client is unable to lookup EJB hosted in a clustered environment in WAS 5.x. The initial context lookup works in few

[jboss-user] [JBoss Messaging] - Re: IllegalStateException when invoking MessageProducer.send

2006-08-08 Thread mskonda
Ok Tim. Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3962780#3962780 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3962780 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - Re: Firts time, installing JBoss Portal, full of errors

2006-08-08 Thread PeterJ
I reported this issue in http://www.jboss.com/index.html?module=bbop=viewtopict=88153 If you don't need the CMS portlet, and can ignore the errors it generates, the rest of the portal works fine as far as I can tell. View the original post :

[jboss-user] [Beginners Corner] - JavaMail in servlet can't find smtp host.

2006-08-08 Thread vondart
Following is the code, the error message is can't find smtp host, but I can receive Mail with my code, who can tell me why? Thanks. + public class Servlet1 extends HttpServlet { static class BasicAuthenticator extends Authenticator {

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Exeptions when undeploying webapp

2006-08-08 Thread NickDeGraeve
't Is fixed now. We had copied old libs from the server/lib dir onto the new when we upgraded JBoss to the newest version. So an old JAR was probably loaded before/ instead of a new one. We cleaned out the dir and now no more stacktraces. View the original post :

[jboss-user] [JBoss Seam] - Re: can't quite get push-style mvc working

2006-08-08 Thread petemuir
http://docs.jboss.com/seam/latest/reference/en/html/concepts.html#d0e2713 http://docs.jboss.com/seam/latest/reference/en/html/conversations.html#d0e2928 If you want an action to be run when loading a page you need to use the action attribute of the page tag: pages | page

[jboss-user] [JBoss Seam] - Re: Facelets / tomahawk redeploy on JBOSS problem

2006-08-08 Thread hookomjj
I'm wanting to follow up with this-- how can I tell when the JBoss AS classloader changes a class? This has to happen with other projects that cache dynamic information, including Hibernate. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963614#3963614 Reply

[jboss-user] [EJB 3.0] - Re: Why isn't @Predestory honored in @Stateless beans as wel

2006-08-08 Thread [EMAIL PROTECTED]
you cannot extract all instances stored in a ThreadLocal. Write another pool if you do not like this behavior. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963322#3963322 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Quick question!!!

2006-08-08 Thread petemuir
No. But a UIData backed JSF component (e.g. h:dataTable) can use a list without wrapping (Set's can be used with some conversion). You loose @DataModelSelection (but I've found that if I want that inside an Entity I've made a bad desgin decision ;) View the original post :

[jboss-user] [EJB 3.0] - Re: Simple EJB3 Transaction Question

2006-08-08 Thread grdzeli_kaci
thank u vary much. it's working the problem was that session bean must statefull not stateless View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963798#3963798 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963798

[jboss-user] [JBoss Seam] - Re: seam frames

2006-08-08 Thread bfo81
I have never encountered one ;). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963800#3963800 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963800 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - Re: Newly created users not picked up

2006-08-08 Thread IvanLatysh
If you are using MySQL as DB, change isolation level from REPETABLE_READ to DIRTY_READ or READ_COMMITED. I haven't had a chance to have a look at the current Catalina realm adapter, but they had a bug there for the past few years. User credentials are reading within a single transaction ...

[jboss-user] [Management, JMX/JBoss] - Clustered XMBean using inheritance

2006-08-08 Thread mirelush
Hello, I have the following situation: class Config extends BasicConfig implements ConfigMBean class BasicConfig implements IBasicConfig interface ConfigMBean extends IBasicConfig Config is a XMBean, while BasicConfig is just a POJO. Config adds some managed attributes to the BasicConfig

[jboss-user] [Clustering/JBoss] - Re: Single Sign On failure on Jboss 4.0.4 using LDAP Realm a

2006-08-08 Thread argaldo
Unfortunatelly, I was pretty sure that my app wasn't storing any StandardSessionFacade object in the session, I mean I was because it turned to be my app the one storing that object in session and causing the failure (never say never...). Implementing a listener attached to the session, as you

[jboss-user] [JBoss jBPM] - Re: Undeploying.....

2006-08-08 Thread stevenm
Ao are you saying I need to actually write the code to call the .deleteProcessDefinition method and other associated beans? Is it not readily available in the jmx-console or anywhere else? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963807#3963807 Reply to

[jboss-user] [JBoss Portal] - sendRedirect and setRenderParameter

2006-08-08 Thread pedrosacosta
In the javadoc of the Portal the folowwing methods say: sendRedirect The sendRedirect method can not be invoked after any of the following methods of the ActionResponse interface has been called: * setPortletMode * setWindowState * setRenderParameter * setRenderParameters

[jboss-user] [Clustering/JBoss] - Re: Single Sign On failure on Jboss 4.0.4 using LDAP Realm a

2006-08-08 Thread [EMAIL PROTECTED]
Cool, glad you found it :-) No inconvenience; if someone else searches the forum and sees this thread, they'll no how to find their issue. Cheers, View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963809#3963809 Reply to the post :

[jboss-user] [JNDI/Naming/Network] - Re: Failed to start AutomaticDiscovery

2006-08-08 Thread robertd_tfccs
I'm seeing a similar issue. I'm running the 'all' configurating right out of the box on a RedHat EL 4 WS instance. My relevant output is as follows: 2006-08-08 19:01:33,727 INFO [org.jboss.naming.NamingService] Started jndi bootstrap jnpPort=1099, rmiPort=1098, backlog=50,

[jboss-user] [JBoss Seam] - Re: Seam and Hibernate

2006-08-08 Thread jjsoft
Re class/jar imcompatability I will check that out. I did not suspect that might be a problem since most (but not all) of the examples are working fine. I think my problem is that my back end is an Entity Bean so the conatiner is handling persistant. In the real world I will make the backend

[jboss-user] [EJB 3.0] - EJB3 find() with Oracle database returns NPE

2006-08-08 Thread jedavie
Hello, I am having one problem using the JBoss EJB3 implementation that I cannot figure out and I'm hoping someone can point me in the right direction. When I use the EntityManager to create(), persist(), and then find() an object using the supplied HSQL database, all works well. When I switch

[jboss-user] [JBoss Portal] - Hibernate failure in Portal after suspend/resume on a laptop

2006-08-08 Thread mmodh
I use a Windows XP Pro SP2 laptop for development and am running the Portal 2.2.1.SP1 on JBoss 4.0.4GA. Everything works normally as expected, but when I suspend the laptop and resume it, then when I try to access any portal application, the request times out on the browser and eventually I

[jboss-user] [JBoss Seam] - Re: can't quite get push-style mvc working

2006-08-08 Thread sjmenden
That was it, thanks so much. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963816#3963816 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963816 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - Re: Logout: Invalidate Session and resetting Principal

2006-08-08 Thread kosmi
Hi Sohil, we solved the Problems assosiated with the principal. Our main problem was a misplaced jbosssx.jar. it was duplicated in server/xxx/libs and server/xxx/deploy/xxx/lib. Then I turned of caching in J aasSecurityManagerService mbean (jboss-Service.xml) and set

[jboss-user] [The Lizzard's corner] - Re: JBoss StartGuide Issue

2006-08-08 Thread pgibbs
Sorry - put this in the wrong place. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963818#3963818 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963818 ___ jboss-user mailing

[jboss-user] [JCA/JBoss] - Re: State: NOTYETINSTALLED during deploying my resource adap

2006-08-08 Thread fshabestari
in my first mail the 2 xml-files are not clearly shown. so I write them again: my ...-service.xml looks like this: | ?xml version=1.0 encoding=UTF-8? | server | mbean code=org.jboss.resource.connectionmanager.TxConnectionManager | name=jboss.jca:service=LocalTxCM,name=mbstcpra |

[jboss-user] [Beginners Corner] - Re: problem starting server when using my .war

2006-08-08 Thread kdr
please update View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963820#3963820 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963820 ___ jboss-user mailing list

[jboss-user] [EJB 3.0] - Re: Setting timeout for EJB3 session beans

2006-08-08 Thread hubaer
Sorry folk, I made a mistake. I meant EJB2 not 3. So the correct comment is: I found the solution for EJB2 to override the configuration from the standardjboss.xml in my local jboss.xml a good solution. If I use annotition I'll have to make all changes in all classes and not in one

[jboss-user] [Beginners Corner] - Problem with StartGuide tutorial in Chapter 5.

2006-08-08 Thread pgibbs
I'm trying to create the wsdl for the bank application in the StartGuide. However, the 'wsdl' target appears to be missing in the ant build file. Any one have a copy of that target, and any other discovered missing targets. Thanks... View the original post :

[jboss-user] [JBossCache] - Re: Running POJOCache error

2006-08-08 Thread [EMAIL PROTECTED]
Sorry, are you saying setting passivation to true doesn't work in this case? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963824#3963824 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3963824

[jboss-user] [JBoss Portal] - Re: Logout: Invalidate Session and resetting Principal

2006-08-08 Thread [EMAIL PROTECTED]
kosmi- To force the invalidation you can try invalidating the http session in your custom mapper and see if that works. Thanks Sohil View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3963826#3963826 Reply to the post :

  1   2   3   >