2
votes
1answer
48 views

In EAR project EJBs appear twice when deployng

When I deploy EAR project, I noted that same EJBs appear twice - in WAR and JAR(EJB) modules. Where can be problem? I build project using Maven. And didn't explicitly define any ejb-jar.xml. In ...
0
votes
0answers
17 views

Programmatic Login from Tomcat JSF2 Frontend to WebSphere 7

We are developing a distributed application, using a rather heavy weight approach.The UI is deployed as a WAR on Tomcat 6, the back-end is deployed as an EAR on WAS 7. Without application security ...
1
vote
1answer
32 views

WAS 7.0.0.23 - default interceptors in MDB with activation spec throws classcastexception

I am facing an issue with Interceptors for MDB in Websphere. I configured defaultInterceptor for MDBs with ActivationSpec and not listerner port in WAS 7.0.0.23. I am getting ClassCastException. The ...
0
votes
1answer
30 views

EAR cannot find EJBs in other EAR (WAS shared lib issue)

I've got an EJB set up in my entity-layer-EAR: <session> <ejb-name>DoctorDaoImpl</ejb-name> <business-local>mypath.DoctorDao</business-local> ...
0
votes
0answers
32 views

How to add controllers to deployed JavaEE application on server

I'm trying to write specific Java application, leaning on MVC pattern. The idea is that I have controller, that creates new views and specific controllers (not CRUD) for them in working application. ...
1
vote
1answer
37 views

Duplicate ClassLoaders generated per persistence-unit on Websphere

We're running an EAR on WAS 8.5, and every one of our DAOs are duplicated 31 times. Noticing our persistence.xml has 30 JNDI datasources, I tested reducing the number, and indeed the duplicate count ...
0
votes
2answers
39 views

Call method after ear start

I need to run ejb component and call a method after start application as early as possible. Does anyone know best solution, please help.
2
votes
1answer
242 views

How to deploy EJB 3.1 session bean in a war on Websphere 8.5

Now I use Jersey to create restful web service on Websphere 8.5. I also want the restful web service has the EJB 3.1's capacity. My restful web service code as follow: @Stateless ...
0
votes
1answer
29 views

While publishing the application into the Websphere application server it has to load all tables from database using spring

In our project there is requirement to load all tables from database While publishing the application into the Websphere application server. I just defined the applicationContext in classpath.. ...
0
votes
2answers
116 views

how to test an ejb in a client application using was7

I´ve my ejb, with it´s client packed in an ear which it´s deployed on a was7 Now I need to test it with junit so I created a standalone java application I added the jar generated by the ejb client and ...
-1
votes
1answer
111 views

ZK with Websphere Application Server - Timeout on any Event

I have started working with ZK recently. I really like the framework but I am having a lot of problems in configuring it to work correctly with Websphere Application Server v8.0. Namely, I am ...
2
votes
1answer
248 views

Injection of a stateless EJB into JSFmanaged bean causes NullPointer ex in WAS 8.5

A Java EE 6 Project using JSF 2.x mojarra implementation (both 2.0 and 2.1 tested) where session beans are injected via @EJB annotations into JSF managed beans fails in Websphere Application Server ...
1
vote
1answer
180 views

websphere ejb deployment issue : classnotfound error for other ejb references

I have two ejb jars packaged into a ear. say EJb1.jar adn Ejb2.jar. I am deploying it in Webphere 7.0. Ejb1 is referencing to classes in Ejb2.jar. Unless I specify the Ejb2.jar in Manifest.Mf file of ...
1
vote
1answer
198 views

How to propage WebSphere security tokens when calling HTTP from EJB

I have an EJB which makes a call to another server in the cell using HTTP (REST api). At the EJB context the user is already authenticated and authorized, how can I propagate the security tokens to ...
0
votes
1answer
143 views

Architecture choice: ESB and EJB

I am building a new Java EE application (thin client), and here is the application layers: The application presentation will be with JSF2 / Spring webflow and RichFaces 4 The businees layer will be ...
0
votes
2answers
234 views

Error when using Asynchronous annotation in EJB

On invoking an @Asynchronous method in EJB, I see an error getting logged though the method execution works fine. Any suggestion on what is going wrong? EJB 3.1 on WebSphere V8 The interface is : ...
2
votes
1answer
215 views

Annotation Validation Exception (com.ibm.wsspi.amm.validate.ValidationException)

I got following exception on IBM Websphere Application server 8.5 when I tried to deploy my application on server. I'm using WS 8.5, EJB 3.1, Java EE 6 in my application. [11/1/12 11:06:47:208 PKT] ...
1
vote
1answer
160 views

