RE: How do you tell orion not to autocommit?

2002-05-26 Thread Alex Paransky
: Orion-Interest Subject: Re: How do you tell orion not to autocommit? Hi Keith, If you are using Bean managed persistence, then get the connection object using jndi lookup, then use connection.setAutocommit(false). I am not aware how to do this in container managed persistence.Can some great

Re: How do you tell orion not to autocommit?

2002-05-25 Thread prasanth sb
Hi Keith, If you are using Bean managed persistence, then get the connection object using jndi lookup, then use connection.setAutocommit(false). I am not aware how to do this in container managed persistence.Can some great guys explain this?Wish you a good day. thanks, Prasanth "Go

Re: Sessions and W98 + IE

2002-05-22 Thread David Tunkrans
st" <[EMAIL PROTECTED]> Sent: Sunday, May 19, 2002 6:40 PM Subject: Re: Sessions and W98 + IE > Hi David. > The major errors I have come accross in IE (all tested version of 4, 5, & 6) was that the 56bit encryption package was completely broken in IE. The workaround was to force

Re: How do you tell orion not to autocommit?

2002-05-21 Thread Keith Kwiatek
CTED]> Sent: Wednesday, April 17, 2002 12:22 PM Subject: RE: How do you tell orion not to autocommit? > Excerpt from the API docs for method > java.sql.Connection.setAutoCommit(boolean autoCommit) follows > > setAutoCommit > public void setAutoCommit(boolean autoCommit) >

RE: Questions about commits and orion datasource connection pooling....

2002-05-21 Thread Juan Pablo Lorandi
That's correct AFAIK, and applies to all connection pooling schemas(JDBC, ODBC, you name it) but on most recent versions, the driver will pool the connections itself, not Orion. Anyhow, you got most of it right, except that another jsp page instance may vote in a different connection. No sweat to

Re: Ejbs classPath (out of office 5/20)

2002-05-20 Thread Jennifer Goree
I will be out of the office on Monday May 20th. If you have an emergency problem with the website, please contact Russell Dodds. thanks, Jen

Re: FW: Using ORION versus CORBA (out of office 5/20)

2002-05-20 Thread Jennifer Goree
I will be out of the office on Monday May 20th. If you have an emergency problem with the website, please contact Russell Dodds. thanks, Jen

Re: Ejbs classPath

2002-05-20 Thread Jorge Jimenez C
The server that is creating the EJB is acting as a client. So, it has to know the remote and home interfaces of the EJB as any remote client. If you expect to use the EJBs in other applications the interfaces, should be in a shared directory (lib) if it is not the case, you should think to put th

Re: Ejbs classPath (out of office 5/20)

2002-05-20 Thread Jennifer Goree
I will be out of the office on Monday May 20th. If you have an emergency problem with the website, please contact Russell Dodds. thanks, Jen

RE: Can I write JDBC Transactions in Bean managed entityBeans? (out of office 5/20)

2002-05-20 Thread Jennifer Goree
I will be out of the office on Monday May 20th. If you have an emergency problem with the website, please contact Russell Dodds. thanks, Jen

RE: Can I write JDBC Transactions in Bean managed entity Beans?

2002-05-19 Thread Juan Pablo Lorandi
Yes, there is. Since you're not using transactions that are independent of the app server(and thus the app server doesn't know about the transaction at all, and isn't able to vote in it) the app server built in transactional support is not functional. An example: EJB A: a SLSB EJB B: Your Entity

Re: Sharing datasource

2002-05-19 Thread Hani Suleiman
Erm, nope. Orion has EJB clustering, it's just not documented, although I hear a document about it is coming out soon...ish... On 5/19/02 9:50 PM, "Scott Farquhar" <[EMAIL PROTECTED]> wrote: > Yes, that is true. > > At the moment, there is no EJB clustering in Orion, although it may > appear i

Re: Sharing datasource

2002-05-19 Thread Scott Farquhar
Yes, that is true. At the moment, there is no EJB clustering in Orion, although it may appear in future versions. Cheers, Scott Linus Larsen wrote: > If the same EJB application is running on lets say two servers, and are > sharing the same datasource. Do I have to configure the orion-ejb- >

RE: Any advanced CMP mapping for int[] via java.sql.Array to a VARRAY col type?

