[JBoss-user] [Installation, Configuration Deployment] - Error page for mod_jk installtation

2005-08-06 Thread raygeeknyc
Hi I have an Apache 2 -- JBoss 4.0.2 server using mod_jk2. When jboss is down, a redirect brings up an error page with a status code of 200. I would like to trap this with (the equivalent of, or) an Apache ErrorDocument. I can't figure out where this behavior (the Status code, presumably

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - jboss 4.0.2, hibernate3 and mysql NullPointer problem

2005-08-06 Thread anandnarang
jboss 4.0.2, hibernate3 and mysql NullPointer problem I am trying to deploy a simple persistence class using hibernate3 on Jboss 4.0.2 with database being mysql. Following is the my hibernate-service.xml java:/mySQL org.hibernate.dialect.MySQLDialect

[JBoss-user] [Security JAAS/JBoss] - Re: LoginContext retrieving

2005-08-06 Thread tremalnaik
Thanks for your answer, anyway the explanation you give in the FAQ is really short and doesn't tell why if I put a breakpoint into the login() method of my login moduleit shows that the login() is not called the second time. The following steps display my scenario: 1) First time I login the

[JBoss-user] [Clustering/JBoss] - Stickiness and load balancing does not work at the same time

2005-08-06 Thread burakbayramli
Hello, based on the info from Wiki and some other resources, I was able to setup Apache -- mod_jk -- JBoss 4.0.1 using single node. However I had problems with clustering. It seems that, I can only use sticky behavior, or load balancing, not both at the same time. When I changed my

[JBoss-user] [Security JAAS/JBoss] - Re: JBoss not setting up application-policy entries

2005-08-06 Thread ahardy66
Easy to find on jmx-console: log in to http://localhost:8080/jmx-console/ click on link to service=JNDIView click on button 'Invoke' to MBean operation String list() look in the java: Namespace section, under the jaas branch, on my server the section looks like this: | +-

[JBoss-user] [Beginners Corner] - Class re-Loading after compile

2005-08-06 Thread [EMAIL PROTECTED]
I'm porting from Weblogic to JBOSS 4.0.2, In weblogic when I used to compile a class (such as a utility or action class) it reloaded the class automatically. In JBOSS, I'm not able to configure this. I have spent endless hours trying to do so. Is this possible at all. Please let me know if you

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Jboss 3 to 4 and hibernate sars x har

2005-08-06 Thread atorres
Hi. I upgraded my jboss from 3.x to 4 series and I got a problem with my hibernate sar. My application was deployed as an EAR with a SAR inside: app.ear --- app.sar --(hbm.xml files) --meta-inf -jboss-service.xml (referencing classpath to external jars) ---app.war(...) ---

[JBoss-user] [Installation, Configuration Deployment] - jboss-5.0.0alpha NoClassDefFoundError

2005-08-06 Thread hlucke
Hello all, receiving NoClassDefFoundError in the last cvs-checkout. Older checkouts no showing this error. It is a super-class for a servlet which is defined in the web.xml. The superclass is shure in a library under WEB-INF/lib. Thanks for help Harald View the original post :

[JBoss-user] [JNDI/Naming/Network] - Re: Accessing EJB through HTTPS Invoker...

