Re: JetSpeed

2000-11-17 Thread Christian Sell

 The error is as stated "could not find package in import:
 org.apache.cocoon.*, org.w3c.dom.*, etc...).
 I tried putting all jars in /orion/lib, web-app/WEB-INF/lib and even
 putting them all in both locations.
 It happens when accessing XSP only (as far as I can tell), the frontpage
 displays correctly for example.

the above problem arises when the java compiler is called on a XSP-generated
source file (XSP is Cocoons equivalent to JSP, and Jetspeed uses Cocoon).
This is done by forking a new process which does not inherit the (implicit)
classpath of your web app. You will have to put all the jars required for
the compile somewhere in the global classpath

HTH





RE: JetSpeed

2000-11-17 Thread J.T. Wenting

thanks. I'll give that a try. It's probably the reason why it does work with
Tomcat, as Tomcat uses the global classpath...

Jeroen T. Wenting
[EMAIL PROTECTED]

Murphy was wrong, things that can't go wrong will anyway

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Christian Sell
 Sent: Friday, November 17, 2000 10:20
 To: Orion-Interest
 Subject: Re: JetSpeed


  The error is as stated "could not find package in import:
  org.apache.cocoon.*, org.w3c.dom.*, etc...).
  I tried putting all jars in /orion/lib, web-app/WEB-INF/lib and even
  putting them all in both locations.
  It happens when accessing XSP only (as far as I can tell), the frontpage
  displays correctly for example.

 the above problem arises when the java compiler is called on a
 XSP-generated
 source file (XSP is Cocoons equivalent to JSP, and Jetspeed uses Cocoon).
 This is done by forking a new process which does not inherit the
 (implicit)
 classpath of your web app. You will have to put all the jars required for
 the compile somewhere in the global classpath

 HTH







Re: JetSpeed

2000-11-17 Thread Sven van 't Veer



"J.T. Wenting" wrote:
 
 using Js 1.2b1, which works fine on Tomcat 3.1 (at least it does not throw
 any errors, the generated HTML is not always as it should be and there seems
 to be a gaping memory leak).
 The error is as stated "could not find package in import:
 org.apache.cocoon.*, org.w3c.dom.*, etc...).
 I tried putting all jars in /orion/lib, web-app/WEB-INF/lib and even
 putting them all in both locations.
 It happens when accessing XSP only (as far as I can tell), the frontpage
 displays correctly for example.

For me, putting the Jetspeed jars in /orion/lib gives me the following
error when calling
http://hostname/servlet/jetspeed

java.io.FileNotFoundException: /tmp/turbine.log (O sistema não pode
localizar o caminho especificado)
at java.io.FileOutputStream.openAppend(Native Method)
at java.io.FileOutputStream.init(FileOutputStream.java:100)
at java.io.FileWriter.init(FileWriter.java:39)
at org.apache.turbine.util.Log.init(Log.java:112)
at org.apache.turbine.util.Log.clinit(Log.java:102)
at
org.apache.turbine.services.TurbineServices.getService(TurbineServices.java:115)
at
org.apache.turbine.services.resources.TurbineResourceService.setPropertiesFileName(TurbineResourceService.java:107)
at Turbine.init(Turbine.java:120)
at com.evermind.server.http.HttpApplication.wo(JAX)
at com.evermind.server.http.HttpApplication.v6(JAX)
at com.evermind.server.http.HttpApplication.uh(JAX, Compiled Code)
at com.evermind.server.http.ed.sp(JAX, Compiled Code)
at com.evermind.server.http.ed.so(JAX, Compiled Code)
at com.evermind.util.f.run(JAX, Compiled Code)
DbBrokerImpl: Is now turned on.
java.lang.ExceptionInInitializerError: java.lang.NullPointerException
at
org.apache.jetspeed.turbine.navigations.JetspeedTopNavigation.clinit(JetspeedTopNavigation.java)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java, Compiled Code)
at
org.apache.turbine.modules.NavigationLoader.getInstance(NavigationLoader.java,
Compiled Code)
at
org.apache.turbine.modules.NavigationLoader.eval(NavigationLoader.java:118)
at
org.apache.jetspeed.turbine.layouts.JetspeedLayout.build(JetspeedLayout.java:86)
at org.apache.turbine.modules.LayoutLoader.exec(LayoutLoader.java:111)
at
org.apache.turbine.modules.pages.DefaultPage.build(DefaultPage.java:88)
at org.apache.turbine.modules.PageLoader.exec(PageLoader.java:111)
at Turbine.doGet(Turbine.java, Compiled Code)
at javax.servlet.http.HttpServlet.service(HttpServlet.java)
at javax.servlet.http.HttpServlet.service(HttpServlet.java)
at javax.servlet.http.HttpServlet.service(HttpServlet.java)
at com.evermind.server.http.d1.si(JAX, Compiled Code)
at com.evermind.server.http.d1.forward(JAX)

