jboss

Evaluation of Drools Flow with Drools Expert on a web based J2ee project

I am evaluating drools flow as wrokflow engine with drools expert rule. Key evaluation points: Generating Customize Rules and Workflow through own custom Web UI Admin user can see all of the items in workflow in UI (View job queue: current queue, executed jobs, exceptions) Rule Actions can be web services, Java classes or it can be ...

How do I migrate JBoss 4.0.5 JMS configuration to JBoss EAP 4.3?

I have a J2EE application running on JBoss 4.0.5 which makes use of custom JMS queues and topics. The configuration for these is in XML files in the deploy\jms directory. JBoss Enterprise Application Platform 4.3, however, does not have a jms directory in this location. What do I have to do to migrate my existing JMS configuration files...

Remote debugging on JBoss

I am able to debug my EJB 3.0 app on my local JBoss (4.2.2 GA) in all cases, except when I put a break point in the actual bean. That just crashes the JBoss' JVM(1.5.14). Any ideas? ...

Maven JBoss plugin update from 1.3.1 to 1.3.2 caused deployment to fail

By accident I updated Maven JBoss plugin to version 1.3.2. After that the deployment failed silently, no attempt to connect JBoss was made. Eventually we found out the version change and reverted back to old version. Here is the current config: <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jb...

JBoss: Adding JMS resources to JBoss 4.3

Hey everyone, I am having trouble understanding where to define the JMS resources that are needed by the JMS queue implementation in JBoss. Currently the code that I'm dealing with works on WebLogic, and I'm trying to migrate it over to JBoss 4.3 eap. In weblogic, there is a jms.xml file that defines the JMS resources and JNDI lookup ...

JBoss 4.2.2 web service soap:address

I have an EJB3 bean deployed as a web service in JBoss 4.2.2. In production the server is behind an Apache server that redirects requests to the Jboss server. This makes the WSDL have the wrong soap:address location. I was able to get the port and host name changed via the configuration file in server\default\deploy\jbossws.sar\jbossws.b...

What configuration of JBoss should we used - web, standard, default?

We develop web application and we are going to deploy it on JBoss. Now we use JSF, Facelets, Webflow, JMX, Spring. We are going to use JMS(ActiveMQ). Maybe in the future we will use EJB3. But for near future we will not use it. What configuration of JBoss would be better to use - web, standard, default? And why? ...

How to pop up a new window in JBoss AS portlet?

Working in the JBoss AS portlet we have been unable to open a jsp page in a new portlet. We are fairly new to JBoss, and unsure how to go about it. We want a link in a portlet that, when clicked, opens a new window and load into it a jsp. Are there web.xml/WEB-INF changes? ...

diffrence between jboss.jms and jboss.mq ?

Whats is diffrence between classes org.jboss.jms.server.destination.QueueService and org.jboss.mq.server.jmx.Queue? ...

javax.jws.WebService.wsdlLocation with jboss 4.2.2

How specifically can you use the javax.jws.WebService.wsdlLocation in JBoss 4.2.2? (This is for an EJB3 bean deployed as a web service). There is some documentation around that it is supported, but what exactly is the format? I have tried an http, I have tried a relative URL. How does JBoss look for it, a URL, something on the classpath...

How do I get more debug messages from Hibernate?

I haven't been able to get any more console output (to help with debugging) from Hibernate despite setting a few properties in the hibernate.cfg.xml file. For example, adding the line <property name="show_sql">true</property> did not, in fact, show SQL statements in the console. I've also tried playing around with the contents of the lo...

JBoss Seam - Can't @In annotations be used at the same time with accessor methods for different properties?

Hi, I generated a new form using sean-gen (seam new-form) and added another field to it using an @In annotation: @Stateful @Name("dummy") public class DummyBean implements Dummy { @Logger private Log log; @In StatusMessages statusMessages; @In private String bar; private String foo; public void doStuff() { ...

Trimming inputs in JBoss Seam

I am making a web application using JBoss Seam 2.2.0, and I want to trim my inputs before receiving them, even before the Hibernate Bean Validation phase. Is this possible? I saw someone using a PhaseListener to do the same functionality. Is this the best way to do it? ...

Why Servlet is unavailable after 3rd deployment in jboss 4.2.0

I am working in a struts-hibernate application. I have seen a error on 3rd time deployment of application in jboss4.2.0. When i deployed it for first time, it runs. Even in 2nd time deployment, it works. But, in 3rd time deployment, it shows an error "Servlet is unavailable". Why it fails in 3rd time? ...

Hibernate with Tomcat vs Hibernate with JBoss

I am a newbie trying to figure out the pros and cons of using Hibernate with Tomcat and with JBoss. I am developing a web application with Flex at the front-end, BlazeDS as the messaging service and Java at the back-end. We have decided on using Hibernate as the persistence mechanism but would like to know the trade-offs of using it wit...

JBoss ESB stop working or logging after startup

Hi all, I am using JbossESB as an integrasion layer between applications. I am reading messages from the file system, parse them and then sent them to the remote application by jms. My configuration file - jboss-esb.xml <fs-provider name="SitaIstProvider"> the thing is wh...

error in combobox using SEAM 2.1.2 and JBOSS 4.2.3GA

Hi, I'm trying to create a combobox on a sean project and the sean tags are not recognizing my session bean method, but if i display the list in a simple table everything is ok. My session bean PaisSB.java: package br.com.logical.prepark.session; import java.util.List; import javax.persistence.EntityManager; import org.jboss.seam.S...

Where does System.err.println output go in Jboss?

Hi, I have a class in a WAR that I know prints some System.err.println output - where will this output end up? Any help appreciated, thanks. ...

creating new javax.xml.ws.Service not returns

I am having a strange problem occuring somtimes from a specific machine (windows 2003). I am trying to create a new javax.xml.ws.Service instance with host and qname as parameters. service = new SomeService(url, qName); the service creation (ONLY SOMETIMES!) never returns. While the creation is stucked on my prod machine, development...

Setting up multiple instances of JBoss on the same machine

I've found next page in JBoss Community - http://www.jboss.org/community/wiki/ConfigurePorts There is next text: Edit server/default/conf/bootstrap/bindings.xml But I do not see file bindings.xml in JBoss 5.1.0 GA. Does anyone know - what files should be changed in order to hav ability to start several instances of JBoss 5.1 on the...