[jboss-user] [JBoss Portal] - Re: How to clean the server data when switch off/on JBoss se

2007-05-21 Thread [EMAIL PROTECTED]
What do you see as cached ? If you want to delete everything each time you restart the server you can modify the hibernate config files, but i doubt that's what you want to do. If a page has been added by config file, it will always be there unless you delete it using the management portlet.

[jboss-user] [JBoss Portal] - Re: JBoss Portal developer's blog

2007-05-21 Thread [EMAIL PROTECTED]
If it is just an HTML page, you can use the CMS editor to write it or upload an existing document. Then refer to the documentation for the version of JBoss Portal you are using to see how to include it in a window View the original post :

[jboss-user] [JBoss Seam] - Re: Seam and Dynamic Language

2007-05-21 Thread thejavafreak
Wow cool. This is great. Let's see where I can contribute since I can not log in to CVS from my office. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047109#4047109 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047109

[jboss-user] [JBoss Seam] - @Digit Annotation

2007-05-21 Thread m.shinde
Hi, If anybody knows about which jar I have to import so that I can use @Digit,@Country,@ZipCode Annotations. Which is being validated by tag s:validate/ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047111#4047111 Reply to the post :

[jboss-user] [Messaging, JMS JBossMQ] - Re: Using Oracle AQ as JMS Provider

2007-05-21 Thread [EMAIL PROTECTED]
https://sourceforge.net/tracker/?func=detailatid=376687aid=912173group_id=22866 Which is really just a set of MBeans to create JMS client objects in JBoss jndi. Although it should really just be a case of configuring the JMSProvider http://wiki.jboss.org/wiki/Wiki.jsp?page=ConfigJMSProvider to

[jboss-user] [JBoss jBPM] - Re: jbpm3.2deployment error

2007-05-21 Thread wjm
Right. You're not getting the identity bits you need to run the demo. This note: [url]http://wiki.jboss.org/wiki/Wiki.jsp?page=UseHibernateToCreateJbpmDB [/url] should get you going. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047113#4047113 Reply to

[jboss-user] [Messaging, JMS JBossMQ] - Re: Differences between ConnFactories

2007-05-21 Thread [EMAIL PROTECTED]
The first one is a real jndi binding. The second one does not exist in the default configuration. You probably mean a resource-ref? java:comp/env/jms/ConnectionFactory and is upto you to define in ejb-jar.xml/jboss.xml View the original post :

[jboss-user] [EJB 3.0] - Re: Transaction annotation - cannot get desired behavior

2007-05-21 Thread amitka
This will only work for EntityExistsException due to primary key constraint. The situation I encountered is with a unique constraint on other columns which are not primary keys. I used the setter methods to set some field values, and then handled both InvalidStateException to retrieve all of

[jboss-user] [JBoss Seam] - Exception while generation the jasper Reports using Seam

2007-05-21 Thread d.solasa
Hi I am trying to generate jasper reports using seam.for that i have used the following code InputStream input = this.getClass().getClassLoader().getResourceAsStream(reportName); JasperDesign design = JRXmlLoader.load(input); JasperReport report = JasperCompileManager.compileReport(design);

[jboss-user] [JBoss Seam] - Re: Getting Started with Seam and Maven / Migrating from Spr

2007-05-21 Thread -Arthur-
I am still working with the softeu.cz repo, its really cool, because you get seam working fast and the preconfiguration is good too. The only disadvantage i've discovered ist the fact, that you depend softeuz.cz repo and their group and artifact ids. So you have to figure out in which pom the

[jboss-user] [JBoss Seam] - Re: @Digit Annotation

2007-05-21 Thread -Arthur-
I think you have to implement that for your own. http://www.hibernate.org/hib_docs/validator/reference/en/html/ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047118#4047118 Reply to the post :

[jboss-user] [JBoss Seam] - Re: @In required session timeout, IdleRemover Exceptions a

2007-05-21 Thread saimonsez
Ok, for question one I have a workaround that's fine for the moment. The other two problems remain. I hope the questions are not pointless or unclear. Please help. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047119#4047119 Reply to the post :

[jboss-user] [JBoss Seam] - Question On @Datamodel Outjection

