Datasource info access restriction/encryption

2001-09-06 Thread Alexander Kaprelov
Hello! Is there any way to have username/password in encrypted form in the datasources.xml file, or the only way to secure DB access is to restrict access to datasources.xml file itself? Alex.

SV: Orion and Sax/JDom

2001-09-06 Thread Magnus Rydin
To follow the java extenssion mechanism, you should have a class-path entry in the EJB jar file that points to the other jar file bundled with the ear. WR -Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]För The elephantwalker Skickat: den 6 september 2001

Re: Orion and Sax/JDom

2001-09-06 Thread Johan Fredriksson
Title: Message If you're using Windows you might want to check your registry. If you can type java -server -jar orion.jar the settings should be ok. Look for anything in the registry that says javasoft and make sure it points to your jdk installation dir. If it is not pointing to your jdk

R: Memory leak using session bean - how to make sure?

2001-09-06 Thread Davanzo Luca
Ciao, Anch'io ho gli stessi tuoi problemi vedi miei precedenti messaggi.. Non ho scoperto come risolvere la cosa.. -Messaggio originale- Da: Diego Amicabile [mailto:[EMAIL PROTECTED]] Inviato: mercoledì 5 settembre 2001 15.24 A: Orion-Interest Oggetto: Memory leak using session

Stored procedures and J2EE

2001-09-06 Thread Cristian Donciulescu
Is it possible (and recommended) to use stored procedures with the J2EE architecture? We would be interested in creating objects directly into the database, bypassing the create method of the enterprise bean. Is this possible when using CMP (Container Managed Persistence)? If not, in your

RE: Stored procedures and J2EE

2001-09-06 Thread The elephantwalker
A bean is just a representation of data in a datastore with a collection of finder and business methods. You can use cmp's to access data which is already in a datastore. Astateless session beancan be used to fire off your create procedures, and this slsb can be in your cmp create (or

Re: Datasource info access restriction/encryption

2001-09-06 Thread Dragonchick
äÏÂÒÏÅ ×ÒÅÍÑ ÓÕÔÏË! Hello! Is there any way to have username/password in encrypted form in the datasources.xml file, or the only way to secure DB access is to restrict access to datasources.xml file itself? îÉËÔÏ ÎÅ ÍÅÛÁÅÔ ÎÁÐÉÓÁÔØ ËÌÁÓÓ ÎÁÓÌÅÄÎÉË ÏÔ

RE: OracleAQ and Orion

2001-09-06 Thread Montebove Luciano
I don't know Oracle Advanced Queueing, but I had a similar problem integrating SonicMQ and Orion. I solved it following the architecture described in this paper from Sonic Software http://www.sonicsoftware.com/white_papers/appserver.pdf that describe the integration of SOnicMQ and Weblogic, but

RE: Datasource info access restriction/encryption

2001-09-06 Thread Mikael Staldal
îÉËÔÏ ÎÅ ÍÅÛÁÅÔ ÎÁÐÉÓÁÔØ ËÌÁÓÓ ÎÁÓÌÅÄÎÉË ÏÔ com.evermind.sql.DriverManagerDataSource É ÐÅÒÅÏÐÒÅÄÅÌÉÔØ ÔÁÍ ÍÅÔÏÄ getConnection(). ôÏÇÄÁ × ÜÔÏÍ ÍÅÔÏÄÅ ÍÏÖÎÏ ÄÅËÒÉÐÔÉÔØ ÐÁÒÏÌØ É ×ÙÚÙ×ÁÔØ ÍÅÔÏÄ ÐÒÅÄËÁ. ðÏÞÔÉ ÔÏ ÖÅ ÓÁÍÏÅ É ÄÌÑ ÏÓÔÁÌØÎÙÈ ËÌÁÓÓÏ× ÔÉÐÁ com.evermind.sql.DriverManager. äÏËÁ

How to call A EJB in OC4j from other Servers

2001-09-06 Thread Venkata_Nallam
Dear All, I would like to know, how to invoke a EJB bean in OC4J from another machine. What are the steps I have to follow. It would appreciated if any one help in this regard. Thanking you With regards Venkata

RE: Stored procedures and J2EE

2001-09-06 Thread Cristian Donciulescu
Thanks for your help. The reasonI want to use stored procedures it that we want to make use of a datamodel that we already have. This data-model uses stored procedures intensively. What would you suggest? Keep the data model as is and adapt the J2EE code to it or change the data-model so that we

Re: Datasource info access restriction/encryption

