jboss

accessing request parameters from inside validator

Is there a proper way to access other form fields from inside a validator? Is there another solution than: context.getViewRoot().findComponent("formid:exampleField:example")? f.e I want to validate a city field inside a custom validator and checking if country is US. ...

How do I debug JSPs on remote JBoss server?

I'm debugging an application on a remote server running JBoss using Eclipse. My particular problem is a NullPointerException in a JSP. The JSP has too much Java code inside scriptlets but, unfortunately refactoring is not going to be an option. Finding the line that throws the NullPointerException has been incredibly challenging and I...

Jboss 4.2 swallows the stacktrace on causes of EJB Exceptions, how can that be prevented?

In JBoss 4.2.2 (on JDK5), I'm noticing this behavior. Is there a configuration or other way to prevent it? If I have code like this: try { doSomething(); } catch (Exception e) { throw new EJBException(e); } The resulting stack trace (when caught and logged) will be: EJBException .... at(..... at(..... caused by: NullPoint...

Setting up Railo in the same way as Multiple Instance Adobe CF

I'm looking to install Railo in the same way we currently do for Adobe CF. At present we run Adobe CF8 on top of JRUN 4, in a multiple instance setup. On our local sandboxes we use Apache as the web server. We then use Apache Virtual Directories to point to our codebase which exists outside of the CF Context. This gives us ultimate fle...

JBOSS web service client doesn't work ( runtime modeler error: Wrapper class not found )

I have a simple hello-world EJB3 successfully deployed as web service. I can check it with url: http://localhost:8080/jbossws/services Following is the client which works for Glassfish but doesn't work for JBOSS package com.hardik.mejb; import java.net.MalformedURLException; import java.net.URL; import javax.xml.namespace.QName; impor...

Eclipse j2ee and bundled web tool platform confuses me

Hello good fellas i'm sure everybody is cool.I'm about to start a tutorial about jsp and jsf and the required tool is eclipse for j2ee and web tool platform.I'm a bit confused about where to find it bundled with wtp? and in which distribution is it Europa , Galileo or Ganymede ?.i know that it's here in entreprise java because it's cle...

Configuring an MDB in JBOSS

How maxMessages property affects the MDB? For example: @ActivationConfigProperty(propertyName = "maxMessages", propertyValue="5"). How would this value affect if maxSessions is 10? ...

JBOSS MDB - What is the use of Configuration Property Annotation: maxMessages

Possible Duplicate: Configuring an MDB in JBOSS Hi, What is the use of maxMessages property and how this will affect performance. Thanks, Rod ...

HTTP compression - How to send precompressed files that exist in a EAR file?

Is it possible to send pre-compressed files that are contained within an EARfile? More specifically, the jsp and js files within the WAR file. I am using Apache HTTP as the web server and although it is simple to turn on the deflate module and set it up to use a pre-compressed version of the files, I would like to apply this to files tha...

Where to put a local xsd file in Jboss 4.05

Hi, I am working on Jboss 4.05 , I have an xsd file that was on jboss.com and want to have it locally on my system, I can not find the right location to put this file, when starting the jboss I get this error: Offending resource: class path resource [spring/my-context.xml]; nested exception is org.springframework.beans.factory.xml.XmlBe...

Spring, log4j and JBoss4

I'm running JBoss 4.2.3.GA, and have a web app that uses Spring and Log4j. I've set up Spring's Log4jConfigurer, but am having a problem since JBoss's log4j file is not on the classpath. It's at jboss.home/server/defaul/conf/jboss-log4j.xml. So, without hard-coding the path in Log4jConfigurer, how can I get Spring to use JBoss's log4j fi...

Parent Contexts in spring based web-app

Hey, I'm deploying my EAR/WAR file to Jboss 4.2 and i've wired the web.xml to load the common application context file, so i can share common bean via parent spring context. <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLoc...

Executing Constantly Changing Logic

Hi, I writing a dynamic HTML parsers functionality. I will want to modify existing parsers and also would want to add more parsers (I expect parsers will be modified as sites a remodified and new parsers will be needed for new sites). I started writing a generic functionality which use a XML with conditions and rules for each site but ...

Is there any conflict between NFS and calling getFD().sync()?

My boss is worried that our NFS file system will not be happy with the jboss run java process calling getFD().sync on the files we are writing. We have noticed that frequently the time stamp on the created file is minutes (sometimes as many as 15 minutes) after the log claims the file was finished writing. My only guess is that the NFS...

Count active sessions in J2EE app deployed on JBoss 3.2.1

Hi there, I manage a J2EE application which is deployed on JBoss 3.2.1. As part of my service to my client I want to provide reports which show the number of active sessions. I have implemented a simple class and a JSP page which retrieve the number of active sessions, but I have discovered a flaw: the process of checking the number o...

Recommended way to deploy a WAR on JBoss AS 4.2.3

What is the best way to deploy a WAR on JBoss AS 4.2.3 from a remote location. I don't want to mess something if e.g. my connection hangs while uploading the file. ...

How can I test a JBossMQ JMS Queue with JMeter

I'd like to use JMeter test that I can send a message to a JBossMQ (JBoss 4.2.3 JMS Queue). If I get that far then I will be able to build some load and other tests. JBoss is pretty much straight out of the box and is a server called servername. Since there are some queues set up by default, lets use Queue A which according to ${JBOSS_H...

can't get DB Connection using JNDI datasource on JBoss

I'm studying how to build java webapps for JBossAS 5.1.0 and I'm trying to build a very basic jsp web app on JBossAS5 using a JNDI datasource for data access. When trying to open a connection I get this exception: 21:42:52,834 ERROR [STDERR] Cannot get connection: org.jboss.util.NestedSQLException: Unable to get managed connection fo...

EntityManager throws TransactionRequiredException on merge() in JBoss JSF bean

I've set up a JSF application on JBoss 5.0.1GA to present a list of Users in a table and allow deleting of individual users via a button next to each user. When deleteUser is called, the call is passed to a UserDAOBean which gets an EntityManager injected from JBoss. I'm using the code public void delete(E entity) { em.remove(em.merg...

Class in one war not able to access classes in another war of same ear

I have an ear which consists of 2 war files one containing junit classes and the other one containing actual application classes which are referenced by the junits. Now when executing the junits i get a java.lang.NoClassDefFoundError Is it due to the junit class files are located in different ear and hence not able to access the applica...