2002-05-19 Thread Juan Pablo Lorandi
I think there's a PersistanceManager interface for this, but I remember it not being configurable from files, that is, it seems it's not fully implemented yet. I guess you'll have to resort to BMP for such complex mappings. My 2c, Juan Pablo Lorandi Chief Software Architect Code Foundry Ltd. [EM

Re: Sessions and W98 + IE

2002-05-19 Thread Stephen Davidson
Hi David. The major errors I have come accross in IE (all tested version of 4, 5, & 6) was that the 56bit encryption package was completely broken in IE. The workaround was to force 128bit, or no encryption. I am not aware of any other issues. -Steve David Tunkrans wrote: > Hi > > > > I

Re: how to set exclusive-write-access="true" in orion-ejb-jar.xml

2002-05-17 Thread David Plante
I think orion finds out your database doest suport this feature or its not yet implemented for this db in orion. Exclusive-write-access default is set to true, so i beleive that orion resets it cause its not available.Otherwise be sure you remove orion-ejb-jar.xml before you deploy and make sure

Re: session management

2002-05-17 Thread Curt Smith
> earlier i did this with loadserver, that was working well, but the > problem in that , if the server where loadbalancer is running goes > down , my application will be killed. I agree that loadbalancer.jar is a great concern! No one's told me that a product like the Cisco Redirec

RE: help with trans. synchronization

2002-05-17 Thread Chris Francis
Don't know if this will help, but it looks like the problem starts with the execution of a finder query. So maybe review the sql you've set for this query in orion-ejb-jar.xml. Or maybe the query can return more than one row and you have it set to return a single entity instance in the ejb's home

Re: session management

2002-05-17 Thread Mike Shoemaker
Doesn't clustering solve this problem?   Mike - Original Message - From: kumarpal jain To: Orion-Interest Sent: Friday, May 17, 2002 2:15 AM Subject: session management Hello all   I am running my application on three servers. All are live servers . I am u

RE: Can't find servlet

2002-05-16 Thread Ian Roughley
Do you have the web application configured in the server.xml and default-web-site.xml filers in the config directory, and using the correct context/dir? /Ian >From Down & Around, Inc. Innovative IT solutions Software Architecture * Design * Development ~~~

Re: Cluster configuration

2002-05-16 Thread Scott Farquhar
This document will be of help: http://kb.atlassian.com/content/orion/docs/http-clustering.html Cheers, Scott sbpodila wrote: > Hi all, > > Can anybody explain the procedure for cluster configuration in Orion > server for web applications. > -- Scott Farquhar :: [EMAIL PROTECTED] Atlas

RE: Begging for help

2002-05-15 Thread Satter, Rabi
Can you point a browser at the url and get the wsdl? Are you trying to access the EJB directly? If so you need pro which can talk to stateless session beans. Probably doesn't matter but you might try putting the jar file in the orion/lib directory. Hopes this helps. -Original Message

RE: ClassCastException in generated code

2002-05-15 Thread Greg Davis
Did you change your bean recently? It sounds like your remotes are out of date. Ensure you remotes on the client side match up properly. Also ensure any Serialiazable classes you pass via method calls are not updated in only the client of server. This error normally happens when you either try t

RE: Orion Client jar files for remote application client

2002-05-14 Thread The elephantwalker
Pedro, This is the minimum list: orion.jar activation.jar jndi.jar ejb.jar Its also a good idea to include a jar with the home and remote interfaces of the ejb's you will be using. With kind regards, the elephantwalker www.elephantwalker.com -Original Message- From: [EMAIL PROTECTED

Re: Orion and JSP

2002-05-14 Thread Joseph Ottinger
Well, you haven't said what Orion is telling you, but typically the first thing you do is follow the installation instructions, every step of them, which includes copying tools.jar to $ORION. That's alkl you have to do. One wonders why the three steps are as complicated as they are. -

RE: Dynamic Proxies for remote interface wrapper?

2002-05-14 Thread Justin Wood
Implement clases conforming to the EJBUserManager API and overide the permission checking methods with logic that does that kind of checking ... then deploy like so: http://www.orionsupport.com/articles/ejbusermanager.html Justin -Original Message- From: Pletka, John [mailto:[EMAIL

Re: example of data-source.xml for Oracle 9i needed

