1. EJB or Servlet - how to add a 'kill switch' to force a process/thread to stop stackoverflow.comHey all, Kind of an open question that I run into once in a while -- if you have an EJB stateful or stateless bean, or possibly a direct servlet process, that ... |
2. pass value from java action class to ejb? stackoverflow.comi have developed one web application. I put session id in hashtable. I want to use this hash table in ejb. Means i want to use this login session in ejb. Is ... |
3. multi threaded servlet; single threaded ejb stackoverflow.comIn a traditional n tier web app with servlets for web layer and ejbs(2.0) for biz layer, what is the rationale behind making the servlet model multi threaded and the ejb ... |
4. Noob JSP + Servlet + EJB information for building J2EE simple web project stackoverflow.comI am new to Java. Covered basics and now jumping into making a simple web project. Project with functionality as below 1- CSS and Javascript use. 2- Managing user information (Add, Update, Delete, ... |
5. My JSP is using EL its not getting the getLocation property stackoverflow.comThe class 'Beans.SidePanelBean' does not have the property "getLocation" is the exact error. I'm follow the naming convention accordingly (I think) and I am still getting this error. My JSP
My ... |
6. Connect JSP and EJB stackoverflow.comHow can I connect JSP pages and Enterprise JavaBeans?
|
7. Is it possible to activate a servlets doGet() from an EJB stackoverflow.comI have a unique scenario where I'm using a servlet to dynamically output to the browser with calls to a database. The content type is RSS-XML so that it can ... |
8. ejb servlet bytes.comYou probably also should look at your Servlet as a Bean, therefore, you would not add a Bean into a Servlet but could make a Servlet work as a Bean. In ... |
9. how to create seam servlet with EJB entitymanager? seamframework.orgHi,I try to create fully functional seam servlet with EJB3.0 em.I read this artice: http://seamframework.org/Documentation/ReplacingServletsWithSeamResourcesCan anybody point step-by-step how to get what I want?1. I created class:`@Scope(ScopeType.APPLICATION)@Name("myResource")@BypassInterceptorspublic class MyResource extends AbstractResource { @Override public String getResourcePath() { return "/myresource"; } @Override ... |
10. servlet ejb communication coderanch.com |
11. JSP - SERVLET-EJB-SERVLET-JSP coderanch.com |
12. JDBC in Servlets or EJB coderanch.comomeone told me that in java the databases can be retrieved and updated more properly in EJB as compare to Servlets. you can use an EJB inside a servlet or use plain JDBC from within a Servlet , so these two are different stuff. servlet is in use for processing request that comes across the web and EJB is an standard ... |
13. Set Up Needed for Servlets, EJB, JSP coderanch.com |
14. Architecture: Web server-Servlet/JSP Container-EJB Container coderanch.com |
15. Hosting JSP/Servlets/EJB - Available? coderanch.com |
16. Make SERVLET talk to EJB coderanch.comHi! I have started working on an application where my SERVLET retrieves parameters from an html page, transfers them to the ejb container, then it receives results from the Session Bean through the container, and Publishes back the result as an html file, to the end user. Now the problem is, while I write the source code for the Servlet i.e ... |
17. iPlanet:EJB:SERVLET(Urgent) coderanch.com |
18. Servlet - EJB - JSP coderanch.com |
19. JSP-Servlet-EJB architectures coderanch.comHi all, I am working on my first J2EE project. There are other developers on my team who have more experience with J2EE than me but I still have doubts as to the direction that we are taking. I would like to get feedback about some design issues. Say I wanted to do a search for customers. What are the pros ... |
20. With EJB why use Servlets. coderanch.com |
21. servlet or ejb implementation coderanch.com |
22. EJB & SERVLET coderanch.com |
23. EJB v/s Servlets coderanch.com |
24. using servlets or ejb coderanch.comHi, Why i asked tht questions regarding ejb v/s servlets is because i have this one project where i have a transaction table where user payments are taken and 2 tables r updated.The no. of transactions basically depend on user payments in a day.It can be from 10-30 in a day.And data can be entered into the system by multiple users ... |
25. ejb or servlets coderanch.com |
26. about servlet and ejb coderanch.com |
27. Servlet or EJB design question for Online Store coderanch.comI'm sure this question gets asked all the time, so please bear with me. I am creating an online store for our company. As part of the design, I wanted to seperate the admin/back-office functions into a seperate webapp. The admin webapp will be located on our local company intranet. My question is about how to best design this in terms ... |
28. Using servlets with EJB coderanch.com |
29. jsp,servlet and ejb coderanch.com |
30. servlet & EJB coderanch.com |
31. create, read and write ms excel through j2ee( jsp, ejb, servlets) coderanch.comHi... Can anyone tell me how to create,read and write to microsoft excel sheets... I need to generate reports and graphs from a database to an excel spread sheet fast and effeciantly through a web application... Are there any api's available... and is it feasible or a good idea to create reports through ms excel or should i conform to a ... |
32. JSPs, Servlets and EJB's?? coderanch.com |
33. creation of servlets and EJBs what to use? V Cafe? V InterDev? Does it matter? coderanch.comTo do only JSP and servlets, you don't strictly speaking, need an 'app' server, if you treat 'application server' to mean (as I think most people still do?) an EJB container. Tomcat is a web-container (or 'servlet runner') and is also built-in to JBuilder. It is the reference implementation and also fairly easy to use. If you're using the non-free version ... |
34. Servlets - JSPs - EJB coderanch.com |
35. Servlet and ejb coderanch.com |
36. Can JSP and Servlets do everything doing by EJB coderanch.com |
37. Servlets or EJB ? coderanch.com |
38. Data transfer fro ejb to servlet coderanch.com |
39. EJB versus servlet coderanch.com |
40. EJB and JSP/servlet hosting coderanch.com |
41. How to connect Servlets and EJBs coderanch.com |
42. Activating a Trigger from a Servlet or EJB forums.oracle.com |
43. Why there are restrictions on EJB, but not on Servlet? forums.oracle.comThe primary reason I can think of why a servlet is not treated like an EJB is that a servlet is not an EJB. Perhaps you can explain why you have this question in the first place; i.e., what is it about a servlet leads you to believe it should have the same "restrictions" as an EJB? ~ |
44. Noob JSP + Servlet + EJB information for building J2EE simple web project. forums.oracle.com |