2001-09-06 Thread Alexander Kaprelov
ðÒÉ×ÅÔ, ìÅÛÁ! óÐÁÓÉÂÏ, ÐÏÐÒÏÂÕÀ. óÏ×ÓÅÍ ÚÁÂÙÌ ÐÒÏ ÜÔÏÔ ÏÒÉÏÎÏ×ÓËÉÊ ÆÉÎÔ Ó ÕÎÉ×ÅÒÓÁÌØÎÙÍ DS. ÷ÏÏÂÝÅ ÖÉÚÎØ ×ÒÏÄÅ ÎÉÞÅÇÏ, ×ÏÔ ÚÁ×ÔÒÁ ÉÌÉ × ÐÏÎÅÄÅÌØÎÉË ÄÅÍÏÎÓÔÒÁÃÉÑ ÒÅÚÕÌØÔÁÔÁ ÎÁÞÁÌØÓÔ×Õ. äÁÌØÛÅ ÎÁÄÅÀÓØ ÎÁ ÒÁÚ×ÉÔÉÅ ÐÒÏÅËÔÁ, ÔÅÍ ÂÏÌÅÅ, ÞÔÏ ×ÚÑÌÉ ÎÅÄÁ×ÎÏ ËÏ ÍÎÅ × ÇÒÕÐÐÕ ÅÝÅ Ä×ÏÉÈ ÓÉÌØÎÙÈ

Re[2]: Session share problem.

2001-09-06 Thread Rafael Alvarez
Hello Jishan, There is an option (shared=true as stated in other posting) to share session between different instances of the SAME application. The keyword is SAME. If you use different applications for each of your normal site and your secure site then that solution won't work. What you can do

RE: IIS Orion AJP13

2001-09-06 Thread Montebove Luciano
The official response I received from K. Avedal (June 2001) about the AJP13 support: Hello, It was found to be broken and was deactivated until it's fixed. It seems the deactivation somehow didn't end up in changes.txt, sorry about that. Regards, Karl Avedal -Original Message- From:

UNSUSCRIBE

2001-09-06 Thread áÌÅËÓÁÎÄÒ

RE: Stored procedures and J2EE

2001-09-06 Thread The elephantwalker
Christian, It will make your life more complex, because it sounds like some of your business methods are built into the stored procedures (before j2ee, this was why we used stored procedures!). All in all, the cost of qa/qc on a new data model should be weighed against the cost of

Re: Datasource info access restriction/encryption

2001-09-06 Thread Dragonchick
OK, jag forstar precis, tack sa mycket. Please write in English! Sorry, my fault... One more time: Is there any way to have username/password in encrypted form in the datasources.xml file? I think, yes. data-source class=com.evermind.sql.DriverManagerDataSource name=Oracle

Re: How to call A EJB in OC4j from other Servers

2001-09-06 Thread Paolo Ramasso
ciao i used to access a remote ejb from a servlet. put the home and remote in the -cp java option java -cp .\orion.jar;.yourhomeremote com.evermind.server.ApplicationServer code like this. the servlet: import javax.servlet.*; import javax.servlet.http.*; import java.io.*; import

RE: How to call A EJB in OC4j from other Servers

2001-09-06 Thread Pazhyvilka, Yury
Hi all, that is really good question as I am trying to make it running second day. Documentation says NOTHING about it or, at least I don't know where to search. If anybody could help it would be really great. ...or, at least share your experience concerning that point. thank you.

Re: Stored procedures and J2EE

2001-09-06 Thread Rian Schmidt
I'm interested as to how you cansay this... we just did a series of tests here to see what the effect of pulling out some fairly complex stored procedures into CMP beans, and the performance impact was enormous. We've actually gone the other way, that is, developing stored procedures for

Re: UNSUSCRIBE

2001-09-06 Thread xymedia
- Original Message - From: Sadie Contini [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Wednesday, August 08, 2001 10:51 AM Subject: UNSUSCRIBE

RE: Stored procedures and J2EE

2001-09-06 Thread The elephantwalker
Rian, If you access the stored procedures from a slsb, its just like you ran a jdbc from a stand alone program or a servlet, only you are using the middle-tier to provide the business method facade to the stored procedure. I would not recommend accessing the stored procedures through the

RE: Stored procedures and J2EE

2001-09-06 Thread Juan Lorandi (Chile)
I (empirically) reached the same conclusion; but instead of dropping CMP, we provided performance improvements ON TOP of the EJB's (VO's and VO caches). Thank god we did it this way, because the DB can't scale as easily as the app-server cluster. My 2c, JP -Original