2002-05-13 Thread gottfried
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mon, 13 May 2002, Matthew E. Porter wrote: > Darren: > Does this configuration provide any sort of connection pooling? nop, the pooled-location is missing. we have setup a datasource like this and i hope this is the correct way. sorry, but this

Re: testing

2002-05-13 Thread sudha parimala
  David Tunkrans <[EMAIL PROTECTED]> wrote: What are u testing for    Yahoo! Autos - everything you wanted to know about cars and bikes

RE: Dynamic Proxies for remote interface wrapper?

2002-05-13 Thread The elephantwalker
The orion-ejb-jar has the wrapper class noted. You can replace this class with your own, as long as you forward to the wrapper. With kind regards, the elephantwalker www.elephantwalker.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Pletka, John Se

Re: RV: Some questions about orion-ejb-xml.jar

2002-05-13 Thread Scott Farquhar
The correct place is to place them in the META-INF directory, next to your other deployment files. It *used* to be the orion directory, but that was changed a long time ago. This tutorial should help you understand the orion xml files more: http://kb.atlassian.com/content/atlassian/howto/o

Re: Orion and JSP

2002-05-13 Thread Corey Graham
It's simple if you have Orion running successfully. 1. In you orion's config directory you need to set up a web-app. Usually you use "default-web-site.xml" to do this. For instance add a line like: This holds your JSPs. 2. Then you can set up an application in your "server.xml" where a

Re: example of data-source.xml for Oracle 9i needed

2002-05-13 Thread Matthew E. Porter
Darren: Does this configuration provide any sort of connection pooling? -matthew On Mon, 13 May 2002, Darren Senel wrote: > This is what I use: > > name="OracleDS" > location="jdbc/OracleCoreDS" > xa-location="jdbc/xa/OracleXADS" > ejb-location="jdbc/OracleDS" > connecti

Re: example of data-source.xml for Oracle 9i needed

2002-05-13 Thread Darren Senel
This is what I use: >>> [EMAIL PROTECTED] 05/13/02 03:51AM >>> Hi all, may somebody provide me with example of of data-source.xml for Oracle 9i that supports CMT (container managed transactions) for Orion 1.5.2 ? Thank you in advance ITC-M, SIS Company Mr. Valeri Kireitchik Head of Applica

RE: Linux + Orion + IBM DB2