2007-05-21 Thread hasc
Hello, i have a problem outjecting a datamodel. i have a class the holds the business logic for a calculation process. It holds the Entity Calculation.class where the data is stored. during the calculation i create another object that holds the response information. | @Stateful |

[jboss-user] [JBoss Seam] - Re: @Digit Annotation

2007-05-21 Thread fhh
I think they are only available in alater release of the Hibernate Validator. Not sure about compatibility. Regards Felix View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047126#4047126 Reply to the post :

[jboss-user] [JBoss Seam] - Question on rendering a @Datamodel

2007-05-21 Thread hasc
Hello, Is there a way to set the styleClass of a h:dataTable for a special row when a @Datamodel is rendered? In my case some objects that the Set contains, can be special and i want to render them in a row as: tr class=special I wrote a method in the objects class public boolean

[jboss-user] [JBoss jBPM] - Re: xml export

2007-05-21 Thread kukeltje
the editor creates the xml View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047131#4047131 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047131 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Getting ALL Components of a given name in ALL contexts

2007-05-21 Thread straubp
Hi all, how can I get all components with name x in all contexts? Here my scenario: On a page I am showing a list (dataTable) of persons, with options to add a new person or delete an existing one. The table is backed by a PersonListController (name=personListController), which caches the

[jboss-user] [EJB 3.0] - Re: ManyToOne gives EntityNotFoundException

2007-05-21 Thread ingo77
Thank you TPBen!!! An Excellent solution to the problem!! To fhh, like TPben stated, working with legacy databases isn't always easy. The relation is missing in the database tier but I want it in the business tier and in this case adding the FK to the databse(Oracle) is not an option. Thank

[jboss-user] [JBossCache] - Failed to start pojo cache with JDK 1.6

2007-05-21 Thread ctof
Hi I try to start my application which need to be compiled with jdk 1.6 (due to external 1.6 lib dependencies) and it fails when i start the second client (during the state synchronization). I use PojoCache 2.0.0-RC1 I have made a test by removing my 1.6 code dependencies,compile and run my

[jboss-user] [JBoss jBPM] - Re: Can jBpm deployed in a distributed system?

2007-05-21 Thread [EMAIL PROTECTED]
estaub wrote : I know you have to switch the secondary hibernate cache to JBossCache or similar. No experience, though! | | -Ed Staub thinks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047128#4047128 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Component Binding don't work in Seam?

2007-05-21 Thread g00se24
Hello. It's works fine for me, but the documentation is a little bit strange in that. You can inject a Component into your bean. package de.psi.support.gui; import java.util.List; import javax.ejb.Remove; import javax.faces.component.html.HtmlDataTable; import javax.persistence.EntityManager;

[jboss-user] [JBoss Seam] - Re: Simple redirect/refresh

2007-05-21 Thread g00se24
Hello, You can use a simple html file like: meta http-equiv=Refresh content=0; URL=login.seam / to redirect your browser... Keep in mind to use URL=*.seam... ;) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047137#4047137 Reply to the post :

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: JBoss shutdown without any log

2007-05-21 Thread arussel
We finally tracked down the problem. It has nothing to do with mod_jk. One of our app is using jboss rules and the jvm crashes always at the same place: --- T H R E A D --- Current thread (0x08105a48): JavaThread CompilerThread0 daemon [_thread_in_native, id=10980]

[jboss-user] [EJB 3.0] - Re: ManyToOne gives EntityNotFoundException

2007-05-21 Thread fhh
Legacy system smells for like a poor excuse for broken data. Foreign key constraints are usually in place for a good reason. If you ignore them all kinds of bad things may happen. Regards Felix View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047139#4047139

[jboss-user] [JBoss Seam] - Re: Question on rendering a @Datamodel

2007-05-21 Thread straubp
Maybe like this: | h:dataTable value=#{...} var=row rowClasses=#{row.special ? 'special' : ''} | ... | /h:dataTable | View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047140#4047140 Reply to the post :

[jboss-user] [EJB 3.0] - EJB3 timer service configuration in JBoss 4.2.0.GA

