0
votes
0answers
42 views

error in building maven project through jenkins

I am using jenkins for continous integration of maven builds. I am getting the following error Error occurred during deployment: Exception while deploying the app [Projectname] : Cannot resolve ...
0
votes
0answers
20 views

Security Multi-user Client: Bad remote CallerPrincipal when connecting 2 users from my client

I have a very annoying issue with my secured Glassfish 3.1.2. When I connect 2 (or more) users from my stand-alone client, I am having always the last connected user when I try to get the caller ...
0
votes
2answers
157 views

Ejb 3 lookup not working in Jboss AS 6

I have migrated my app from Glassfish 2.2.1 to JBoss AS 6. Previously i have a generic class for lookup the ejbs, Below is the code: public class BeanUtil { private static InitialContext ctx; ...
0
votes
0answers
48 views

EJB Timer with axis2 .aar

I am using EJB TimerService in axis2 web services. The look up is done as follows: Context ctx = new InitialContext(); TimerHelper timer = (TimerHelper) ctx.lookup( "my.package.TimerHelper" ); ...
0
votes
1answer
57 views

Invoking a webservice from another webservice?

I have two Java web services deployed on Glassfish server using Netbeans 7.2.1, both services are inside the same web application. I am trying to invoke webservice2 from webservice1 and this is the ...
1
vote
1answer
53 views

Heterogeneous Java EE cluster

Is it possible to form a cluster in which there are different types of application servers? For instance, 1 JBoss, 1 Glassfish and 1 WebSphere? Lets assume we are using EJB3.0. Stateless session ...
1
vote
2answers
445 views

Exception when deploying EJB 3 MDB in Glassfish3

Screenshots from Glassfish Web Admin: With the factory and Queue are injected, the code deploys OK: @Resource(name = "jmsQueueConnectionFactory", mappedName = "connectionFactory") private ...
0
votes
0answers
404 views

RMI client inside application server [closed]

I have a legacy RMI client/server application and I need to connect a new jee application (hosted in glassfish 3.1.2) to the RMI server. Is that possible? How can I develop the client part inside my ...
1
vote
2answers
178 views

@Local interface with many realisation

I have @Local interface @Local public interface IRepo { and two realisation, but only 1 bean realisation @Stateless(name = "RepoBean") public class RepoBean implements IRepo { second ...
1
vote
1answer
151 views

Glassfish embedded JNDI module scope lookup

I am trying to write JUnit tests by using an embedded glassfish server and EJB3. I am using maven and my project has 3 modules, and in each of them I want to perform tests. The module I am currently ...
0
votes
0answers
57 views

glassfish second remote bean not registered

i'm facing a problem while deploying my ear to an glassfish 2.1. In my project i need two remote interfaces to access different business-logic (one for the ui, the other for batch). For that i ...
1
vote
0answers
171 views

JPA makes MSSQL Transactions lock

We have a Java EE app running on Glassfish 3.0.1 that uses EJBs, JPA along with Hibernate as implementation and have MS SQL Server 2008 R2 as database engine with JTDS as JDBC driver. We have chosen ...
0
votes
1answer
150 views

Failover for EJBs?

Java EE app container provide "failover" support for EJBs, in their docs never cite any reasons why you would need to failover an EJB in the first place! When do these "failover" conditions take ...
1
vote
1answer
388 views

Dozer DozerBeanMapper Instantiation Startup EJB App Server Glassfish

Dozer's documentation states that you should only have one instance of DozerBeanMapper running in the app on the server. For initial development I ignored this, now I want to update the app to do ...
0
votes
1answer
280 views

EJB Dependencies are not wired (injected) properly on GlassFish 2.1

For some reason I should use old EJB container GlassFish 2.1.1. (certified for Java EE 5 and EJB 3.0). The project structure is following: MDB: @MessageDriven( mappedName = "jms/Queue", ...
2
votes
1answer
382 views

EJB Glassfish v3.1.2 client passed data to session bean is always null

I am having a problem when calling session bean method passing method parameters from client application, the data reaches the method call is always null or set to default value. while the process ...
2
votes
2answers
238 views

J2EE Application with Netbeans and Glassfish (No [EntityType] was found)

I'm using NetBeans IDE 7.0.1 and Glassfish 3.0.1. I'm building a J2EE application with JPA + EJB3.0 + JSF2.0 and when I try to deploy my project I got this error : Caused by: ...
0
votes
1answer
297 views

Very simple Glassfish file transfer

I'm trying to combine these articles: http://java.sun.com/developer/technicalArticles/RMI/rmi_corba/ and http://netbeans.org/kb/docs/javaee/entappclient.html to make simple client-server app using ...
0
votes
1answer
110 views

Is it possible to deploy an application with 2 WAR files + 1 EJB.jar file

Here my requirement is to seperate the public portal and admin portal. Faramework is JSF1.2 , EJB 3.0 and application server is glassFish 2.x So my question is that can we have 2 WAR files and 1 ...
1
vote
1answer
254 views

Preventing a message-driven bean from consuming messages [or] handling database connection failures in Java EE

Scenario We deliver a Java EE application as a layer between a legacy database-oriented application and a real-time Java SE application that manages physical devices to block or to grant access (like ...
0
votes
1answer
253 views

JavaEE changing DB schema runtime for SaaS application

i am developing a SaaS application by using JavaEE technologies (JPA, EJB, ..) for multitenancy, i chose 'Shared Database, Separate Schemas' approach and designed the DB (PostgreSQL) like that ...
0
votes
1answer
539 views

Can't access remote EJB

I've created EJB with remote and local interfaces. @Stateless public class VendorBean implements VendorBeanLocal, VendorBeanRemote { ... } @Local public interface VendorBeanLocal { ... } ...
0
votes
1answer
604 views

Glassfish ejb ref resolution error for remote business interface

I've created very basic EJB3 stateful bean but can't access it remotely. I'm getting: Caused by: javax.naming.NamingException: ejb ref resolution error for remote business ...
1
vote
2answers
258 views

Use cache in EJB remote interface

I have an application that is deployed on a Glassfish server, for which methods are invoked remotely (using standard JNDI and RMI over IIOP features). I would like to install some caching features on ...
1
vote
2answers
246 views

In GlassFish, while writing a JCA adapter, is there a way to map anonymous users to an EIS user?

I've created my own JCA->EIS adapter for a legacy system. I'm having trouble authenticating while connecting to the old system. This is fairly difficult to explain. In GlassFish v3.1.1, after you've ...
1
vote
1answer
963 views

JPA2 One-to-many serialization exception

I have such a problem when migrating from Hibernate to JPA2 in new EJB project. In stateless bean i fetching a parent class instance which name is ProductType with unidirectional One-to-many ...
0
votes
1answer
178 views

Creation of context fail when JUNIT test is launched

I created a small junit test that is launched from my application client. My server is glassfish 3.1.1 . When i run the test i get this error: javax.naming.NoInitialContextException: Need to specify ...
1
vote
2answers
111 views

How to inject PesistenceContext in my tests using EJB 3.1?

Hi in Spring it's easy to do so... as Spring doesn't require an Container, you just add an @autowired and it's done. But in EJB 3.1, using @Inject is useless if the app is not deployed... I am ...
0
votes
2answers
232 views

Globally accessible property in EJB

I have a JavaEE application that needs to access a file in order to obtain certain informations about the installation. This access is read-only, I do not need to change that file within the ...
1
vote
0answers
161 views

New to EJB:Missing Deploy Tool

I am new to EJB.I am reading EJB HeadFirst to understand various EJB concepts.Throughout the book the author is using the deploy tool that comes with the J2ee server (as specified in the book).So i ...
2
votes
1answer
177 views

remote ejb call trapped in the lookup in linux server

I'm using glassfish 3.1.1 with an application client container called via java web start. My program is not working , it remain glued in the lookup() and never pass it . Context c = new ...
0
votes
1answer
214 views

How can I get in Glassfish 3 a log of what is injected and how?

Question title sums it up. However, to be a little more clear. I have EJBs scattered in my application, and I sometimes get exceptions like the following : ...
0
votes
2answers
2k views

Entity manager error on the server?

Hi I have developed my java application on glassfish server with EJB 3.0 persistance. On my local machine the application was running fine and was persisting the data perfectly. However, When I ...
1
vote
2answers
769 views

ejb reference in deployment descriptor (without annotations )

I try to inject dependency in EJB 3.0 using only deployment descriptor. When I deploy my app to Glassfish (v3.1) I get this exception: java.lang.RuntimeException: Warning : Unable to determine local ...
2
votes
1answer
66 views

Table Duplicate Values

I have a project where I create reports and I am keeping the old reports for users. I am creating tables using EJB 3.0 and psql on Glassfish Server. Recently I realized that the old reports' tables ...
1
vote
2answers
597 views

EJB3.0 Serializing a handle to a Stateful Bean

I'm attempting to persist the remote handle to a Stateful EJB3.0 bean. This bean's interface is defined: @Remote public interface Hello extends Serializable { Handle getHandle(); void ...
3
votes
1answer
2k views

sun.reflect.annotation.TypeNotPresentExceptionProxy error when deploy web-ear

When I try to deploy ejd-ear, web-ear on to glassfish server. I added a ejb client dependency in to web project. The ejb-ear deploy successfully, but When I try to deploy web-ear, it throw an ...
2
votes
1answer
3k views

Can @Resource be used to inject primitives in EJB3.0?

Using Glassfish, I can setup a string jndi entry: JNDI name: "com/xyzcompany/echo/EchoServiceBean/viewName" Factory Class: org.glassfish.resources.custom.factory.PrimitivesAndStringFactory ...
0
votes
5answers
560 views

Java dependency injection problem

I'm trying out some j2ee features which comes with Java reflection. Therefore i tried out the JNDI lookup which works without any problem, but I also wanted to try the opposite version "Dependency ...
0
votes
1answer
2k views

not able to deploy bean on the glassfish server

I am getting following error in server log while deploying bean (.jar) file using admin console I am using glassfish 3.1 and IDE is netbeans SEVERE: UTIL6550: Error in local string manager - ...
4
votes
1answer
613 views

EJB persistence issue with OSGI

I am beginning to use EJB for a project (the eCOM Project actually). I have some beans that I need to save to a database, like a Status bean. The code that does this is : Status status = new ...
2
votes
1answer
336 views

Hibernate load balancing and remote integration with EJB on Glassfish 3.1

This is the first time I do a question and I ask this as I'm projecting my own architecture. What I've in mind is to do an integration between Stateful/Stateless EJB3 Session Beans + Hibernate, but ...
0
votes
1answer
603 views

Glassfish EJB 3 OpenJPA 2

I'm stuck between a rock and a hard place at the moment with this problem. If I define my persistence context as: @PersistenceContext(unitName = "persistentUnit") private EntityManager entityManager; ...
2
votes
3answers
2k views

Cant retrieve an images from the WEB-INF folder ussing classLoader.getResourceAsStream()

The hold noon i was trying to make my app send both html+images via javamail, i only managed to send html, but with the image i am having a bit of problems. I decided to create a multipart message, ...
2
votes
2answers
3k views

Sending email from a java stateless EJB (Java EE-6)

I want to send an email ussing an EJB but i the only thing i get in return in this exception: java.lang.RuntimeException: javax.mail.AuthenticationFailedException: failed to connect, no password ...
1
vote
1answer
1k views

How to Cascade Update in JPA

I got stuck trying to make a ManyToMany cascading event to work. I've bean browsing through similar posts, but can't see where my code goes wrong, compared to others posts. I have two tables ...
0
votes
3answers
942 views

how to handle exceptions in ejb 3 based soap webservice

I am currently developing an EJB3 based SOAP webservice and I wonder what are the best practices to handles uncatched exceptions and return a well formated SOAP response to the client. example: ...
0
votes
3answers
2k views

Howto secure webservices on GlassFish 2?

We have some staleless EJBs (EJB3) deployed on a GlassFish 2 server that expose some of their methods as webservices via the @Webmethod annotation. Now we want to secure these webservice methods so ...
0
votes
1answer
2k views

Webservice problem in ejb

I have an error which I can't understand in my webservice method. First, here is the method: package com.ubb.damate.webservice; import java.util.Date; import javax.ejb.EJB; import ...
0
votes
3answers
2k views

Application Client EJB Eclipse Glassfish

I'm using GlassFish Tools Bundle for Eclipse. I need to create a bean and a client that tests it. The bean (and its interface) are the following. package mykPK; import java.math.BigDecimal; import ...

1 2 3