-- 
==
Sven E. van 't Veer  
http://www.cachoeiro.net
Java Developer  [EMAIL PROTECTED]
==




help...servlet claspath

2000-11-17 Thread Edmund Cheung

Hi,

In weblogic, I defined the servlet classpath in the weblogic properties file
as follow;

weblogic.httpd.servlet.classpath=D:/weblogic/myserver/servletclasses
weblogic.httpd.register.UserManagerController=servlet.UserManagerController

In my jsp, I call thsi servlet name
form method="post" action="/UserManagerController"

In Orion,  I defined the following in web.xml but where should I define the
classpath for servlet ?

servlet
  servlet-nameUserManagerController/servlet-name
  descriptionUser manager controller/description
  servlet-classservlet.UserManagerController/servlet-class
   ..
/servlet

Thanks  reagrds,

Edmund




RE: JetSpeed

2000-11-17 Thread J.T. Wenting

the directory where the logfile should go must exist. You should create the
directory or change the turbine configuration in the jetspeed config files
to point to an existing directory (the same goes for cache directories,
etc).

Jeroen T. Wenting
[EMAIL PROTECTED]

Murphy was wrong, things that can't go wrong will anyway

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Sven van 't
 Veer
 Sent: Friday, November 17, 2000 12:58
 To: Orion-Interest
 Subject: Re: JetSpeed




 "J.T. Wenting" wrote:
 
  using Js 1.2b1, which works fine on Tomcat 3.1 (at least it
 does not throw
  any errors, the generated HTML is not always as it should be
 and there seems
  to be a gaping memory leak).
  The error is as stated "could not find package in import:
  org.apache.cocoon.*, org.w3c.dom.*, etc...).
  I tried putting all jars in /orion/lib, web-app/WEB-INF/lib and even
  putting them all in both locations.
  It happens when accessing XSP only (as far as I can tell), the frontpage
  displays correctly for example.

 For me, putting the Jetspeed jars in /orion/lib gives me the following
 error when calling
 http://hostname/servlet/jetspeed

 java.io.FileNotFoundException: /tmp/turbine.log (O sistema não pode
 localizar o caminho especificado)
   at java.io.FileOutputStream.openAppend(Native Method)
   at java.io.FileOutputStream.init(FileOutputStream.java:100)
   at java.io.FileWriter.init(FileWriter.java:39)
   at org.apache.turbine.util.Log.init(Log.java:112)
   at org.apache.turbine.util.Log.clinit(Log.java:102)
   at
 org.apache.turbine.services.TurbineServices.getService(TurbineServ
 ices.java:115)
   at
 org.apache.turbine.services.resources.TurbineResourceService.setPr
 opertiesFileName(TurbineResourceService.java:107)
   at Turbine.init(Turbine.java:120)
   at com.evermind.server.http.HttpApplication.wo(JAX)
   at com.evermind.server.http.HttpApplication.v6(JAX)
   at com.evermind.server.http.HttpApplication.uh(JAX, Compiled Code)
   at com.evermind.server.http.ed.sp(JAX, Compiled Code)
   at com.evermind.server.http.ed.so(JAX, Compiled Code)
   at com.evermind.util.f.run(JAX, Compiled Code)
 DbBrokerImpl: Is now turned on.
 java.lang.ExceptionInInitializerError: java.lang.NullPointerException
   at
 org.apache.jetspeed.turbine.navigations.JetspeedTopNavigation.cli
 nit(JetspeedTopNavigation.java)
   at java.lang.Class.forName0(Native Method)
   at java.lang.Class.forName(Class.java, Compiled Code)
   at
 org.apache.turbine.modules.NavigationLoader.getInstance(Navigation
 Loader.java,
 Compiled Code)
   at
 org.apache.turbine.modules.NavigationLoader.eval(NavigationLoader.
 java:118)
   at
 org.apache.jetspeed.turbine.layouts.JetspeedLayout.build(JetspeedL
 ayout.java:86)
   at
 org.apache.turbine.modules.LayoutLoader.exec(LayoutLoader.java:111)
   at
 org.apache.turbine.modules.pages.DefaultPage.build(DefaultPage.java:88)
   at org.apache.turbine.modules.PageLoader.exec(PageLoader.java:111)
   at Turbine.doGet(Turbine.java, Compiled Code)
   at javax.servlet.http.HttpServlet.service(HttpServlet.java)
   at javax.servlet.http.HttpServlet.service(HttpServlet.java)
   at javax.servlet.http.HttpServlet.service(HttpServlet.java)
   at com.evermind.server.http.d1.si(JAX, Compiled Code)
   at com.evermind.server.http.d1.forward(JAX)

 --
 ==
 
 Sven E. van 't Veer
 http://www.cachoeiro.net
 Java Developer
 [EMAIL PROTECTED]
 ==
 