2007-05-21 Thread tazman
Hi, while using JBoss 4.0.5 I was able to change EJB3 timer persistence policy by editing ejb-timer-service.xml in the deploy directory. I cannot find this file in JBoss 4.2.0.GA any more. How can I change EJB3 timer service configuration in JBoss 4.2.0.GA? Specifically, I want to use the

[jboss-user] [JBoss jBPM] - No timer allowed in start-state (jBpm 3.2) ?

2007-05-21 Thread pirx
Hi, according to the Schema for JPDL 3.2, there is no timer allowed in the start-state: | xs:element name=start-state | xs:complexType | xs:choice minOccurs=0 maxOccurs=unbounded | xs:element ref=description / | xs:element ref=task/ | xs:element

[jboss-user] [Clustering/JBoss] - Accessing singleton MBean from a cluster node

2007-05-21 Thread saxon747
Hello! I have a cluster with 2 nodes (JBoss 4.0.5 GA) and a singleton MBean with name kapart.mbean:service=ScheduleManager. The singleton works correctly, if the master fails it is started on the new master. The problem is, that I'd like to access this mbean from a session bean, which can run

[jboss-user] [JBoss Seam] - Exception definition in pages.xml

2007-05-21 Thread kooudy
Hello, I have defined in pages.xml page exception: exception class=cz.test.TestException | end-conversation / | redirect view-id=/error.seam / | /exception In places, where jpdl is not defined it works well. But when exception occurs in pageflow defined by jpdl, new Exception

[jboss-user] [JBoss Seam] - Re: Question on rendering a @Datamodel

2007-05-21 Thread hasc
thanks, but this did not work. i tried #{item.special ? 'parent' : 'child'} which renderes all rows with class=child View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047154#4047154 Reply to the post :

[jboss-user] [Messaging, JMS JBossMQ] - JBoss throwing org.jboss.mq.SpyJMSException

2007-05-21 Thread dey_s
Hi, We are using jboss-4.0.1sp1 for a project running in Linux 2.4.21-47.ELsmp. There is a requirement in our project that we have to change the system time in the machine while our application (EAR) is running in JBoss to be compliant with a specification of the semi-conductor industry. When

[jboss-user] [JBoss Seam] - Re: jbpm configuration problem

2007-05-21 Thread mgervais
Hi, did you find the solution? I'm using glassfish too, and I have the same error... Where should I place my jpdl files? Thanks Mickael View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047156#4047156 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Getting ALL Components of a given name in ALL contexts

2007-05-21 Thread hasc
Hi, maybe you can define the List or Set on ScopeType.APPLICATION an ouject it on application scope. then you can in- and outject this component on your Controller class and it saves you from accessing all instances of the conroller. or if you store the persons in a database you can query the

[jboss-user] [Security JAAS/JBoss] - Session fixation problem

2007-05-21 Thread ladam
Hi group, i have already posted this to jboss-user ml with no success so I hope I don't get slapped for crossposting... We are currently looking for ways to improve the security in our web applications to prevent session fixation. We are looking for ways to generate a new session ID after an

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Generation of new session ID

2007-05-21 Thread ladam
Hi group, I wasn't sure if following post was more security related / webapps related but perhaps you guys also have a solution for me: http://www.jboss.com/index.html?module=bbop=viewtopict=109070 Thanks, Ludwig View the original post :

[jboss-user] [JBoss Seam] - Re: @DataModelSelection problem, outjects the first element i

