JAAS with EJB

2005-07-19 Thread Amleto Di Salle
Hi all, I am using JAAS with EJB, i.e. inside MyLoginModule i use an EJB in order to authenticate the user. When I try to get the Home Interface, I have the ClassCastException in the PortableRemoteObject.narrow method. I use Tomcat 5.0.28 and Jboss4.0.2 (EJB container) running in two separates

Re: Is there a kind of EJB container in Tomcat?

2005-06-21 Thread David Blevins
On Mon, Jun 20, 2005 at 05:50:47PM -0700, Wendy Smoak wrote: From: Kevin Kang (CSS) [EMAIL PROTECTED] I still have an issue about OpenEJB. 1. Is it an independent EJB Server for Tomcat? Is it necessary to install in Tomcat as a module or something else? This page gives various options

Is there a kind of EJB container in Tomcat?

2005-06-20 Thread Kevin Kang \(CSS\)
Hi, all Who knows whether there is a kind of container for EJB development in Tomcat, or any relative Tomcat sub-project in Apache org. thanks. Best Regards Kevin Kang MSN: [EMAIL PROTECTED] [EMAIL PROTECTED]

Re: Is there a kind of EJB container in Tomcat?

2005-06-20 Thread Gurumoorthy
http://www.openejb.org/ for tomcat ... but why dont you use jboss ? it comes with tomcat - Original Message - From: Kevin Kang (CSS) [EMAIL PROTECTED] To: Tomcat User Mailing List tomcat-user@jakarta.apache.org Sent: Tuesday, June 21, 2005 1:25 AM Subject: Is there a kind of EJB

RE: Is there a kind of EJB container in Tomcat?

2005-06-20 Thread Kevin Kang \(CSS\)
Thanks. I still have an issue about OpenEJB. 1. Is it an independent EJB Server for Tomcat? Is it necessary to install in Tomcat as a module or something else? Jboss is a good suggestion. Best Regards Kevin Kang MSN: [EMAIL PROTECTED] [EMAIL PROTECTED] -Original Message- From

Re: Is there a kind of EJB container in Tomcat?

2005-06-20 Thread Gurumoorthy
well if you ask me I use the following architechture For DEV / SIT / UAT 1. Web container seperate tomcat ( DEV / SIT / UAT using virtual host) 2. EJB container jboss 3.2 ( seperate instance ) 3. Apache front to tomcat ... . For production 1. Web container seperate tomcat ( 3 instance

Re: Is there a kind of EJB container in Tomcat?

2005-06-20 Thread Wendy Smoak
From: Kevin Kang (CSS) [EMAIL PROTECTED] I still have an issue about OpenEJB. 1. Is it an independent EJB Server for Tomcat? Is it necessary to install in Tomcat as a module or something else? This page gives various options for configuring OpenEJB with Tomcat: http://www.openejb.org

Re: Is there a kind of EJB container in Tomcat?

2005-06-20 Thread David Johnson
Have you considered alternatives to EJB? Hibernate is very nice, free, works with POJO's (Plain Old Java Objects), is easier to use than EJB 1 or 2, and is the basis for the upcoming EJB 3 standard. On Tue, 2005-06-21 at 08:25 +0800, Kevin Kang (CSS) wrote: Hi, all Who knows whether

calling ejb on another app server

2005-04-07 Thread Eric J Kaplan
Does anyone have any experience getting a servlet that calls an ejb on a different application server to work, running tomcat 5.0.28? I know we got this to work under 3.x a while ago. At this point I feel like we've tried everything but we always get that name ejb is not bound in this context

RE: calling ejb on another app server

2005-04-07 Thread Neil Upfalow
We do tomcat (servlet) to remote jboss (EJB). Isn't JNDI usually bound to 1099 ? Also, is usually a critical port. Some ISPs block it. Remapping to usually solves this problem. Hope it helps. Sincerely, Neil Upfalow -Original Message- From: Eric J Kaplan [mailto:[EMAIL

RE: calling ejb on another app server

2005-04-07 Thread Eric J Kaplan
sure it's just a configuration switch, but not sure which one. Regards Eric -Original Message- From: Neil Upfalow [mailto:[EMAIL PROTECTED] Sent: Thursday, April 07, 2005 1:30 PM To: 'Tomcat Users List' Subject: RE: calling ejb on another app server We do tomcat (servlet) to remote

RE: calling ejb on another app server

2005-04-07 Thread Neil Upfalow
07, 2005 1:36 PM To: 'Tomcat Users List' Subject: RE: calling ejb on another app server Yes it is. I changed it in my jndi.properties file to see if I would get a different error. It was originally 1099. Given that, and the fact that you have this working (we are also using jboss) do you have any

Re: calling ejb on another app server

2005-04-07 Thread N G
-Original Message- From: Neil Upfalow [mailto:[EMAIL PROTECTED] Sent: Thursday, April 07, 2005 1:30 PM To: 'Tomcat Users List' Subject: RE: calling ejb on another app server We do tomcat (servlet) to remote jboss (EJB). Isn't JNDI usually bound to 1099 ? Also, is usually a critical port

RE: calling ejb on another app server

2005-04-07 Thread Eric J Kaplan
-Original Message- From: N G [mailto:[EMAIL PROTECTED] Sent: Thursday, April 07, 2005 1:54 PM To: Tomcat Users List Subject: Re: calling ejb on another app server If you are not getting some communication exception when you change the port number to the wrong port, it tells me that your

RE: calling ejb on another app server

2005-04-07 Thread Eric J Kaplan
: Thursday, April 07, 2005 1:53 PM To: 'Tomcat Users List' Subject: RE: calling ejb on another app server Another critical jboss element is setting jnp rmi port to something, here it's 34159 I set it in jboss/server/default/conf/jboss-service.xml attribute name=Properties invokerServletPath=http

EJB

2005-03-02 Thread Bogomolov Sergey
Dear Friends, please tell me, whether server TomCat with EJB is able to work Thank you for answer. Best regards, Sergey Bogomolov --- Centre Of New Technologies phone +7 (095) 783-2601 ext. 214 (8-hours HotLine) fax783-2601 mailto: [EMAIL

Re: EJB

2005-03-02 Thread Giuseppe Briotti
== Date: Wed, 2 Mar 2005 19:23:19 +0300 From: Bogomolov Sergey [EMAIL PROTECTED] To: tomcat-user@jakarta.apache.org Subject: EJB == Dear Friends, please tell me, whether server TomCat with EJB is able to work Thank you for answer

Re: EJB

2005-03-02 Thread Lionel Farbos
On Wed, 2 Mar 2005 19:23:19 +0300 Bogomolov Sergey [EMAIL PROTECTED] wrote: Dear Friends, please tell me, whether server TomCat with EJB is able to work no : Tomcat is a servlet container. For EJBs, you can use full J2EE servers like JBoss, JOnAS, WebSphere, WebLogic

EJB in tomcat

2004-11-29 Thread birendar . waldiya
Can EJB's be deployed in tomcat ?? Birendar Singh Waldiya DISCLAIMER: The information contained in this message is intended only and solely for the addressed individual or entity indicated in this message and for the exclusive use of the said addressed individual or entity indicated in

Re: EJB in tomcat

2004-11-29 Thread Peter Mengell
RTFM On Monday 29 November 2004 09:30, [EMAIL PROTECTED] wrote: Can EJB's be deployed in tomcat ?? Birendar Singh Waldiya DISCLAIMER: The information contained in this message is intended only and solely for the addressed individual or entity indicated in this message and for the

RE: EJB in tomcat

2004-11-29 Thread Mark Thomas
Can EJB's be deployed in tomcat ?? No. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: EJB in tomcat

2004-11-29 Thread Phillip Qin
EJB needs EJB container. Tomcat is a servlet/jsp container. However, you can find enterprice beans through naming lookup. -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: November 29, 2004 2:55 PM To: 'Tomcat Users List' Subject: RE: EJB in tomcat Can EJB's

EJB Support

2004-07-20 Thread R K Singh
Hi All, I have been using tomcat-4.1.29 for JSP Servlets. Now I need to use EJB in my JSP pages. How can I do it with Tomcat? Regards, RK Singh - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: EJB Support

2004-07-20 Thread Koon Yue Lam
Hi, Tomcat is a web container, so it can't handle EJB in normal case unlesss you use some 3rd party program. If you need EJB, the most obvious way is to get a J2EE Application Server like JBOSS, WebSphere, WebLogin... Regards

Re: EJB Support

2004-07-20 Thread Nikola Milutinovic
R K Singh wrote: Hi All, I have been using tomcat-4.1.29 for JSP Servlets. Now I need to use EJB in my JSP pages. How can I do it with Tomcat? Well, you can't. Tomcat is not an EJB container. You must get a hold of some EJB container or full J2EE server. Thses I know of: - JBoss (FREEWARE

[OT] EJB QL: using findBy with a legacy class

2004-06-20 Thread Jens Skripczynski
Hi, I have a Problem using find with a serializeable CMP field. (and hope someone here can give me a hint). --- I'm using J2EE 1.3.1 Sun RI and ran into this problem: I have a serializeable class as a CMP Field (Permission) and want to Do a findByPermission EJB query. (example

[OT] EJB Client stops working after awhile.

2004-03-29 Thread Vy Ho
. But I need this to test some EJB clients. I run under Windows XP, Sun AppServer 8, J2EE 1.4. Thank you very much for your consideration. *import javax.naming.Context; import javax.naming.InitialContext; import javax.rmi.PortableRemoteObject; import java.util.*; public class TestClient

Calling EJB in Weblogic from Tomcat 4.1

2004-03-16 Thread Peter Vennel
Hi, Can someone please forward me the link to article which explains how to call EJB in Weblogic from Tomcat 4.1. I tried to do it, but I am getting some errors. Not sure if I am doing it right. Thanks. Peter __ Do you Yahoo!? Yahoo! Mail - More reliable, more

RES: how to deploy ejb in tomcat

2004-01-06 Thread Jose Euclides da Silva Junior - DATAPREVRJ
: segunda-feira, 5 de janeiro de 2004 18:44 Para: Tomcat Users List Assunto: RE: how to deploy ejb in tomcat Howdy, With a lot of praying, perhaps. Tomcat is not an EJB container, and this is in the FAQ. Yoav Shapira Millennium ChemInformatics -Original Message- From: bala magesh

Re: how to deploy ejb in tomcat

2004-01-06 Thread Mike Coughlan
I made the same mistake. This matrix will help to clarify the issue. http://www.theserverside.com/reviews/matrix.jsp The funny thing is that Sun now bundles the J2EE SDK with the Netbeans IDE. The Netbeans IDE in turn comes with Tomcat bundled inside for easy local development. And yet

RE: how to deploy ejb in tomcat

2004-01-06 Thread alan sparago
to deploy ejb in tomcat I made the same mistake. This matrix will help to clarify the issue. http://www.theserverside.com/reviews/matrix.jsp The funny thing is that Sun now bundles the J2EE SDK with the Netbeans IDE. The Netbeans IDE in turn comes with Tomcat bundled inside for easy local

how to deploy ejb in tomcat

2004-01-05 Thread bala magesh
hai to all i expect from any one how to deploy a ejb in tomcat plz reply soon bala _ Gujarat Kite Fest at http://go.msnserver.com/IN/40247.asp www.gujaratkitefest.com

Re: how to deploy ejb in tomcat

2004-01-05 Thread Carlos Cajina - Hotmail
- From: bala magesh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, January 05, 2004 9:35 AM Subject: how to deploy ejb in tomcat hai to all i expect from any one how to deploy a ejb in tomcat plz reply soon bala

EJB Compliance

2003-12-19 Thread Tony Colson
Is Tomcat 4.1 (or even 5.0) EJB Compliant? If so, is it compliant with the EJB 1.2 or 2.0 specification? I can't seem to find appropriate documentation. Also, in the Tomcat docs under the Context element, it doesn't even mention the Ejb element, but, of course, it is provided in the sample

RE: EJB Compliance

2003-12-19 Thread Shapira, Yoav
Howdy, Tomcat is not EJB-compliant. It is a servlet container, not a full J2EE server. You can use JBoss, Jonas, or any of the commercial J2EE servers if you need EJB features. Yoav Shapira Millennium ChemInformatics -Original Message- From: Tony Colson [mailto:[EMAIL PROTECTED] Sent

EJB Compliance

2003-12-18 Thread Tony Colson
This might be a re-post...sorry if it is... Is Tomcat 4.1 (or even 5.0) EJB Compliant? If so, is it compliant with the EJB 1.1 or 2.0 specification? I can't seem to find appropriate documentation. Also, in the Tomcat docs under the Context element, it doesn't even mention the Ejb element

RE: EJB Compliance

2003-12-18 Thread Jerry Birchler
Tomcat does not implement EJB. JBOSS implements EJB on top of tomcat (currently, version 4.1.29). Check it out here: http://www.jboss.org -Original Message- From: Tony Colson [mailto:[EMAIL PROTECTED] Sent: Thursday, December 18, 2003 9:57 PM To: 'Tomcat Users List' Subject: EJB

Re: EJB Compliance

2003-12-18 Thread Kwok Peng Tuck
Tony Colson wrote: This might be a re-post...sorry if it is... Is Tomcat 4.1 (or even 5.0) EJB Compliant? If so, is it compliant with the EJB 1.1 or 2.0 specification? No it is not EJB Compliant. There's no need for it to be. I can't seem to find appropriate documentation. Also

RE: How deploy EJB on Tomcat?

2003-09-15 Thread Goehring, Chuck Mr., RCI - San Diego
Igor, Tomcat has no EJB Container as they call it. I'd use JBoss (www.jboss.org) if I had EJB work to do. Otherwise, one of the commercial products would be needed. Chuck -Original Message- From: Igor Grygorov [mailto:[EMAIL PROTECTED] Sent: Friday, September 12, 2003 10:41 PM

Re: How deploy EJB on Tomcat?

2003-09-14 Thread jerome moliere
Igor Grygorov wrote: Hi Igor Does the Tomcat-IIS support deploing Enterprise Java Beans? No, sorry Can you send me information or links about it, please? No :) have a look to any EJb container : JONAS or JBOSS could be reasonable choices My 2 pieces jerome

How deploy EJB on Tomcat?

2003-09-13 Thread Igor Grygorov
Does the Tomcat-IIS support deploing Enterprise Java Beans? Can you send me information or links about it, please? __ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com

RE: EJB in tomcat

2003-09-09 Thread Jeremy Whitlock
Anson, The one I've used for over a year and a half is OpenEJB. It's an EJB container and is 100% pluggable into Tomcat. Here is the url: http://openejb.sourceforge.net If you need any help, let me know. Thanks, Jeremy -Original Message- From: zeallousbigpond.net.au

RE: Good sites that show you EJB stuff

2003-09-09 Thread Kal Govindu
www.ejbtut.com kal -Original Message- From: Anson Zeall [mailto:[EMAIL PROTECTED] Sent: Monday, September 08, 2003 6:49 AM To: Tomcat Users List Subject: Good sites that show you EJB stuff Hi, I want to know if anyone, could show me, or recommend me any sites that show you how

Good sites that show you EJB stuff

2003-09-08 Thread Anson Zeall
Hi, I want to know if anyone, could show me, or recommend me any sites that show you how to use JavaBeans and what the Beans are for? Regards, Anson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

EJB in tomcat

2003-09-08 Thread zeallousbigpond.net.au
hi, I would like to ask, can Tomcat work with Enterprise Javabeans? 'cause I read from the Java site...it says that we need a BEA server? Is it necessary? Or tomcat it self already has those libraries. Anson - To

Re: EJB in tomcat

2003-09-08 Thread Filip Hanik
there are plenty of open source EJB containers, Tomcat is not one of them. www.jboss.org has been a popular choice Filip - Original Message - From: zeallousbigpond.net.au [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 08, 2003 5:17 PM Subject: EJB in tomcat hi

Re: EJB in tomcat

2003-09-08 Thread Marco Tedone
, September 09, 2003 1:17 AM Subject: EJB in tomcat hi, I would like to ask, can Tomcat work with Enterprise Javabeans? 'cause I read from the Java site...it says that we need a BEA server? Is it necessary? Or tomcat it self already has those libraries. Anson

InvocationTargetException calling EJB

2003-08-14 Thread Juraj . Lenharcik
Hi, I use a AXIS-webservice (deployed on TC outside Jboss) to call an EJB (Jboss). I get on this line an InvocationTargetException : connProps.put(InitialContext.INITIAL_CONTEXT_FACTORY,factory); connProps.put(InitialContext.PROVIDER_URL, location

invocing EJB from Tomcat

2003-08-07 Thread Juraj . Lenharcik
Hi, does anyone knows, whats needed to invoce EJB from tomcat? Specially where to put the libraries for the contextfactory (under jboss jnp-client.jar). thanks, Juraj - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

WG: InvocationTargetException calling EJB

2003-08-06 Thread Juraj . Lenharcik
: InvocationTargetException calling EJB Hi, I use a AXIS-webservice (deployed on TC outside Jboss) to call an EJB (Jboss). I get on this line an InvocationTargetException : connProps.put(InitialContext.INITIAL_CONTEXT_FACTORY,factory); connProps.put(InitialContext.PROVIDER_URL

Has anyone managed to get Tomcat 4.1.x to make EJB calls to Weblogic 8?

2003-07-21 Thread Will Hartung
not going well at all. What is interesting at this stage is that our default startup servlet runs and can get access to the EJB server (it caches a bunch of stuff from the EJB side on startup). I've already got select portions of the weblogic.jar from both in shared/lib and on the system classpath

Re: TOMCAT with EJB??

2003-07-08 Thread David Blevins
On Mon, Jul 07, 2003 at 10:25:26PM -0700, vipul viz wrote: HI all I am using Tomcat 4. as an application server but it doesn't support EJB could any one tell me which is the best EJB Server available in the category of Open cource. i have found 2-3 like Jboss,OpenEJB , Jonas. but not sure

Re: TOMCAT with EJB??

2003-07-08 Thread Ray Hunter
On Mon, 2003-07-07 at 23:25, vipul viz wrote: HI all I am using Tomcat 4. as an application server but it doesn't support EJB could any one tell me which is the best EJB Server available in the category of Open cource. i have found 2-3 like Jboss,OpenEJB , Jonas. but not sure which one

TOMCAT with EJB??

2003-07-07 Thread vipul viz
HI all I am using Tomcat 4. as an application server but it doesn't support EJB could any one tell me which is the best EJB Server available in the category of Open cource. i have found 2-3 like Jboss,OpenEJB , Jonas. but not sure which one to use for some commercial development

TomCat and WebSphere as EJB container

2003-06-30 Thread brainSucka
Hi All! I got a pretty small and hopfull easy question (for you). I need to use Tomcat with WebSphere Application Server Enterprise Edition. The WASE should be EJB-Container for my WebApp. The problem is, that i dont find any good documentation, how to use Remote EJBs in Tomcat. In added some

Re: book on EJB / [ANN] Getting Started with EJB Technology

2003-04-02 Thread Joe Sam Shirah
Hi Chris, I recently finished writing a fairly complete EJB tutorial, which was posted yesterday as the weekly feature for both developerWorks ( www.ibm.com/developerworks ) and the developerWorks Java zone ( www.ibm.com/developerworks/java ). Getting Started with EJB Technology

RE: book on EJB

2003-04-01 Thread Jeremy Whitlock
: Chris Shen [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 4:45 PM To: [EMAIL PROTECTED] Subject: RE: book on EJB Thanks for the recommendations, guys. i will be sure to check it out. What do you guys think of JBoss just out of curiosity? From: Jeremy Whitlock [EMAIL PROTECTED] Reply

Re: book on EJB

2003-04-01 Thread Anthony Marlowe
via Tomcat with very minor configuration. If you would like any help setting it up, let me know. Later, Jeremy -Original Message- From: Chris Shen [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 4:45 PM To: [EMAIL PROTECTED] Subject: RE: book on EJB Thanks for the recommendations

book on EJB

2003-03-31 Thread Chris Shen
i am an intermediate lvl jsp/servlet developer and would like to learn ejb. i am looking for a good tutorial/reference for novice/intermediate ejb developers. any suggestions? Chris _ STOP MORE SPAM with the new MSN 8 and get 2

RE: book on EJB

2003-03-31 Thread Dmitry Sklyut
www.theserverside.com Download Ed Roman's book -Original Message- From: Chris Shen [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 6:20 PM To: [EMAIL PROTECTED] Subject: book on EJB i am an intermediate lvl jsp/servlet developer and would like to learn ejb. i am looking

RE: book on EJB

2003-03-31 Thread Jeremy Whitlock
Chris, I second that. It's a great book. You'll need an EJB container as well and I suggest OpenEJB. It can be found here: http://openejb.sourceforge.net It integrates tightly into Tomcat and is very simple to install/configure/use. I'd love to help you out with it if you go

RE: book on EJB

2003-03-31 Thread Chris Shen
Thanks for the recommendations, guys. i will be sure to check it out. What do you guys think of JBoss just out of curiosity? From: Jeremy Whitlock [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: book on EJB Date: Mon, 31

EJB from Tomcat

2003-02-13 Thread David Blevins
All, I wrote some time ago about the Tomcat/OpenEJB integration, which allows Tomcat users to start using EJBs from Tomcat without having to ditch your Tomcat installation and configuration. Just like Tomcat is typically plugged into other app servers, OpenEJB is a plug-in for Tomcat. Plugging

Re: EJB from Tomcat

2003-02-13 Thread Andy Richards
Is this easier than using the jboss tomcat bundle? i will read the article when i get a chance andy On Thu, 2003-02-13 at 14:54, David Blevins wrote: All, I wrote some time ago about the Tomcat/OpenEJB integration, which allows Tomcat users to start using EJBs from Tomcat without having to

RE: EJB from Tomcat

2003-02-13 Thread David Blevins
Having never used the jboss tomcat bundle, I wouldn't be able to say. It is very different though. One thing different about this integration is that it isn't a bundle, it's the ability to add EJB functionality into any Tomcat version you want via a plug-in. Which means you don't have

Re: EJB from Tomcat

2003-02-13 Thread Will Hartung
From: David Blevins [EMAIL PROTECTED] Sent: Thursday, February 13, 2003 6:54 AM Subject: EJB from Tomcat All, I wrote some time ago about the Tomcat/OpenEJB integration, which allows Tomcat users to start using EJBs from Tomcat without having to ditch your Tomcat installation

RE: EJB from Tomcat

2003-02-13 Thread David Blevins
Right, this is an EJB container that is usable in Tomcat. The particularly neat thing is that the EJB container can run embedded *inside* the same VM as Tomcat. You can even configure OpenEJB to not marshal calls to EJBs, basically treating your remote interfaces as EJB 2.0 Local interfaces

Re: Problem in Tomcat Servlet calling JBoss EJB running on a different machine

2002-11-12 Thread Giuseppe Sorce
disappears ... tomcat isn't running. Any idea? Thanx in advance Giuseppe Sorce ITALY - Original Message - From: Anthony Geoghegan [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, November 11, 2002 3:16 PM Subject: Re: Problem in Tomcat Servlet calling JBoss EJB

Problem in Tomcat Servlet calling JBoss EJB running on a different machine

2002-11-11 Thread Giuseppe Sorce
Scenario: * Client Development Machine Win2K prof. NetBeans IDE 3.4 Tomcat 4.0 (integrated in NetBeans) JDK 1.3.1 * Server EJB Container Linux RedHat 7.1 JDK 1.3.1 jboss-3.0.3_tomcat-4.1.12 * Test Application Very simple, look at http://www.adwanted.com/jboss/ for details - Only 1

Re: Problem in Tomcat Servlet calling JBoss EJB running on a different machine

2002-11-11 Thread Anthony Geoghegan
] Sent: Monday, November 11, 2002 1:53 PM Subject: Problem in Tomcat Servlet calling JBoss EJB running on a different machine Scenario: * Client Development Machine Win2K prof. NetBeans IDE 3.4 Tomcat 4.0 (integrated in NetBeans) JDK 1.3.1 * Server EJB Container Linux RedHat 7.1

How to setup and lookup an EJB under JBoss 3.0 with tomcat4.03 embedded

2002-08-17 Thread kam leung
Hi, I had searched for how to set the web.xml and server.xml for looking up a session bean in the Tomcat 4.1 document page, but did not find something to close to we I needed. Can someone point me to a how-to document or example that shows how to looking up a session bean with JNDI (how-to

Re: Enterprise Java Beans (EJB)

2002-08-15 Thread Ned Wolpert
EJB provides a way to easily encapsulate business logic and reduce complexity by moving some difficult functionality/designs into deployment instead of development. Transaction requirements defined in the deployment of the EJB beans as opposed to part of the development of the EJB beans

Re: Enterprise Java Beans (EJB)

2002-08-15 Thread V. Cekvenich
Consider draping a DAO around your persistence. This way you can replace EJB with JDO or RowSet, should you need to Ex DAO interface: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/basicportal/src_05d/basicPortal/src/org/apache/commons/DAO/BasicDAO.java?rev=1.1.1.1content-type=text/vnd.viewcvs

Re: Enterprise Java Beans (EJB)

2002-08-15 Thread Ned Wolpert
When you say 'replace EJB with JDO' you mean replacing EJB's entity beans with DAO, right? (As opposed to session and message beans) (I've never used DAO, just TopLink and CastorJDO instead of Entity beans or as BMP entity beans) On Thu, 2002-08-15 at 08:11, V. Cekvenich wrote: Consider

Re: Enterprise Java Beans (EJB)

2002-08-15 Thread V. Cekvenich
ways. You could have a DAO implementation using EJB or Castor or Jakrta OJB, or RowSet (I use RowSet). If you have an interface, such as DAO pattern, you could change the implementation and not affect the rest of your application. So ... make your persistance/CRUD and interface. This lets you

RE: Enterprise Java Beans (EJB)

2002-08-15 Thread Jacob Hookom
| -Original Message- | From: V. Cekvenich [mailto:[EMAIL PROTECTED]] | Sent: Thursday, August 15, 2002 10:28 AM | To: Tomcat Users List | Subject: Re: Enterprise Java Beans (EJB) | | No | Here is what: | Bean (formBean in Struts for example) delegate to DAO for CRUD | (Insert,Read

Re: Enterprise Java Beans (EJB)

2002-08-15 Thread V. Cekvenich
you get the source code? I have 3 clients, one with 40,000 concurrent users using DAO/w RowSet implementation w/Struts. (EJB can't scale I found beyond very small) Open Source Row Set implementation: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/basicportal/src_05d/basicPortal/src/org/sourceforge

RE: Enterprise Java Beans (EJB)

2002-08-15 Thread TOMITA_ALEX_NONLILLY
Thanks for the information !!... John Naldoza [EMAIL PROTECTED] 14/08/2002 10:20 p.m. Please respond to Tomcat Users List To: Tomcat Users List [EMAIL PROTECTED] cc: Subject:RE: Enterprise Java Beans (EJB) Hi, Perhaps you may want to look

Re: Enterprise Java Beans (EJB)

2002-08-15 Thread Ned Wolpert
replace all of EJB, just EJB's entity beans, right? If you have an interface, such as DAO pattern, you could change the implementation and not affect the rest of your application. So ... make your persistance/CRUD and interface. This lets you change how it does CRUD. You should be able

Re: Enterprise Java Beans (EJB)

2002-08-15 Thread V. Cekvenich
?) persistance. Any bean that needs persistance should talk trough DAO. (and dao could be done using Enity beans, or rowset, etc.). In your case, if you use session beans than right. So, it doesn't replace all of EJB, just EJB's entity beans, right? However if you find EJB's slow and not scalable

Re: Enterprise Java Beans (EJB)

2002-08-15 Thread Ned Wolpert
However if you find EJB's slow and not scalable, than you would implement DAO another way. But since you would pull out Enity beans out, than there is not much reason to keep Session beans. You could just put regular form bean or java bean in session in some cases and get rid of EJB server

Enterprise Java Beans (EJB)

2002-08-14 Thread TOMITA_ALEX_NONLILLY
Hi Does Tomcat support EJB?. if not, is there a project to migrate tomcat to support EJB?... it will be a very nice feature... Alex

RE: Enterprise Java Beans (EJB)

2002-08-14 Thread John Naldoza
Hi, Perhaps you may want to look into Jboss+Tomcat (http://www.jboss.org) :) Cheers, John Clark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 7:01 AM To: Tomcat Users List Subject: Enterprise Java Beans (EJB) Hi Does

Re: Enterprise Java Beans (EJB)

2002-08-14 Thread Nikola Milutinovic
Does Tomcat support EJB?. No, it is not the task of Tomcat. if not, is there a project to migrate tomcat to support EJB?... it will be a very nice feature... Other servers, like JBoss, are EJB containers, Tomcat can connect/integrate with them. There is a version of JBoss

Re: Enterprise Java Beans (EJB)

2002-08-14 Thread Josh
Don't suppose anybody can send me a pointer as to what EJB and Jboss actually achieve? All i managed to glean from their website were some pretty 3d variations on the usual our product in the middle and some arrows diagrams. -Josh Rimmer, real dumplings, proper dumplings when they're properly

Re: Enterprise Java Beans (EJB)

2002-08-14 Thread Nikola Milutinovic
Don't suppose anybody can send me a pointer as to what EJB and Jboss actually achieve? All i managed to glean from their website were some pretty 3d variations on the usual our product in the middle and some arrows diagrams. My knowledge of EJB is informational. EJB as are JEE

EJB reference not bound

2002-07-11 Thread Carlton Lo
I'm running JBoss 3.0.1 with Tomcat 4.0.4 bundle. I have successfully deployed a EJB to Jboss and created 2 clients (java JSP client). For some reasons, I'm able to run the java client but when I try the JSP client (served by Tomcat) I get this error message javax.servlet.ServletException

Re: EJB

2002-07-04 Thread RNivas
My full favour for JBOSS. Its Ultimatemore...and more.. RN - Original Message - From: Chris Shen [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, July 02, 2002 2:03 AM Subject: EJB does anyone have any recommendation on an open source ejb container...? i am

RE: EJB

2002-07-02 Thread Dmitry ...
to, or perhaps other docs online? Thanks. --- James Ward [EMAIL PROTECTED] wrote: JBOSS is amazing!!! www.jboss.org Have fun! -James -Original Message- From: Chris Shen [mailto:[EMAIL PROTECTED]] Sent: Monday, July 01, 2002 2:33 PM To: Tomcat Users List Subject: EJB does anyone

EJB

2002-07-01 Thread Chris Shen
does anyone have any recommendation on an open source ejb container...? i am currently running tomcat and am looking for an open source ejb implementation...thanks! Chris -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: EJB

2002-07-01 Thread James Ward
JBOSS is amazing!!! www.jboss.org Have fun! -James -Original Message- From: Chris Shen [mailto:[EMAIL PROTECTED]] Sent: Monday, July 01, 2002 2:33 PM To: Tomcat Users List Subject: EJB does anyone have any recommendation on an open source ejb container...? i am currently running

Ejb in server.xml (Context)

2002-05-15 Thread Andrew
Hi, I have a very simple question: is there optimal way to declare ejbs for apps if tomcat is standalone container- ejb container located on other machine!!!.And if yes(please example;) what roles are playing by Ejb element in Context(server.xml) and ejb-ref/ejb-local-ref(web.xml

Re: Ejb vs jsp

2002-05-07 Thread Nikola Milutinovic
would you build a EJB web application *without* JSP? :-) Anyway, it is really a rule of thumb and your general mood. Even now, I use regular Beans which do preety much the same job as EJB, only simplified. I haven't gotten JBoss up yet, but even with a very simple example I find EJBs appealing

Ejb vs jsp

2002-05-06 Thread Vincent Stoessel
Hello, Because I am curious about how these technologies are used in the real world. I would like to know how do you professionals use as your rule of thumb wether or not you are going build web based application using Enterprise Javabeans or a standalone jsp applications. Thanks in advance.

Re: Ejb vs jsp

2002-05-06 Thread Daniel Hinojosa
applications. Thanks in advance. I use them both. EJB are used to model information that is based on a db or other storage services. I use the JSP as a view to dynamically create HTML. -- Daniel Hinojosa Java XML: Consultant | Developer | Instructor P.O. Box 4675 Albuquerque, NM 87196-4675

RE: Ejb vs jsp

2002-05-06 Thread Kim Albee
We use JSP with our Java-based content management and collaboration engine, which is RMI based, not EJB based. The design of the java beans in our persistent and manager layer could all be modified to run inside of an EJB container, however, then there is the added expense of an Application

struts + jndi + ejb (on iAS)

2002-05-04 Thread Stan Burnitt
Hello, I'm a struts-newbie, but have worked with WebObjects/Model2 for many years. So I hope I'm not asking a dumb question here ;-) I've got a simple struts action, and a simple ejb. They work fine until I try to access the bean on iAS, from Tomcat. I want to access the bean via

Re: JNDI/EJB: looking for some references

2002-03-26 Thread alberto bolchini
Hi! Thanks for the suggestions. I'm actually able to invoke the remote EJB setting either the properties you mentioned in the call of the codenew InitialContext/code or setting them in the codeSystem/code properties and then calling codenew InitialContext/code without parameters ; anyway, I

Re: JNDI/EJB: looking for some references

2002-03-26 Thread Jeff Larsen
Hi! Thanks for the suggestions. I'm actually able to invoke the remote EJB setting either the properties you mentioned in the call of the codenew InitialContext/code or setting them in the codeSystem/code properties and then calling codenew InitialContext/code without parameters ; anyway

JNDI/EJB: looking for some references

2002-03-25 Thread Alberto Bolchini
Hi all. I'm trying to find some references on using an EJB from a remote J2EE Container (JBoss). I'v deployed the .war in my Tomcat 4.0.2 including JBoss's client jars in WEB-INF/lib and have in my web.xml mentioned the ejb-ref as follows ejb-ref descriptionNation/description

  1   2   3   >