RE: How to start EJB development using Orion?

2001-04-09 Thread Kemp Randy-W18971

In addition, check the tutorial out at www.4degreez.com/intro_part_1.html
and www.4degreez.com/intro_part_2.html. 

-Original Message-
From: SCOTT FARQUHAR [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 09, 2001 12:44 AM
To: Orion-Interest
Subject: Re: How to start EJB development using Orion?


references that might be a help include:

Sun's j2ee specification
Servlet 2.2 spec
JSP 1.1 spec

I find that tutorials at
www.jollem.com 
www.orionsupport.com 
are excellent.

AFAIK all you need to do to inform orion of the existance of those files is
to edit server.xml, to point to your root dir.
eg.

 application name="taglib-test" path="..\applications\taglib-test"
/


You need application.xml in meta-inf.  This is what you must inform orion
of  Application.xml contains references to your modules.

eg.
application
 display-nameTag Tutorial/display-name
 module
  web
   web-uritaglib-test-web/web-uri
   context-root//context-root
  /web
 /module
   module
  ejbejbdemo-ejb/ejb
   /module
/application


And the directory structure

/
/meta-inf/
/meta-inf/application.xml
/taglib-test-web/
/taglib-test-web/web-inf/
/taglib-test-web/web-inf/web.xml
/ejbdemo-ejb/
/ejbdemo-ejb/meta-inf/
/ejbdemo-ejb/meta-inf/ejb-jar.xml



This is a quick overview (and may contain errors and omissions)  Try the
tutorials on orionsupport and jollem.







 [EMAIL PROTECTED] 04/09/01 12:50pm 
Hi all --

   I'm new to EJB development, and am trying to start with Orion Server, but
I'm having the hardest time figuring out how to even begin.  I've written a
bean and all the interfaces, which are all sitting in class files in the
c:\java directory.  I created a META-INF directory off of that, and created
an ejb-jar.xml file in there.
   However, I can find *no* information about how to inform Orion about the
existence of these files.  I was trying to follow
http://www.orionserver.com/tutorials/ejbtutorial.html, but it references a
config/ejb.xml file which simply doesn't exist.  I'm guessing it's old.
   Is there a simple step-by-step explanation of which files need to be
modified, in what order, and what else I need to do to start doing
development work?  Am I better off just using a better (i.e. better
supported and more completely documented) appserver?

-- Chris







Re: How to start EJB development using Orion?

2001-04-09 Thread Jeff Hubbach

Have you put all your ejb classes, along with the META-INF/ejb-jar.xml file
into a jar yet? After you do that, you have to add an ejb-module.. line to
your application.xml in the config directory. Look at the documentation on
application.xml to find out what parameters you must specify. The best thing to
do in my mind would be to get a good EJB book and walk through some of the
examples. Oreilly's Enterprise JavaBeans 2nd edition is great.

Jeff.

Chris Bergstresser wrote:

 Hi all --

I'm new to EJB development, and am trying to start with Orion Server, but
 I'm having the hardest time figuring out how to even begin.  I've written a
 bean and all the interfaces, which are all sitting in class files in the
 c:\java directory.  I created a META-INF directory off of that, and created
 an ejb-jar.xml file in there.
However, I can find *no* information about how to inform Orion about the
 existence of these files.  I was trying to follow
 http://www.orionserver.com/tutorials/ejbtutorial.html, but it references a
 config/ejb.xml file which simply doesn't exist.  I'm guessing it's old.
Is there a simple step-by-step explanation of which files need to be
 modified, in what order, and what else I need to do to start doing
 development work?  Am I better off just using a better (i.e. better
 supported and more completely documented) appserver?

 -- Chris

--
Jeff Hubbach
Internet Developer
New Media Designs, Inc.
www.nmd.com







RE: How to start EJB development using Orion?

2001-04-09 Thread Chris Bergstresser

   I tried.  It's been unreachable for me for the past couple days.  I was
hoping it'd come back up with the start of the work week, but no luck.

-- Chris

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Mike
 Cannon-Brookes

 See http://www.jollem.com for two very useful primers for you.





Re: How to start EJB development using Orion?

2001-04-09 Thread Stan Ng

bummer... seems like jollem.com has recently changed their website... i've
been meaning to mirror the primers too... things just got too busy...
there's a (rather dated) copy available at
http://www.znerd.demon.nl/orion-primer/#intro and google has cached versions
of it available.  if anyone can point me to the most recent versions, i'll
make a copy of them.


- Original Message -
From: "Chris Bergstresser" [EMAIL PROTECTED]
To: "Orion-Interest" [EMAIL PROTECTED]
Sent: Monday, April 09, 2001 5:03 PM
Subject: RE: How to start EJB development using Orion?


I tried.  It's been unreachable for me for the past couple days.  I was
 hoping it'd come back up with the start of the work week, but no luck.

 -- Chris

  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED]]On Behalf Of Mike
  Cannon-Brookes
 
  See http://www.jollem.com for two very useful primers for you.






RE: How to start EJB development using Orion?

2001-04-09 Thread SCOTT FARQUHAR

Try google cache.

Apart from the downloaded bits - it should all be there.

(I don't have internet access or I'd post the link)

 [EMAIL PROTECTED] 04/10/01 10:03am 
   I tried.  It's been unreachable for me for the past couple days.  I was
hoping it'd come back up with the start of the work week, but no luck.

-- Chris

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED]]On Behalf Of Mike
 Cannon-Brookes

 See http://www.jollem.com for two very useful primers for you.







