[jboss-user] [JBoss Messaging] - Re: client time out when last cluster node shutdown

2008-11-30 Thread rcrookevilela
I have modified MAX_RECONNECT_HOP_COUNT constant at ClusteringAspect to only retry 3 times to get one node to make the failover process. Original source code: http://viewvc.jboss.org/cgi-bin/viewvc.cgi/messaging/trunk/src/main/org/jboss/jms/client/container/ClusteringAspect.java?view=markup&path

[jboss-user] [Beginners Corner] Weird Connection Problem on JBoss5.0CR2 (connect doesn't work after startup - but during startup it works)

2008-11-30 Thread Richard Krutisch
Hello, I've got a very weird problem, and I'd be really thankfull for help. I run this very simple program, just to list the bindings on my jboss: Properties properties= new Properties(); //+ this is the factory used to create the context properties.put("java.naming.factor

[jboss-user] [JBoss/Spring Integration] - deploy ear (with spring & ejb3) in JBoss 5.0.0CR2

2008-11-30 Thread juliejulie
I am trying to integrate Spring & EJB3 in JBoss 5.0.0CR2. The hierarchy of my ear is pote.ear EJBModule.jar\com\pote\board\service\ServiceBean (EJB3) META-INF\applicaton.xml META-INF\jboss-app.xml po.war\WEB-INF\web.xml po.war\WEB-INF\jboss-web.xml po.war\WEB-INF\pote-servlet.xml po.war\WEB

[jboss-user] [JBoss/Spring Integration] - Re: deploy ear (with spring & ejb3) in JBoss 5.0.0CR2

2008-11-30 Thread juliejulie
'postageService' defined in ServletContext resource /WEB-INF/pote-service.xml is as follows org.jnp.interface.NamingContextFactory jnp://localhost:1099 org.jbo

[jboss-user] [JBoss/Spring Integration] - Re: deploy ear (with spring & ejb3) in JBoss 5.0.0CR2

2008-11-30 Thread juliejulie
'postageService' defined in ServletContext resource /WEB-INF/pote-service.xml is as follows 'postageService' defined in ServletContext resource /WEB-INF/pote-service.xml is as follows | | | | | | org.jnp.interface.Nam

[jboss-user] [JBoss/Spring Integration] - Re: deploy ear (with spring & ejb3) in JBoss 5.0.0CR2

2008-11-30 Thread alesj
This is wrong forum for such questions, see sticky here: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=106598 btw: why explicit NamingContextFactory, afaik plain JDK's InitalContext should do the trick, as you're in the same app / same VM View the original post : http://www.jboss.com

[jboss-user] [JBoss jBPM] - How to package process definition with jbpm application

2008-11-30 Thread aapthorp
I have a process definition that I want to package and deploy with my jbpm application such that it gets loaded when my jbpm application is deployed. I know from earlier posts http://www.jboss.com/index.html?module=bb&op=viewtopic&t=133773 there are classpath issues however the solution offered

[jboss-user] [JBoss Portal] - Re: relative links in Email verification

2008-11-30 Thread sannegrinovero
thanks for checking, you're right, I'm sorry; when I use a clean download of portal 2.7 it's working, showing HTTP://localhost:8080/... I must have something in our configuration breaking this behavior; Could you give any clue to what I could check / which configuration files could be causing th

[jboss-user] [JBoss Cache: Core Edition] - Where can I get underlying JBossCache from within JMX

2008-11-30 Thread jorgemoralespou_2
Hi, I was using JBossCache 1.4, and with default JMX registration I used to get my TreeCache from within TreeCacheMBean, registered under "jboss.cache:service=MyCache". Now I'm trying to migrate to JBC 3, and registered my cache within an MBean, that when it starts registers all the caches I us

[jboss-user] [Microcontainer] - Re: Alternative JAR extensions

2008-11-30 Thread bob.mcwhirter
anonymous wrote : | If you mark one of your deployers as JarExtensionProvider | My RailsStructure deployer implements JEP. Additionally, I've added setJarExtension( ".rails" ) on one of my parsing deployers (seems like a weird place for it, honestly), since AbstractParsingDeployerWithOutp

[jboss-user] [Microcontainer] - Re: Alternative JAR extensions

2008-11-30 Thread alesj
"bob.mcwhirter" wrote : | My RailsStructure deployer implements JEP. Additionally, I've added setJarExtension( ".rails" ) on one of my parsing deployers (seems like a weird place for it, honestly), | This mostly comes from our legacy usage. e.g. -beans.xml was packed as .beans my SpringDep

[jboss-user] [Microcontainer] - Re: Alternative JAR extensions

2008-11-30 Thread bob.mcwhirter
So, a quick analysis might confirm your suspicions of HDScanner doing the scan() "too soon". I may be confused, of course, but here's my amateur analysis... While HDScanner itself is a BOOTSTRAP bean, I assume it gets completely start()'d and running before the DEPLOYER phase. When start()'d,

[jboss-user] [Microcontainer] - Re: Alternative JAR extensions

2008-11-30 Thread alesj
"bob.mcwhirter" wrote : | While HDScanner itself is a BOOTSTRAP bean, I assume it gets completely start()'d and running before the DEPLOYER phase. | Not any more, it's part of deploy/ now (build trunk). - http://anonsvn.jboss.org/repos/jbossas/trunk/profileservice/src/resources/hdscanner-j

[jboss-user] [Microcontainer] - Re: Alternative JAR extensions

2008-11-30 Thread bob.mcwhirter
anonymous wrote : | Not any more, it's part of deploy/ now (build trunk). | Okay, I'm still on CR2 at this point. With the move from conf/profile.xml to deploy/... should cause the ordering to be happier, as I understand it. Thanks for the follow-up. I'll use .jar as an extension with a

[jboss-user] [JBossWS] - WS-Security Username Token Password Digest

2008-11-30 Thread bschmoll1
I'm having some dfficulty in converting a web service from a cleartext password to using a password digest. Following the directions from http://jbossws.jboss.org/mediawiki/index.php?title=WS-Security_options I've created a "JBossWSDigest" application policy in the login-config.xml |

[jboss-user] [EJB 3.0] - how to get native connection

2008-11-30 Thread peiguo
Hi, I have a need to access some outside web services through jboss, and I am behind a firewall, so my jboss has to access that web service through https proxy. I knew in general how to set system properties such as https.proxyHost, proxyPort and nonProxyHosts etc. But this way, the setting wi

[jboss-user] [JBossWS] - get the native connection underneath the web service

2008-11-30 Thread peiguo
Hi, I have a need to access some outside web services through jboss, and I am behind a firewall, so my jboss has to access that web service through https proxy. I knew in general how to set system properties such as https.proxyHost, proxyPort and nonProxyHosts etc. But this way, the setting

[jboss-user] [Performance Tuning] - JBoss Community DOC-10217 - advice on tomcat connector threa

2008-11-30 Thread rhills
I'm going through http://www.jboss.org/community/docs/DOC-10217 to help tune our jboss server for production. In the section headed "Tomcat", there is advice about tuning thread parameters for the http connector and I'm not sure if I'm understanding this right. Specifically, I'm looking at minS

[jboss-user] [Remoting] - JMX connector client exited without closing connection

2008-11-30 Thread prakashmvc
Hi, I am using jboss 4.2.3. When I reloading my web page (index.jsp) using the browser reload button am getting the following exception. ServerIntermediary RequestHandler-connectionException WARNING: JMX connector client exited without closing connection It would be help full if anyone suggest

[jboss-user] [Management, JMX/JBoss] - JMX connector client exited without closing connection

2008-11-30 Thread prakashmvc
Hi, I am using jboss 4.2.3 with JbossMQ. When I reloading my web page (index.jsp) using the browser reload button am getting the following exception. ServerIntermediary RequestHandler-connectionException WARNING: JMX connector client exited without closing connection index.jsp calls the messagi

[jboss-user] [JBoss jBPM] - 3.2.3 GA installation issues

2008-11-30 Thread jameswallace
1. does it only support JBOSS AS server? i do remember that 3.2.2 can run at Tomcat server, why 3.2.3's installation require JBOSS 4.2.2/3/5.0.0 server? 2.in the final step of installation, a error message pop showing only "error" the ant.install.log shows: . Can't load image resource: