[jboss-user] [JBoss jBPM] - How to Get All Task Instances

2008-10-16 Thread me_muhammadali
I want to get all task instances from table JBPM_TASKINSTANCES irrespective of active id's. I have already used jbpmContext.getTaskList(), jbpmContext.getGroupTaskList(actorIds) jbpmContext.getTaskMgmtSession().findTaskInstances(actorIds) but they all depend on Active Ids. I want to get all

[jboss-user] [Microcontainer] - @Depends and ObjectName key-value pair ordering

2008-10-16 Thread jaikiran
System details - JBoss-5 CR2, Sun Java 1.5, Windows 2003 Server OS I have a @Service with a @Depends annotation as follows: @Service (objectName = "vieo.ccs:service=Migration") | @Management(MyService.class) | @Depends({"jboss.jca:service=DataSourceBinding,name=DefaultDS"}) | public class M

[jboss-user] [EJB 3.0] - Re: Very urgent An EJB3.0 Exception

2008-10-16 Thread shangzihao
Tomcat local program error message is : system error : className(com.just.logic.UserAndUserinfo) methodName(queryById) time(2008-10-16 15:9:53,728)?param([[Ljava.lang.Object;@588ec0]) at the same time Jboss log message is : 2008-10-16 15:09:53,545 DEBUG [org.jboss.remoting.transport.socket.Serv

[jboss-user] [JBoss/Spring Integration] - Unable to run spring jsf application

2008-10-16 Thread ravijsf
Hi, I am presently working on a project with spring, jsf and hibernate. I build the project using ant and successfully deployed in Jboss. When I am trying to run the application it is throwing an exception mentioned below: java.lang.RuntimeException: Cannot find FacesContext at javax.f

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Problem with java.lang.OutOfMemoryError

2008-10-16 Thread ridzuan_majid
Seems like that.. SCO make some changes.. Actually this system still running on SCO-UNIX, i need to upgrade but need to take a look at the original system when running on SCO View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182558#4182558 Reply to the post :

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Incomplete Deployment Packages

2008-10-16 Thread jaikiran
anonymous wrote : JAVA_HOME is not set. Unexpected results may occur. | Set JAVA_HOME to the directory of your local JDK to avoid this message. You will have to set the JAVA_HOME to point to your JDK. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182559#41

[jboss-user] [EJB 3.0] - Re: Very urgent An EJB3.0 Exception

2008-10-16 Thread Wolfgang Knauf
Maybe someone can help you, if you provide more infos. Up to now, this post is unfortunately a sample for bad "calling for help"(http://catb.org/~esr/faqs/smart-questions.html). Please provide: -an overview of your application architecture (only parts which are relevant for this problem) -small

[jboss-user] [JBossWS] - Re: @WebServiceRef not working in ear

2008-10-16 Thread jopersson
Would also like to bundle in EAR, but did not succeed..found this: "JBoss will not support the Java EE 5 EAR format until version JBoss 5.x." Maybe we have to wait until 5 is GA? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182563#4182563 Reply to the pos

[jboss-user] [JBoss AOP] - Intercept Annonation with argument

2008-10-16 Thread DerMas
I'd like to define a pointcut which intercepts only annotations with a specified argument. I have this annotation: | public @interface myAnnotation { | | MyValue value() default MyValue.CONSTANT; | | } | So a annotated method would look like this: | @myAnnotat

[jboss-user] [EJB 3.0] - Re: MBean start ordering in 5.0CR2

2008-10-16 Thread jaikiran
anonymous wrote : When MBeanA's start method is called, it calls a method on MBeanB via its injected reference, which delegates to the singleton. The problem is that at this point, a field in the singleton has not been initialized, as MBeanB's start method hasn't yet been called. | As per t

[jboss-user] [Microcontainer] - Re: @Depends and ObjectName key-value pair ordering

2008-10-16 Thread alesj
"jaikiran" wrote : | Isn't the ObjectName key/value pair supposed to be unordered? I tried to lookup the code responsible for this dependency management in the Microcontainer, but unfortunately this section of the documentation is still under construction. So i don't have much clue which piec

[jboss-user] [JBoss AOP] - Re: Intercept Annonation with argument

2008-10-16 Thread DerMas
How can I define a pointcut which intercepts only methods with the argument MyValue.BAR? eg: | | @myAnnotation (MyValue.BAR) | public void foo() { | System.out.println("HelloWorld"); | } | | @myAnnotation (MyValue.NOT) | public void foofoo() { |

[jboss-user] [JBoss jBPM] - Re: jBPM 3.2 using CMT

2008-10-16 Thread Xavi345
Hi! First of all, sorry for my english, it isn't my native language. I have the same problem that MSchmidke when the jbpm configuration is being created with spring. My jbpm.cfg.xml file is : | | | | | | | | | |

[jboss-user] [EJB 3.0] - Re: Question about unit testing EJB3?

2008-10-16 Thread Wolfgang Knauf
Hi, why don't you test your EJBs the same way your client would use them (connect to the server, get EJB, call methods)? This way, e.g your entity manager will work, you will use the same persistence.xml as the EJB. The approach described in http://escx.blogspot.com/2007/03/testing-ejb3-jpa-wi

[jboss-user] [JBoss Portal] - portlet size

2008-10-16 Thread nhearne
Hi I have added a portlet to the default page of the default portal to display nubmer of entries which I receive from an external system. If the number of records is more than 7 then an empty page is displayed. I think this is to do with the setting of the protlet that can not exceed a certain he

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Equivalent of @GeneratedValue in JBoss-4.0.5.GA

2008-10-16 Thread rajesh.r77
Hi, I am working on an application through which messages can be send to JMS Topic from browser and the MessageBean will store the received messages to a table called newsentity in postgresql database. The Entity Class name is NewsEntity. My application server is JBoss-4.0.5.GA and version is

[jboss-user] [Microcontainer] - Re: @Depends and ObjectName key-value pair ordering

2008-10-16 Thread jaikiran
"alesj" wrote : OK, I found it - in EJB3 code. That's right. "alesj" wrote : | | "alesj" wrote : It should be fixed in next MC release. | | https://jira.jboss.org/jira/browse/JBMICROCONT-365 | Thanks Ales :-) View the original post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Not able to run Application on Jboss from remote machine

2008-10-16 Thread myforum
Hi, I have Jboss 4.2.2 installed on fedora linux. i have deployed my application on it. and it works fine on linux machine. But when I try to access the same application from Window machine using http://IP:8080/.. It does not open page. I tried to bind server with -b 0.0.0.0 option but did not

[jboss-user] [JBoss Messaging] - Re: Reconnect Client

2008-10-16 Thread grafzal
Thanks for your reply. The remoting version is JBossRemoting Version 2.2.2.SP7. I think I should describe my szenario a little bit better... I use a distributed Topic (not durable). For testing purposes I connect with a client and see that it works. Now I manually disconnect from the network and

[jboss-user] [JBoss jBPM] - TaskInstance.getAvailableTransitions() on ended state

2008-10-16 Thread monkiki
When I request the available transitions from an ended TaskInstance (taskInstance.getEnd() != null) it returns wrong transitions. It returns the transitions of the current token, as I see in method implementation: public List getAvailableTransitions() { | List transitions = null; |

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Not able to run Application on Jboss from remote machine

2008-10-16 Thread jaikiran
anonymous wrote : 11:54:15,561 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-127.0.0.1-8080 This shows that the -b 0.0.0.0 option is not being considered and instead its binding only to localhost. But you do seem to be passing the argument correctly: anonymous wrote : [EMAIL PROTECTED

[jboss-user] [EJB 3.0] - Re: @EJB injection in JBoss 5 application clients?

2008-10-16 Thread jaikiran
I haven't yet got a chance to give this a try. Maybe i will get some time during this weekend. "Wolfgang Knauf" wrote : Any further ideas? There's a test case in the JBoss AS trunk, which you could have a look at http://anonsvn.jboss.org/repos/jbossas/trunk/testsuite/src/main/org/jboss/test/cl

[jboss-user] [JBoss Messaging] - Re: Is JBoss Messaging included in JBossAS v4.2.3?

2008-10-16 Thread grafzal
No. I downloaded the version and there is JBossMQ installed as the messaging provider. But you can install it manually (version 1.4.0 is for 4.x): Here is the documentation: http://www.jboss.org/file-access/default/members/jbossmessaging/freezone/docs/userguide-1.4.0.SP3/html/index.html View th

[jboss-user] [JBoss Messaging] - Re: Integration between JBossMessaging Server 2.0 and Jboss

2008-10-16 Thread rana24
Hi, I tried connecting JBoss Messaging Server 2.0 with my Jboss AS 4.2.3 using configuration steps , defined in below docs. http://www.jboss.org/community/docs/DOC-9893 I have configured JBoss Messaging Server and JBoss AS on the same box, but changed the Port of JBM naming and rmi to 1100 an

[jboss-user] [JBoss AOP] - Re: Intercept Annonation with argument

2008-10-16 Thread [EMAIL PROTECTED]
That is not possible. You will have to go with the original pointcut and do some filtering in your advice depending on the value of the annotation, e.g.: | public Object invoke(Invocation inv) throws Throwable | { |MyAnnotation ma = inv.resolveAnnotation(MyAnnotation.class); |if

[jboss-user] [JBoss Cache: Core Edition] - jboss cache websphere 6.0 javax.management.NotCompliantMBean

2008-10-16 Thread umesh_pathak_123
Hi, I get belo error when I start the JBoss Cache 10/16/08 17:14:30:187 IST] 0055 SystemErr R javax.management.NotCompliantMBeanException: MBean is not compliant [10/16/08 17:14:30:187 IST] 0055 SystemErr Rat mx4j.server.MX4JMBeanServer.registerImpl(MX4JMBeanServer.java:904)

[jboss-user] [JCA/JBoss] - Re: Issue with multiple SecureIdentityLoginModule(s) under a

2008-10-16 Thread vickyk
Have a look at this one it should be helpful http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4095879#4095879 Try configuring the login module that will be used by the web-tier for authentication which will be used to get the connection from the JCA pool. View the original post : http://

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Not able to run Application on Jboss from remote machine

2008-10-16 Thread myforum
This is Output when I run - ./run.sh -b 0.0.0.0 [EMAIL PROTECTED] bin]# ./run.sh -b 0.0.0.0 = JBoss Bootstrap Environment JBOSS_HOME: /usr/local/jboss-4.2.2.GA JAVA: java JAVA_OPTS: -Dprogram.name=run.sh -Xms128m

[jboss-user] [JBoss Messaging] - Re: Reconnect Client

2008-10-16 Thread timfox
"grafzal" wrote : do I have to imlement | manual failover with the ExceptionListener and disable supportsFailover? yes View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182611#4182611 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&m

[jboss-user] [JBoss Portal] - How to get error messages on Login Failed

2008-10-16 Thread JignaJoshi
Hi, I have made my own Custom Login module..and it's working fine.. but,when i give wrong password or user it shows again Login jsp. But, i want to display error messages ..how can i track login failed on login.jsp page. how can i set some variable from my custom login module so i can get it on

[jboss-user] [JBoss AOP] - Re: Intercept Annonation with argument

2008-10-16 Thread DerMas
It's going to create a huge if block, but it works, thx ;) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182634#4182634 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4182634

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: boot JBoss from Java

2008-10-16 Thread robert.geisler
-push- View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182635#4182635 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4182635 ___ jboss-user mailing list jboss-user@lists.jboss.o

[jboss-user] [JBoss Portal] - Making usernames case-insensitive

2008-10-16 Thread tjdecke
Hi guys, i would like my user-names to be case-insensitive. Logging in with user abcd should give the same account as logging in with ABCD. My JBP version is 2.6.4, and i'm using an extended version of the SynchronizingLDAPExtLoginModule if it matters. Are there any easy ways to achieve this?

[jboss-user] [Beginners Corner] - Re: SSL

2008-10-16 Thread jbossnew
HI, can anyone tell me what is "APR" in this document as mentioned in " IMPORTANT NOTE: This Howto refers to usage of JSSE, that comes included with jdk 1.5 and higher. When using APR, JBoss Web will use OpenSSL, which uses a different configuration." Thanks James View the original post : htt

[jboss-user] [JBoss Portal] - Re: Making usernames case-insensitive

2008-10-16 Thread tjdecke
Small addition: By default, all usernames are supposed to be uppercase, i just want to make sure that it is also possible to login with the same username written in lowercase. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182639#4182639 Reply to the post :

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Not able to run Application on Jboss from remote machine

2008-10-16 Thread myforum
Can you please tell me where this binding exists in Linux file. I think If I will change IP add from 127.0.0.1 to local IP .. may be that will work out. So if you know please help me out. Thanks for your support. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p

[jboss-user] [JBoss Getting Started Documentation] - Re: SSL

2008-10-16 Thread jbossnew
Hi, Peter I am checking http://www.jboss.org/file-access/default/members/jbossweb/freezone/docs/2.1.0/printer/ssl-howto.html do you know what is "APR" in this document as mentioned Thanks James View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182643#418264

[jboss-user] [JBoss Cache: Core Edition] - Re: Clean shutdown/redeploy in Tomcat

2008-10-16 Thread jreeman
I tried to upgrade the jboss cache to 3.0.0.CR1 version to see if there are always the class loader problems but when starting by cache I have a lot of exception : anonymous wrote : org.jboss.cache.CacheException: Unable to invoke method public void org.jboss.cache.RegionManagerImpl.start() on

[jboss-user] [JBoss Messaging] - Re: Unique problem with Messaging

2008-10-16 Thread pradeeps
Thanks for the suggestion Clebert. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182648#4182648 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4182648 ___ jboss-user mailing

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Not able to run Application on Jboss from remote machine

2008-10-16 Thread myforum
Hi Friends, Please help me out in solving this problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182649#4182649 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4182649 __

[jboss-user] [EJB 3.0] - Re: 2 Stateless session beans, same name+interface, differen

2008-10-16 Thread jaikiran
I do see the issue with the example that you have posted: 18:41:37,552 INFO [STDOUT] invoking: greenwich.naming.WsTestBean | 18:41:37,552 INFO [STDOUT] class of IBean used: greenwich.naming.BeanImpl2 | I think the problem is because of the default jndi naming policy for EJBs. By default, t

[jboss-user] [The Lizzard's corner] - Re: New wiki

2008-10-16 Thread jaikiran
"PeterJ" wrote : | | Also, looking at the new URLs, for some reason the phrase DOC-9280 just does not bring to mind "class cast exceptions," but then maybe that is just me. ;-) The URLs might be enhanced in future upgrades. Quote from https://www.jboss.org/community/poll.jspa?poll=1001

[jboss-user] [EJB 3.0] - Re: Question about unit testing EJB3?

2008-10-16 Thread rickcr
anonymous wrote : why don't you test your EJBs the same way your client would use them (connect to the server, get EJB, call methods)? This way, e.g your entity manager will work, you will use the same persistence.xml as the EJB. What's the best way to set that up? That's what I'm struggling wit

[jboss-user] [Beginners Corner] - Re: How to communicate Jboss with unisys mainframe

2008-10-16 Thread acastanheira2001
Peter, I am interested in connection through JDBC. There´s a link about that: http://www.unisys.com/products/mainframes/middleware/open__data__access/jdbc__for__mcp.htm Does anybody have used this? Andre View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=41826

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: boot JBoss from Java

2008-10-16 Thread jaikiran
I don't think anyone understood what the question was :-) Are you trying to start JBoss from a Java program? If yes, then have a look at the run.bat file which sets up the Classpath to be used while calling the org.jboss.Main: "%JAVA%" %JAVA_OPTS% ^ |-Djava.endorsed.dirs="%JBOSS_ENDORSED_

[jboss-user] [JBoss Messaging] - Re: JMS Reconnect Issue

2008-10-16 Thread bfach
The following link details what I am attempting to do. http://www.jboss.org/community/docs/DOC-10931 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182660#4182660 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=41826

[jboss-user] [JCA/JBoss] - Re: Datasource problem.

2008-10-16 Thread muddu_shafi
this is the ErpProxyDaoexception class that I have used in the catch block. public class ErpProxyDaoException extends Exception{ | public ErpProxyDaoException(String msg) { | super (msg); | } As per your instructions,Did I get it right? You mean I have to close the resultset

[jboss-user] [JBoss Cache: Core Edition] - Selective Distributed Cache loading

2008-10-16 Thread karnivas
We have one master cache(A) and multiple small subset caches (B & C) which are subsets of the master cache(A). All these caches(A, B & C) are in different independent clusters. We want to load and distribute the changes from the master cache(A) into these smaller caches ( B & C). Changes(Modify

[jboss-user] [Beginners Corner] - Whats I need to run jboss-4.2.3.GA on Fedora 9

2008-10-16 Thread MMaghraby
Dear Sir, please, can you help me, My problem is is can't run Jboss server “jboss-4.2.3.GA”, these steps I do it: 1- I installed JDK5 update 16, and the steps is: a. Make the download executable with this command chmod 755 jdk-1_5_0_16-linux-amd64-rpm.bin b. Ex

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Incomplete Deployment Packages

2008-10-16 Thread erasmomarciano
You have to edit run.conf and add this variable JAVA_HOME="YOURPATH/jdk1.5.0_15" View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182666#4182666 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4182666 _

[jboss-user] [Microcontainer] - Re: @Depends and ObjectName key-value pair ordering

2008-10-16 Thread alesj
"alesj" wrote : | It should be fixed in next MC release. https://jira.jboss.org/jira/browse/JBMICROCONT-365 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182590#4182590 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=

[jboss-user] [JBoss Messaging] - Re: Reconnect Client

2008-10-16 Thread grafzal
Ok I tried to use the ExceptionListener and disabled failover in the ClusteredConectionFactory. Now it works great if there are more than one instance running. However if there is only one instance nothing seems to happen. There are no more warnings shown and the method onException is never tri

[jboss-user] [JBoss jBPM] - Re: How to Get All Task Instances

2008-10-16 Thread vtysh
You can do it with manual HQL query | select TaskInstance | from org.jbpm.taskmgmt.exe.TaskInstance as TaskInstance | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182586#4182586 Reply to the post : http://www.jboss.com/index.html?module=bb&op=po

[jboss-user] [Beginners Corner] - Re: Web Console did not start

2008-10-16 Thread erasmomarciano
If you want to check the garbace collection you can use the following tools: HPJMETER JCONSOLE While if you want to check , RAM, HARDISK,CPU you should use the tools specifies View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182671#4182671 Reply to the post

[jboss-user] [The Lizzard's corner] - Re: New wiki

2008-10-16 Thread jaikiran
"PeterJ" wrote : | | Also, looking at the new URLs, for some reason the phrase DOC-9280 just does not bring to mind "class cast exceptions," but then maybe that is just me. ;-) I agree - the earlier URLs were far more intuitive. View the original post : http://www.jboss.com/index.html?m

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Not able to run Application on Jboss from remote machine

2008-10-16 Thread erasmomarciano
anonymous wrote : | | try ./run.sh -b 0.0.0.0 default | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182672#4182672 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4182672

[jboss-user] [EJB 3.0] - Re: MBean start ordering in 5.0CR2

2008-10-16 Thread huberth
I added 'Starting' logs to my MBeans and got: 2008/10/16 09:35:43.366 INFO (main) [com.myorg.rac.server.bwallocator.BWAllocatorAdminMBean.start:50] Starting BWAllocatorAdminMBean | | 2008/10/16 09:35:45.661 ERROR (main) [org.jboss.logging.util.LoggerStream.write:156] java.lang.RuntimeExcep

[jboss-user] [Beginners Corner] - Re: Whats I need to run jboss-4.2.3.GA on Fedora 9

2008-10-16 Thread erasmomarciano
How do you start JBoss? Try | ./run.sh default | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182674#4182674 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4182674 _

[jboss-user] [Microcontainer] - Re: @Depends and ObjectName key-value pair ordering

2008-10-16 Thread alesj
"alesj" wrote : | Who's @Depends is this? MC's? | If not, where is it handled? OK, I found it - in EJB3 code. I'm mocking this test in MC: EJB's @Depends --> MC's demand. And it is failing. ;-( Thanks for finding it. :-) It should be fixed in next MC release. View the original post : http:

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Not able to run Application on Jboss from remote machine

2008-10-16 Thread jaikiran
anonymous wrote : I tried to bind server with -b 0.0.0.0 option but did not work out. Post the entire console logs when you start the server with the -b 0.0.0.0 option. anonymous wrote : It does not open page. What error do you see? View the original post : http://www.jboss.com/index.html?m

[jboss-user] [EJB/JBoss] - Re: EJB CurrentSize is bigger than MaxSize

2008-10-16 Thread macq
I've got the same problem ;/ in my application it causing pergen space, did you already resolved this problem ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182574#4182574 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[jboss-user] [JBossWS] - Re: .NET friendly Endpoint for EJB3 WS

2008-10-16 Thread egalych
Thank you for reply. I do not want to introduce container extensions in code. Is there a way to globally set endpoint configuration for JBoss instance? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182685#4182685 Reply to the post : http://www.jboss.com/i

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Problems with firewall access

2008-10-16 Thread glynbach
I'm trying to connect to a session bean from a client app outside the firewall. I've followed the firewall instructions from http://www.jboss.org/community/docs/DOC-12519 It's not connecting with these ports opened. Using a packet sniffer I can see that it does the following steps -> 1100 ok -

[jboss-user] [JBoss jBPM] - Re: New Player in JBPM Pool

2008-10-16 Thread iku
Thank you Ronald for your reply. Actually i did take a look of docs and this forums, and I guessed most of answer should be yes. But just be sure as 100% before hands on. Thanks again, View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182693#4182693 Reply to

[jboss-user] [Beginners Corner] - JBoss and Apache virtual host configuration - mod_jk

2008-10-16 Thread deenuy
Hello all, I have requirement of accessing http://localhost:8080/tc/webclient using Domain server name say www.tc.emerson.com. Domain Name has been already configured in etc\host. tc ear has been deployed in jboss-4.0.1sp1. I'm using Apache2 to virtual host for my jboss-4.0.1sp1 Application

[jboss-user] [JBoss Cache: Core Edition] - Magic number 64

2008-10-16 Thread janbols
Hi, we're using JBC 2.2.0 GA which uses JGroups 2.6 in a standalone environment with 2 nodes running in the same JVM. Sometimes we receive the following error: [10:42:52,218][ERROR][Incoming,localhost:2440][NAKACK] failed reading retransmitted message | java.io.IOException: failed reading hea

[jboss-user] [Beginners Corner] - JBoss and Apache virtual host config- mod_jk

2008-10-16 Thread deenuy
Hello all, I have requirement of accessing http://localhost:8080/tc/webclient using Domain server name say www.tc.emerson.com. Domain Name has been already configured in etc\host. tc ear has been deployed in jboss-4.0.1sp1. I'm using Apache2 to virtual host for my jboss-4.0.1sp1 Application

[jboss-user] [Beginners Corner] - Re: JBoss and Apache virtual host config- mod_jk

2008-10-16 Thread deenuy
I am not why current page is not displaying the Jboss server.xml configuration. Here is the JBoss server.xml config: Config of Server.xml: www.tc.emerson.com tc.emerson.com View the original post : http://www.jboss.com/index.html?mo

[jboss-user] [Beginners Corner] - Re: JBoss and Apache virtual host config- mod_jk

2008-10-16 Thread deenuy
www.tc.emerson.com tc.emerson.com View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182697#4182697 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4182697 __

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Parent/Child, merge, and assignment of generated ID

2008-10-16 Thread thhal
I'm using JBoss 4.2.3 with Hibernate and I have the following scenario. Two entities, let's call them 'Parent' and 'Child'. A Parent has many Children. The relationship in Parent is declared using javax.persistence annotation like this: @OneToMany(mappedBy = "parent", fetch = FetchType.LAZY, ca

[jboss-user] [Installation, Configuration & DEPLOYMENT] - JBoss and Apache virtual host config- mod_jk

2008-10-16 Thread deenuy
Hello all, I have requirement of accessing http://localhost:8080/tc/webclient using Domain server name say www.tc.emerson.com. Domain Name has been already configured in etc\host. tc ear has been deployed in jboss-4.0.1sp1. I'm using Apache2 to virtual host for my jboss-4.0.1sp1 Application

[jboss-user] [Beginners Corner] - selectOneMenu changes not immediately reflected in my object

2008-10-16 Thread jerry426
What am I missing? I have several selectOneMenu controls on a form. When I submit the form on my "edit" page to save the new value I picked in the selectOneMenu, the "view" page still reflects the old value until AFTER I refresh the "view" page. That same form has several inputText controls

[jboss-user] [Installation, Configuration & DEPLOYMENT] - jboss-4.0.1sp1 & Apache2 virtual host config - mod_jk

2008-10-16 Thread deenuy
Hello all, I have requirement of accessing http://localhost:8080/tc/webclient using Domain server name say www.tc.emerson.com. Domain Name has been already configured in etc\host. tc ear has been deployed in jboss-4.0.1sp1. I'm using Apache2 to virtual host for my jboss-4.0.1sp1 Application

[jboss-user] [Management, JMX/JBoss] - Re: Does Jboss correctly emit version 2 SNMP traps?

2008-10-16 Thread baronDodd
It turns out it was the monitoring tools I was using. One did not actually interpret v2 SNMP traps from anywhere, the other was riddled with class cast exceptions. Used adventnet software and all is well. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182705#

[jboss-user] [Beginners Corner] - Re: JBoss and Apache virtual host config- mod_jk

2008-10-16 Thread deenuy
sorry for again n again posting. Hope this time its pretty clear about my configuration. Here is part of the Apache config: Config of httpd.conf: #Include mod_jk configuration file | Include conf/mod-jk.conf Config of Mod-jk.conf: LoadModule jk_module modules/mod_jk.so | | #Where to find

[jboss-user] [Security & JAAS/JBoss] - Re: Two domain access - revocation from versign

2008-10-16 Thread bromatt1
I found a work around and am posting for anyone else having this problem. Internal clients (no internet) fix for Windows devices. In IE 6.0, Tools --> Internet Options --> Advanced Uncheck "Check for publisher's certificate revocation" Uncheck "Check for server certificate revocation (requires re

[jboss-user] [EJB 3.0] - Re: MBean start ordering in 5.0CR2

2008-10-16 Thread huberth
I've attached a debugger to the server and placed a break-point in BWAllocatorAdminMBean.start. Here's the stack trace in the main thread: [EMAIL PROTECTED], priority=5, in group 'jboss', status: 'RUNNING' | at com.alcatel.tpapps.rac.server.bwallocator.BWAllocatorAdminMBean.start(BWAlloc

[jboss-user] [EJB 3.0] - HAR file and CMT transactions

2008-10-16 Thread Nemi
I am learning Hibernate with JBoss 4.2.3 and have a deployed HAR file. The server starts and states that it is using a JTA transaction manager. I have searched google and read the reference material for JBoss, but as far as I can tell, there is no way to specify that you want to use CMT transact

[jboss-user] [EJB 3.0] - Re: MBean start ordering in 5.0CR2

2008-10-16 Thread jaikiran
"huberth" wrote : | | I've got the source for AS 5.0CR2, and EJB3 1.0.0-Beta4. If you have 5.0CR2 source then you will find most of the required java files in there. The source for the other projects can be found under 5.0CR2 source/thirdparty/jboss/xxx folder. "huberth" wrote : | I sh

[jboss-user] [JBoss Messaging] - JmxXA not bound

2008-10-16 Thread pradeeps
I am creating a web application using - JBOSS 4.2.3 GA, JBOSS Messaging and Struts 2.5 messaging POJO. The applicationContext.xml has the entry to look up java:/JmsXA. JBOSS throws an exception saying JmsXA not bound. If I use the JMX console and do a view of JNDI objects I do see the resource

[jboss-user] [JBoss Messaging] - Re: Reconnect Client

2008-10-16 Thread ataylor
anonymous wrote : Ok I tried to use the ExceptionListener and disabled failover in the ClusteredConectionFactory. Now it works great if there are more than one instance running. | | However if there is only one instance nothing seems to happen. There are | no more warnings shown and the me

[jboss-user] [EJB 3.0] - Re: MBean start ordering in 5.0CR2

2008-10-16 Thread huberth
The thirdparty directory seems to cover a lot of (only?) non-jboss stuff. For example, AbstractController.java is not under the 5.0 source directory anywhere, and it seems to be an important player here. I found a copy of it under viewvc, but it's obviously a different version as the line numb

[jboss-user] [JBoss Messaging] - Re: Reconnect Client

2008-10-16 Thread grafzal
I use a clustered environment. But it should also work in case the other nodes were taken down for example for maintenance... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182732#4182732 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[jboss-user] [JBoss Messaging] - Re: JmxXA not bound

2008-10-16 Thread timfox
The "java:" prefix means "available only in the same JVM". See the wiki on JmsRA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182734#4182734 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4182734 _

[jboss-user] [JBossWS] - Re: No Classloaders found for ProviderImpl

2008-10-16 Thread tomstrummer
I've turned on classloader isolation and added all of the Metro JARs (jaxws-rt and jaxb-impl and api JARs) but JBoss is still trying to look for the jbossws-client JAR. Any ideas? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182737#4182737 Reply to the po

[jboss-user] [JBoss Messaging] - Re: Reconnect Client

2008-10-16 Thread ataylor
anonymous wrote : I use a clustered environment. But it should also work in case the other nodes were taken down for example for maintenance... Of course you are right, but its an edge case. As far as maintenance goes, you could always make sure there are at least 2 servers running. If you're br

[jboss-user] [JBoss Messaging] - Re: JmsXA not bound

2008-10-16 Thread pradeeps
Thanks for the reply Tim. I have a question. When I deploy a war file to the JBOSS server, isnt the application running in the same JVM where JmsXA is available? The thing is if I replace JmsXA with ConnectionFactory it works just great. I needed JmsXA because of the distributed transactions.

[jboss-user] [JBoss Messaging] - Re: Reconnect Client

2008-10-16 Thread timfox
I already said in my previous post we don't support this feature. If the user wants it they can file a feature request. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182741#4182741 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[jboss-user] [JBoss Portal] - Re: hiding pages

2008-10-16 Thread sannegrinovero
thank you very much Peter, that was it. I was having some extra difficulties as I couldn't find some buttons mentioned on the docs: some labels in the italian version are missing; I see you have a translator already but if needed I could help too. Many messages have an english key but are transl

[jboss-user] [EJB 3.0] - Re: Problem with Embeddable EJB 3.0 and MBeans

2008-10-16 Thread Silenius
If I change my startupEmbeddedJboss method to: | private static void startupEmbeddedJboss() { | EJB3StandaloneBootstrap.boot(null); | EJB3StandaloneBootstrap.deployXmlResource("security-beans.xml"); | EJB3StandaloneBootstrap.scanClasspath(); | } | it works. But I can't u

[jboss-user] [JBossWS] - Several pictures on JBossWS doc page missing

2008-10-16 Thread pxstein
On page http://jbossws.jboss.org/mediawiki/index.php?title=JAX-WS_User_Guide some pictures (e.g. a picture named "Binding-provider.gif" 1/3 top down of the whole page) are missing. Only the place holders are visible in the browser. Who can fix the broken links? Peter View the original post :

[jboss-user] [Beginners Corner] - Trying to test my first SOAP-driven Web Service

2008-10-16 Thread ClarkValentine
After the excellent assistance I received the other day, I have a very simple web service deployed: My POJO is: package com.sample.test; | | @javax.jws.WebService | public class HelloService { | @javax.jws.WebMethod | public String sayHello( @javax.jws.WebParam String name ) {

[jboss-user] [JBossWS] - Does using Webservices require an installed JBoss Messaging?

2008-10-16 Thread pxstein
Assume I want to deploy and use WebServices on an JBossAS. Is it required to have JBoss Messaging installed on that JBoss AS or do WebServices work without this component? Peter View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182759#4182759 Reply to the post :

[jboss-user] [Beginners Corner] - Re: Datasource not deployed or type mapping not initialized

2008-10-16 Thread anujgoyal
text is type-mapping is case-sensitive, make sure it is correct. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182761#4182761 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4182761 _

[jboss-user] [Beginners Corner] - Re: selectOneMenu changes not immediately reflected in my ob

2008-10-16 Thread jerry426
now I have more info - as mentioned above, my view page was requiring a refresh after postback in order to get the new lookup value from the related @OneToOne model: #{ticketHome.instance.ticketPriorityLookup.name} however when I replace it with this: #{ticketHome.instance.priorityLevelId}

[jboss-user] [JBoss jBPM] - Re: problems with jbpm when used with eclipse

2008-10-16 Thread kukeltje
is your project effectively in your workspace dir or did you create it outside of? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182765#4182765 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4182765 ___

[jboss-user] [EJB 3.0] - Re: MBean start ordering in 5.0CR2

2008-10-16 Thread huberth
Look closely at the chain of calls between the lower installMBean and the resolveContexts calls. Further down inside the install call from installMBean the code eventually transitions the state of StatisticsMBean to created, then started, then installed, constantly calling resolveContexts(boole

[jboss-user] [JBoss jBPM] - Re: New Player in JBPM Pool

2008-10-16 Thread kukeltje
then say so in advance ;-)... something like >From reading the docs and searching the forum, I conclude that: - I can do sdfgsd - jBPM provides yuioy - It is possible to mbnv - I have to do efgjher Is this correct? View the original post : http://www.jboss.com/index.html?module=bb&op=viewt

[jboss-user] [JBoss jBPM] - jBPM + ESB: Orchestration & Human Task Management

2008-10-16 Thread burrsutter
Hello jBPM Users, I'd like your thoughts on the following demonstration. It uses jBPM to support service orchestration as well as human task management. http://www.redhat.com/v/webcast/SOAdemo2/SOADemo2.html Does the presented use case/scenario capture the value that jBPM brings to a custom

[jboss-user] [Beginners Corner] - Re: selectOneMenu changes not immediately reflected in my ob

2008-10-16 Thread jerry426
I now have a refined version of the question - if anyone can throw me a clue :-) http://pastie.org/private/joriyanvruqkxwwwyhlwq View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182772#4182772 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

  1   2   >