RE: How to start EJB development using Orion?

2001-04-09 Thread Kemp Randy-W18971

Another excellent general tutorial set is found at 
http://www.execpc.com/~gopalan/java/java_tutorial.html.

-Original Message-
From: SCOTT FARQUHAR [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 09, 2001 12:44 AM
To: Orion-Interest
Subject: Re: How to start EJB development using Orion?


references that might be a help include:

Sun's j2ee specification
Servlet 2.2 spec
JSP 1.1 spec

I find that tutorials at
www.jollem.com 
www.orionsupport.com 
are excellent.

AFAIK all you need to do to inform orion of the existance of those files is to edit 
server.xml, to point to your root dir.
eg.

 application name=taglib-test path=..\applications\taglib-test /


You need application.xml in meta-inf.  This is what you must inform orion of  
Application.xml contains references to your modules.

eg.
application
 display-nameTag Tutorial/display-name
 module
  web
   web-uritaglib-test-web/web-uri
   context-root//context-root
  /web
 /module
   module
  ejbejbdemo-ejb/ejb
   /module
/application


And the directory structure

/
/meta-inf/
/meta-inf/application.xml
/taglib-test-web/
/taglib-test-web/web-inf/
/taglib-test-web/web-inf/web.xml
/ejbdemo-ejb/
/ejbdemo-ejb/meta-inf/
/ejbdemo-ejb/meta-inf/ejb-jar.xml



This is a quick overview (and may contain errors and omissions)  Try the tutorials on 
orionsupport and jollem.







 [EMAIL PROTECTED] 04/09/01 12:50pm 
Hi all --

   I'm new to EJB development, and am trying to start with Orion Server, but
I'm having the hardest time figuring out how to even begin.  I've written a
bean and all the interfaces, which are all sitting in class files in the
c:\java directory.  I created a META-INF directory off of that, and created
an ejb-jar.xml file in there.
   However, I can find *no* information about how to inform Orion about the
existence of these files.  I was trying to follow
http://www.orionserver.com/tutorials/ejbtutorial.html, but it references a
config/ejb.xml file which simply doesn't exist.  I'm guessing it's old.
   Is there a simple step-by-step explanation of which files need to be
modified, in what order, and what else I need to do to start doing
development work?  Am I better off just using a better (i.e. better
supported and more completely documented) appserver?

-- Chris







RE: How to start EJB development using Orion?

2001-04-08 Thread Mike Cannon-Brookes

See http://www.jollem.com for two very useful primers for you.

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Chris
 Bergstresser
 Sent: Monday, April 09, 2001 12:50 PM
 To: Orion-Interest
 Subject: How to start EJB development using Orion?


 Hi all --

I'm new to EJB development, and am trying to start with Orion
 Server, but
 I'm having the hardest time figuring out how to even begin.  I've
 written a
 bean and all the interfaces, which are all sitting in class files in the
 c:\java directory.  I created a META-INF directory off of that,
 and created
 an ejb-jar.xml file in there.
However, I can find *no* information about how to inform Orion
 about the
 existence of these files.  I was trying to follow
 http://www.orionserver.com/tutorials/ejbtutorial.html, but it references a
 config/ejb.xml file which simply doesn't exist.  I'm guessing it's old.
Is there a simple step-by-step explanation of which files need to be
 modified, in what order, and what else I need to do to start doing
 development work?  Am I better off just using a better (i.e. better
 supported and more completely documented) appserver?

 -- Chris








Re: How to start EJB development using Orion?

2001-04-08 Thread SCOTT FARQUHAR

references that might be a help include:

Sun's j2ee specification
Servlet 2.2 spec
JSP 1.1 spec

I find that tutorials at
www.jollem.com 
www.orionsupport.com 
are excellent.

AFAIK all you need to do to inform orion of the existance of those files is to edit 
server.xml, to point to your root dir.
eg.

 application name="taglib-test" path="..\applications\taglib-test" /


You need application.xml in meta-inf.  This is what you must inform orion of  
Application.xml contains references to your modules.

eg.
application
 display-nameTag Tutorial/display-name
 module
  web
   web-uritaglib-test-web/web-uri
   context-root//context-root
  /web
 /module
   module
  ejbejbdemo-ejb/ejb
   /module
/application


And the directory structure

/
/meta-inf/
/meta-inf/application.xml
/taglib-test-web/
/taglib-test-web/web-inf/
/taglib-test-web/web-inf/web.xml
/ejbdemo-ejb/
/ejbdemo-ejb/meta-inf/
/ejbdemo-ejb/meta-inf/ejb-jar.xml



This is a quick overview (and may contain errors and omissions)  Try the tutorials on 
orionsupport and jollem.







 [EMAIL PROTECTED] 04/09/01 12:50pm 
Hi all --

   I'm new to EJB development, and am trying to start with Orion Server, but
I'm having the hardest time figuring out how to even begin.  I've written a
bean and all the interfaces, which are all sitting in class files in the
c:\java directory.  I created a META-INF directory off of that, and created
an ejb-jar.xml file in there.
   However, I can find *no* information about how to inform Orion about the
existence of these files.  I was trying to follow
http://www.orionserver.com/tutorials/ejbtutorial.html, but it references a
config/ejb.xml file which simply doesn't exist.  I'm guessing it's old.
   Is there a simple step-by-step explanation of which files need to be
modified, in what order, and what else I need to do to start doing
development work?  Am I better off just using a better (i.e. better
supported and more completely documented) appserver?

-- Chris