Slow going or not at all

2000-11-17 Thread Tim Squires

Hi,

I've ported an application over from jBoss to Orion 1.4.4 and it deploys
successfully.  When I try to access the top level servlet that first
accesses the session bean that accesses the entity beans...  the browser
sits and waits for a response.  If I try to shutdown or restart the server
using admin.jar, it takes about 15 mins then says Shutting Down and
stops.  I waited over an hour but no change.  ctr C has no effect so I
killed it, rebooted and tried again with the same problem.

Would some kind person send me things I could check than may alleviate this
problem.

Thanks for your time,
Tim.



Tim Squires
Wireless Data Services

It's not what you know, it's who you tell.




Re: help...servlet claspath

2000-11-17 Thread Sven van 't Veer



Edmund Cheung wrote:
 
 Hi,
 
 In weblogic, I defined the servlet classpath in the weblogic properties file
 as follow;
 
 weblogic.httpd.servlet.classpath=D:/weblogic/myserver/servletclasses
 weblogic.httpd.register.UserManagerController=servlet.UserManagerController
 
 In my jsp, I call thsi servlet name
 form method="post" action="/UserManagerController"
 
 In Orion,  I defined the following in web.xml but where should I define the
 classpath for servlet ?
 
 servlet
   servlet-nameUserManagerController/servlet-name
   descriptionUser manager controller/description
   servlet-classservlet.UserManagerController/servlet-class
..
 /servlet
 
 Thanks  reagrds,
 
 Edmund
Actually you don't have to do anything in Orion. Just putting the
classfile for the servlen in 
orion/applications/your_app/your_app-web/WEB-INF/classes
makes the servlet available to Orion by calling:
http://localhost/servlet/YourServlet

sven

-- 
==
Sven E. van 't Veer  
http://www.cachoeiro.net
Java Developer  [EMAIL PROTECTED]
==




Re: JNDI to EJB

2000-11-17 Thread Claudio Miranda



 "Lee, Se Hee" wrote:
 
 I've compiled and jar it the ejb-jar.xml in the META-INF. Then, I jar
 it up with the application.xml and create the ear file. I also
 modified the server.xml and etc as noted in the orion primer sample.
 When orion server starts, it picks up the ejb and deploys it w/o any
 problem. The troubles comes when I tried to connect it from jsp. I
 didn't jar this jsp. Rather, I just put it under the default
 application directory. I can run this jsp, but I get an exception when
 it looks for ejb. Do I need to create war file along with ejb and
 deploy together? 

  Yes, you have to create the .war archive, and put in web.xml, and
orion-web.xml the jndi names and locations, all in .ear file.

 Or do I have to put this ejb in the different path? I

  No, just .war + .jar = .ear
  
 also notice that there is no jndi.properties in the ejb deployed
 directory. Do I have to create one? 

   No, 
  
 I did a bit of research on it, and
 found out that it has orion-ejb-jar.xml within the ejb deployed
 directory and location represents the actual JNDI name. I tried
 connection through this jndi name, but I wasn't successful.  Can
 someone give a hand???

  If you don't specified any deployment directory, then look at