2002-05-12 Thread The elephantwalker
Denis, Take a look at this message, it may help you. Specifically, you need to use a db2.xml schema in your config/data-base-schemas directory, and refer to this schema in your data-sources.xml file. I would also test out your network configuration by using a jdbc client (netbeans, for example, h

RE: Please Unsubscribe me!!!!

2002-05-03 Thread Krishnan, Sri
Hi Could somebody point to the right place to find about the tag libs that orion provides for the Database hookup Thanks Sri -Original Message- From: Krishnan, Sri Sent: Monday, April 29, 2002 11:15 AM To: Orion-Interest Subject: Please Unsubscribe me Please Unsubscribe me

Re: Starting Orion as a service in Solaris 8

2002-05-03 Thread Leon John
put the port also >From: "Vu Le Hung" <[EMAIL PROTECTED]> >Reply-To: Orion-Interest <[EMAIL PROTECTED]> >To: Orion-Interest <[EMAIL PROTECTED]> >Subject: Starting Orion as a service in Solaris 8 >Date: Fri, 3 May 2002 14:44:14 +0700 > >Hi all, >I've been trying to start Orion as a service in Sun

Re: Starting Orion as a service in Solaris 8

2002-05-03 Thread Johan Fredriksson
Did you start the service as root? And did you remember to copy tools.jar to the /usr/local/orion ? - Original Message - From: "Vu Le Hung" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Friday, May 03, 2002 9:44 AM Subject: Starting Orion as a service in Solaris 8 >

Re: "Variable contained illegal space" Error on CMP Bean deploy????

2002-05-02 Thread Mike Shoemaker
This was due to having a custom primary key class and specifying both and in the ejb-jar.xml Once I removed the , it deployed without a problem. Mike - Original Message - From: "Mike Shoemaker" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Thursday, May 02, 2002

RE: Unsubscription and autoreplies

2002-05-02 Thread Linda Lott
NEITHER ONE OF THOSE WORK!!! I HAVE BEEN TRYING FOR WEEKS TO GET OFF THIS LIST! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Magnus Rydin Sent: Thursday, May 02, 2002 12:30 AM To: Orion-Interest Subject: Unsubscription and autoreplies Please use the

Re: "Variable contained illegal space" Error on CMP Bean deploy????

2002-05-02 Thread Ray Harrison
Mike - I've never come across this error, but perhaps if you provide more information (maybe your ejb-jar.xml) we can take a look.   Cheers Ray   Mike Shoemaker <[EMAIL PROTECTED]> wrote: Anyone run into this error? What does it mean? ThanksMikeDo You Yahoo!? Yahoo! Health - your guide to health

Re: what is LDAP ???

2002-05-02 Thread Giuseppe Galli
a tutorial http://java.sun.com/products/jndi/tutorial/ldap/models/v2.html and a ldap programming in Java http://developer.java.sun.com/developer/Books/ldap/ HTH Pino At 16.37 02/05/2002, gusl wrote: >Hi all, >What is LDAP ??? How to use iplanet directory server ??? >Who know some articles or li

RE: how to shutdown orion app server?

2002-05-02 Thread Michael C. Han
ost", true);    }        public void restart() throws RemoteException {    _admin.restart("localhost");    }   } -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of marsSent: Wednesday, May 01, 2002 9:02 PMTo: Orion-Int

Re: how to shutdown orion app server?

2002-05-01 Thread mars
use the follow command killall -15 java   - Original Message - From: gusl To: Orion-Interest Sent: Sunday, April 28, 2002 11:25 AM Subject: how to shutdown orion app server? Hi all,     I want to know how to shutdown orion app server ??? Use kill ???(under

RE: Initial context problem.

2002-05-01 Thread Alex Paransky
Not sure if the code you pasted is correct, however, you are missing a "new" keyword in front of the InitialContext(). Also, in your second try/catch block you are missing a call to new InitialContext(). I might be picky, but the source code you posted is not at all the source code that you are

RE: URGENT: Big issues with CMP 2.x and application-client !!!!

2002-05-01 Thread Ray Harrison
Hi For #1 below - adding the '_' for persistence names is likely due to the database schema definition in your config/database-schemas directory for your particular data source. It probably has 'password' as a disallowed field and hence will add the '_' to the field name - if you have an existing

Re: Initial context problem.

2002-05-01 Thread Scott Farquhar
This has been discussed many times on the mailing list. env.put("dedicated.connection","true"); Also see: http://bugzilla.orionserver.com/bugzilla/show_bug.cgi?id=738 Cheers, Scott Jesper Rasmussen wrote: > Hi all, > Im trying to make an application which askes for the login and password > to

Re: SOAP and Orion

2002-05-01 Thread Jon Bricker
Please forward me on to whomever solved this. I'm using orion 1.5.4 so an upgrade is out of the question. I would like to talk to someone and see how they set up orion, their application and their classpath. --- [EMAIL PROTECTED] wrote: > Hi Jon, > We had a similar sounding problem with SOAP an

RE: URGENT: Big issues with CMP 2.x and application-client !!!!

2002-05-01 Thread Gavin Spurling
I believe it only does this on fields named "password" as this can be a reserved word in some DBs, it will do this if its autogenerating the tables for you. You can always edit the orion-ejb-jar.xml file and change the mapping to what suits you. -Original Message- From: [EMAIL PROTECTED]

RE: ORION 1.5.4 session bean serialization failed

2002-04-30 Thread Dvornikov Victor
Title: Meddelande Am I alone with this problem?   Serialization of the session bean : JNDI lookup in the getEJBObject failed as if there is no the name sought. I checked the name inside the readObject. It's OK. Although this problem (I fear to say bug) is not fatal. It's annoying.       pri

Re: CMP entity bean deployment compilation errors

2002-04-30 Thread Jeff Hubbach
Scott, We are deploying ejb 2.0 beans with both the remote and local defined with no problems. We _did_ get that same error about the java.rmi.RemoteException must be caught or declared in the throws clause when setting exclusive-write-access to false in the orion-ejb-jar.xml. You might check

Re: SOAP and Orion

2002-04-30 Thread dracmed
Hi Jon, We had a similar sounding problem with SOAP and when we upgraded to orion 1.5.2 the problem was fixed. I wasn't the one working on the problem so I don't have much more info. Hope this helps. -Heath --- Jon Bricker <[EMAIL PROTECTED]> wrote: > I really need some help getting a SOAP appl

Re: Please Unsubscribe Me

2002-04-29 Thread Sorin Pop
remove me

RE: Message Driven Beans

2002-04-29 Thread Justin Wood
Implementing a Message-Driven Bean in Orion. (Tested with orion 1.5.4) 1.) == The MDB code - LogBean package mycode.ejb.mdb; import javax.ejb.*; import javax.jms.*; public class LogBean implements MessageDrivenBean, MessageListener { protected MessageDrivenContext c

Re: JMS and load balancing

2002-04-29 Thread kumarpal jain
Hi there is a nice documentaion for this at this link   http://www.orionserver.com/docs/http-clustering.html   hope this will help you,   Kumar   - Original Message - From: Jorge Jimenez C To: Orion-Interest Sent: Monday, April 29, 2002 6:40 PM Subject: JMS and load b

Re: CMP entity bean deployment compilation errors

2002-04-29 Thread Scott Gaetjen
A follow-up to this issue, which I feel is resolved. I tried 1.5.4 and then encountered the following compilation errors: CodeListsEBLocalHome_EntityHomeWrapper10.java:156: Exception java.rmi.RemoteException must be c aught, or it must be declared in the throws clause of this method. EvermindEnti

RE: XSL and Sitemesh on Orion

2002-04-29 Thread prasanth sb
#x27;s? thanks, Prasanth. >From: "The elephantwalker" <[EMAIL PROTECTED]> >Reply-To: Orion-Interest <[EMAIL PROTECTED]> >To: Orion-Interest <[EMAIL PROTECTED]> >Subject: RE: XSL and Sitemesh on Orion >Date: Mon, 22 Apr 2002 20:19:27 -0700 > >retry .

Re: Re: how to shutdown orion app server?

2002-04-29 Thread Lachezar Dobrev
  Hi. Again.   Now. The code seems correct. Except, the url, that MAY require to be of the type: ormi://localhost/Your_App_Name.   If you have deployed your beans in an application, and NOT in the default APP, you HAVE to use the url with the app_name at the end.   in config/server.xml    

Re: Re: how to shutdown orion app server?

2002-04-29 Thread Liu Bin
but i can't look up my ejb,how to config it. thanks     Hi.   Make sure you remove the 'deactivated="false"' for admin in config/principals.xml     Lachezar. Hi, I writed one EJ

Re: how to shutdown orion app server?

2002-04-29 Thread Renaud Bruyeron
That command seems to hang on linux 2.4.x / 1.3.1 as soon as you've deployed something. It works great on win2k, though, so I suspect the linux JVM. Under linux, I usually have to CTRL-C or kill the process. - Renaud - Original Message - From: "Jesper Rasmussen" <[EMAIL PROTECTED]> T

Re: how to shutdown orion app server?

2002-04-29 Thread Mark Kettner
Hi Liu, Did you run orion -install when you installed orion (or changed admin password in principals.xml)? This username/password should correspond with the username/password from the jndi.properties file of the client application Mark On Sun, 2002-04-28 at 13:02, Liu Bin wrote: > Hi, > I wri

Re: how to shutdown orion app server?

2002-04-28 Thread Lachezar Dobrev
  Hi.   Make sure you remove the 'deactivated="false"' for admin in config/principals.xml     Lachezar. Hi, I writed one EJB and deployed it successful on Orion 1.5.4. But i get the Exception when i test it used one client application: javax.naming.AuthenticationException: Invalid

RE: NullPointerException on CMP entity bean deployment

2002-04-28 Thread Jeff Schnitzer
Hey, what magical incantation produced a non-obfuscated version of Orion? I have stack-trace envy. Jeff Schnitzer [EMAIL PROTECTED] > -Original Message- > From: Scott Gaetjen [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 26, 2002 11:03 PM > To: Orion-Interest > Subject: NullPointer

Re: how to shutdown orion app server?

2002-04-28 Thread Liu Bin
Hi, I writed one EJB and deployed it successful on Orion 1.5.4. But i get the Exception when i test it used one client application: javax.naming.AuthenticationException: Invalid username/password for default (admin)    at com.evermind._dn._mu(.:2173)    at com.evermind._

Re: Cached data in entity beans

2002-04-27 Thread Joseph Ottinger
gt; different bean) I get old data. How can I force EJBs to re-read > changed data from table? > > Sergey > >

Re: Virus Alert

2002-04-26 Thread huynhha
please, remove me

Re: OffTopic: Entity-Beans and relational structure (out ofoffice 4/24-4/26)

2002-04-26 Thread Jennifer Goree
I will be out of the office from the afternoon of Wednesday April 24th through the afternoon of Friday April 26th. If you have an emergency problem with the website, please contact Russell Dodds. thanks, Jen

Re: EJB load error on 1.5.4 (out of office 4/24-4/26)

2002-04-26 Thread Jennifer Goree
I will be out of the office from the afternoon of Wednesday April 24th through the afternoon of Friday April 26th. If you have an emergency problem with the website, please contact Russell Dodds. thanks, Jen

Re: timezone issue (out of office 4/24-4/26)

2002-04-26 Thread Jennifer Goree
I will be out of the office from the afternoon of Wednesday April 24th through the afternoon of Friday April 26th. If you have an emergency problem with the website, please contact Russell Dodds. thanks, Jen

Re: OffTopic: Entity-Beans and relational structure

2002-04-26 Thread Warren Hedley
Hi Max, I don't know if it's much use, but an old tutorial I wrote on handling many-to-many relationships in Orion, using the exact same example you use, might be of use to you. You can find it here (it's also on Atlassian.com, but I don't have the link handy). http://users.sdsc.edu/~whedley/

Re: timezone issue

2002-04-26 Thread Pierre Metrailler - shockfish /
I thought that the timezone had nothing to do with Orion, too. But when I run the same code in a standalone application (i.e. not loading the class within Orion), I get a correct behaviour. And I'm using the same VM. So, the standalone app yields a timezone w/ DST and a class within Orion yie

RE: MySQL Connection Pool? (out of office 4/24-4/26)

2002-04-26 Thread Jennifer Goree
I will be out of the office from the afternoon of Wednesday April 24th through the afternoon of Friday April 26th. If you have an emergency problem with the website, please contact Russell Dodds. thanks, Jen

RE: MySQL Connection Pool?

2002-04-26 Thread Koster, K.J.
Dear All, > > what about the database schema? > http://kjkoster.org/java/ Hunt around in the menue for MySQL connection for Orion. It's somewhere near the Tomcat tutorial. Kees Jan = You can't have everything. Where would you put it?

RE: Accessing an EJB in Orion App server from a servlet in Iplanet

2002-04-25 Thread nishant usapkar
-Interest Subject: RE: Accessing an EJB in Orion App server from a servlet in Iplanet Hello, I have tried several times with different options 1. If I try Object homeObject = ctx.lookup("java:comp/env/fred/fredBean"); instead of Object homeObject = ctx.lo

RE: OffTopic: Entity-Beans and relational structure

2002-04-25 Thread Jeff Schnitzer
elationships in particular are hopelessly immature in Orion, and they're even painful in WebLogic. Jeff Schnitzer [EMAIL PROTECTED] > -Original Message- > From: Chris Nias [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, April 24, 2002 7:49 AM > To: Orion-Interest > Subj

Re: Error while accessing http://localhost

2002-04-24 Thread Scott Farquhar
This sounds like you have some very serious problems. http://java.sun.com/j2se/1.3/docs/api/java/lang/IllegalAccessError.html I would try reinstalling - I haven't seen this error before. Cheers, Scott Dinesh Kandambeth wrote: > Dear All, > > I have installed Orion 1.5.2 and started the same o

RE: Accessing an EJB in Orion App server from a servlet in Iplanet

2002-04-24 Thread Grum Ketema
planet Regards, Grum -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of sbpodila Sent: Wednesday, April 24, 2002 12:20 AM To: Orion-Interest Subject: Re: Accessing an EJB in Orion App server from a servlet in Iplanet Did you got any error or exception while trying to acc

Re: A very excite game

2002-04-24 Thread KirkYarina
They seem to be coming from dial up connections with an ISP in Argentina, SiON Telematica. Quite possible it's yet another kiddie that needs a good whack where it would do the most good... It's a good reason to strip attachments from mail-list messages, and not allow posts from non-list membe

Re: Internal Server Error

2002-04-24 Thread Castello Cities Internet Network, Inc.
Please remove [EMAIL PROTECTED] from this mailing list! - Original Message - From: "magnus-jowena chua" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Wednesday, April 24, 2002 1:53 AM Subject: Internal Server Error > Has anyone encountered this error? > > Syntax

RE: OffTopic: Entity-Beans and relational structure

2002-04-24 Thread Chris Nias
If you get the Java 2 Enterprise Edition Developers Guide (I have v 1.2.1 pdf) from www.java.sun.com Then it is on page 135 - Mapping Table Relationships to Entity beans It goes on to describe when you should use entity beans, and when to use helper classes (hint: that is what you need!) It also

Re: Accessing an EJB in Orion App server from a servlet in Iplanet

2002-04-23 Thread sbpodila
Did you got any error or exception while trying to access the bean?I think you may get a security related exception regards Sasi. - Original Message - From: "Grum Ketema" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Wednesday, April 24, 2002 6:54 AM Subject: Accessi

Re: A very excite game

2002-04-23 Thread JorgeDeFlon
Title: Meddelelse it is another virus trying to catch us It is not the first time that this happens here. regards       - Original Message - From: Torstein P. Nilsen To: Orion-Interest Sent: Monday, April 22, 2002 6:32 AM Subject: SV: A very excite game Hello,

Re: Does Orion support PHP? How to enable it?

2002-04-23 Thread sachin mahajan
try this link   http://www.orionsupport.com/articles/php.html   sachin - Original Message - From: wzfg To: Orion-Interest Sent: Tuesday, April 23, 2002 7:29 AM Subject: Does Orion support PHP? How to enable it? Hi,Friend, As Httpd Server, Does Orion support

RE: XSL and Sitemesh on Orion

2002-04-22 Thread The elephantwalker
retry ... -Original Message-From: The elephantwalker [mailto:[EMAIL PROTECTED]]Sent: Monday, April 22, 2002 8:59 AMTo: Orion-Interest; [EMAIL PROTECTED]Subject: RE: XSL and Sitemesh on Orion Dear Peter, Theres a bug in sitemesh so that only jsp files work. I believe that xsl would

Re: timezone issue

2002-04-22 Thread Romen Law
ello, Timezone is implemented as part of JDK, has nothing to do with the application servers. I noticed that JDK1.3.0 had problems with timezone for Sydney (Sydney had special daylight saving in year 2000 due to Olympic). But JDK1.3.1 had fixed the problem. cheers romen - Original Message -

Re: WARNING. You tried to send a potential virus or unauthorised code

2002-04-22 Thread Robert E. Moran
can you eliminate this??? [EMAIL PROTECTED] wrote: >The Star Internet anti-virus service, powered by MessageLabs, discovered >a potential virus or unauthorised code (such as a joke program or >trojan) in an email sent by you. > >The email has now been quarantined and was not delivered. > >To hel

RE: problems w/ multiple queues w/ MDBs

2002-04-22 Thread Shawn Pourchot
Orion's JMS is really buggy, it fails almost all the compatibility tests for JMS. We did a similar thing that you are experimenting with, only the MDB response queue is a queue on OpenJMS. I believe our first attempts to do this on Orion completely failed. I haven't tried it with 1.5.4, but unt

Re: Orion with Axis Part 2

2002-04-22 Thread Peter Beck
Hello Eddie! Today I started with SOAP on Orion, and I get almost the same error message as you do. Did you solve the problem you had (below). Which sample did you try? I tried the addr example. (First you have to prepare and compile it, then deploy the service and run the demo) When I move t

RE: How can I simplify a URL?

2002-04-22 Thread Alex Paransky
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Scott Farquhar Sent: Thursday, April 18, 2002 3:04 AM To: Orion-Interest Subject: Re: How can I simplify a URL? Just have one directory level. eg: http://view.myprofiles.com/p/127 Then map the servlet to /p* That avoids pro

Re: JNDI question: client talking to EJBs on multiple app servers

2002-04-19 Thread Lachezar Dobrev
Well... "dedicated.connection=true" is not documented :))) Second. There ARE drawbacks. The method you show in the message will lead you to resource leakage. Try reusing contexts for one and the same target. Anyway. The Answer is: YES, it WILL work. However. The classes, for the Home