Lookup an ejb on same server and cell

I have an ejb application Xdate and a web application Y deployed on websphere server/cell and the web app uses client jar of Xdate ejb to lookup. Can I use name space binding of "ejb type" to lookup ...
0
votes
2answers
1k views

Eclipse with Websphere 7.0.0.17: EJB project does not work with resources within the workspace, but works with resources on Server

My application works with Maven and has three modules: ear-module web-module ejb-module EJB Version is 3.0. Deployment works in both ways without error messages. When I try to run the ...
0
votes
1answer
638 views

Using WebSphere clustering for load balancing

I have two tier system. WebSphere Application Server. The first tier is called "Web" but is a regular ApplicationServer Cluster. The second tier is called "App" and is a regular ApplicationServer ...
2
votes
5answers
166 views

Tools to JVM/AS monitoring

I'm researching about the tools that are helpful to monitoring the JVM(memory, processor, number of threads) and/or the use of Application Server resources during the application production (requests, ...
0
votes
0answers
205 views

using ejb service in a spring bean

I have an ejb project with several services deployed on the server. MyServiceLocal extends javax.ejb.EJBLocalObject MyServiceLocalHome extends javax.ejb.EJBLocalHome MyServiceBean implements ...
0
votes
1answer
404 views

Remote lookup of ejb fails when initial context is cached

I have a situation where in my web layer, I do a remote EJB lookup and cache the initial context. Now the remote EJB is deployed in a WAS cluster. so if the remote ejb is deployed across ...
1
vote
1answer
574 views

How to share EJB local interface across applications installed on the same WebSphere Application Server?

I'm having a problem with WebSphere Application Server 7. I have 2 applications installed on WAS A & B. B wants to use a local EJB interface of A's. The module that contains the local EJB ...
0
votes
0answers
636 views

Websphere local iiop port number and host name

I'm using Websphere application servers to invoke remote methods via RMI/IIOP protocol. How can I get local RMI/IIOP port (2809 by default) and hostname or IP of localhost? To pass this parameters ...
1
vote
0answers
362 views

IBM WAS createEJBStubs

I want to use the createEJBStubs command, which is described here: ...
0
votes
0answers
59 views

Making RMI call specific to individual server in clustered environment in WAS [closed]

I have a situation where i have to make individual RMI call to 4 websphere app servers to load files on those servers, but all servers are under clustered environment? Can anyone help
1
vote
2answers
985 views

Where does WebSphere put the EAR file when RAD does a “Run On Server”? And how to run createEJBStubs on it?

I have a JavaEE-based web app with IBM RAD 7.5 (Eclipse) and WebSphere 7. The app has EJBs with remote interfaces. It runs fine. I created a new project for JUnit tests, and I'm trying to do a JNDI ...
0
votes
0answers
177 views

AnnotativeMetadataManagerImpl merge Caught exception while merging com.ibm.wsspi.amm.validate.ValidationException:

i got this exception that stops the EAR project on WAS 7.0.0.23 It's a class on the client project for an EJB project AnnotativeMetadataManagerImpl merge Caught exception while merging ...
1
vote
0answers
504 views

InvalidObjectException when looking up EJB3 on WAS7

I have a java web application that is deployed in two EARs - one for the UI tier (contains a WAR module) and one for the business tier (contains an EJB module). Both tiers are deployed to WebSphere ...
2
votes
1answer
1k views

How to make a property file available to EJB in WebSphere Application Server 8

I created a JAX-WS Web Service and an EJB skeleton from a WSDL file by following a Tutorial in the Rational Application Developer for WebSphere 8.0.4 help. It created an EJB project to contain my EJB ...
12
votes
3answers
1k views

How to enable Kerberos authentication for remote EJB call on WebSphere?

My application is a stand-alone Swing client invoking EJB Stateless Session beans thanks to classical JNDI lookup and RMI-IIOP method calls. It is started as a Java WebStart application. My aim is to ...
2
votes
1answer
232 views

Deploying EJB written in clojure to standalone application server

