[jboss-user] [JBoss Seam] - Re: Auto Generated Value for primary key in oracle.

2007-08-14 Thread nickarls
voollanagaraju wrote : Hi, | | I am using JPA @ManyToMany annotaion between two tables(user and group). How could I get an auto generated value for primary key in table group, when I add groups to user. I am using oracle 9i database. | | Nagaraju

[jboss-user] [JBoss Seam] - Re: authenticate error..

2007-08-14 Thread nickarls
Are you sure you have the latest drools-libraries and you don't have any other versions hanging around the server? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073825#4073825 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: jboss as a windows service cannot stop

2007-08-14 Thread sagimann
In my case, as I said earlier, there was no error whatsoever during startup, and no messages at all after I clicked 'stop' View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073826#4073826 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Configuring Log4j for EAR deployed

2007-08-14 Thread arunkrishnank
I think you can do this. You need to have a separate log4j.xml in the EARs root folder. Also the log4j.jar has to be loaded via application.xml. You can enable EAR specific class loading using jboss-app.xml to resolve issues with class loading. best regards Arun View the original post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: jboss as a windows service cannot stop

2007-08-14 Thread sagimann
By the way (correct my if I'm wrong), but port 1099 is default for naming services or RMI, no? It is possible that stopping involves some RMI client (JMX-based maybe) that tells the server to stop. If your naming service/RMI is provided by some external application, it may be related... View

[jboss-user] [JBossWS] - Re: Issue with local soad:address generated

2007-08-14 Thread richard_opalka
Did you try to modify the file jboss-beans.xml, bean WSServerConfig and its property webServiceHost? Don't forget to ensure that property modifySOAPAddress is set to true View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073829#4073829 Reply to the post :

[jboss-user] [JBoss Seam] - Re: resource bundle

2007-08-14 Thread urswag
Thanks but it does not change the effect. Simply pwdchange.screen.title is written on the screen. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073830#4073830 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073830

[jboss-user] [JBoss Seam] - Re: resource bundle

2007-08-14 Thread nickarls
Does f:loadBundle see it? Does it work if you just put it in messages.properties? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073832#4073832 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073832

[jboss-user] [JBossCache] - Re: Multiple Objects under a single key in POJOCache?

2007-08-14 Thread [EMAIL PROTECTED]
Yes, that is one reason. The other is really from PojoCache point of view, it is more natural to associate with a String id than a Fqn object id. At least that was then. :-) -Ben View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073835#4073835 Reply to the post

[jboss-user] [EJB 3.0] - Re: need help for Transaction Attribute Types

2007-08-14 Thread jc7442
Maybe you can try to use a bean manage transaction: @TransactionManagement(TransactionManagementType.BEAN) | Then you will have to begin and commit transaction by yourself. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073839#4073839 Reply to the post :

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

2007-08-14 Thread jitendrasupe
I am new bee to JBPM. Trying to deploy the sample application given in the jbpm-jpdl-suite-3.2.1. I am following documentation given for jbpm-jpdl-suite-3.2.1 Getting started but getting following errors while starting the server from the folder

[jboss-user] [EJB 3.0] - Re: EJB3 session bean pool configuration?

2007-08-14 Thread jc7442
For a static conf you can use the annotation org.jboss.annotation.PoolClass View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073842#4073842 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073842

[jboss-user] [EJB 3.0] - Re: need help for Transaction Attribute Types

2007-08-14 Thread grdzeli_kaci
jc7442 wrote : Maybe you can try to use a bean manage transaction: | @TransactionManagement(TransactionManagementType.BEAN) | | | | Then you will have to begin and commit transaction by yourself. View the original post :

[jboss-user] [EJB 3.0] - Re: need help for Transaction Attribute Types

2007-08-14 Thread grdzeli_kaci
yes it is possible to do this, but i don't want bean managed transactions. is it possible what i did ? i think that extended persistence context disables automatic flash on database, maybe i will use bean managed transaction if i will not resolve this problem. Thanks jc7442 anyway. View

[jboss-user] [JBoss Seam] - Re: extended persistence context with JavaBeans ?

