jboss

how do i deploy mobicents to glassfish v3

is anyone using Mobicents with Glassfish in place of JBoss? how do i deploy mobicents to glassfish v3? ...

How to integrate OpenID login authentication implementation (Java) with JBoss.

Hi, I have implemented one service that perform operation required for OpenID login authentication using openid4java library. Flow of application is some think like as below JSP page for getting OpenID from user JSP page 's actions servlet Servlet fetch openid parameter , interacts with the service to get required information to re...

how do i deploy mobicents to glassfish ?

Possible Duplicate: how do i deploy mobicents to glassfish v3 Mobicents with Glassfish in place of JBoss? how do i deploy mobicents to glassfish v3? wating your answers.. ...

Trouble deploying EJB application to JBoss when implementing persistence

I'm trying to implement EJB persistence, but I'm having trouble deploying my application to JBoss. In my application I have the session bean TeamMgr, which looks like this: package ejb; import javax.ejb.Local; import javax.ejb.Remote; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.Persisten...

jboss: accessing file resource through java code?

I am reading properties file from java DAO implementation for loading properties object as in code given below this.getErrorproperties().load( new FileInputStream(new File("").getAbsolutePath() + "/conf/error/error.properties")); While testing it works fine but when i try to deploy applicat...

Jboss As 5 and activemq

Hello All, Does anybody know how to configure Activemq on Jboss 5.1? If so could he or she provide me with the example? Many thanks for any answer! Agata ...

How to log ip address on JBoss

I want to log the IP address of the client who is calling my WS. How can I do that on JBoss? EDIT: I would like to use log4J configuration on JBOSS if possible. ...

Eclipse europa 3.3 jbossws runtime

Hi all, I would like to set up a webservice project based on top down approach. My env is eclipse europa 3.3, jboss 4.2.2 GA And i want to generate skeleton from wsdl using jbossws. But when i link jboss 4.2 runtime to eclipse, I am not getting jbossws runtime option to create webservice, rather I am getting apache axis2 as webservice ...

How to use Apache as a proxy for JBOSS AS?

I have Apache running and serving PHP but I will also like to run JBOSS for my other web app. JBOSS is running on port 8080 while Apache is running on port 80. If there is a request for URL example.com, I want Apache to handle it because it is PHP backend but for URL example2.com, I want Apache to forward the request to port 8080 to be h...

Can't get JBoss to start, deployment missing

I'm having this strange error with JBoss. It's strange because it's looking for some old projects that aren't even related to my current project and are also deleted from my workspace in eclipse. When I try to get the current project to run, I get this error: DEPLOYMENTS MISSING DEPENDENCIES: Deployment "jboss.j2ee:ear=BibliotheekEA...

Class not found in JBoss

I have a jboss service. I try to load a class from different jar file, it always gives in BEA jdk1.5. It works fine sun jdk1.6. Any clue? I have a archive in abcd.sar which calls a Schedulable class from xyz.jar. So far fine. When I try instantiate a class (by new or reflection) from another jar file I get ClassNotFoundException. The jar...

Container Managed Transactions (CMT) for Web Services in JBoss

I'm exposing my EJBs (3.0) as Web Services deployed to JBoss AS 5.1 (using annotations @WebService ,etc). I 'm very satisfied with JBoss's transaction management, especially automatic rollbacks on exceptions. My question is, will Web Service endpoints also behave the same way as remote/local EJBs? or would I lose the Container Managed T...

Eclipse and JBoss not refreshing or rebuilding.

Hey guys, I'm having this problem in eclipse (EE) when I change things in my code (even something as simple as the text I'm printing using println) it doesn't get applied. I'm using JBoss and when I rerun the servlet, nothing happens. Any idea how I can force JBoss/Eclipse to do this? I can't preview anything so it's really annoying if...

problem referencing JPA

Hey guys, I have to use a jpa project on one of my projects, but I'm having this error once I create an entitymanager and call persistencecontect in my sessionbean: @Stateless public class Biblio implements BiblioLocal { @PersistenceContext(unitName="BiblioJPA") private EntityManager em; /** * Default constructor. */ ...

Logging to server log on deploying a war file

Hi, I am using Jboss. I need to log "War file deployed" to server log when a war file is copied to jboss/server/default/log directory.( this's not related to jboss but still ... ) I am aware of one way to do is, i.e to have a servlet and overload the init methods, to log onto server log. The requirement is -> as soon as a war file is ...

How to handle HTTP status 404 and redirect the user to a different page on application re-deployment

When the application is loading on a EAR re-deployment you get a 404 error, how do we trap this issue and provide a user friendly message to the end user accessing the application. HTTP Status 404 - /myapp type Status report message /myapp description The requested resource (/myapp) is not available. JBoss Web/2.1.3.GA ...

Seam - @In Identity identity not injecting & throws nullpointer exception

I am using Seam 2.0 and I have an instance variable inside my bean as @In Identity identity and when I use identity.getUserName() it throws NullPointerException. Can anyone tell me please what I am missing here additionally? Update: I have defined bean instance variable as below: @In Identity identity; Then in my bean construc...

Liquibase: How to execute Servlet Listener before EntityManager construction

I manage to issue a Liquibase Update as described in Liquibase Servlet Listener. <listener> <listener-class>liquibase.servlet.LiquibaseServletListener</listener-class> </listener> This effectively executes my Changelog. However, this happens after the setup of the EntityManager. Obviously, this is too late if I want my Persist...

Configure JDBC oracle specific property v$session.program using Jboss and JPA (hibernate)

I'd like to set the v$session.program Oracle property in order to have information available in the session table. I'm using JPA with a jndi XA datasource created with an oracle-xa-ds.xml deployed in the deploy folder of Jboss, and therefore I haven't access to the constructor of the Connection. I have access to the Connection object, in...

JBoss AS 6 Logging Patterns

In the deployment directory of JBoss 6, there is jboss-logging.xml: The FILE appender has following pattern: <pattern-formatter pattern="%d %-5p [%c] (%t:%x) %s%E%n"/> This outputs something as follows: 2010-08-02 17:41:43,845 INFO [STDOUT] (http-127.0.0.1-8080-1:) 2010-08-02 17:41:43,844 INFO [http-127.0.0.1-8080-1] (XyzPageCon...