----- Original Message -----
From: James Lee <[EMAIL PROTECTED]>
To: Orion-Interest <[EMAIL PROTECTED]>
Sent: Friday, July 28, 2000 3:28 PM
Subject: Help please! java.lang.OutOfMemoryError when start the orion server
Hi All,
Please help!
I am new to orion server and when I set up the data-source.xml file as
following and when I use java -jar orion.jar to start the server, I got the
following error message:
------------------------------------------------------------
D:\HDproto\orion>java -jar orion.jar
java.lang.OutOfMemoryError
at com.evermind.naming.archive.ip.lookup(JAX, Compiled Code)
at com.evermind.naming.i2.amb(JAX, Compiled Code)
at com.evermind.server.ejb.EJBContainer.act(JAX, Compiled Code)
at com.evermind.server.Application.acy(JAX)
at com.evermind.server.Application.e7(JAX)
at com.evermind.server.ApplicationServer.ai5(JAX, Compiled Code)
at com.evermind.server.ApplicationServer.e7(JAX)
at com.evermind.server.gc.run(JAX)
at com.evermind.util.e.run(JAX, Compiled Code)
^C
D:\HDproto\orion>
-----------------------------------------------------------------------
My data-source.xml as following:
----------------------------------------------
<?xml version="1.0"?>
<!DOCTYPE data-sources PUBLIC "Orion data-sources"
"http://www.orionserver.com/dtds/data-sources.dtd">
<data-sources>
<!--
An example DataSource that uses an ordinary JDBC-driver to create the
connections,
to install; set the proper URL to the db, specify the db-driver name
and
unrem the below section. This creates all the needed kinds
of data-sources, transactional, pooled and EJB-aware sources.
-->
<!--
<data-source
name="Default data-source"
class="com.evermind.sql.ConnectionDataSource"
location="jdbc/DefaultDS"
pooled-location="jdbc/DefaultPooledDS"
xa-location="jdbc/xa/DefaultXADS"
ejb-location="jdbc/DefaultEJBDS"
url="jdbc:odbc:EJB"
connection-driver="sun.jdbc.odbc.JdbcOdbcDriver"
username="xxx"
password="yyy"
/>
-->
<data-source
name="Default data-source"
class="com.evermind.sql.ConnectionDataSource"
url="jdbc:oracle:thin:@1.1.1.19:1521:HDTEST1"
connection-driver="oracle.jdbc.driver.OracleDriver"
username="hd"
password="hd"
/>
</data-sources>
-----------------------------------------------