2007-08-14 Thread sirandreus
hi norman, thank you for your quick help. The requests happened inside a Session Scope, but (if I understand correctly) still in different conversations. Thus I added a @Begin annotation at the factory method, which is called once, when the page is loaded. I haven´t annotated any method with

[jboss-user] [JBoss Seam] - TransactionalSeamPhaseListener + Spring @Transactional

2007-08-14 Thread dapeng
Hi, can anyone explain me the effect, when I combine Seam TransactionalSeamPhaseListener with Spring @Transctional annotation in my service layer? regards dapeng View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073849#4073849 Reply to the post :

[jboss-user] [Beginners Corner] - Re: Login for Web-Application

2007-08-14 Thread fermat42
Thank you, it works now. Sorry for the wrong tag... For others reading this: I realized the the directory in the module-options is relative to the conf-directory of the server I started (e.g. $JBOSS_HOME/se4rver/default/conf/). It seems not to be possible to use an absolute path, because than

[jboss-user] [JBoss Seam] - Injection not working calling methods between EJBs

2007-08-14 Thread pierospinelli
I try to explain the situation in words as first, since the code would be too long. I have a Statfull bean that is an abstract class (AB1). I have: - a Normal statless bean (SL1) - a Statfull bean (SFa) that inherits from AB1 and Inject the local interface of SL1. - a Statfull bean (SFb) that

[jboss-user] [JBossCache] - Re: Multiple Objects under a single key in POJOCache?

2007-08-14 Thread BruceSpringfield
Hi Jason, [EMAIL PROTECTED] wrote : Id really should be called Fqn in the signature. You can use this method to find all objects at a particular location in the cache. | | For example: | | | cache.attach(/people/Bob, bob); | | cache.attach(/people/Fred, fred); | |

[jboss-user] [JBossCache] - Re: findAll(null) working?

2007-08-14 Thread BruceSpringfield
Hi Ben, My JUnit test only has tests for attaching, detaching, and removing. I didn't have any tests for findAll() or findAll(null). With Jason Greene's previous post, the usage of findAll() is clear and I see that I was trying to attach multiple objects to a single id and then using

[jboss-user] [JBossCache] - Re: POJOCache detach()? Sort Of?

2007-08-14 Thread BruceSpringfield
Yes, I wanted to detach() a local Object so it was no longer connected to the cache, and yet I wanted the Object to still remain in the cache. I wanted to have a local Object that was no longer connected to the cache and and would not affect the object that was stored in the cache. A copy of

[jboss-user] [JBossCache] - Re: read only POJOCache objects?

2007-08-14 Thread BruceSpringfield
Okay, I see. Thanks for the information!! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073861#4073861 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073861 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: authenticate error..

2007-08-14 Thread [EMAIL PROTECTED]
You can no longer inject the session context. Instead use Contexts. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073863#4073863 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073863

[jboss-user] [JBoss Seam] - Re: Injection not working calling methods between EJBs

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

[jboss-user] [JBossWS] - Re: Issue with local soad:address generated

2007-08-14 Thread rcherchi
Thank you very much... It works nicely ;) Outstanding job ! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073865#4073865 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073865

[jboss-user] [JBoss Seam] - Re: resource bundle

2007-08-14 Thread urswag
Seam 2.0 Beta If I try this it works. The entry in the properties file for pwdchange.screen.title is printed out correctly. | f:loadBundle basename=messagesAfn var=messagesAfn / | h:outputText value=#{messagesAfn['pwdchange.screen.title']} / | Putting the entries in the properties file

[jboss-user] [JBossCache] - 2.0GA and Maven2

2007-08-14 Thread FredrikJ
Hi, I was about to update to 2.0 GA and I noticed that in the maven pom file the dependency to jgroups still uses the 2.5.0-BETA2 version of jgroups. Is there any reason for this or has it just been forgotten? View the original post :

[jboss-user] [JBoss jBPM] - process go back?

