Re: There has GOTTA be a BETTER way !!!!

2000-11-13 Thread James M. Earle III

EJBs can be less work to use, but
more work to build, and then you
discover they don't scale and have
to rewrite the underpinnings.

Jaz


Keith Kwiatek wrote:

 Hello,

 EJB's are great if you like tripling the amount of code you have to
 write

 How is everyone building their web apps with hand coded programs, or
 using automagic tools?

 It sure seems like there should be some sort of tool that you can just point
 at database tables, and have it build the jsp or ejb entity bean. AND
 shouldn't there be a tool that you can just drop the bean on an html
 template thus allowing visual access to the bean fields?

 You can't access ejb's directly from a jsp page (like a normal bean) can
 you? Any tools that will automagically wrap an ejb in a bean for
 presentation in a JSP?

 Am I off base here,  or are ejb's a lot more work? How can people talk about
 how EJB's "speed development time"?!?

 Keith





Re: Out of memory

2000-10-10 Thread James M. Earle III

Tell the Orion JDK to use more memory on startup.
I think the command line jdk startup parms are
ms:64M for min memory
mx:80M for maximum memory, and
-gc for no incremental garbabe collection.

Jas


Vlad Petric wrote:

 Stanislav Maximov wrote:

  Hello,
 
  I'm constantly getting "Out of memory error" from Orion. Please shed some
  light if there are some typical mistakes which may cause it, or maybe debug
  tips?
 
  Great thanks in advance.
 
  stas@

 JOVOS ?? (JVM, Orion Version, Operating System ?) Have you tried a manually
 started garbage collection ?
 When does the problem occur ? when running EJB/JSP code or just like that ?
 Are you by any chance running Orion with a
 different heap size ?

 Vlad

Vlad Petric wrote:

 Stanislav Maximov wrote:

  Hello,
 
  I'm constantly getting "Out of memory error" from Orion. Please shed some
  light if there are some typical mistakes which may cause it, or maybe debug
  tips?
 
  Great thanks in advance.
 
  stas@

 JOVOS ?? (JVM, Orion Version, Operating System ?) Have you tried a manually
 started garbage collection ?
 When does the problem occur ? when running EJB/JSP code or just like that ?
 Are you by any chance running Orion with a
 different heap size ?

 Vlad





Re: Classpath : Orion On Linux

2000-09-28 Thread James M. Earle III

First, I suspect the driver you are talking about is for JDBC?
Next, if yes, then your application needs to know the path to
it, but typically you will setup a JDBC path statement such
as this:

JDBCDriver=com.inet.tds.TdsDriver

This tells your application to look for the com directory
[the root of the JDBC package] somewhere in classpath.

I can only recommend that you make sure you are setup
properly in light of this information.

Jas



Mr. Shailesh Joshi wrote:

 Hi All

 I  have installed Orion 1.3.8 on Linux server.

 I have  deployed  beans and running  clients successfully.
 The  problem  is the server can't  get  the  Driver in  Class.forName("
 ");
 I  have  copied driver  class in the orion-root  directory; set the
 classpath .
 But still the server is not able to get the class ?

 FROM  WHERE  ORION TAKES  THE  CLASSPATH  ?

 With regards
Shailesh