Re: Creating a Service for launching Orion in Windows 2000

2002-04-18 Thread Scott Farquhar
There are many ways of running as a service documented here: http://kb.atlassian.com/content/orionsupport/articles/orserv.html Cheers, Scott Matt Siegfried wrote: > I have followed the steps I found in the posting on OrionServer.com to > create a service that will automatically launch Orion,

Re: Creating a Service for launching Orion in Windows 2000

2002-04-18 Thread Brian Smith
Here is my srvstart.exe INI file for OC4J. I suppose one for Orion would be similar. [OracleOC4J] #to install the service: srvstart install OracleOC4J -c c:\oracle\conf\oc4j\service.ini #to remove the service: srvstart remove OracleOC4J #make sure that the system PATH inclues the folder #cont

Re: JNDI question: client talking to EJBs on multiple app servers

2002-04-18 Thread David Moles
Brilliant -- thanks. What I couldn't find was any documentation on what goes in the environment Hashtable. :) What does the dedicated.connection=true property do? If I were to do this: public FooRemote getRemote(String jndiURL) { Hashtable env = new Hashtable(); env.put(Context.PR

Re: Creating a Service for launching Orion in Windows 2000

2002-04-18 Thread Shal Jain
If you are using JNT to to launch orion as a service and assuming orion in installed on d:\orion the following line will install orion to run as a service named Orion_Server jnt "/InstallAsService:Orion_Server" "/SDd:\orion" -jar orion.jar -out d:\orion\log\stdout.log -err d:\orion\log\stderr.lo

