Tagged Questions
0
votes
0answers
4 views
Local interface of EJB stateless bean not visible in JNDI tree
If I deploy a EJB stateless bean having only local interface in a weblogic server . I am not able to lookup its JNDI in View JNDI Tree of Weblogic Server.
1
vote
2answers
28 views
Got “javax.ejb.EJBException: error unmarshalling arguments java.io.EOFException” when calling an ejb method
I am running an ejb method belongs to a EJB located in weblogic 10.3.6 server. This server is located in a Solaris-10 64bit machine. EJB client is located in Windows XP 32bit machine.
When I am ...
0
votes
0answers
32 views
java.lang.ClassFormatError: Duplicate method name&signature in class file
We are in the process of upgrading our application from Weblogic 10.3.0 to 10.3.6. When we try to deploy it we get the error:
java.lang.ClassFormatError: Duplicate method name&signature in class ...
0
votes
1answer
32 views
Injecting Entity Bean in to EJB Bean using @EJB
I have Stateless Entity Beans(EJB 3.x) and EJB Beans(EJB 2.x) and other classes in my project. I want to inject Entity Bean into EJB Beans. So, far I am able to inject it using JNDI way i.e ...
0
votes
0answers
42 views
Transaction timeout with TransactionAttributeType.NOT_SUPPORTED
I have a J2EE application (weblogic, oracle) that sends large data over internet. But it suffers of transaction timeout. So I refactored the application following way:
Timer has container managed ...
0
votes
0answers
7 views
Understanding of collocated objects weblogic optimalisation
does the weblogic optimalisation collocated objects (http://docs.oracle.com/cd/E11035_01/wls100/cluster/load_balancing.html) work for EJBs that are deployed to the same cluster node but in different ...
0
votes
0answers
7 views
Tracing Replica-awere EJB routing on weblogic 11g
Does anybody know how to trace (debug) or simply get some visibility into weblogic's routing logic for cluster-awere EJB? To give a bigger picture: we are experimenting with different routing ...
-1
votes
1answer
54 views
EJB2 Authorization related simple program ( java.lang.SecurityException: User: manager, failed to be authenticated.)
I have written the following files
-------------------------------
ejb-jar.xml
-------------
<?xml version="1.0"?>
<!DOCTYPE ejb-jar PUBLIC
'-//Sun Microsystems, Inc.//DTD Enterprise ...
1
vote
0answers
14 views
Weblogic Transaction Behavior
I'm working on an older EJB 2 application.
In the ejb-jar.xml, I see:
<container-transaction>
<method><ejb-name><method-name>someMethod...
...
1
vote
1answer
90 views
Auto retry after EJB transaction rollback
Basically, I have a JMS queue and an MDB to collects the messages from the JMS queue, does some processing on them, and then persists the messages into the database via JPA. I marked the method, which ...
0
votes
0answers
23 views
Deploying ejb and application as library
i have some problems with weblogic.. as i said, i need to deploy my webservice which is ejb packaged ( http://docs.oracle.com/cd/E19798-01/821-1841/gipnz/index.html ). This webservice uses a library ...
0
votes
0answers
44 views
Expose the JNDI name of the Singleton EJB
How to declare a singleton EJB bean in an weblogic-ejb-jar.xml to expose the JNDI name? Please provide any reference.
ejb-jar.xml
<session>
<description>ESS RemoteSingletonAsyncEJB ...
0
votes
0answers
97 views
Weblogic EJB injection Error
I have a jar file (api.jar) with entity access objects and their interfaces. I also have another jar file (core.jar) that uses these interfaces and contains api.jar in its classpath.
The code ...
0
votes
0answers
54 views
EJB Call WebService Error
I perform in the main method no problem. But in EJB calls I get an exception. my server is weblogic.
javax.ejb.EJBException: EJB Exception: ; nested exception is:
java.lang.NoClassDefFoundError: ...
0
votes
0answers
186 views
Return EJB remote service from static method raise exception:[Security:090398]Invalid Subject
I have several years experience with Java and EJB,but still I can't explain this problem although I already knew the fix...
Please,can anyone help me to explain why? Thanks very much!
My platform is ...
0
votes
2answers
94 views
How to find the IP address of the Server inside the EJB
I have deployed EJB application in weblogic cluster which consist of 2 managed servers. I need to track witch physical server is processing the each and every request from the remote client. So I ...
0
votes
0answers
128 views
Error with publish task 'EJBGenProjectTask' in weblogic 10.3.0 while deploying ejb jar
I am trying to publish an EJB project on weblogic server.It's throwing an error.
Earlier it was working fine.However,after making a few changes in ejb it's throwing error which is not relevant to the ...
0
votes
0answers
40 views
spring in weblogc ejb application
We have an existing WebLogic EJB application which has only weblogic-ejb-jar.xml and doesn't have any web.xml.
I have too include spring bean in the EJB. So I created a applicationContext.xml and put ...
0
votes
0answers
93 views
weblogic.transaction.internal.TimedOutException vs weblogic.transaction.TimedOutException
what is the difference between these two?
weblogic.transaction.internal.TimedOutException is thrown when JTA timeout occurs.
weblogic.transaction.TimedOutException when??
My Env: EJB-3.0, TopLink, ...
0
votes
1answer
142 views
Should JPA Entity Manager be closed in EJB?
I have the following message driven bean in which first of all I perform necessary db lookups (1), then I call an external system (2) (response time can vary from a couple of seconds up to 2 minutes), ...
0
votes
0answers
42 views
spring in ejb listener
I have an EJB application which doesn't have any web.xml in the application.
In the application, weblogic application listener class we need to get the spring context.
For example,
In the ...
0
votes
2answers
128 views
WLS loadbalancing query
I have a Weblogic Cluster and Apache is acting as a front end proxy. By default the Weblogic Cluster and plugin uses round robin algorithm and suppose if i change the loadbalancing algorithm to ...
3
votes
1answer
261 views
Is there any way to clear entity cache in a weblogic server without restarting? [for debugging]
I am investigating a bug in my application which runs on Weblogic 10.3.4 server. For this investigation, sometimes I need to clear some tables in the database directly (using SQL Navigator). But these ...
1
vote
1answer
351 views
EJB transaction rolled back exception
I am using ejb-2
I get the following exception. Can someone tell me what does it mean, and what can be the possible resolution for this:
Error (fatal): EJB Exception: ; nested exception is:
...
0
votes
1answer
253 views
EJB resource injection in Weblogic 10.3.3
I need to write a stateless session bean which I want to deploy to WLS 10.3.3. The session bean should be able to send a text message to a known JMS queue which is created through the WLS console. ...
0
votes
1answer
44 views
Troubleshoot EJB cachefull exceptions
With reference to the question :
:
EJB weblogic.ejb20.cache.CacheFullException
I am trying to understand how the EJB container manages entity beans, I know that create/finder method calls on the ...
0
votes
0answers
101 views
How do I use network-access-point in Weblogic for a specific EJB
My task is to get a specific remote bean only to be available on a certain port (still using the t3 protocol). The bean is called MyRemoteBean.
I'm using Weblogic Server 10.3.2 and during ...
2
votes
0answers
50 views
Is there a way to use EJB authentication data to connect to persistent storage?
There are a few users which have (1) username, (2) password and (3) role attributes.
I want to use credentials of a user to authenticate and authorize for EJB service operations (WebLogic 12c App ...
3
votes
3answers
404 views
Java EE Scheduled task
I need to schedule a task to be run periodicily (e.g every 6 hours, or maybe everyday at 12 PM) on Weblogic 10.3 server. The task basically retrieves some data from the database and does some business ...
2
votes
0answers
104 views
Deploy independent EJB in WebLogic 12c
I want to deploy a EJB module that i develop in Netbeans. The EJB contains web services using JAX WS library and Stateless Session Beans... The Session Bean class use a remote interface that is in ...
0
votes
0answers
126 views
Two-Phase commit in EJB
I getting Two-Phase commit Exption in my application for one of the datasource. Point is application only does ready only data option using Oracle Toplink. Here is what happling in Application
...
1
vote
2answers
80 views
Not whole entity being retrieved in ejb3
I have three classes which are connected to each other. Order, OrderDetail and Product. When I do in my JPA project the following:
@Override
public Order getOrderById(String orderID) {
...
1
vote
0answers
194 views
How deploy an ejb independet in WebLogic 12c, which was created in GlassFish 3.1
Good day, I want to deploy an EJB Application Project which contains a class Session Bean and WebServices using JAX-WS library, and the Session Bean uses a remote interface that is in another ...
1
vote
1answer
412 views
Weblogic Test with JMeter : No message was received for: '240' seconds; nested exception is: weblogic.rjvm.PeerGoneException
I am doing a performance test for evaluating our product using JMeter. Our product is deployed in a Weblogic server and has an Oracle database.
In the performance test, JMeter client accesses a set ...
1
vote
2answers
567 views
How to debug EJB which is deployed on Weblogic
I have application running on Weblogic. And I have another application which connects to one deployed on Weblogic and uses EJB of it. I am successfully connecting to EJB using JNDI, even my debugger ...
4
votes
1answer
109 views
Questions on InitialContext and replica-aware stub caching in weblogic 11g
We have a cluster and deployed with some stateless ejb session beans. Currently we only cached the InitialContext object in the client code, and I have several questions:
1. in the current case, if we ...
0
votes
0answers
46 views
How to create a table relationship with EJB's
I am working with an old EJB-based application that uses a weblogic-cmp-rdbms-jar.xml file to specify CMP behavior. I already have a bean definition that maps to my DTO:
...
0
votes
1answer
371 views
Inject EJB 3.0 in WebLogic Server v10.3
I am having some issues trying to inject a stateless EJB into an Application Client Project. Both the App Client and the EJB are in the same EAR. Using JNDI, I am able to retrieve an instance of the ...
2
votes
0answers
361 views
Work Managers for EJB Parallel Processing
I need to parallelize the asynchronous invocation of several different EJBs, in each one I need to call a transactional method. I'm using a clustered installation of WebLogic as my deployment ...
2
votes
1answer
86 views
Apply around advice to existing EJB
We have a third party application deployed on JBoss and Weblogic. We need to log access to EJBs in this application for audit purposes. Is it possible to apply a transparent service that will log all ...
4
votes
1answer
781 views
EJB weblogic.ejb20.cache.CacheFullException
I am working on one application using EJB1.2. previously running fine but from past few days I am getting following exception
Exception in ejbLoad:: weblogic.ejb20.cache.CacheFullException: ...
0
votes
0answers
172 views
How to call an EJB 3 Webservice in JBoss from EJB 2.0 in Weblogic?
I have exposed an EJB as a web service in JBoss via annotation as following:
@WebService(endpointInterface="com.test.HelloWorld1",serviceName="Greeter1",portName="GreeterPort1")
@Stateless
...
0
votes
1answer
1k views
EJB Injection error
I have an ear file (JEE6) containing one ejb-jar(sample-ejb) file and one war file (sample-web).
Here is the structure:
sample-ear
|----sample-ejb.jar
| |---TestEjb.java ...
2
votes
2answers
522 views
Nested transaction behaviour in EJB
Today I discovered some unexpected behaviour in EJB. I've got MDB with default transaction attribute (REQUIRED) and SLSB with transaction attribute set to REQUIRES_NEW. My MDB calls the SLSB and catch ...
0
votes
0answers
495 views
EJB 2.x + WebLogic 10.3 + Oracle XE 10.2.0
I have tried to write test EJB-application which uses database.
Code:
Bean Class
package calc_bean;
import javax.ejb.EJBException;
import javax.ejb.EntityContext;
import javax.ejb.RemoveException;
...
1
vote
0answers
157 views
Classloading Confusion on Redeploying Application on WebLogic 12c
I have an application which consists of an EJB module, a Web module, and a number of JARs (both my own and third party libs). It is packaged as an EAR file. The libs are in a directory "libs" and the ...
0
votes
0answers
321 views
How to inject an EJB in a Jax-RS in WebLogic
Good day,
I am porting an application from glassfish3.x to weblogic10.3.x. One of the things that I had to do was downgrade from EJB 3.1 to EJB 3 because EJB 3.1 is not yet supported in ...
0
votes
1answer
286 views
Intermittent failures accessing clustered remote EJB via Spring
I have a Spring application which uses a remote stateless EJB hosted in WebLogic.
<jee:remote-slsb id="itemService"
jndi-name="org.example.ItemService"
...
0
votes
2answers
443 views
How to call EJB running on remote machine over internet from standalone client on another machine without JSP/Servlet as intermediate?
Case:
Developing a standalone java client which will run on different locations on multiple user desktops.
Application server(Oracle Weblogic) will be running at centralized location in different ...
1
vote
0answers
140 views
Can JCA resource adapter works in Weblogic without SOA server running?
I am trying to deploy Oracle JCA file adapter into Weblogic to access native file system from my message driven bean. After installing SOA suite, I can find the adapters' RAR files in the SOA ...