Does anyone have experineces combinig Clojure code with existing JavaEE infrastructure (It's the Webspehere Application Server 8 in my case)? When creating a jar to be deployed to the Application ...
0
votes
1answer
216 views

JNDI lookup of EJB deployed in same WAS instance

In my WAS, there are two EARs. The first EAR looks up an ejb that is packaged in the second ear. My question is, since the two EARs are in the same WAS, do we still need to supply the property ...
0
votes
3answers
1k views

Is there a shorter name I can use to do a JNDI lookup of an EJB?

I have a Java EE web application (WebSphere 7). The code looks up EJBs on the app server by doing JDNI look ups. In my development environment (Eclipse / IBM RAD), the EAR project is called ...
0
votes
2answers
588 views

EJB, rmi port in WebSphere

I was wondering where I can control the ejb/rmi port in WebSphere. I have noticed it doens't appear in the "ports" section in the Server Definitions in websphere. Something tells me it is the ...
0
votes
1answer
283 views

Error in BindJndiForEJBNonMessageBinding using ibm-ejb-jar-bnd.xml

Deploying an application in WAS 8 gives me an error: Cannot find a match for supplied option: "[ejb.jar, ejbName, ejb.jar,META-INF/ibm-ejb-jar-bnd.xml, ejb/ejbName]" for task ...
0
votes
1answer
97 views

Cannot Find Symbol createAccessBeans(java.util.Collection) when Compiling EJB 1.1 IBM Commerce Project

I am trying to "Mavenize" our existing Commerce solution. However, I am getting a weird error when I try to run mvn compile I get the following error. [ERROR] ...
0
votes
2answers
759 views

why is my @EJB not getting injected to my web service?

I have a basic EJB 3.0 (Java EE 5) project in IBM RAD (aka Eclipse 3.4) and WebSphere 7.0 I created an EAR project, an EJB project (for the EJBs), a JPA project (for the domain objects), and a ...
0
votes
1answer
631 views

Invoke EJB Stateless Session Bean method from WebSphere Administration console 7.0 or with WebSphere Application Server's utils

Is exists the way to invoke the method of stateless session bean from WebSphere 7.0 console or with helps one of WebSphere utils? I just don't want to do client for testing my EJBs.
0
votes
2answers
229 views

Websphere 6.1: Issue in Multiple Cells Call using IIOP

Need some help with below issue We have 2 machines, each of these machines has 2 websphere cells installed in it. Machine 1 (X1 and X2 cell) Machine 2 (Y1 and Y2 cell) We have web application ...
2
votes
1answer
627 views

Local stateless EJB injection within singleton startup EJB

is this possible somehow? Following scenario: statelesse local EJB with name A singleton startup EJB with name B B contains a reference to A I tried but my application server (WAS) fails on ...
0
votes
1answer
135 views

Is it possible to create an EJB dedicated to managing EJB 3.1 timers?

This might be a stupid question, but would it be possible to dedicate an EJB to managing all the timers for the entire container? I don't know how this would be accomplished as I'm not all that ...
2
votes
1answer
1k views

Job Scheduling: EJB 3.1 Timers or Quartz?

Our shop currently uses Quartz for our existing projects. The only draw back is that Quartz threads are run unmanaged. We are moving to EJB 3.1 and I was wondering if there is any way to replicate ...
6
votes
2answers
3k views

Message-driven bean (EJB3) in WebSphere 7, XA transactions, Error handling

I am a relative newb to EJB. Background: I have an MDB using the WebSphere default messaging provider receiving MapMessages that has a java.sql.DataSource to do some work, using preparedstatement, ...
0
votes
1answer
1k views

EJB2.1 hello word application configuration issue

I am trying to make hello world EJB2.1 application in RAD6 with Web sphere application server. But i'm unable to understand that which file i've to edit in RAD6 for doing changes that we do in ...
0
votes
1answer
365 views

Migrating an EJB project running on JBoss to Websphere Applicataion Server 7

I have a Java EJB project running on JBoss properly.However I have to migrate it to WAS. So I created an EAR then deployed it to WAS. After I tried to run this project on WAS i get this error: ...
0
votes
2answers
1k views

EJB dependency injection into Servelt - WAS7

I am trying to inject an EJB with the @EJB annotation : when I inject an EJB into another EJB it works fine. when I inject the same EJB into a servlet I got a null pointer exception (my EJB is ...
0
votes
2answers
1k views

WebSphere: EJB initial context + cluster lookup

I was wondering whether the following simple code will work, given that I have: 1. WebSphere ND. two application servers acting as web-servers. two application servers acting as application-servers ...
1
vote
1answer
9k views

Unable to lookup remote EJB on Websphere 8

I have deployed an EJB with local and remote interfaces, and I can lookup the local one OK after deployment, but I'm not able to to do with the remote, from a Java SE client. The EJB code is simple: ...

1 2