Auto-reply: Re: Stored procedures and J2EE

2001-09-06 Thread ATTILA.BODIS
I will be on vacation with no access to email until September 10, 2001. For issues concerning the Online Studio, please contact Jiong Wang ( [EMAIL PROTECTED] ). For issues concerning device support (including stylesheets), please contact Young Lee ( [EMAIL PROTECTED] ). Thanks, Attila Bodis

Instantiating a SAX parser (Xerces)

2001-09-06 Thread Dean H. Saxe
I am trying to instantiate a SAX parser with the following code in a JSP: // Instantiate a parser XMLReader parser = XMLReaderFactory.createXMLReader(org.apache.xerces.parsers.SAXParser); However, each time I do I receive the following exception: 500 Internal Server Error

RE: Stored procedures and J2EE

2001-09-06 Thread Bill G
Using EJB means that you can use CMP, BMP or an Object/Relation Mapping tool. I have found CMP to be very limited. I have found BMP with stored procedures way moreflexible when working with relational database and I have found Object/Relation mapping even better. An O/R mapping tool like

Re: Session share problem.

2001-09-06 Thread Al-Akhras, Khaled
In order to share a web-app between a HTTP and HTTPS site at the same context path, do the following. I just tried this on my machine and it works fine. I am using Orion1.5.2 on Windows2000. config/server.xml - ?xml version=1.0? !DOCTYPE application-server PUBLIC Orion

RE: Stored procedures and J2EE

2001-09-06 Thread The elephantwalker
Well I do like R.E.M., and that religion song, but interestingly enough, I don't wear glasses ;). But seriously, I have also tried this both way's. And cmp dev can be done in 1/4 the time...see below for performance comparisons. Take a look at McGouphlin's column on pk generation in the

RE: Auto-reply: Re: Stored procedures and J2EE

2001-09-06 Thread Metla, Suri
-Original Message- From: ATTILA.BODIS [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 06, 2001 2:27 PM To: Orion-Interest Subject: Auto-reply: Re: Stored procedures and J2EE I will be on vacation with no access to email until September 10, 2001. For issues

UNSUSCRIBE

2001-09-06 Thread HyungKee Hwang

RE: Stored procedures and J2EE

2001-09-06 Thread Bill G
One jvm in a database cannot compete with 42 or more jvm's in a fully distributed application. In the extreme case of a filter on text output, the app-servers' jvms will leave the database jvm in the dust. That might be true if you had one jvm in one db host, but the reality is that a cluster of

UNSUSCRIBE

2001-09-06 Thread Chris
-- ???: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] : 2001?9?7? ?? 03:58 ???: [EMAIL PROTECTED] ??: Re: UNSUSCRIBE - Original Message - From: Sadie Contini [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Wednesday, August 08, 2001 10:51 AM Subject:

Re: Re[2]: Session share problem.

2001-09-06 Thread Jishan Li
Thanks, Greg Rafael. I post this message yesterday but it was lost, I think. Try again today, hope to get some help. Yes. I have share="true", the secure and non-secure site is within a SAME application. My configs like followings.. 1) when I start the

Re: Session share problem.

2001-09-06 Thread Jishan Li\(CN\)
My problem is that if the first request to the webapp is https://... , session share is not proper. If the first request is http://.. everything goes well! What is the problem? - Original Message - From: Al-Akhras, Khaled [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent:

Debugging with Orion/Kawa Pro 5.0

2001-09-06 Thread DENNIS STRAIGHT
I appreciate Dave Smith's write-up on debugging with Orion/Kawa but, unfortunately, I think I'm missing something and need more info. Here is what I did: Created a new project with all of my java files (servlets, EJBs, and regular Java). Added Orion.jar to the Kawa classpath. Set the class to

Re: Re[2]: Session share problem.

2001-09-06 Thread Jishan Li\(CN\)
Dear Rafael: Thanks a lot. I've solved the session share problem. I found the clue in your old message: http://www.mail-archive.com/orion-interest@orionserver.com/msg15659.html Sometimes I can't post message to the mailing list, so I email you, and thank you. I think it is someting

Re: How to call A EJB in OC4j from other Servers

2001-09-06 Thread Paolo Ramasso
ciao you hato do code somethibg like this: import addressbook.ejb.*; import javax.ejb.*; import java.rmi.*; import javax.rmi.PortableRemoteObject; import javax.naming.*; import java.util.*; import java.net.*; public class AddressBookClient extends java.lang.Object { public