Log in to follow, share, and participate in this community.
Thread EJB3 and JBoss client java.io.InvalidClassException
EJB3 and JBoss client java.io.InvalidClassExceptionHello, I am relativly new to Enterprise development and especially EJB3, I have looked everywhere over the internet for a solution to this but to no avail. I'm using JBoss 4.2.2GA. Anyway, I deploy my entity and sessi...
Thread How to configure EJB3 for JBoss 4.x for MyEclipse
How to configure EJB3 for JBoss 4.x for MyEclipsehi all has anyone managed to runa simple ejb3 example using MyEclipse for Jboss 4.x. I have problems in configurations of Jboss to run ejb3. many thanks Amir
Thread Doubt about EntityManager.getResultList result
Doubt about EntityManager.getResultList resultHi everyone, I have a doubt about the result of a query. I have a table like User(id,name,surname,phone) and i want to query this table in my EJB in this way: List res = em.createQuery("select u.id, u.name from User ...
Spawning threads in server processHi folks, I have a few design questions about creating threads in the main JBoss server process. I know the J2EE spec prohibits spawning new threads from EJBs but what about from normal business layer classes running...
Thread How can i invoke Servlet class file from JSP?
How can i invoke Servlet class file from JSP?Hi, I am new user. I have a doubt. Please help me anyone person. How can i invoke Servlet class file from JSP? Advance Thank you, K.S.Kumar
Thread Integrate multiple JVM's with single JBoss instance
Integrate multiple JVM's with single JBoss instanceAnybody knows how to integrate multiple JVM?s with single JBoss instance on a single physical machine. I want to deploy the application in multiple JVM?s to handle concurrent request and the concurrency issue of the ...
Thread Deploying Sun new Pet Store to JBoss442GA ?
Deploying Sun new Pet Store to JBoss442GA ?Hi, is it possible to deploy succesfully that new reference Pet Store version with AJAX-stuff, mashups, etc to my just installed JBoss 4.4.2.GA ? I've just started with JBoss.. Thanks for comments, Kai.Lahteenmaki@wel...
Executing Native CommandsHi, We are using some Stateless session beans to execute some native commands. ( through Runtime.getRuntime().exec() ). But i feel we're raping the EJB spec in every possible way with doing this. The commands we're ...
Design for heavy processingHi all experts. I'm about to design a "price-finder" application that read prices from a website. I have about 10 000 URLs to products in a database right now. Some URLs needs to be read every 5 minutes, others ever...
New JobTeam Leader ? Cambridge Excellent opportunity for a team leader to supervise a team of engineers and guide them from a technical perspective to design, implement and maintain Client ? Server based configuration and mo...
Sharing a Connection between EJB'sFor example: I have 2 stateless EJBs: EJB1 and EJB2 and EJB1.xxx() calls EJB2.yyy(). How can I share the same connection between these 2 EJB's without using Transactions and without using Entities? The problem is tha...
Concurent creating problemI'm programming a system where people can submit "tasks" for evaluating. When a person submit a task, the request go into a JMS queue, and later on a MDB is processing the task. Task is an entity. If there is no tas...
DAO and Entity BeansI am using a DAO Insert and trying to load the Remote Entity bean for the record which is just created under a single transaction as below public MyEntity createSomeInfoMethod() { MyEntityHome entityHome = lookUp("M...
Thread EJB3 business logic in entity beans as opposed to in session
EJB3 business logic in entity beans as opposed to in sessionI am currently working a migration of our system to EJB for several reasons, mainly to be able to use clustering to achieve higher performance and availability. Now, our current system is very service oriented (throu...
Thread Deploying a simple HelloWorld EJB3 under JBoss
Deploying a simple HelloWorld EJB3 under JBossI would like to deploy a simple EJB3 HelloWorld example as described in MasteringEJB 4th ed. I'm always getting the error javax.naming.NameNotFoundException: org.os.ejb3.Hello not bound. Could anyone explain the ste...
Thread Integrate multiple JVM's with single JBoss instance
Integrate multiple JVM's with single JBoss instanceAnybody knows how to integrate multiple JVM?s with single JBoss instance on a single physical machine. I want to deploy the application in multiple JVM?s to handle concurrent request and the concurrency issue of the ...
Thread any pointers on how to automate ear versioning?
any pointers on how to automate ear versioning?We have an EAR that consists of 3 eclipse projects. I would like to know if anyone has tried to "derive" some sort of version number for every build that can be applied to the ear. Eclipse versions their IDE in an in...
Integrating servicesI have one aplication (.ear) who use two services. Now I´m developing other aplication and I want to use the services of the first aplication that I developed. Wich the best way to develop this new aplication an...