weblogic « EJB « JPA Q&A





1. Storing username that last modified database row via EJB3.0 and JPA    stackoverflow.com

I'd like to store username that has last modified table row to as a field in every table. I have following setup: an user logs in, web layer calls some EJB 3.0 ...

2. ClassNotFoundException deploying webservice on Weblogic 10.3 with Hibernate    stackoverflow.com

I have a project with a EJB implementing a JWS Webservice, like this:

@Stateless
@Remote(WebServiceTest.class)
@WebService(
 serviceName="TestService",
 name="TestName"
)
public class WebServiceTestImpl implements WebServiceTest {
 @Override
 @WebMethod(operationName="hello")
 public String hello() {
  return "Hello World!";
 }
}
I ...

3. Deploying EJB and Hibernate on Weblogic    forum.hibernate.org

Hi! I'm using Hibernate 3.1 on Weblogic 8.1 SP 2. I have created an EJB that does nothing except to create an instance of my manager class for storage in memory on EJB creation. It deploys with no errors and successfully creates and stores the instance. However, the problem arises when I try to access the data. It throws a NoClassDefFoundError: ...