[jboss-user] [JBossWS] - Evaluating JBossWS

2007-11-29 Thread thejavafreak
Hi all, Currently I'm evaluating JBossWS to be used in our next project. I have two fundamental questions regarding JBossWS. 1. Can we use JBossWS under JDK 1.4? Since our company policy don't let us to use JDK 1.5 yet. 2. Can we embed JBossWS in our apps and deploy it to other appserver

[jboss-user] [JBossWS] - Re: Evaluating JBossWS

2007-11-29 Thread [EMAIL PROTECTED]
Hi, 1.) Latest JBossWS version (2.x) can't be used on JDK 1.4 environment. 2.) This could be possible. Richard View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108787#4108787 Reply to the post :

[jboss-user] [JBoss and NetBeans] - Re: EJB Deploynment with JBoss and use of annotations fails

2007-11-29 Thread jebberwocky
From http://www.laliluna.de/ejb-3-tutorial-jboss.html JBoss supports the tag hibernate.hbm2ddl.auto to define if your tables are created or udpated during redeployment. I chose create-drop to have them dropped after each undeployment, so that they can be nicely recreated. The option update

[jboss-user] [JBoss Messaging] - Properties inside an ObjectMessage becomes a HashMap

2007-11-29 Thread sll74
Hi We are running the following test: A producer sends an ObjectMessage with a Properties inside to a Queue. A consumer dequeues the ObjectMessage from the Queue, but we found an HashMap instead of a Properties. | Procuder: | |if ( !initError ){ |Session session =

[jboss-user] [Installation, Configuration DEPLOYMENT] - can not start jboss-4.2.2.GA Successfully

2007-11-29 Thread tarek7elmy
after i unzip the source and set enviromnets variables JAVA_HOME:C:\Program Files\Java\jdk1.5.0_10 then, when try to start JBoss i get this error U:\D:\application servers\jboss-4.2.2.GA\jboss-4.2.2.GA\bin\run.bat 'findstr' is not recognized as an internal or external command, operable program

[jboss-user] [JBoss Seam] - Re: Problems with links in pageflow pages based on templates

2007-11-29 Thread chawax
Do you mean I should replace the s:link view=/home.xhtml / by something like s:link action=#{myComponent.action} / ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108793#4108793 Reply to the post :

[jboss-user] [The Lizzard's corner] - Who is mrs. Julia Firsova?

2007-11-29 Thread Lauri
Hi guys, do you what she is doing? http://labs.jboss.com/developers#JuliaFirsova View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108795#4108795 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108795

[jboss-user] [JBoss Seam] - seam-gen : list.xhtml - Create Button issue

2007-11-29 Thread gonzalad
Hello, When using seam-gen (2.0.0) I have the following issue : in list page, button 'Create entity' can disappear. To reproduce the problem, you'll need 2 associated entities (i.e. @ManyToOne) : 1 - navigate to entity A list. 2 - click 'Create entity A' button. 3 - click 'Select entity B'

[jboss-user] [JBoss jBPM] - Re: jbpm-jpdl-3.2.GA - jbpm-console - ERROR - workflow.jbpm_

2007-11-29 Thread mputz
Please give it a try with the latest jBPM version, currently 3.2.2 - the tables of the identity components have been included in the default db scripts after 3.2.GA. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108797#4108797 Reply to the post :

[jboss-user] [JBossWS] - Re: Evaluating JBossWS

2007-11-29 Thread thejavafreak
Thanks Richard, We might as well use JBossWS 1.x instead. Cheers, View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108798#4108798 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108798

[jboss-user] [JBossWS] - Re: Java Client Application using Stub with WS-Security

2007-11-29 Thread [EMAIL PROTECTED]
Did you set up the keystore/truststore references in your environment? | System.setProperty(org.jboss.ws.wsse.keyStore, resources/interop/nov2007/wsse/shared/META-INF/alice-sign_enc.jks); | System.setProperty(org.jboss.ws.wsse.trustStore,

[jboss-user] [JBossWS] - Re: returning array undefined in web service

2007-11-29 Thread [EMAIL PROTECTED]
mckeno wrote : | env:Envelope xmlns:env=http://schemas.xmlsoap.org/soap/envelope/; | |env:Header/ | |env:Body | | ns2:getNumberResponse xmlns:ns2=http://mojo.streamverse.com/services; | | numbers7/numbers | | numbers2/numbers | |

[jboss-user] [Installation, Configuration DEPLOYMENT] - [3.2.3] [NoClassDefFoundError] Weird exception although i ha

2007-11-29 Thread nicdo77
Hey there, I know, this subject has been treated already in this forum, but i did not find the answer to my problems. Here is the context. I am working on an .ear. So far, i was not packaging my librairies in my .ear, i used to put them directly in JBoss (in /server/default/lib). Now i have

[jboss-user] [JBossCache] - Re: ClusteredCacheLoader + LOCAL CacheMode

2007-11-29 Thread lovelyliatroim
Ok seeking some clarity on why you would use a ClusteredCacheLoader in my case. I have seen the thread http://www.jboss.org/index.html?module=bbop=viewtopict=118598 but in terms of my needs ;). Ok running my cache in invalidation mode is a no go for me, i dont want data evicted if i update a

[jboss-user] [JBoss Tools (users)] - comment/uncomment in .xhtml

2007-11-29 Thread vanyatka
I'm ashamed to ask this, but can anyone suggest how to comment/uncomment pieces of .xhtml files in eclipse with JBossTools installed? I'm new to Eclipse (switching from IDEA), there must be some plugin for this, probably. I tried to use xmlbuddy in hope for finding this silly bit of

[jboss-user] [EJB 3.0] - Stateful bean via RMI

2007-11-29 Thread hipa
I can't get access to stateful bean, but can to stateless one. Why? | package org.test.ejb; | | public interface StatelessRemote | { | public void test(); | } | | package org.test.ejb; | | public interface StatefulRemote | { | public void test(); |

[jboss-user] [Javassist user questions] - Modifying jar files

2007-11-29 Thread teknokrat
Can javassist modify classes inside a jar file? That is, can it save my changes back to the same jar, or do i need to modify class files and archive them afterwards. cheers View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108811#4108811 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - certificate data after successful authorization

2007-11-29 Thread Bresio
Hello I just configured JBoss and my application to restrict access do secure area based on client certificate. It works fine. Now I have problem, how to get certificate data in my application. I need for example certificate serial number. I'm using BaseCertLoginModule with with verifier option

[jboss-user] [JBoss Seam] - Re: Example of using Seam (without EJB) with ExtJS

2007-11-29 Thread Techieexchange
Hi, Thanks for your effort and contribution. Two issues i would like to share with you: 1) Not able to login if i disable cookies on server Description: Always throws NotLoggedInException. I know that you're using Identity for authentication, i don't know why cookies makes problem here. If i

[jboss-user] [JBossWS] - Re: How could see the endpoint the SOAP headers built by a o

2007-11-29 Thread [EMAIL PROTECTED]
First of all take a look at the org.jboss.test.ws.jaxws.samples.webparam sample in the binary distribution. You'll find an example using custom soap header. Did you code the wsdl first? In that case you should need something like this in the operation/input element: | soap:header

[jboss-user] [JBossWS] - Re: endPoint and SOAP headers, how to work this?

2007-11-29 Thread [EMAIL PROTECTED]
http://www.jboss.com/index.html?module=bbop=viewtopicp=4108591#4108591 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108826#4108826 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108826

[jboss-user] [JBossCache] - Re: ClusteredCacheLoader + LOCAL CacheMode

2007-11-29 Thread lovelyliatroim
anonymous wrote : Perhaps run in replicated mode but for every write set a cacheModeLocal Option? Kinda worked but not really, first put was surpressed i.e not replicated but the rest after it were. Im adding the nodes like so | for(int i = 0; i noOfItems;i++){ |

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: can not start jboss-4.2.2.GA Successfully

2007-11-29 Thread [EMAIL PROTECTED]
Have you googled? http://wiki.jboss.org/wiki/Wiki.jsp?page=FindstrCommandNotFound View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108828#4108828 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108828

[jboss-user] [JBoss Messaging] - Re: Properties inside an ObjectMessage becomes a HashMap

2007-11-29 Thread timfox
This is http://jira.jboss.org/jira/browse/JBMESSAGING-1138 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108820#4108820 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108820 ___

[jboss-user] [JBoss Tools (users)] - Re: 2.0.0 GA available ?

2007-11-29 Thread [EMAIL PROTECTED]
when all bugs are resolved then that is normally what is about to happen :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108815#4108815 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108815

[jboss-user] [JBoss Messaging] - Re: Jboss integration

2007-11-29 Thread seammm
I feel like I am barking at wrong tree here. Can someone from JBoss at least confirm that so I can stop considering JGroups altogether and look for another solution. Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108814#4108814 Reply to the post :

[jboss-user] [JBoss Tools (users)] - 2.0.0 GA available ?

2007-11-29 Thread dbinder
I saw all bugs have been resolved in 2.0.0 GA, is it about tobe be availlable ? David View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108813#4108813 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108813

[jboss-user] [JBoss jBPM] - Re: diff between form fields from controller

2007-11-29 Thread kukeltje
answer to both: because getting and keeping the info is not implemented View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108812#4108812 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108812

[jboss-user] [JBoss Seam] - Seam 2.0 G.A, SeamTest and Maven 2

2007-11-29 Thread pete76
Has anyone managed to get this combo working yet with the maven surefire plugin? If so, would it be possible to share your pom config? Even better, is there a Seam maven plugin that will boostrap an embedded runtime, and execute seam tests? View the original post :

[jboss-user] [JBoss Seam] - Re: Getting JBPM to use the seam managed persistence context

2007-11-29 Thread jcruise
OK. I assumed, perhaps erroneously, that the component overriding rules would only work if you looked up the component by name. I believed that this code would always return an instance of ManagedJbpmContext. |public static JbpmContext instance() |{ | if (

[jboss-user] [JBoss Messaging] - Re: Jboss integration

2007-11-29 Thread seammm
Tim - Thanks for the reply. I will try putting the McastReceiverTest.java code into an mbean and see what happens. It might be a good opinion to provide samples for UDP to JMS, SIP to JMS, and even for serial to JMS bridging in later releases. These would get outside devices such as PBX

[jboss-user] [JBossCache] - Re: ClusteredCacheLoader + LOCAL CacheMode

2007-11-29 Thread lovelyliatroim
Just to correct my last post, it is misleading. The first one was suppressed and the rest wasnt. I played around with the placing of setCacheModeLocal and what i discovered was that it doesnt replicate the first one when i have code like this (not shown in first snippet because i didnt think

[jboss-user] [Microcontainer] - Re: migrating from ServiceMBeanSupport

2007-11-29 Thread jhalliday
Fair enough. So I can't do much of my setup in the service constructor, as I don't have the information yet at that time. I need to do the work in the start method instead. That's actually less effort for me, as it's how things currently work. The problem with that is: many other services

[jboss-user] [JBossWS] - Re: Soap service returning complex objects(Such as hashmaps)

2007-11-29 Thread [EMAIL PROTECTED]
This is basically a JAXB bug https://jaxb.dev.java.net/issues/show_bug.cgi?id=268. The workaround you can use it to wrap your map into another class. This class has to be annotated with @XmlAccessorType(XmlAccessType.FIELD) since the bug prevents you from adding @XmlElement to your map field.

[jboss-user] [JBoss Seam] - Re: Seam 2.0.0.0GA + Maven2 doesn`t work...

2007-11-29 Thread w17chm4n
I haven`t used it, but I can check it out. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108838#4108838 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108838 ___ jboss-user

[jboss-user] [JBossCache] - Re: LRU policy for separated object

2007-11-29 Thread mircea.markus
Indeed. eviction is performed on a node basis, so all attributes attached to a node will be seen as one and evicted together. As said, the only solution is to place the attributes within different nodes. View the original post :

[jboss-user] [JBossCache] - Re: Cache loader questions

2007-11-29 Thread mircea.markus
servus, ai dreptate, scuze :( you are right, my bad. The thing is that the cache loader itself know how to load data in batch, but the calling code does not use this. I've updated http://jira.jboss.com/jira/browse/JBCACHE-1221 View the original post :

[jboss-user] [JBossCache] - What replicates in JBC 1.4?

2007-11-29 Thread jorgemoralespou_2
Hi, We have a large application, with large amount of data stored in cache. For some data, we store it as nodes, for some other data, we store it as attributes, in order to find a good compromise between number of nodes, data in each node. We use SYNC_REPL to replicate data between our 2 node

[jboss-user] [JBoss Seam] - inject into EJB with @In doesnot work under SeamTest

2007-11-29 Thread coolfish
With the code: | @Local | @Stateless | @Name(register) | @Scope(ScopeType.CONVERSATION) | public class Register implements IRegister{ | @Logger | private static Log log; | | @In | private EntityManager em; | @In | private User user; | |

[jboss-user] [JBoss Seam] - Re: inject into EJB with @In doesnot work under SeamTest

2007-11-29 Thread coolfish
I am sorry, register 's scope is stateless View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108845#4108845 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108845 ___ jboss-user

[jboss-user] [JBossCache] - How to install JBoss cache from all to default server

2007-11-29 Thread icordoba
Hi there, I want to use default jboss instance with JBoss Tree Cache (JBoss version 4.2.2) I've copied jgroups.jar and jboss-cache-jdk50.jar in default/lib and ejb3-entity-cache-service.xml en default/deploy It seems to work but I am having redeploy/undeploy problems of the ears I run with

[jboss-user] [JBossCache] - Exception when redeploying .ear that uses JBoss Cache

2007-11-29 Thread icordoba
Hi there, I have no problems redeploying ears which don't use JBoss Cache. If I try to redeploy an ear using the Cache I have to stop and start JBoss because I get the following exception. Thanks for any help. 2007-11-29 12:39:43,395 WARN [org.hibernate.cache.TransactionalCache] could not

[jboss-user] [Installation, Configuration DEPLOYMENT] - Can we deploy without restarting?

2007-11-29 Thread thejavafreak
Dear all, Is it possible to deploy apps to appserver without shutting it down? e.g through a web-console or something? if it is possible, how do we do this? I'm using JBoss 4.2.2.GA. thanks in advance View the original post :

[jboss-user] [Microcontainer] - Re: migrating from ServiceMBeanSupport

2007-11-29 Thread alesj
jhalliday wrote : Fair enough. So I can't do much of my setup in the service constructor, as I don't have the information yet at that time. I need to do the work in the start method instead. That's actually less effort for me, as it's how things currently work. | btw: what's stopping you

[jboss-user] [JBoss Portal] - Redirect to a specific portal after login

2007-11-29 Thread ameo
Hello, I would like to know, how to redirect to a desired portal instance after a user logs in. We have more than one portal instances. After users log in by username and passwort using the default jboss portal login form, is it possible to have them automatically redirect to a specific

[jboss-user] [JBoss Seam] - Re: inject into EJB with @In doesnot work under SeamTest

2007-11-29 Thread coolfish
Resolve it after add annotation: @Interceptors(SeamInterceptor.class) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108858#4108858 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108858

[jboss-user] [JCA/JBoss] - Jasypt and JCA -ds.xml files

2007-11-29 Thread EvanSchnell
Has anyone integrated Jasypt (http://www.jasypt.org ) with -ds.xml files? We use the method described at http://wiki.jboss.org/wiki/Wiki.jsp?page=EncryptingDataSourcePasswords but this seems like it might be a simpler approach. View the original post :

[jboss-user] [JBossCache] - Re: ClusteredCacheLoader + LOCAL CacheMode

2007-11-29 Thread lovelyliatroim
anonymous wrote : | replication with buddy replication: This is where i am not so clear, im not so clear on how buddy replication works, i have set it up but dont know the reasoning behind why it does what it does. Ok i would have thought that you would share data with your buddy and the

[jboss-user] [JBossWS] - Re: JBossWS with JBoss 4.2.0 and Axis 1.4 don't work with WS

2007-11-29 Thread stefansauer
Hello, I get the same error you got already in August. I am using Axis2 1.3 as a client and JBoss 4.2.0 GA as the server. Verifying the signature works fine but after this I get the NullPointerException in the WSSecurityDispatcher as noted in the stacktrace from iantonijevic at 07.Aug. Did

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Two Entity has @OneToMany to the same Entity

2007-11-29 Thread claudio_br
How can I do two Entity has @OneToMany to the same Entity? For example the Entity A has @OneToMany to Entity C and Entity B has @OneToMany to Entity C too. The Hibernate adds in the Entity C the id of Entity A or Entity B, but in the search the Hibernate doesn´t know of which Entity the id

[jboss-user] [Microcontainer] - Re: migrating from ServiceMBeanSupport

2007-11-29 Thread jhalliday
ok, so I must be doing something wrong then. I take a class that previously extended ServiceMBeanSupport. I change it so it no longer does so. I change startService() to start(). I drop it into the app server and hey presto, thing that depend upon it break. 12:29:28,517 INFO [JMXKernel]

[jboss-user] [JBoss Seam] - Re: By clicking every row of dataTable, show Popup to edit i

2007-11-29 Thread paradigmza
like this a4j:form | rich:dataTable value=#{rowDataModel} var=row onRowMouseOver=this.style.backgroundColor='#EAEAEA';this.style.cursor='pointer'; | onRowMouseOut=this.style.backgroundColor='#{FF}' |

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Can we deploy without restarting?

2007-11-29 Thread nicdo77
Well, you can redeploy an app by just updating the .ear file on your deploy directory (basically, where you put iit the first time) But i assume you want to do it from a remote machine? Nico. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108870#4108870 Reply

[jboss-user] [JBoss Seam] - Re: Commiting after each statement (mysql)

2007-11-29 Thread pettersonfp
Thank you so much, It solved :-) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108871#4108871 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108871 ___ jboss-user mailing list

[jboss-user] [Microcontainer] - Re: migrating from ServiceMBeanSupport

2007-11-29 Thread jhalliday
I don't have a createService/create method. Besides, the invoker bean is moving into the run state, which means the transaction manger should have had start() called on it? It does not seem to get that call. I can add a create() to see if that gets called, but I'm not clear what help that would

[jboss-user] [Microcontainer] - Re: migrating from ServiceMBeanSupport

2007-11-29 Thread alesj
jhalliday wrote : I change it so it no longer does so. I change startService() to start(). What about createService() -- create()? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108863#4108863 Reply to the post :

[jboss-user] [EJB 3.0] - Interfere the .EntityManager actions in jboss

2007-11-29 Thread umen
Hello all We have very large application that use's extensively the EntityManager methods (createNamedQuery, createQuery, find, merge) Now to refractor all the instances will be a pain, my problem is That I need to insert another check in the returned value and filter it out Can it be bone after

[jboss-user] [Microcontainer] - Re: migrating from ServiceMBeanSupport

2007-11-29 Thread jhalliday
hmm, create() does not get called either. Is it possible there is something odd with lifecycle callbacks to mbeans? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108868#4108868 Reply to the post :

[jboss-user] [JBoss Seam] - About outject and context

2007-11-29 Thread Bernix
I have userList session bean with Session scope,and outject an user object @Stateful | @Name (userList) | @Scope (SESSION) | public class UserListAction implements UserList { | @Out private User user; | ... | } And I have an userEdit session bean with Conversation scope,and

[jboss-user] [Microcontainer] - Re: migrating from ServiceMBeanSupport

2007-11-29 Thread alesj
Can you post this XML. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108872#4108872 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108872 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Problems with links in pageflow pages based on templates

2007-11-29 Thread gazadonf
You should try. It works for me. As i understand, there's a problem using view tag in a template and redirect tag in the pageflow. They don't work together. Why? I currently still don't know. Or if you don't know how to replace your view code by an action code, remove your redirect tag in

[jboss-user] [JBoss Tools (users)] - Re: comment/uncomment in .xhtml

2007-11-29 Thread amitev
xhtml is html with strict xml syntax. Use the standard !-- -- xml comment View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108875#4108875 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108875

[jboss-user] [JBoss Seam] - Re: @Transactional doubts

2007-11-29 Thread pettersonfp
The problema was in mysql, http://www.jboss.com/index.html?module=bbop=viewtopicp=4108871#4108871 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108876#4108876 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108876

[jboss-user] [JBoss Seam] - Seam without DB/persistence tier:Dependency libs

2007-11-29 Thread Techieexchange
Hi, If i work with Seam (2.0 GA) without any DB/persistence layer why its throwing lot of class not found exceptions (for javax.entity, Hibernate etc.). How can i disable DB/Persistence layer dependencies?? View the original post :

[jboss-user] [JBoss jBPM] - deploying jbpm 3.2.2 process archive in jboss 4.2.x

2007-11-29 Thread vishal423
hi, I am new to ant as well as to jbpm. i am using jboss 4.2.2GA with Mysql 5.0.45. While deploying process archive using ant script i am getting following error: couldn't deploy process archives : hibernate.cfg.xml not found. My build.xml file is | ?xml version=1.0 encoding=UTF-8? |

[jboss-user] [Microcontainer] - Re: migrating from ServiceMBeanSupport

2007-11-29 Thread alesj
And an example of dependency? Dunno how lifecycle works if your mbean is not an instance of Service anymore, or if it's wrapped in some Service impl ... |public void installAction(ServiceControllerContext context) throws Throwable |{ | Service service =

[jboss-user] [Microcontainer] - Re: migrating from ServiceMBeanSupport

2007-11-29 Thread jhalliday
mbean name=jboss:service=TransactionManager code=com.arjuna.ats.jbossatx.jta.TransactionManagerService | property name=mbeanServerinject bean=JMXKernel property=mbeanServer//property | property name=transactionTimeout300/property | property

[jboss-user] [JBoss Tools (users)] - Migration from JBossIDE 1.6.0 to JBossTools 2.0.0.cr1 Pack

2007-11-29 Thread Achillix
Hi, i am a long time user of Eclipse 3.2.1/JbossIDE1.6.0 I have setup some really complex packaging configurations. Now i realize the new way is through Project Archives. Is there a way or a guideline to migrate from the packaging configuration to the new project Archives feature? I can always

[jboss-user] [Microcontainer] - Re: migrating from ServiceMBeanSupport

2007-11-29 Thread jhalliday
And an example of dependency? look at jboss-service.xml in AS trunk and take your pick. |mbean code=org.jboss.invocation.local.LocalInvoker | name=jboss:service=invoker,type=local | dependsjboss:service=TransactionManager/depends |/mbean | Dunno how lifecycle works

[jboss-user] [JBoss Tools (users)] - Re: comment/uncomment in .xhtml

2007-11-29 Thread vanyatka
amitev wrote : xhtml is html with strict xml syntax. Use the standard !-- -- xml comment Thanks, that's useful. Manuall adding comments while automatically handling transactions and ORM and all the rest of hi-tech, sounds brilliant. View the original post :

[jboss-user] [JBossCache] - Re: Exception when redeploying .ear that uses JBoss Cache

2007-11-29 Thread [EMAIL PROTECTED]
Is 195.219.190.135 the JBoss you are trying to stop? What's the value for LockAcquisitionTimeout in your ejb3-entity-cache-service.xml? You're seeing a locking conflict as EJB3 tries to clean up the cache during shutdown. Conflicting with an uncommitted transaction that's got a lock. View

[jboss-user] [JBossWS] - Re: Java Client Application using Stub with WS-Security

2007-11-29 Thread method_ben
I tried your suggestion : package com.main; import java.io.File; import java.net.MalformedURLException; import java.net.URL; import javax.naming.NamingException; import javax.xml.namespace.QName; import javax.xml.rpc.Stub; import org.jboss.ws.core.StubExt; import com.client.*; public class

[jboss-user] [JBossWS] - Re: Java Client Application using Stub with WS-Security

2007-11-29 Thread method_ben
I have some problems to paste my jboss-wsse-client.xml but i use this example : http://wiki.jboss.org/wiki/Wiki.jsp?page=WSSecuritySignEncryptExample View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108893#4108893 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: How to make server's JNDI 1099 connection?

2007-11-29 Thread McJava1967
Well, thanks very much for the suggestion, but I'm afraid I still get the same error. I overwrote the jndi.properties files in ...default\conf and ...all\conf, but no luck. (That is what you meant, right?) I'll repost in newbies and JNDI forums... Thanks! View the original post :

[jboss-user] [JBoss Portal] - Different classpathes for portlets

2007-11-29 Thread tkitz
Hi, this is probably an academic question, since I haven't tried it out, yet, but, is it possible, that one portlet uses a different version of the the same library as another portlet or the application server classpath? Do the portlets share the classpath with each other or with the

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Problems with the jar-file element in the persistence.

2007-11-29 Thread pl47ypus
Have you found a proper solution to this problem? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108899#4108899 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108899 ___

[jboss-user] [JBoss Seam] - @Startup and Seam interceptor

2007-11-29 Thread xinhua
Hi everybody, it seems that Seam interceptor doesnot work with @Startup. I have an app scope Seam Component loaded by deployment, in this Seam Component i use my own annotaion (which used seam interceptor) to inject jndi resource, but it does not work. please help many thanks in advance

[jboss-user] [JBoss Seam] - Re: Getting JBPM to use the seam managed persistence context

2007-11-29 Thread jcruise
Ok. |public static Object getInstance(Class? clazz, ScopeType scope, boolean create) |{ | return getInstance( getComponentName(clazz), scope, create ); |} | I can see that the static instance() call does ultimately result in retrieving the component by name.

[jboss-user] [JBoss Messaging] - long time to reload messages in fail over state

2007-11-29 Thread gmb_it
Hi, I have done some tests like the exemples distribueted. In my fail over test I have make 2 clustered istances of Jboss 4.2.2 + JBM 1.4.0 SP1 and I have sended 100 messages in to node 1. In my condition test the balancer have put all (!?) messages in node 2 and afther few second I have

[jboss-user] [JBossWS] - Re: Java Client Application using Stub with WS-Security

2007-11-29 Thread method_ben
sorry, I did a bad cut and paste, jboss-wsse-client.xml: ?xml version=1.0 encoding=UTF-8? jboss-ws-security xmlns=http://www.jboss.com/ws-security/config; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

[jboss-user] [JBossWS] - Re: Java Client Application using Stub with WS-Security

2007-11-29 Thread method_ben
View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108892#4108892 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108892

[jboss-user] [JBoss Seam] - Re: generating forms programatically

2007-11-29 Thread steshaw
J, I've seen an example in my searches that used the c: tags to help with a little logic (choosing between a display set of components and an edit set of components I think). That could certainly have some uses. However, is it possible to inquire about annotations and other meta data about bean

[jboss-user] [JBossCache] - Re: ClusteredCacheLoader + LOCAL CacheMode

2007-11-29 Thread lovelyliatroim
So now im left asking myself what the hell is ClusteredCacheLoader used for?? Doesnt make sense to use it with a replicated cache, you could use it with invalidation and you cant use it with a local cache. Then i come across this http://www.jboss.org/index.html?module=bbop=viewtopict=118598 2

[jboss-user] [JBoss Tools (users)] - Re: comment/uncomment in .xhtml

2007-11-29 Thread vanyatka
Just found out that !-- #{Seam EL} -- is actually run within the comments. IMHO it shouldn't be so, at least we need another pair of comment tags, cause if I need to e.g. temporarily switch off the creation of some component referenced in the page, simple commenting isn't enough, I need to

[jboss-user] [JNDI/Naming/Network] - HELP! Can't connect to 1099?

2007-11-29 Thread McJava1967
Hi folks. When my new JBoss 4.2 Eclipse plugin starts, I'm getting this in the event log: JMXException: Could not obtain connection to any of these urls: localhost:1099 and discovery failed with error: javax.naming.CommunicationException: Receive timed out [Root exception is

[jboss-user] [Beginners Corner] - HELP! Can't connect to 1099?

2007-11-29 Thread McJava1967
Hi folks. When my new JBoss 4.2 Eclipse plugin starts, I'm getting this in the event log: JMXException: Could not obtain connection to any of these urls: localhost:1099 and discovery failed with error: javax.naming.CommunicationException: Receive timed out [Root exception is

[jboss-user] [JBoss Messaging] - Re: Performance Benchmarking problem

2007-11-29 Thread causezero
Now I'm getting another NoClassDefFoundError: [java] 09:43:40,649 WARN [PerformanceTest] job PING failed: java.rmi.ServerError: Error occurred in server thread; nested exception is: java.lang.NoClassDefFoundError: Could not initialize class

[jboss-user] [Installation, Configuration DEPLOYMENT] - JBoss tools ejb3

2007-11-29 Thread errorken123
I'm looking for a way to generate all the stuff I need to deploy my EJB3 enterprise project. I downloaded JBoss 4.2, Eclipse 3.3 and JBoss tools 2.0 RC1 which I extracted in the eclipe 3.3 root directory. All goes fine; I can use the wizard to create session beans (V3) which creates nice

[jboss-user] [EJB 3.0] - EJB3 + JBoss Tools (IDE)

2007-11-29 Thread errorken123
I'm looking for a way to generate all the stuff I need to deploy my EJB3 enterprise project. I downloaded JBoss 4.2, Eclipse 3.3 and JBoss tools 2.0 RC1 which I extracted in the eclipe 3.3 root directory. All goes fine; I can use the wizard to create session beans (V3) which creates nice

[jboss-user] [JBossCache] - Re: Exception when redeploying .ear that uses JBoss Cache

2007-11-29 Thread icordoba
Thanks a lot for your reply. It has the default value of 15000 (15 seconds?) Should I reduce it? In my code I always do a UserTransaction.commit() and a UserTransaction.setRollBackOnly in case of an exception inside the transaction. Do I have to take any other actions to be sure that

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Basic auth with ACEGI

2007-11-29 Thread lucboudreau
Hello, I have an application (Pentaho) which uses ACEGI as a security framework. I need it to expose a BASIC secured URL. I configured it properly and when I request the URL, the response includes a WWW-Authenticate header. My browser sends back a valid and verified Authentication header, but

[jboss-user] [EJB 3.0] - java:com/env not working?

2007-11-29 Thread emsa
Hi, I'm trying to look up a Bean using java:comp/env/MyBean but I just keep getting env not bound (using jbossAS 4.2.1.GA) Isn't java:comp/env/ supported for looking up Bean in the local namespace? Thanks /Magnus View the original post :

[jboss-user] [JBossWS] - Re: Java Client Application using Stub with WS-Security

2007-11-29 Thread [EMAIL PROTECTED]
method_ben wrote : | server.log (jboss_folder/server/default/log): | | 2007-11-29 09:20:58,342 DEBUG [org.jboss.wsf.stack.jbws.RequestHandlerImpl] handleWSDLRequest: jboss.ws:context=test,endpoint=Test | 2007-11-29 09:20:58,342 DEBUG [org.jboss.wsf.stack.jbws.RequestHandlerImpl] WSDL

[jboss-user] [JBossWS] - JBossWS 2.0.2, com.sun.management.jmxremote and Java 6

2007-11-29 Thread bidd
I'm running JBoss 4.2.2-GA and am having trouble getting JConsole working under Java 6. I saw this JIRA http://jira.jboss.com/jira/browse/JBWS-1800?page=all which indicates there was a problem and it's fixed in JBossWS 4.0.2. I downloaded 2.0.2, deployed it into my JBoss 4.2.2 and from the

[jboss-user] [JBoss Messaging] - Re: Properties inside an ObjectMessage becomes a HashMap

2007-11-29 Thread sll74
Hi. I just tried the same test on the Stable branch and it works fine. Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108925#4108925 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108925

[jboss-user] [Installation, Configuration DEPLOYMENT] - java.lang.ClassNotFoundException: org.apache.myfaces.webapp.

2007-11-29 Thread samjoshi26
Hello All, I am getting the following error while deploying Tomahawk 1.1.6 with Apache Myfaces 1.1.5 in JBoss 4.2.2. It gives me ClassCastException ExtensionPhaseListener exception. I have done the following in my web.xml context-param param-name

[jboss-user] [Beginners Corner] - Re: HELP! Can't connect to 1099?

2007-11-29 Thread jaikiran
Let's continue the discussion in your other post at http://www.jboss.com/index.html?module=bbop=viewtopict=124831 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108930#4108930 Reply to the post :

[jboss-user] [JNDI/Naming/Network] - Re: HELP! Can't connect to 1099?

2007-11-29 Thread jaikiran
What does the following command output: telnet localhost 1099 Do you have any firewalls installed? The firewall application might be blocking the requests. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108928#4108928 Reply to the post :

[jboss-user] [JNDI/Naming/Network] - Re: HELP! Can't connect to 1099?

2007-11-29 Thread McJava1967
It shows this: Connecting To localhost...Could not open a connection to host on port 1099 : Connect failed I have Norton installed. Trying to shut it off an retry... Will let you know in a minute. THANKS FOR RESPONDING ! View the original post :

[jboss-user] [JBoss Seam] - Re: @Startup and Seam interceptor

2007-11-29 Thread jacob.orshalick
Does your interceptor work with other Seam components that are not annotated with @Startup? Please post your annotation and interceptor code. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108938#4108938 Reply to the post :

  1   2   3   >