2007-05-21 Thread [EMAIL PROTECTED]
Hi again, when looking at post [1] which seems to have had my problem the main difference I find is that the @Factory annotation is used to initialize the List backing the datamodel. In my test app I initialize the List backing the datamodel via the performSearch action(which rerenders the

[jboss-user] [Advanced Documentation] - i18n and documentation

2007-05-21 Thread sviluppatorefico
hiI would to know what is your strategy about internationalization of documents.for example can to be useful to get an italian translation of application server guide? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047170#4047170 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Why doesn't work?

2007-05-21 Thread ricardomarques
Ok here's the log: | 10:31:20,953 DEBUG [CommandServiceBean] getting jbpm configuration resource from the environment properties | 10:31:21,390 DEBUG [UIComponentTag] Exited encodeEnd for client-Id: _idJsp0 | 10:31:21,390 DEBUG [CommandServiceBean] couldn't find configuration property

[jboss-user] [JBoss Seam] - Re: Question on rendering a @Datamodel

2007-05-21 Thread hasc
i found a possible solution but this seems a little ugly to me. i wrote a method public String getRowClasses { } which loops over the Set and generates a comma seperated list with the class names depending on the special property of each object. so: rowClasses=#{budgetOverview.rowClasses}

[jboss-user] [JBoss Seam] - Re: Question On @Datamodel Outjection

2007-05-21 Thread baz
Hello, what are you trying to do? Show the xtml pages. But, nevertheless, your code looks not quite correct. You do have a bean called budgetOverview in Conversation scope. And you try to outject the same name to conversation scope in scmanager. I do not understand whta you are trying to do. For

[jboss-user] [JBoss Portal] - Jboss forum for 2.6

2007-05-21 Thread maiky
Hy all, I want to know if exist a portlet jboss-forum for jboss portal 2.6. I don't find it ... Sorry for my bad English. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047176#4047176 Reply to the post :

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

2007-05-21 Thread itprabha
Hi gongdonghui, Thanks for sharing the solution. I already had jdk 1.5.0-6 installed on machine. So I just placed the jar files. Now the test cases of HelloTest are passed, but ATM and purchase order test cases are failing. I am getting the following error message for

[jboss-user] [JBoss Portal] - Re: Jboss forum for 2.6

2007-05-21 Thread unibrew
Hi http://labs.jboss.com/jbossforums/ version working on 2.6CR2 is now available only in SVN but you can also wait a bit as there will be binary version as well very soon. BTW. Please use JBoss Forums' user forums for questions about them. Regards, Ryszard Kozmik JBoss Forums Lead View the

[jboss-user] [JBoss jBPM] - Re: login to jbpm_console failed

2007-05-21 Thread naseem.k
Hi Guys, Finally I am able to login to jbpm-console page by adding records in JBPM_ID_MEMBERSHIP table for the new users I created and assigned them to a group by groupid as a foreign key. Now I am getting exception at the time of process start. First time when I start a new process, it works

[jboss-user] [JBoss jBPM] - Re: login to jbpm_console failed

2007-05-21 Thread kukeltje
two things: - STFF (e.g. with google) for the oracle and unique constraint problem - search the jira for comparable things Only if this does not turn up anything post in a NEW topic hint: the orcale/unique constraint thing has been previously addressed View the original post :

[jboss-user] [JBoss Seam] - Re: Question On @Datamodel Outjection

2007-05-21 Thread hasc
Hi, i work mainly with 4 classes. CalculationManager: - serves the business logic for the interaction with the user - holds a Calculation Object Calculation: - Entity Bean - holds all data provided by the user ExpressCalculator: - executes a calculation for a passed Calculation object -

[jboss-user] [JBoss Seam] - Re: Question On @Datamodel Outjection

2007-05-21 Thread hasc
the @Datamodel selectitems is initialized by the ExpressCalculator 's method calculateInstallationCosts(). it executes a private method which returns the Set. I just did not write it down here. selectitems is properly initialized because i can e.g display the size of it by writing a method in

[jboss-user] [JBoss Seam] - 'sometimes' a nullpointer exception for #{identity.loggedIn}

2007-05-21 Thread koenhandekyn
i sometimes get a nullpointer exception with the following root: rendered=#{identity.loggedIn}: Cannot get value for expression '#{org.jboss.seam.security.identity}' the main issue is that it happens sometimes and that triggering a page refresh within the same session just continues as if

[jboss-user] [JBoss Seam] - Conversion Error

2007-05-21 Thread kvchowdary_6699
hi when i click submit button in jspx page i got this error. i ran the application like registration. | | application.jspx | | ?xml version=1.0? | jsp:root xmlns:jsp=http://java.sun.com/JSP/Page; | xmlns:h=http://java.sun.com/jsf/html; |

[jboss-user] [JBoss Seam] - How to get a facelets parameter into a seam component

2007-05-21 Thread quilian
Hi Folks! I have the following scenario: I want to create a component that manages relationship between entities. To make it reusable, i have two general managers, which are templated EJB3 session beans and manage some buisness objects. These entities are derived from two interfaces

[jboss-user] [JBoss Seam] - Re: Question On @Datamodel Outjection

2007-05-21 Thread baz
Hi, now it is hopefully clear to me. You have an object 'budgetOverview' which is managed by seam, due to the @name annotation . At some stage in your workflow an object called budgetOverview is created (new ...) This object is NOT managed by seam. And you are outjecting this object into the

[jboss-user] [Installation, Configuration Deployment] - Re: Help Deploying .war :: javax.xml.ws.WebServiceException

2007-05-21 Thread yamasaki
any guesses? thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047191#4047191 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047191 ___ jboss-user mailing list

[jboss-user] [EJB/JBoss] - EJB2.1:UserTransaction with CMT- possible bug?

2007-05-21 Thread mskonda
I have a CMT bean with a method set to Never as tx attribute. - If I get the UserTransction from SessionContext(), I do get an IllegalStateException (java.lang.IllegalStateException: CMT beans are not allowed to get a UserTransaction) which is expected - However, I am able to get the same UT

[jboss-user] [JBoss jBPM] - Re: Why doesn't work?

2007-05-21 Thread ricardomarques
BTW, i'm trying to isolate the problem, now i've tried to execute the process from another way, this time using StartProcessInstanceCommand. Using this code: | Properties props = System.getProperties(); | try { | | props.put(Context.INITIAL_CONTEXT_FACTORY,

[jboss-user] [JBoss jBPM] - Re: PROBLEMS About the database of jBPM BPEL

2007-05-21 Thread vhuhtine
Your problem looks similar to the one I had, see http://www.jboss.org/index.html?module=bbop=viewtopict=107473 and http://jira.jboss.org/jira/browse/BPEL-230 The jar provided in the Jira doesn't work as such (see BPEL-250). You probably need only the org.jbpm.bpel.db.type.ElementType from the

[jboss-user] [Beginners Corner] - Re: javax.naming.CommunicationException: Could not obtain co

2007-05-21 Thread kbird
well, i tried the netstat to see if the port of running already or listening already and i tried to kill it if it were, but the it was not. then, searching the in the other forums suggested that this porblem could be a of java update. well when i restarted the machine it got working(sort of a

[jboss-user] [JBoss Seam] - seam seam-gen eclipse??? procedure fails GET ONLY OLD D

2007-05-21 Thread dreuzel
As I'm experimenting a little bit with seam (see if it works ???) i'm using se am 1.2.1 on jboss 4.0.5.ga jems build I'm trying to change the content of pages in eclipse whatever I seem to do I get the old XHTML file activated i REBOOT ErEASE jboss i CAN NOT FIND the old file

[jboss-user] [JBoss Seam] - Re: noSelectionLabel s:selectItems NumberFormatException

2007-05-21 Thread Newlukai
Is there any information about the strange behaviour of the selectItems feature in 1.2.1 with ICEfaces? I hope that my problems will be gone if this one is fixed. I've added a valueChangeListener on the ice:selectOneMenu which just sets a scoped object to the selected value. But as soon as the

[jboss-user] [JBoss Seam] - Re: How to get a facelets parameter into a seam component

2007-05-21 Thread -Arthur-
Hi! Try it with: | ui:include src=groupManager.xhtml | ui:param name=gruppenManager value=#{component.property}/ | ui:param name=benutzerManager value#{component.property}/ | /ui:include | I dont evet know if this works with ui:define. Anyway i think that can help you. View the

[jboss-user] [JBoss jBPM] - Re: login to jbpm_console failed

2007-05-21 Thread naseem.k
Thanks Ronald, I resolved the problem. In fact it became quite easier to find out the problem after your post. Basically problem was in the process instance table, unique constraint was imposed on (ID_, PROCESSDEFINITION_) composite column. I just removed unique constraint and it worked.

[jboss-user] [Messaging, JMS JBossMQ] - Re: JBossMQ JMS connection factory configuration

2007-05-21 Thread sanumohanty
I am also facing some problem while configuring JMS custom connection factory. Documentation is not clear.Please let me know the configuration steps. Sourajit View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047203#4047203 Reply to the post :

[jboss-user] [EJB 3.0] - Re: EJB3 timer service configuration in JBoss 4.2.0.GA

2007-05-21 Thread wolfc
It has been moved to ejb-deployer.xml. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047206#4047206 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047206 ___ jboss-user mailing

[jboss-user] [JBoss Messaging] - Re: How to configure new custom JMS Connection Factory

2007-05-21 Thread timfox
Moved from design forum since this is a user question View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047208#4047208 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047208 ___

[jboss-user] [Installation, Configuration Deployment] - isolated ear log4j.xml config file

2007-05-21 Thread trebiani
Hi! i'm using JBoss 4.0.5.GA and deploy a one ear application multiple times. the ear is containing a war file, a jar for ejb's and some other libraries. this is working as expected. right now i'm trying to use a log4j.xml for every single ear file which i can't get running. i tried every hint

[jboss-user] [JBoss Seam] - why conversation-timeout doesn't work properly?

2007-05-21 Thread mnrz
Hello I set the conversation timeout to a value representing 1 hour but after a couple of the minutes the conversation will end here is the line in component.xml | core:manager conversation-timeout=360 | concurrent-request-timeout=500 |

[jboss-user] [JBoss Seam] - Re: How to get a facelets parameter into a seam component

2007-05-21 Thread quilian
Hi Arthur! Thanks for you reply, however according to http://www.jsfcentral.com/articles/facelets_3.html the ui:param and the custom tag approches are equivalent. The question how to get that given parameter into my backing bean remains: e.g., i have: tr:commandButton id=saveButton

[jboss-user] [JBoss Portal] - pages in dashboard

2007-05-21 Thread eagleIT
Hello. I will want to put pages in the dashboard directly when I deploy my portal. Without being obliged to do copy to my dashboard. Can you help me ?? Regards. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047212#4047212 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Question On @Datamodel Outjection

2007-05-21 Thread hasc
ok thanks for your help. i understand your point. i have to think about it... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047210#4047210 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047210

[jboss-user] [Messaging, JMS JBossMQ] - Re: JMS Framework Stops on changing System Time

2007-05-21 Thread njain15
Not sure if someone still looking for the answer. We had similar issue and looking at the JBoss code, figured out following - Whenever a JMS connection is created in JBoss, JBoss schedules a thread that checks for the validity of the connection. The validity criteria is such that JBoss expects

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - troubles migration to jbossAS-4.2.0ga

2007-05-21 Thread KrisVH
I've got an EAR (SEAM) application. On version 4.0.5ga everything is running smoothly but when I put the EAR-file in default-deploy dir of jboss4.2.0ga, while deploying it gives 2007-05-21 14:05:26,989 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/aero]] Error

[jboss-user] [JBoss Portal] - Re: pages in dashboard

2007-05-21 Thread [EMAIL PROTECTED]
There is a special portal called template. It is used as a template for all users to create their dashboard View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047215#4047215 Reply to the post :

[jboss-user] [JBossCache] - Re: Failed to start pojo cache with JDK 1.6

2007-05-21 Thread ctof
To complete by post, i tried to compile JBossCache whith JDK 1.6.0 and already have the same pb. Christophe View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047216#4047216 Reply to the post :

[jboss-user] [Installation, Configuration Deployment] - Re: Multiple applications connection problem

2007-05-21 Thread mex
Adding | track-connection-by-txtrue/track-connection-by-tx | new-connection-sqlset autocommit=1/new-connection-sql | no-tx-separate-poolstrue/no-tx-separate-pools | made it for the xa-datasource. But the problem remains. It DOES appear to be a classloader isolation

[jboss-user] [JBoss Portal] - Re: pages in dashboard

2007-05-21 Thread eagleIT
Oh thanks. But I can't add pages directly in my default-object.xml !! What I must to do to add pages ?? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047217#4047217 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047217

[jboss-user] [EJB 3.0] - Re: EJB3 timer service configuration in JBoss 4.2.0.GA

2007-05-21 Thread tazman
Thanks wolfc! tazman View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047219#4047219 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047219 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - Re: pages in dashboard

2007-05-21 Thread eagleIT
I'm sorry I was mistaken. I can add page. But in my template, I want the dashboard properties !! I put the properties which written in the default-object.xml but when I move portlet, the position is not kept ! View the original post :

[jboss-user] [JBoss Portal] - Re: pages in dashboard

2007-05-21 Thread [EMAIL PROTECTED]
Explain... Did you specify how you wanted the windows ordered by specifying height on the window descriptor ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047221#4047221 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: How to configure new custom JMS Connection Factory

2007-05-21 Thread sanumohanty
Hi Madhu, Thanks for ur suggestion. But the documentation is not clear.As I am using JBOSS 4.X,I believe JBOSS MQ is the default JMS provider.I dont want to use JBOSS messaging which is default provider for JBOSS 5.x. Now I have two questions. 1 Can I create an custom connection factory(on

[jboss-user] [JBoss Seam] - Re: 'sometimes' a nullpointer exception for #{identity.logge

2007-05-21 Thread ffischer
Are you using seam 1.2.1 with richFaces/ajax4Jjsf enabled? I suffer from very similar problems. Randomly I get exceptions like your exception or exceptions like this one: Cannot get value for expression '#{org.jboss.seam.messages}' After I switched off ajax4jsf by commenting out the ajax4jsf

[jboss-user] [Security JAAS/JBoss] - NegotiateKerberos

2007-05-21 Thread chat2saqib
Hi All, I am trying to follow the instructions which is available on http://wiki.jboss.org/wiki/Wiki.jsp?page=NegotiateKerberos to test the Negotiate Authentication on Tomcat in JBoss exactly what it is said on the website. But, I dont know why when i run the JBOSS it gives me an exception.

[jboss-user] [JBoss jBPM] - Re: utf problem

2007-05-21 Thread fuligj
I'am using MySQL, but I tried it in an original suite with HSQL too, but the problem was the same. I think this is not the database's mistake, because I can display any special character in the webapp, that stored in db. Could anyone help me? Thanks! View the original post :

[jboss-user] [EJB/JBoss] - Re: Row-locking enhancement for ejbLoad invoked outside of a

2007-05-21 Thread [EMAIL PROTECTED]
In theory that sounds ok. But we do not recommend accessing entity beans w/o a transaction in our implementation. Some code relies on an active transaction. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047226#4047226 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - Re: NegotiateKerberos

2007-05-21 Thread chat2saqib
Sorry I forgot to mention that I have already put all the following jar files in the C:\server2\jboss-4.0.4.GA\server\default\lib directory. jcifs-1.2.3_spnego.jar jcifs-ext-1.2.3.jar negotiate.jar negotiate-src.jar jcifs-1.1.11.jar jcifs-krb5-1.2.13.jar I hope anyone will reply soon to resolve

[jboss-user] [JBoss Seam] - @Embeddable question

2007-05-21 Thread anescu
Hi, We're trying to use an @Embeddable class in our project. It's a seam generated project, but we keep our entities and modify the views as needed. So, we have a ABC @Embeddable class which has one field private String name; And this class is embedded into another, XYZ. On the interface

[jboss-user] [JBoss Seam] - Re: @Embeddable question

2007-05-21 Thread fernando_jmt
Have you declared the ABC as follows?: | public class XYZ { | ... | private ABC abc = new ABC(); | | ... | getters/setters | } | | In this case abc should be referenced in the view, not ABC. HTH. View the original post :

[jboss-user] [JBoss Seam] - Re: why conversation-timeout doesn't work properly?

2007-05-21 Thread fernando_jmt
anonymous wrote : | You must be logged in to perform this action | That message tell that the HTTP Session has been timed out (session time out destroys any active conversation). How long are your http session defined? View the original post :

[jboss-user] [JBoss Seam] - SeamEntityConverter Mess

2007-05-21 Thread toni
Hi, I'm trying to use the SeamEntityConverter convertEntity tag in order to select an entity from a selectOneMenu widget. I downloaded the entityconverter-0.1.zip and unzipped it. The I discovered that the tld is pointing to the wrong class and that reference to the taglib is wrong too. After

[jboss-user] [JBoss Portal] - Re: pages in dashboard

2007-05-21 Thread eagleIT
I want a portal for each user based in the same template (example : 1 portal with 4 tabs/pages). This portal must be personalisable by user (drag and drop, keep the position of the drag and drop, add content/new portlet). Have you a database model for the dashboard ? In which table is persisted

[jboss-user] [JBoss Seam] - Re: @Digit Annotation

2007-05-21 Thread fernando_jmt
I will really appreciate if the next release of Seam has bundled the latest Hibernate libraries (Core, EM, Validator...). There are some bugs corrected in such versions currently I'm waiting for. Thanks in advance. View the original post :

[jboss-user] [JBoss Seam] - Re: @Embeddable question

2007-05-21 Thread anescu
Yes, I just tried and the same problem. i also tried this one: I manually inserted the value into the DB (in xyz_abc_name field), so this one works like this, after that i deleted the value from the field and updated, all works ok. Is possible I need to set not null value on the field in the

[jboss-user] [JBoss Portal] - Re: pages in dashboard

2007-05-21 Thread eagleIT
I give you my default-object.xml : | ?xml version=1.0 encoding=UTF-8? | !--~~~ | ~ JBoss, a division of Red Hat ~ | ~ Copyright 2006, Red Hat Middleware, LLC, and

[jboss-user] [EJB 3.0] - Migration from Embedded RC8 to embedded-jboss-beta2

2007-05-21 Thread jc7442
Hi, I try to migrate my junit testcase from embedded RC8 to beta2. It looks that XML configuration file have change a lot. Using the EJB3StandaloneBootstrap classes I was able to define the jar to scan and only the jar to scan. Consequently before each testcase, I started and shutdown the

[jboss-user] [JBoss Seam] - Re: Component Binding don't work in Seam?

2007-05-21 Thread smithbstl
Thanks goose, So I have to use injection, I can't use regular JSF style binding? h:inputText binding=#{mySFSB.someUIInputComponent}/ Can you tell me where you found this in the Seam Documentation? Using your method, do I still need to wire up the binding (like shown above) in the JSF page?

[jboss-user] [JBoss Seam] - Re: @Embeddable question

2007-05-21 Thread anescu
Correction: It works to insert a new entity XYZ. But i have a script which inserts some rows into xyz tables without the xyz_abc_name field. If i select one of these entities and want to update the abc.name field to something then i get a validation error. Anybody any idea how to solve this

[jboss-user] [JBoss Seam] - Re: @Embeddable question

2007-05-21 Thread fernando_jmt
I make a mistake in my last post, the code shoul be: | public class XYZ { | ... | @Embedded | private ABC abc = new ABC(); | | ... | getters/setters | } | | And your ABC must have @Embeddable at type level. do you have it in this way? View the original post :

[jboss-user] [JBoss Seam] - Re: @Embeddable question

2007-05-21 Thread anescu
Yes, i have them both. Earlier i had only the @Embeddable on class ABC, but i saw the @Embedded annotation in another post and used it. So the insert works, but the update of some already inserted entities does not. View the original post :

[jboss-user] [Clustering/JBoss] - Re: Accessing singleton MBean from a cluster node

2007-05-21 Thread [EMAIL PROTECTED]
Looks like the jboss.jmx:type=adaptor,name=Invoker service is secured, using the same security domain as the JMX console. So, you need to associate a principal and credential that the jmx-console domain will accept with the caller thread before invoking on the adaptor. This can be done as

[jboss-user] [JBoss Seam] - Re: SeamEntityConverter Mess

2007-05-21 Thread fhh
Since it is now uf the seam-ui package there is no ec-taglib anymore so you have to use s:convertEntity /. Regards Felix P.S.: There is no JSP tag so it is facelets only at the moment. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047247#4047247 Reply to

[jboss-user] [JBoss Seam] - Re: SeamEntityConverter Mess

2007-05-21 Thread toni
sounds like a downgrade from the previous version View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047249#4047249 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047249 ___

[jboss-user] [EJB/JBoss] - Re: EJB2.1:UserTransaction with CMT- possible bug?

2007-05-21 Thread waynebaylor
Why the call to tm.suspend()? By marking the method with TransactionAttributeType.NEVER you're stating that there will not be a transaction in progress when the method is called. Maybe try using TransactionAttributeType.NOT_SUPPORTED instead of NEVER. That way, if the caller has an

  1   2   3   >