ORION_HOME/application-deployments


by

begin:vcard 
n:Miranda;Claudio
x-mozilla-html:FALSE
org:EverSystems;Research  Developmet - Internet  New Tech
adr:;;;Sao Paulo;SP;;Brazil
version:2.1
email;internet:[EMAIL PROTECTED]
title:SUN Certified Programmer for JAVA 2
fn:Claudio Miranda
end:vcard



SV: Slow going or not at all

2000-11-17 Thread Klaus . Myrseth

Sounds like a datasource error, this kind of errors I use to get if the
datasource is configured wrongly.

Same if there is a deadlock in the database this will allso happen some
times.

Hope this helps..

Klaus





-Opprinnelig melding-
Fra: Tim Squires [mailto:[EMAIL PROTECTED]]
Sendt: 17. november 2000 14:20
Til: Orion-Interest
Emne: Slow going or not at all


Hi,

I've ported an application over from jBoss to Orion 1.4.4 and it deploys
successfully.  When I try to access the top level servlet that first
accesses the session bean that accesses the entity beans...  the browser
sits and waits for a response.  If I try to shutdown or restart the server
using admin.jar, it takes about 15 mins then says Shutting Down and
stops.  I waited over an hour but no change.  ctr C has no effect so I
killed it, rebooted and tried again with the same problem.

Would some kind person send me things I could check than may alleviate this
problem.

Thanks for your time,
Tim.



Tim Squires
Wireless Data Services

It's not what you know, it's who you tell.




Re: help...servlet claspath

2000-11-17 Thread Lars Hoss

hi!

have you specified a servlet-mapping?
without this thing won't work ;-)

yours,
lars

EC Hi,

EC In weblogic, I defined the servlet classpath in the weblogic properties file
EC as follow;

EC weblogic.httpd.servlet.classpath=D:/weblogic/myserver/servletclasses
EC weblogic.httpd.register.UserManagerController=servlet.UserManagerController

EC In my jsp, I call thsi servlet name
EC form method="post" action="/UserManagerController"

EC In Orion,  I defined the following in web.xml but where should I define the
EC classpath for servlet ?

EC servlet
EC   servlet-nameUserManagerController/servlet-name
EC   descriptionUser manager controller/description
EC   servlet-classservlet.UserManagerController/servlet-class
EC..
EC /servlet

EC Thanks  reagrds,

EC Edmund






RE: help...servlet claspath

2000-11-17 Thread J.T. Wenting

I think he means the classpath not for servlets but for external resources
like beans.
The default place for this is /orion/lib and web-app/WEB-INF/classes, but
is it possible to set other locations and if so, how to do it?

Jeroen T. Wenting
[EMAIL PROTECTED]

Murphy was wrong, things that can't go wrong will anyway

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Sven van 't
 Veer
 Sent: Friday, November 17, 2000 14:29
 To: Orion-Interest
 Subject: Re: help...servlet claspath




 Edmund Cheung wrote:
 
  Hi,
 
  In weblogic, I defined the servlet classpath in the weblogic
 properties file
  as follow;
 
  weblogic.httpd.servlet.classpath=D:/weblogic/myserver/servletclasses
 
 weblogic.httpd.register.UserManagerController=servlet.UserManagerC
 ontroller
 
  In my jsp, I call thsi servlet name
  form method="post" action="/UserManagerController"
 
  In Orion,  I defined the following in web.xml but where should
 I define the
  classpath for servlet ?
 
  servlet
servlet-nameUserManagerController/servlet-name
descriptionUser manager controller/description
servlet-classservlet.UserManagerController/servlet-class
 ..
  /servlet
 
  Thanks  reagrds,
 
  Edmund
 Actually you don't have to do anything in Orion. Just putting the
 classfile for the servlen in
 orion/applications/your_app/your_app-web/WEB-INF/classes
 makes the servlet available to Orion by calling:
 http://localhost/servlet/YourServlet

 sven

 --
 ==
 
 Sven E. van 't Veer
 http://www.cachoeiro.net
 Java Developer
 [EMAIL PROTECTED]
 ==
 