2007-08-14 Thread shiliang0930
?xml version=1.0 encoding=UTF-8? | process-definition | xmlns= name=test |start-state name=start | transition name= to=task1/transition |/start-state |task-node name=task1 | transition name= to=task2/transition |/task-node |task-node name=task2

[jboss-user] [JBoss Seam] - Re: DataModel entries appearing twice

2007-08-14 Thread enrico256
Problem solved: trying to be smart the Item.setFolder method was implemented as following: public void setFolder(Folder folder) { | this.folder = folder; | folder.getItems().add(this); | } In reality item.setFolder and folder.getItems().add are called as necessary by the framework

[jboss-user] [JBossWS] - xs:anyType not being deserialized properly

2007-08-14 Thread koganty
I'm using JBossWS 2.0.0 against JBoss 4.0.5 with JDK1.6. I have Map data structure that is returned as part of call. It is a map of String to Object...which translated to xs:string to xs:anyType in the wsdl. When I retrieve this object through a Web Service call... the data comes back fine and

[jboss-user] [JBoss jBPM] - Re: process go back?

2007-08-14 Thread kukeltje
nope.. since that task has already finished View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073875#4073875 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073875 ___ jboss-user

[jboss-user] [JBossCache] - Marshall exception during cache replication

2007-08-14 Thread itchy75
Hi, I've got an serialization exception when my object is replicated in the cluster. This exception only occurs when replication is called after a put in the cache. For example, if I start the second cache afer the first cache in cluster has been initialized, everything is well replicated at

[jboss-user] [JBossCache] - Re: 2.0GA and Maven2

2007-08-14 Thread [EMAIL PROTECTED]
This is a mistake. The dependency should be on JGroups 2.5.GA. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073877#4073877 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073877

[jboss-user] [JBoss Seam] - Re: resource bundle