2005-08-06 Thread benoitx
Hi Jim all, Following my previous post, I got it to work by opening port (the RmiObject port). I guess that the scenario specified above allow only JNDI access via HTTPs but the RMI is not encrypted. I then have setup RMI over SSL without too much trouble (see Chap 8 of the Jboss Admin

[JBoss-user] [Clustering/JBoss] - Re: Stickiness and load balancing does not work at the same

2005-08-06 Thread [EMAIL PROTECTED]
burakbayramli wrote : Hello, based on the info from Wiki Which you either didn't read or decided to not to use, because your configuration is not the same as that shown there. http://wiki.jboss.org/wiki/Wiki.jsp?page=UsingMod_jk1.2WithJBoss Anyway, I changed the footnote to step #5 to make it

[JBoss-user] [JBossWS] - Re: Complex types in WS4EE.

2005-08-06 Thread raygeeknyc
Does anyone have a working example of using a DII client to access a web service with custom types? I am almost there but am not having any luck specifying the correct parameter values for the method described in the Wiki which takes the additional parameters to locate the type mappings and

[JBoss-user] [Security JAAS/JBoss] - Re: How to Forward to a Particular Page if Login is of a Par

2005-08-06 Thread kenlohwh
As the clock is ticking and no further answer is visible at the horizon, I decided to drop the redirection/reforward idea at form-error-page and experiment with having an error page element for this as shown below: | error-page | error-code403/error-code |

[JBoss-user] [Clustering/JBoss] - Re: Stickiness and load balancing does not work at the same

2005-08-06 Thread burakbayramli
Thanks, this worked. I had been using Apache 1.3, so I was taking some parts of Wiki and not others. To get things running, I did have to recompile both Apache 2 and mod_jk from sources however. If there is any need for this info on the Wiki, I can add them. Regards, View the original

[JBoss-user] [Nukes User] - Which JBoss versions...

2005-08-06 Thread svaret
Hi, I just tried to deploy nukes on JBoss 4.0.2. I followed the instructions in install.txt but still I got a lot of exceptions. There's a lot of talk about Nukes 3.2.x. Is it only specific versions of JBoss that works with Nukes? Best regards Lasse View the original post :

[JBoss-user] [Installation, Configuration Deployment] - mod_jk fails on certain file names (

2005-08-06 Thread rmcgrail
I recently installed JBoss on XP, and set up an Apache proxy using mod_jk. Everything works fine except I cannot access any files through port 80 if the file name contains the words get or post. For example, I am trying to use a web application that contains post.gif, but the image is not

[JBoss-user] [Nukes User] - Re: Which JBoss versions...

2005-08-06 Thread bdaw
Hi. Look at this thread http://www.jboss.com/index.html?module=bbop=viewtopict=66495 In jboss 4.0.2 two things are wrong for nukes. -You need to move files from /lib/endorsed into /lib as they are needed during compilation. -I think that there is some differences in classes in

[JBoss-user] [EJB/JBoss] - Is this A dumb Question -- How to map table name to bean nam

2005-08-06 Thread gberish
I am new to J2EE w/jboss. Where do I map the name of a table in which I want to pesist my bean to the name of the bean? To date, I always let the container create my Entity Bean's persitance tables and never had to think about it. But for the first time I need to map a bean to a preexisting

[JBoss-user] [JBossWS] - Re: Complex types in WS4EE.

2005-08-06 Thread raygeeknyc
I realized after posting that I wasn't very clear on what my roadblock is, sorry I have this working to the point where I can run an application client and get an exception that there are no deserializers for my Custom Type. I have a ws4ee-deployment.xml file and believe that I need to use

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - how to read/write to clobs under jBoss 4+ with Oracle 9i?

2005-08-06 Thread FGomes
I've been looking everywhere for a solution for this problem but no luck. I am using Oracle 9i, thin drivers (the jar version 1.4), jBoss 3.1rc. I want to read/write to a clob field. The code worked very well under OC4J 1.3 but now on jBoss it simply does not work. I am using just JDBC no cmps

[JBoss-user] [JCA/JBoss] - Problem whit many connections DB in SQL Server 2000

2005-08-06 Thread Mario Arias
We have a set of applications and , each app connect with 3 different DB, two DB are shared for all app, and the others are only use for each app Example app db att

[JBoss-user] [Clustering/JBoss] - Re: ClusteredSingleSignOn - TreeCacheSSOClusterManager fails

2005-08-06 Thread bstansberry
My initial thought on this is that what you're suggesting seems like a reasonable option, but having read the tomcat-dev thread, I have to agree that doing this expands the scope of the SingleSignOn valve from handling authentication issues to managing session lifecycle, which is a pretty big

[JBoss-user] [JNDI/Naming/Network] - JNDI Lookup in Cluster Environment

2005-08-06 Thread arvind_pv
Hi all, We have developed our application on a Weblogic server and right now we are migrating to JBoss. I have gone through the tutorials of Jboss Cluserting. And I'm testing my application in Jboss clustering environment and my application is failing and this is happening because od JNDI