wait-timeout documented

2000-11-17 Thread Marcus Ahnve

Just wanted to point out that the documentation for data-sources.xml has
been updated and that there among other things now exists an attribute
for "wait-timeout". It has obviously been there all the time since it
works without updating the server, it just has not been in the
documentation.

This is the solution to my post the other day, and it also solves bug
#170, filed by me, which was our main concern about going live with our
application. It is _so_ nice getting good news just before the weekend
:-)

/Marcus 

-- 
Marcus Ahnve  email: [EMAIL PROTECTED]
Lecando AB   Office: +46-(0)8-634 94 18
Sweden   Mobile: +46-(0)70-462 19 18
www.lecando.comICQ#: 4564879




Current Hypersonic SQL web page

2000-11-17 Thread Kemp Randy-W18971

I can't find the Hypersonic SQL link at http://hsql.oron.ch/.  Does anyone know their 
current home?




Re: Turning off Auto-create Tables

2000-11-17 Thread Claudio Miranda



Marc Rabil wrote:
 
 I am trying to deploy an app that uses CMP to connect to an Interbase server
 via the Interclient driver.  On deploy, Orion starts auto-creating tables
 that I don't need (since the database already exists) and gives me the error
 below.  How can I turn auto-create off or point it at the right DB?
 

to turn off creating table in deployment, open
ORION_HOME/config/application.xml, add the attribute on
orion-application tag, as is

orion-application autocreate-tables="false"

  and go on


-- Claudio Miranda
   SUN Certified Programmer for JAVA 2

begin:vcard 
n:Miranda;Claudio
x-mozilla-html:FALSE
org:EverSystems;Research  Developmet - Internet  New Tech
adr:;;;Sao Paulo;SP;;Brazil
version:2.1
email;internet:[EMAIL PROTECTED]
title:SUN Certified Programmer for JAVA 2
fn:Claudio Miranda
end:vcard



Re: JetSpeed

2000-11-17 Thread Laurent Cornelis


For me, putting the Jetspeed jars in /orion/lib gives me the following
error when calling
http://hostname/servlet/jetspeed

java.io.FileNotFoundException: /tmp/turbine.log (O sistema não
podelocalizar o caminho especificado)


It's normal, turbine.log MUST exists when you launch Jetspeed... Create an
empty text file called turbine.log





Re: Current Hypersonic SQL web page

2000-11-17 Thread Gerald Gutierrez


Disappeared two or three days ago for some reason.

At 09:44 AM 11/17/2000 -0600, you wrote:
I can't find the Hypersonic SQL link at http://hsql.oron.ch/.  Does anyone 
know their current home?






Re: Where is Orion's copy of ejb-jar dtd?

2000-11-17 Thread Claudio Miranda



Rodolphe Godreul wrote:
 
 ?xml version="1.0"?
 !DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise
 JavaBeans 1.1//EN' 'http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd'
 ejb-jar
 
  display-nameHelloWorld Bean jar/display-name
  descriptionA simple HelloWorld/description

   this display-name and description tags are in the wrong place,
see below the repeating tags.
   just remove it.

 
  enterprise-beans
   session
display-nameHelloWorld/display-name
descriptionA simple HelloWorld/description
ejb-namecom.genesys.is.helloworld.ejb.HelloWorld/ejb-name
homecom.genesys.is.helloworld.ejb.HelloWorldHome/home
remotecom.genesys.is.helloworld.ejb.HelloWorld/remote
ejb-classcom.genesys.is.helloworld.ejb.HelloWorldEJB/ejb-class
session-typeStateless/session-type
transaction-typeContainer/transaction-type
   /session
  /enterprise-beans
 

-- Claudio Miranda
   SUN Certified Programmer for JAVA 2

begin:vcard 
n:Miranda;Claudio
x-mozilla-html:FALSE
org:EverSystems;Research  Developmet - Internet  New Tech
adr:;;;Sao Paulo;SP;;Brazil
version:2.1
email;internet:[EMAIL PROTECTED]
title:SUN Certified Programmer for JAVA 2
fn:Claudio Miranda
end:vcard



RE: Current Hypersonic SQL web page

2000-11-17 Thread Mark Delanoy