2007-08-14 Thread urswag
If I use it in the context with pages.xml it works. | page view-id=/* bundle=messagesAfn | | /page | This works but I would to use it as a global resource. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073878#4073878 Reply to the post

[jboss-user] [JBoss Seam] - Page refresh when hitting F5

2007-08-14 Thread enrico256
We have a simple CRUD application based on Seam 1.2.1 that manages items. These are presented in a list (DataModel) from which they can be viewed and modified. When an item is updated by a user it should be possible for everyone watching the very same data to view the changes by reloading the

[jboss-user] [JBoss jBPM] - Re: source code for jbpm4jsf, data form

2007-08-14 Thread dleerob
Here is a thread that helped me to get the source code I was looking for: http://www.jboss.com/index.html?module=bbop=viewtopict=114954 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073885#4073885 Reply to the post :

[jboss-user] [EJB 3.0] - problems working with XA datasource

2007-08-14 Thread mreis
Dear all, in my EJB3 SLSB (exposed as a WebService) I'd like to contact a Jackrabbit XA datasource, operate on it, and commit changes. The datasource is configured in server/default/deploy/jcr-ds.xml: |connection-factories |tx-connection-factory |

[jboss-user] [JBoss Seam] - Re: entity-transaction with persistence provider other than

2007-08-14 Thread thejavafreak
I don't think your question is related to this issue. If you want to integrate toplink with jboss, you just add the toplink-essentials library to the classpath and it should work. But if you want to use toplink with seam, that's another issue View the original post :

[jboss-user] [Advanced Documentation] - Re: When can we expect JBossAS 4.2 documentation?

2007-08-14 Thread kobygao
Why JBoss Enterprise Application Platform 4.2 haves docs? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073891#4073891 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073891 ___

[jboss-user] [JBoss jBPM] - Re: source code for jbpm4jsf, data form

2007-08-14 Thread rossputin
ah cool, that had the answer I was looking for, cheers Ross View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073893#4073893 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073893

[jboss-user] [JBoss Portal] - installing two or more instances of portal on one machine

2007-08-14 Thread advaittrivedi
Hi All, I am planning to install 2 or more instances of portal server on Jboss app server. I found some info on wiki: http://wiki.jboss.org/wiki/Wiki.jsp?page=ConfiguringMultipleJBossInstancesOnOneMachine I need to use jboss portal 2.6.1 on jboss appserver 4.0.5, i know how to install portal

[jboss-user] [JBossWS] - Unable to priint the content of SOAPBody

2007-08-14 Thread bossy
Hi, I need to print the content of every request/response/fault that comes in or goes out from my JAX-RPC web service, that runs under JBoss 4.0.4. I created a hadler that extends javax.xml.rpc.handler.GenericHandler. I can intercept every request / response / fault but I can't get the content

[jboss-user] [JBoss Seam] - Re: beans and different packages

2007-08-14 Thread [EMAIL PROTECTED]
When you say package do you mean archive? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073902#4073902 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073902 ___ jboss-user

[jboss-user] [EJB 3.0] - Re: problems working with XA datasource

2007-08-14 Thread mreis
I forgot to list my environment: JBoss 4.0.5.GA (with EJB3.0 RC9 Patch 1) JDK 1.5_06 Jackrabbit 1.3.1 I also read about the following limitation for EJB3 embedded (http://docs.jboss.org/ejb3/embedded/embedded.html): anonymous wrote : | XA Connection pool is not available yet. | May this

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Hibernate with Oracle10g, Inheritance issue

2007-08-14 Thread trouby
Hello, I have an abstract class (Base) that looks as follows: | @Entity | @Table(name=MyTable) | @Inheritance(strategy=InheritanceType.SINGLE_TABLE) | @DiscriminatorColumn(name=OVERRIDE_LEVEL) | | class abstract Base { | some properties here | .. | .. | } | Then

[jboss-user] [JBoss Seam] - Re: resource bundle

2007-08-14 Thread atao
What is you configuration in faces-config.xml? What is the current value of locale? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073906#4073906 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073906

[jboss-user] [JBoss Seam] - Looking for SEAM iText Features

2007-08-14 Thread marthoff
Hello, I'm using Seam (1.2.1.GA) iText for the first time and can't figure out how to: - create tables without border - create newlines within tables cells - use text formated with s:formatedText within pdf files Thanks for your answers! Greets Martin View the original post :

[jboss-user] [JBoss Seam] - JBoss Seam 2.0.0 beta1 and jetty

2007-08-14 Thread [EMAIL PROTECTED]
Hi, I just tried to run a webapp which uses version 2.0.0 beta1 on the maven jetty plugin (tried version 6.1.2 and 6.1.5) and I've run into some problems. Has anyone here managed to get this configuration running? I posted to the jetty support mailing list where you can find some more

[jboss-user] [JBoss Seam] - Re: is it possible to complete JBPM task and update entity a

2007-08-14 Thread [EMAIL PROTECTED]
vladimir.kovalyuk wrote : is it possible to start a JBPM process and update entity as an atomic operation? Yes, @CreateProcess only starts a process if the method with which it is annotated returns a non-null outcome without exception. So, if the entity update fails (e.g. flush() with manual

[jboss-user] [JBoss Seam] - Re: beans and different packages

2007-08-14 Thread mnrz
well, I meant in the same archive but different package for example: com.my.dao SomeEjbBean.java and com.my.model SomeOtherBean.java but how about two archives (two different jar files)? please note I am using embeddable EJB with Tomcat 5.5 thanks View the original

[jboss-user] [Installation, Configuration DEPLOYMENT] - jbossweb sendfile with UTF-8 filenames?

2007-08-14 Thread tekniklas
Dear experts, The file server/default/deploy/jbossweb.sar/ROOT.war/readme.html is browsable at http://localhost/readme.html Are there jbossweb settings enabling browsing a file like server/default/deploy/jbossweb.sar/ROOT.war/réadme.html at http://host/réadme.html ? Thanks Niklas View the

[jboss-user] [JBoss Seam] - Re: Page refresh when hitting F5

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

[jboss-user] [Installation, Configuration DEPLOYMENT] - JBoss Installation with only JMX Console and Tomcat.

2007-08-14 Thread vdimitr
Hello everybody. I'm trying to get an up 'n' running JBoss installation with only the JMX Console and Tomcat Web Server. After reading the JBoss Wiki about Slimming and Service Dependencies and tried a few experiments myself, I have come to the following jboss-service.xml | ?xml version=1.0

[jboss-user] [Beginners Corner] - Re: Try to use jboss 4.2.0GA with MySQL

2007-08-14 Thread stefan_n_eriksson
I experienced the same problem The mysql-connector-java-5.0.7-bin.jar should be placed in jboss-4.2.1.GA/server/default/lib or whatever your instance is named), not in jboss-4.2.1.GA/lib Don't really know why, but it solved the problem. View the original post :

[jboss-user] [JBossCache] - Instrumentation - preparing an object for POJO Cache 2.0?

2007-08-14 Thread BruceSpringfield
Can someone clarify instrumentation of objects for POJO Cache 2.0 The documentation continually emphasizes the need for instrumentation of Objects before using these objects with POJO Cache. But I ran some tests with POJO Cache and did not instrument the objects at all in the tests and POJO

[jboss-user] [Management, JMX/JBoss] - Re: How to uniquely identify a mbeanserver object created in

2007-08-14 Thread m_bala23
But in our case (we actually use the spring way of locating the mbeanserver i.e )agentId is dynamically generated by th Jboss for the mbeanserver.so we are not able to locate the mbeanserver unquiely.When we start the JCOnsole another mbeanserver is also created,so we were not able

[jboss-user] [JBossCache] - Correct annotation for a local object in POJOCache 2.0

2007-08-14 Thread BruceSpringfield
I see the annotation for a replicable object is : @org.jboss.cache.pojo.annotation.Replicable but what about for an object in a local cache? Which annotation type should we use? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073931#4073931 Reply to the post

[jboss-user] [JBossCache] - Re: Instrumentation - preparing an object for POJO Cache 2.0

2007-08-14 Thread BruceSpringfield
For the Student and Course objects, I removed the annotation that had been present in the code and the objects still appeared to function with POJO Cache. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073933#4073933 Reply to the post :

[jboss-user] [EJB/JBoss] - How to trace remote calls client-side

2007-08-14 Thread alessandro_rizzi
I have a client-server application (developed with JWS, but this is not meaningfull) and I would like to trace, for debug pourpose each remote method invocation (from client to server, not from server to server) ... just to know how many remote calls are made in each client event. The

[jboss-user] [EJB 3.0] - Re: need help for Transaction Attribute Types

2007-08-14 Thread oskar.carlstedt
Hi All! I haven't read everything in this thread but a good idea might be to take a look in the Java EE tutorial. It has a whole chapter discussing transactions. Whole tutorial: http://java.sun.com/javaee/5/docs/tutorial/doc/ Transactions:

[jboss-user] [JBoss Seam] - Re: Seam 2.0 BETA

2007-08-14 Thread [EMAIL PROTECTED]
Not sure this is relevant to the exception you mentioned, but You should remove the view-handler config from faces-config.xml. Ajax4jsf requires it to be defined like this in web.xml | context-param | param-nameorg.ajax4jsf.VIEW_HANDLERS/param-name |

[jboss-user] [JBoss Seam] - The feature of closed issue JBSEAM-715 is missed in Jboss Se

2007-08-14 Thread cftdanny
The module of pages.xml is good feature. After search in JIRA, it already implement in JBSEAM-715, but checked the source of 2.0.b1, I find, the following code is not implemented: core:pages page-dir=/WEB-INF/pagesdir / Is this feature will be discard in 2.0? View the original post :

[jboss-user] [JBoss Seam] - Re: resource bundle

2007-08-14 Thread urswag
|application | message-bundlemessages/message-bundle | locale-config | default-localeen/default-locale | /locale-config | !-- Disabled when using Ajax4JSF -- | !-- |

[jboss-user] [JBoss Seam] - Re: The feature of closed issue JBSEAM-715 is missed in Jbos

2007-08-14 Thread sbublava
It's navigation:pages now and the attribute is named resources. Example: | navigation:pages | navigation:resources | value/WEB-INF/pages.xml/value | value/WEB-INF/more-pages.xml/value | /navigation:resources | /navigation:pages | I can't remember whether

[jboss-user] [JNDI/Naming/Network] - MSSQLDS has no valid JNDI binding. Check the jboss-web/resou

2007-08-14 Thread shankha
Hi, I am facing a problem when I want to deploy my application in the jboss-4.2.1.GA. 16:37:36,336 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA' 16:37:36,508 INFO

[jboss-user] [JBoss Seam] - Re: The feature of closed issue JBSEAM-715 is missed in Jbos

2007-08-14 Thread [EMAIL PROTECTED]
Oops this didin't get documented. Try navigation:pages |navigation:resources | value/foo/bar.xml/value |/navigation:resources | /navigation:pages I've updated the docs in CVS. N.B. If you still want WEB-INF/pages.xml you'll need to include it in your list. View the

[jboss-user] [Beginners Corner] - JNDI problem

2007-08-14 Thread zhlu
I got the following errors when I deploy my app: 8:05:32,718 WARN [ServiceController] Problem starting service jboss.web.deploy ent:war=aaa.war,id=-1582241627 rg.jboss.deployment.DeploymentException: Error during deploy; - nested throwabl : (javax.naming.NamingException: resource-ref:

[jboss-user] [JBoss Messaging] - Re: Messaging bridge question

2007-08-14 Thread timfox
Sorry I have taken so long to look at this. Before I investigate any deeper, there is one obvious thing I can see wrong in your remote jms provider config: | !-- The combined connection factory -- | attribute name=FactoryRefjava:/XAConnectionFactory/attribute | !-- The queue

[jboss-user] [JBoss Seam] - Re: Seam 1.2.1, AS 4.2.0 and TinyMCE

2007-08-14 Thread pdhaigh
I'm guessing that's a no? This is actually quite a pain - because you can't use the work around in a multipart form. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073958#4073958 Reply to the post :

[jboss-user] [JBoss Seam] - questions about jboss embedded warns

2007-08-14 Thread Stateless Bean
Hi, Finally i run my jboss embedded on tomcat 6.0, but im warring about few warns. Can anybody explain me this anonymous wrote : | JBoss Messaging Warning: DataSource connection transaction isolation should be READ_COMMITTED, but it is currently NONE. | Using an

[jboss-user] [Management, JMX/JBoss] - moving from JDMK to JBOSS

2007-08-14 Thread ab_ba
Hi , we are in the process of moving from JDMK to JBOSS JMX, anyone has information on this process ? Is moving Mbeans to JBoss an easy process ? are there things that JDMK gives , that are not supported by JBoss ? have websphere and weblogic the same JMX support as JBoss ? thanks! Amir.

[jboss-user] [JBoss Seam] - Qestion about timers in jboss seam

2007-08-14 Thread vadger
Hello, In documentation I've found that jboss seam has timer possibility. The question is, how I can initialize timer task on application deploy time. The possible way is via context listener in web.xml where I'll invoke EJB method that is represented as timer. Is there another way to

[jboss-user] [JBoss Seam] - Re: questions about jboss embedded warns

2007-08-14 Thread [EMAIL PROTECTED]
You'd be better off asking this in the JBoss Embedded forum. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073968#4073968 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073968

[jboss-user] [EJB 3.0] - Re: Invoke remote EJB3 from JVM 1.4 client

2007-08-14 Thread bmaras
I opened a patch proposal for this feature : http://jira.jboss.com/jira/browse/EJBTHREE-1029 It also contains the files mentioned above. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073969#4073969 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Qestion about timers in jboss seam

2007-08-14 Thread [EMAIL PROTECTED]
Use @Observer(org.jboss.seam.postInitialization) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073972#4073972 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073972 ___

[jboss-user] [JBoss Seam] - Re: Page refresh when hitting F5

2007-08-14 Thread enrico256
Here is an extract of the code: home.xhtml shows the list of items rich:dataTable id=items value=#{items} var=_item | rich:column | s:link action=#{itemFinder.selectItem} value=#{_item.id}/ | /rich:column | rich:column | h:outputText

[jboss-user] [JBoss Messaging] - Re: Messaging bridge question

2007-08-14 Thread timfox
Ok, I just validated that I can successfully consume from a remote jms provider and send to a local jms provider using the bridge and a remote jms provider loader configured using global JNDI namespace. I'm using TRUNK but there haven't been any bridge code changes between CR1 and TRUNK. I'm

[jboss-user] [JBoss Messaging] - Re: Can a bridge work fine with the remote source and local

2007-08-14 Thread timfox
It looks like there is an error in your configuration - you have configured your remote jms provider to use the local java: namespace. So linked-to thread for more details. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073977#4073977 Reply to the post :

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

2007-08-14 Thread timfox
In your remote jms provider, you are using the local JNDI namespace (java:) to do your lookup: | mbean code=org.jboss.jms.jndi.JMSProviderLoader | name=jboss.messaging:service=JMSProviderLoader,name=CSMJMSProvider | attribute name=ProviderNameCSMJMSProvider/attribute |

[jboss-user] [JBoss Messaging] - Re: Missing 1.2.0 downloads from JBM downloads page

2007-08-14 Thread timfox
Ok, you make a good case: I'll put the old SPs and GAs up again as soon as I have some time... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073980#4073980 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073980

[jboss-user] [JBoss Seam] - Re: Qestion about timers in jboss seam

2007-08-14 Thread vadger
Am I right, if I have for instance: | @Stateful | @Name(paymentAction) | public class CreatePaymentAction | { | @In(create=true) PaymentHandler paymentHandler; | @In Bill bill; | | public String schedulePayment() | { |

[jboss-user] [JBoss Messaging] - Re: Publishing problems...

2007-08-14 Thread timfox
You could use a request-response pattern. I.e. send a response back once you have consumed the message from the topic. This is a classic pattern, google it for more info. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073982#4073982 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - JNDI problem

2007-08-14 Thread zhlu
I got the following errors when I deploy my app: 8:05:32,718 WARN [ServiceController] Problem starting service jboss.web.deploy ent:war=aaa.war,id=-1582241627 rg.jboss.deployment.DeploymentException: Error during deploy; - nested throwabl : (javax.naming.NamingException: resource-ref:

[jboss-user] [Messaging, JMS JBossMQ] - Re: Hypersonic localDB.data file size limit

2007-08-14 Thread aquest
from where do i execute the command CHECKPOINT DEFRAG. We are using Jboss 4.0.5.GA and the data file grows till 2GB after which it throws the exception org.jboss.mq.SpyJMSException: Could not store message: 2626268 msg=48627 hard NOT_STORED PERSISTENT queue=TOPIC.JECCommand.ID:6.-2147483648

[jboss-user] [JBoss Seam] - Re: Qestion about timers in jboss seam

2007-08-14 Thread [EMAIL PROTECTED]
Yup, though you probably don't need it to be stateful. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073987#4073987 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073987 ___

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: JNDI problem

2007-08-14 Thread jaikiran
anonymous wrote : and web.xml: | | resource-ref | res-ref-namejava:mcv_test/res-ref-name This should have been: | resource-ref | res-ref-namemcv_test/res-ref-name View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073988#4073988 Reply to the post :

[jboss-user] [Remoting] - HTTP/HTTPS Connector problems

2007-08-14 Thread lm28ness
I'm trying to do JMS over HTTP/S with JBAS 4.2.1 but i run into problems. I think i configured everything fine since there is no error when JB starts up. When i run my client i get this error. I can get the bisocket and sslbisocket to work fine but not with http/https. Any thoughts as to

[jboss-user] [JBoss Seam] - edit.xhtml and trying NOT to pump out a balnk line (Pete que

2007-08-14 Thread [EMAIL PROTECTED]
Trying to do it the seam way... I use this in my edit.xhtml | s:div styleClass=edit_template_error_area rendered=#{!empty facesContext.maximumSeverity} |s:message styleClass=error / | /s:div | This is great in that it does not render whenever I have no errors (so my lines are

[jboss-user] [JBoss Seam] - Re: Qestion about timers in jboss seam

2007-08-14 Thread vadger
tnx a lot :) JBoss Seam is really smart and elegant application framework, I like it :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073992#4073992 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073992

[jboss-user] [JBoss Messaging] - Trailblazer

2007-08-14 Thread loumaus
The trailblazer is looking for jboss.mq.service=DestinationManager : --- MBeans waiting for other MBeans --- ObjectName: jboss.j2ee:ear=EJB3Trail.ear,jar=beans.jar,name=CalculatorMDB,service=EJB3 State: FAILED Reason: javax.management.InstanceNotFoundException:

[jboss-user] [JNDI/Naming/Network] - Re: Extremely basic JNDI question

2007-08-14 Thread stevev
I'm having a very similar problem; multiple web contexts sharing a war file, each using distinct data. I solved the problem slightly differently in Tomcat stand alone. Each context is given a unique key via JNDI that it uses to select the relevant rows of a shared database. But I think we're

[jboss-user] [JBoss Seam] - Re: resource bundle

2007-08-14 Thread atao
Try: - either to remove default-locale in locale-config - or to change the name of properties file from messagesAfn.properties to messagesAfn_en.properties View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4074002#4074002 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: Bridge - Foreign Message (ActiveMQ - JbossMessaging)

2007-08-14 Thread timfox
aslak wrote : In this case, the 1.3.0 behavior seems to be more correct. Yes, but we are having to work around an active mq bug here, see http://jira.jboss.com/jira/browse/JBMESSAGING-988 for more details. View the original post :

[jboss-user] [JBoss Seam] - Re: The method destroy is called twice

2007-08-14 Thread deved
Hi Richards. I try with tableModel.clean() and with this: anonymous wrote : | if(tableModel !=null) { | Component component = Seam.componentForName(tableModel); | component.destroy(tableModel); | //component.callDestroyMethod(tableModel); | } And I have the same

[jboss-user] [JBossCache] - Re: Marshall exception during cache replication

2007-08-14 Thread itchy75
I tried to serialize my object vith Jboss serialization and it doesn't work. so i('s a jboss serialization problem. | java.io.IOException | at org.jboss.serial.persister.RegularObjectPersister.readSlotWithMethod(RegularObjectPersister.java:107) | at

[jboss-user] [Beginners Corner] - Re: JNDI problem

2007-08-14 Thread jaikiran
Lets continue the discussion in your other post at http://www.jboss.com/index.html?module=bbop=viewtopict=116066 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4074012#4074012 Reply to the post :

[jboss-user] [JBoss Portal] - Re: installing two or more instances of portal on one machin

2007-08-14 Thread [EMAIL PROTECTED]
anonymous wrote : | ay, i want to add DEV1 DEV2 apart from default configuration. if i simply copy default directory and rename it to DEV1 will it work? | yes. make sure you start jboss with ./run.sh -c DEV1 and ./run.sh -c DEV2 to start the proper configuration anonymous wrote : |

[jboss-user] [EJB/JBoss] - Re: How to trace remote calls client-side

2007-08-14 Thread waynebaylor
I'm not 100% sure about this, but you might be able to add an interceptor to the remote interfaces and do logging there. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4074016#4074016 Reply to the post :

[jboss-user] [JBoss Seam] - SeamTest Target Unreachable, identifier 'authenticator' re

2007-08-14 Thread urswag
Seam 2.0 Beta JBoss 4.2.0 I would to build tests. I have the following problem. When I add the security rules file I get an exception. Has anyone any idea? part of components.xml |drools:rule-base name=securityRules |drools:rule-files |value/security.drl/value

[jboss-user] [JBoss Seam] - DataModelSelection does not work with PAGE scope

2007-08-14 Thread ilya78
Hi, I am outjecting a DataModel on PAGE scope, but DataModelSelection is null(when I click on a h:datatable row). I don't understand why it doesn't work - I am struggling with it for a couple of days now. Here is a simple application that does just this: | @Name(eventLister) |

  1   2   3   >