Re: How can I simplify a URL?

2002-04-18 Thread vertigrated
how does this obfuscation "simplify" the processing? > I have a url which looks like this: > > http://www.myprofiles.com/view.do?profileId=127 > > I would like to be able to replace it with: > > http://view.myprofiles.com/127 > > I know how to create a new website with view.myprofiles being se

RE: JNDI question: client talking to EJBs on multiple app servers

2002-04-18 Thread Greg Davis
We have a similary situation where a tool we use needs to switch between development,test,and production. We just setup a simple class to reset our InitialContext by closing the old one and passing in the properties when the switch is requested. We created a property file like this: development.

RE: How can I simplify a URL?

2002-04-18 Thread Juan Pablo Lorandi
Ideas: 1) Create a filter to handle this. OR 2) Use an error page for HTTP error 404 which redirects or includes HTH, Juan Pablo Lorandi Chief Software Architect Code Foundry Ltd. [EMAIL PROTECTED] Barberstown, Straffan, Co. Kildare, Ireland. Tel: +353-1-6012050 Fax: +353-1-6012051 Mobile:

Re[2]: How can I simplify a URL?

2002-04-18 Thread Robert Virkus
Hallo Axel, you also can set up a virtual server like www1.myprofiles.com in which you can run your applications. (http://kb.atlassian.com/content/orionsupport/articles/vhosts.html) Then map "/*" of your main-domain (www.myprofiles.com) to your servlet and redirect every request to your virtual

Re: how to use unchecked tag?

2002-04-18 Thread Ray Harrison
You aren't missing anything. Orion 1.5.4 ignores this flag completely and was reported as bug #732 in bugzilla. This has been fixed for the next release but in the meantime you'll have to get creative - comment out the method-check section of the ejb-jar.xml, that sort of thing. Although if you ar

Re: How can I simplify a URL?

2002-04-18 Thread Scott Farquhar
Just have one directory level. eg: http://view.myprofiles.com/p/127 Then map the servlet to /p* That avoids problems with images. Cheers, Scott Alex Paransky wrote: > I have a url which looks like this: > > http://www.myprofiles.com/view.do?profileId=127 > > I would like to be able to repla

Re: JNDI question: client talking to EJBs on multiple app servers

2002-04-17 Thread Lachezar Dobrev
Hi. A working model is to create two Initial Context-s for each server. Use a "dedicated.connection=true" property to create the context. The "dedicated.connection" however leads to resource leakage, and if you keep creating more and more of them you will eventualy get "java.lang.OutOfMemo

  1   2   3   4   5   6   7   8   9   10   >