It's still in SourceForge, e.g. http://sourceforge.net/projects/hsql/.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Gerald
Gutierrez
Sent: Friday, November 17, 2000 10:22 AM
To: Orion-Interest
Subject: Re: Current Hypersonic SQL web page



Disappeared two or three days ago for some reason.

At 09:44 AM 11/17/2000 -0600, you wrote:
I can't find the Hypersonic SQL link at http://hsql.oron.ch/.  Does anyone
know their current home?








Re: Current Hypersonic SQL web page

2000-11-17 Thread Lance Lavandowska

Hypersonic SQL is now available at http://sourceforge.net/projects/hsql/

- Original Message -
From: "Gerald Gutierrez" [EMAIL PROTECTED]
To: "Orion-Interest" [EMAIL PROTECTED]
Sent: Friday, November 17, 2000 10:21 AM
Subject: Re: Current Hypersonic SQL web page



 Disappeared two or three days ago for some reason.

 At 09:44 AM 11/17/2000 -0600, you wrote:
 I can't find the Hypersonic SQL link at http://hsql.oron.ch/.  Does
anyone
 know their current home?









Re: ORION and VAJ?

2000-11-17 Thread listhub

Thanks for the explanation.

How do the two (netbeans, Forte) compare.

I have done 90% of my career development in VAJ.  Know that IDE.  I am finding
that for web application development, especially EJB, unless one is working
with the Web Sphere / EJB additions, that VAJ is quite limiting.  I'll qualify
by saying that those extensions make developing in Web Sphere/VAJ a super joy
if one is thinking of Web Sphere deployment.  (The IBM/VAJ concept of a EJB
Access Bean takes care of the huge gap in the CMP model between EJB's and the
DB concept of association, but that is another thread.)  However, outside of Web
Sphere and maybe the older versions of Web Logic, using VAJ with other EJB
containers, Orion, Jboss, Dynamo, is either very limited or impossible.  At
this point I have dropped back to the old editor/makefile/external debugger
method of development using emacs/ant/and one of a number of external
debuggers, none of which are that much better then System.out.println().

I would love to see others comment.

Peace
john

On 16-Nov-00 Christian Sell wrote:
 netbeans WAS netbeans, BECAME forte, and was named back to netbeans before
 being made open source. www.netbeans.org
 
 - Original Message -
 From: [EMAIL PROTECTED]
 To: "Orion-Interest" [EMAIL PROTECTED]
 Cc: "Orion-Interest" [EMAIL PROTECTED]
 Sent: Thursday, November 16, 2000 9:44 PM
 Subject: RE: ORION and VAJ?
 
 
 Rob,

 Is not netbeans now Forte (Sun bought netbeans and the old Forte
 development
 environment and combined them in its Forte Community Edition, I think)?

 If not send me the netbeans URL please.

 Thanks
 john

 On 16-Nov-00 Rob Lapensee wrote:
  John,
 
  I have successfully got netbeans to set a break point and stop a running
 ejb
  in progress under orion, and then go on to single step and show variable
  contents.
 
  It working by using something called JPDA (download from somewhere in
  www.javasoft.com)
  You will need JPDA installed and netbeans will need to be started with
  access to the JPDA .dll's (or shared libraries if you are not on NT).
  Netbeans will also require access to the JPDA jar (or jars?).
 
  Stuff Deleted 

 --
 E-Mail: [EMAIL PROTECTED]
 Date: 16-Nov-00
 Time: 14:41:15

 This message was sent by XFMail
 --

 

--
E-Mail: [EMAIL PROTECTED]
Date: 17-Nov-00
Time: 10:41:01

John N. Alegre
Andante Systems
St. Paul, MN
--




Re: ORION and VAJ?

2000-11-17 Thread Hani Suleiman

xemacs+jde (compile, edit)
ant (build)
bugseeker2 (debug)

Works great with Orion, Weblogic, Dynamo, and I'm sure anything
else. Cross platform too is a big added bonus.

