UN-SUBSCRIBE

2001-06-29 Thread Doreen Yeh

Re: Debugging and orion

2001-06-29 Thread Joni Suominen
Hi, You can use -out and -err commandline swiches to specify where System.outs and System.errs are written. For example: $JAVA_HOME/bin/java -server -jar orion.jar \ -config $ORION_HOME/config/server.xml \ -out $ORION_HOME/log/server-out.log \ -err

AW: Memory leaks

2001-06-29 Thread Jens Stutte
We do not have any production site, yet, but from my experience with orion and EJB, the most important thing is to provide an orion-ejb-jar.xml with your application, where you specify maximum instance limits for each entity bean. Otherwise there will be only a timeout to destroy cached

RE: Memory leaks

2001-06-29 Thread elephantwalker
There are issues with memory leaks and some jdbc drivers. Search the list on postgresql, for example. This is not necessarily orion, but if you are using a database with orion, the driver will be in the orion vm. If the driver chews up memory, so will orion. the elephantwalker -Original

Re: Debug JSP - how to?

2001-06-29 Thread Johan Fredriksson
Try uncommenting the error-page thing in web.xml, this would let you see what is actually going on. Johan - Original Message - From: Henrik Skafsgaard Larsen [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Friday, June 29, 2001 8:07 AM Subject: Re: Debug JSP - how to? I

UNSUSCRIBE

2001-06-29 Thread Nicola Folino

CMP vs BMP and finder methods

2001-06-29 Thread Sergei Batiuk
Hi forum, I would like to know what strategies people use in real life to design their entity beans, when use CMPs and when BMPs. Each approarch has its own benefits and drawbacks. This is what I found out during my experience with EJB: 1.CMPs Benefits: -easy to develop; -better

Re:

2001-06-29 Thread Ray Harrison
Go look on www.orionsupport.com or search through the mailing list. You should find examples! RHH --- struts orion [EMAIL PROTECTED] wrote: Hi I am using oracle thin driver the data-source.xml configuration is data-source class=com.evermind.sql.DriverManagerDataSource name=oraclethin

mdb and external jms

2001-06-29 Thread Karri Niemelä
Still wondering about the subject. When using swiftmq jms server, client only has to set INITIAL_CONTEXT_FACTORY and PROVIDER_URL to connect to swiftmq router/jms server. So in orion-ejb-jar.xml we define message-driven-deployment tag.. Under it its possible to set lookup-context location and

UNSUSCRIBE

2001-06-29 Thread Ken Eisner
-- /* * Kenneth N. M. Eisner * Developer * * Brics|net US, LLC * 53 Green St. * Portsmouth, NH * 03801 * * (tel.) 603-436-6868 * (fax.) 603-436-5760 */

Re:JMS .xml files question

2001-06-29 Thread Tim Rickard
Queues and topics that are in the config/jms.xml dont have to be in the application-client.xml. I have not been able to create a factory in the config/jms.xml.

Re:

2001-06-29 Thread Gordon Reynolds \(Cyonara\)
package com.cyonara.gw.sql; import com.cyonara.gw.util.*; import java.sql.Connection; import javax.naming.Context; import javax.naming.InitialContext; import javax.naming.NamingException; import javax.sql.DataSource; public class DataSourceSqlConnector implements SqlConnector {

Re:UNSUSCRIBE

2001-06-29 Thread 45100125
-- /* * Kenneth N. M. Eisner * Developer * * Brics|net US, LLC * 53 Green St. * Portsmouth, NH * 03801 * * (tel.) 603-436-6868 * (fax.) 603-436-5760 */ hello: my name is ¿×ÏéÓÑ,I am form beijin tel.:01067501840 ===sms.163.com--ÍøÒ׶ÌÐÅ

returning an interface

2001-06-29 Thread Paul Knepper
Has anyone ever returned an interface from an EJB? I get the following error: com.evermind.server.rmi.OrionRemoteException: Error (de-)serializing object: MyInterfaceImpl Here is my Remote Interface: public interface Test extends EJBObject{ public IMyInterface getInterface() throws

500 Internal Server Error after deploying

2001-06-29 Thread Nusairat, Joseph F.
Title: 500 Internal Server Error after deploying Here's the deal, I set up and deploy an ear file and i try to run the associated servlet and i get 500 internal server error. Now the kicker is i have succesfuly deployed some of the other beans. I really have absolutely no clue what i am

Documents and dynamic web pages

2001-06-29 Thread Kemp Randy
I am aiding a department that is using a two tier application design, with a JSP engine and Oracle, to build a dynamic web site. It's easy to deal with images, by either using a URL link, or a BLOB field in Oracle. Now I wonder how to deal with documents. Is it best to store them as BLOBS, or

Setting Up JDBC driver for Oracle database

2001-06-29 Thread Mong Kon Mo
Hello, I am trying setup Orion to communicate with an Oracle 8.0.5.1 database. I've obtained the JDBC drivers from Oracle, but I'm confused about what I should be doing next. The Orion documentation says I need to copy the driver to the Orion\lib directory and add a data source in

RE: Documents and dynamic web pages

2001-06-29 Thread ???
Hi. Here is ths Oracle DS sample. We use thin driver. (orion 1.5.2) -- data-sources.xml ?xml version=1.0? !DOCTYPE data-sources PUBLIC Orion data-sources http://www.orionserver.com/dtds/data-sources.dtd; data-sources !-- An example/default DataSource that uses an

RE: Setting Up JDBC driver for Oracle database

2001-06-29 Thread elephantwalker
Mong, Here's a data-sources.xml I use with 8i, I don't know if it will work with 8, though: ?xml version=1.0? !DOCTYPE data-sources PUBLIC Orion data-sources http://www.orionserver.com/dtds/data-sources.dtd; data-sources data-source

Re: Setting Up JDBC driver for Oracle database

2001-06-29 Thread Scot Weber
data-sources data-source name=Devel One DS class=com.evermind.sql.ConnectionDataSource location=jdbc/DevelOneCoreDS pooled-location=jdbc/DevelOnePooledDS xa-location=jdbc/xa/DevelOneXADS ejb-location=jdbc/DevelOneDS schema=database-schemas/oracle.xml