On Fri, 17 Nov 2000 [EMAIL PROTECTED] wrote:

 Thanks for the explanation.
 
 How do the two (netbeans, Forte) compare.
 
 I have done 90% of my career development in VAJ.  Know that IDE.  I am finding
 that for web application development, especially EJB, unless one is working
 with the Web Sphere / EJB additions, that VAJ is quite limiting.  I'll qualify
 by saying that those extensions make developing in Web Sphere/VAJ a super joy
 if one is thinking of Web Sphere deployment.  (The IBM/VAJ concept of a EJB
 Access Bean takes care of the huge gap in the CMP model between EJB's and the
 DB concept of association, but that is another thread.)  However, outside of Web
 Sphere and maybe the older versions of Web Logic, using VAJ with other EJB
 containers, Orion, Jboss, Dynamo, is either very limited or impossible.  At
 this point I have dropped back to the old editor/makefile/external debugger
 method of development using emacs/ant/and one of a number of external
 debuggers, none of which are that much better then System.out.println().
 
 I would love to see others comment.
 
 Peace
 john
 
 On 16-Nov-00 Christian Sell wrote:
  netbeans WAS netbeans, BECAME forte, and was named back to netbeans before
  being made open source. www.netbeans.org
  
  - Original Message -
  From: [EMAIL PROTECTED]
  To: "Orion-Interest" [EMAIL PROTECTED]
  Cc: "Orion-Interest" [EMAIL PROTECTED]
  Sent: Thursday, November 16, 2000 9:44 PM
  Subject: RE: ORION and VAJ?
  
  
  Rob,
 
  Is not netbeans now Forte (Sun bought netbeans and the old Forte
  development
  environment and combined them in its Forte Community Edition, I think)?
 
  If not send me the netbeans URL please.
 
  Thanks
  john
 
  On 16-Nov-00 Rob Lapensee wrote:
   John,
  
   I have successfully got netbeans to set a break point and stop a running
  ejb
   in progress under orion, and then go on to single step and show variable
   contents.
  
   It working by using something called JPDA (download from somewhere in
   www.javasoft.com)
   You will need JPDA installed and netbeans will need to be started with
   access to the JPDA .dll's (or shared libraries if you are not on NT).
   Netbeans will also require access to the JPDA jar (or jars?).
  
   Stuff Deleted 
 
  --
  E-Mail: [EMAIL PROTECTED]
  Date: 16-Nov-00
  Time: 14:41:15
 
  This message was sent by XFMail
  --
 
  
 
 --
 E-Mail: [EMAIL PROTECTED]
 Date: 17-Nov-00
 Time: 10:41:01
 
 John N. Alegre
 Andante Systems
 St. Paul, MN
 --
 
 





RE: Current Hypersonic SQL web page

2000-11-17 Thread Colin Jacobs

That's the current URL - at least, I've been there within the last week.
Hopefully some poor bastard is being paged right now... :)

-Original Message-
From: Kemp Randy-W18971 [mailto:[EMAIL PROTECTED]]
Sent: Friday, November 17, 2000 7:44 AM
To: Orion-Interest
Subject: Current Hypersonic SQL web page


I can't find the Hypersonic SQL link at http://hsql.oron.ch/.  Does anyone
know their current home?




JMS configuration

2000-11-17 Thread Derek Akers



 
 Is there a decent tutorial or 
some documentation somewhere (other that the Orion docs description of jms.xml) 
that explains how to configure a 3rd party jms server with Orion?

Derek AkersInternet Application 
DeveloperEldan Softwarewww.eldan.com


Re: Current Hypersonic SQL web page

2000-11-17 Thread Tim_Clarke




For downloading I found this mirror site (it was cached on google)

It's version 1.43

http://download.sourceforge.net/hsql/hsql_143.zip


Tim Clarke

  Beauty and the lust for learning have yet to be allied.   Sir Max
Beerbohm


 1872-1956








Gerald Gutierrez [EMAIL PROTECTED] on 17/11/2000 16:21:40

Please respond to Orion-Interest [EMAIL PROTECTED]
  
  
  
  To:  Orion-Interest 
   [EMAIL PROTECTED]   
  
  cc:  (bcc: Tim Clarke/Globebyte Limited UK) 
  
  
  
  Subject  Re: Current Hypersonic SQL web page
  :   
  









Disappeared two or three days ago for some reason.

At 09:44 AM 11/17/2000 -0600, you wrote:
I can't find the Hypersonic SQL link at http://hsql.oron.ch/.  Does anyone
know their current home?