Orionserver php

2000-12-12 Thread Hernetkoski, Jukka
Hello folks, has anyone mixed orionserver and php? If you don't want to install Apache, but enable php, will it run over orionserver? Regards, Jukka

Singleton classes and Clustering

2000-12-12 Thread Ismael Blesa Part
In my application I use somo singleton classes to store some data that is common to all the sessions. Noy I want to use LoadBalancing and Clustering from Orion, how Singleton classes are treated by Orion when LoadBalancing and Clusteing are used?

Re: restarting orion-server

2000-12-12 Thread Marcus Lankenau
Hi Michael! "Michael S. Kelly" wrote: Have tried telneting into your server and executing the following at the command prompt? java -jar admin.jar ormi://localhost/ admin 123 -restart "admin" is a user name with administration permissions and "123" is the password (see the principals.xml

orion integration with vaj 3.5

2000-12-12 Thread Stanislav Bernatsky
Hello! Is it possible to debug ejb's in visual age fo java like it was done for servlets in Tomcat (see links below)? I have done the same steps for orion 1.4.0. Now it starts but cannot deploy my ejb's and run example servlets. Error messages are: 'Error loading package at

Re: Orionserver php

2000-12-12 Thread Joe Walnes
Yes it does, and very well indeed. Nice thing is that PHP can interact with Java objects (such as EJB's) so it makes for a nice presentation layer. I await the flames. -Joe Walnes At 10:19 12/12/2000 +0200, you wrote: Hello folks, has anyone mixed orionserver and php? If you don't want to

Re: Faster encryption

2000-12-12 Thread Serge Knystautas
-Original Message- From: [EMAIL PROTECTED] Subject: Faster encryption I noticed a TPS drop (transactions per second) of factor four when I benchmarked my application using 128 bit SSL encryption (5 client threads) compared to non-encrypted benchmarking. I know that the SSL layer

SV: Orionserver php

2000-12-12 Thread Klaus . Myrseth
This is actually VERY easy to do, just compile a normal php cgi executable without apache integration and install it in your path... Dont touch anything in orion, but restart it... Then make a file in your default webapp or something containing the following to test if it works: info.php -

RE: Faster encryption

2000-12-12 Thread David Ekholm
I did a check upon the JSSE spec. It comes in two versions. One for the US and one for non-US countries. The international version does not allow other "service providers" to be plugged-in, thus I am stuck with the slow performance of the Sun JSSE implementation :-((( I hate it when those morons

RE: UserManagers

2000-12-12 Thread Arved Sandstrom
Hi, Juan We haven't done anything remarkable with EJBUserManager; simple declarations in one or more appropriate ejb-jar.xml files, and in orion-application.xml. The 2 tables (user and group) were successfully created, we loaded up some user data of our own, and our app has since successfully

Re: Orionserver php

2000-12-12 Thread Joseph B. Ottinger
You're a dork! On Tue, 12 Dec 2000, Joe Walnes wrote: Yes it does, and very well indeed. Nice thing is that PHP can interact with Java objects (such as EJB's) so it makes for a nice presentation layer. I await the flames. -Joe Walnes At 10:19 12/12/2000 +0200, you wrote: Hello

Re: SV: Orionserver php

2000-12-12 Thread Joe Walnes
Or, if you're feeling daring... Compile PHP as a servlet and then place the classes and necessary servlet-mappings in your web-app. Then from your PHP, you can do stuff like: % $ctx = new Java("javax.naming.InitialContext"); $myHome = $ctx-lookup("ejb/MyBean"); $me =

Re: SSL Singletons

2000-12-12 Thread Todd Renner
Hi, I don't know, my guess is yes they are replicated. Do you have any log messages in your singletons?That's how I'm going to test my singletons with SSL to see if there are multiple instance's. Anybody know the answer to the original question below? Thanks. Ismael Blesa Part

Re: Faster encryption

2000-12-12 Thread Ismael Blesa Part
Yes you can do this, but if you want client authentication how do you configure Orion to get Digital Certificates from Apache. Serge Knystautas wrote: -Original Message- From: [EMAIL PROTECTED] Subject: Faster encryption I noticed a TPS drop (transactions per second) of

Re: restarting orion-server

2000-12-12 Thread Johan Fredriksson
Someone mentioned earlier that orion doesn't stop if you have started some threads on your own, that still are running, make sure to check that they don't defunct. - Original Message - From: "Marcus Lankenau" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Tuesday,

JMS and distributed EJBs

2000-12-12 Thread Lopez Esteban
Hi! I need some help about JMS configuration. My problem is: I have 2 orion servers, orionA and orionB, I have configured my servers like this: orionA (rmi.xml): server host="orionB" username="admin" password="admin" / orionB (rmi.xml): server host="orionA" username="admin" password="admin" /

RE: please help me, from yoursUrey

2000-12-12 Thread Kevin Wang
JavaMail API from Sun is all you need. It contains both smtp and pop3 implementation and all documents on how to use them. Kevin -Original Message- From: ureyurey [mailto:[EMAIL PROTECTED]] Sent: Monday, December 11, 2000 7:12 PM To: Orion-Interest Cc: [EMAIL PROTECTED] Subject: please

Deployment problems!

2000-12-12 Thread Hörður Birgisson
Title: Deployment problems! I'm new to Orion Server and I'm having problems setting up my EJB beans. I put all my .jar files in one .ear file. My application.xml looks like this ?xml version=1.0? !DOCTYPE application PUBLIC -//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN

Re: Faster encryption

2000-12-12 Thread Serge Knystautas
- Original Message - From: "Ismael Blesa Part" [EMAIL PROTECTED] Yes you can do this, but if you want client authentication how do you configure Orion to get Digital Certificates from Apache. I believe you can configure Apache to pass along the SSL certificate information as

RE: Singleton classes and Clustering

2000-12-12 Thread Juan Lorandi (Chile)
wrongly singletons are kinda prohibited from EJB because it usually doesn´t allow for linear scaling... perhaps if you could use a single server for singletons, with each machine in the cluster pointing to it? How about a BMP EntityBean backed up by a table that does the job? (moving the

RE: More than one InitialContext

2000-12-12 Thread J Davis
It looks like this is a bug if coming from a client-application. It seems if you create a initial context within the same instance of a class, and then close and try to re-open another InitialContext it will fail. I tested this again today making my test class runnable and spawning three

Re: SV: Off topic: development tools

2000-12-12 Thread Guilherme Ceschiatti
On Tuesday 12 December 2000 01:47, Chris Bartling wrote: I'm using EJBDoclet and Apache Ant 1.2 for my EJB development with Orion. Easy to setup and use, extensible (both EJBDoclet and Ant allow extension by subclass/interface implementation). I also use JUnit for all EJB unit tests (testing

Re: Deployment problems!

2000-12-12 Thread Jay Armstrong
Hi, I'm fairly new to Orion Server, as well, but it looks like this has to do with looking up the name of the EJB, not with threads. The error has to do with the InitialContext and com.evermind.naming. In particular, the javax.naming.InitialContext.lookup(Unknown Source) leads me to believe

Re: SV: Off topic: development tools

2000-12-12 Thread Jason Rimmer
Ant: http://jakarta.apache.org/ant/ EJBDoclet: http://www.dreambean.com/ejbdoclet.html JUnit: http://www.junit.org/ XP: http://www.xprogramming.com/ (Not a tool but a development methodology) UltraEdit: http://www.ultraedit.com/ I fully endorse and encourage the use of Ant, EJBDoclet, and

Orion JSP form validation and redisplay...

2000-12-12 Thread Keith Kwiatek
Hello, Does orion have anything that helps with capturing the values of a form, and then if validation fails, --allowing you to re-display the form with the submitted values? Keith

Re: SV: Orionserver php

2000-12-12 Thread Christian Sell
what exactly do you mean by "compile PHP as a servlet"? Isnt PHP written in C/C++? - Original Message - From: "Joe Walnes" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Tuesday, December 12, 2000 3:14 PM Subject: Re: SV: Orionserver php Or, if you're feeling

common jars

2000-12-12 Thread Matthew Domarotsky
Hello all, Does anyone know about deploying an ear file that contains ejb jars with dependencies on a common non-ejb. For example, I have the following situation below: ejb1.jar ejb2.jar common.jar Both ejb1.jar and ejb2.jar depend on common.jar, which has no ejbs. The problem comes when I

RE: SV: Off topic: development tools

2000-12-12 Thread Jeff Schnitzer
For using JUnit with Orion, you might want to look at: http://www.infohazard.org/junitee There is also another similar project called J2EEUnit at http://j2eeunit.sourceforge.net I haven't tried the later, but it looks a lot more complicated. It provides the HttpRequest, HttpSession, etc to

BMP example wanted

2000-12-12 Thread chris . chang
Hi Folks, Anyone know where can I find a complete BMP source example for Orion? Thanks in advance Chris

RE: Orion JSP form validation and redisplay...

2000-12-12 Thread Jeff Schnitzer
I've attached an example of how I do it. I believe this is the "standard" J2EE pattern for form processing. Basically, you use a single bean (and the jsp:setProperty tag) to hold the submitted values and any errors that might result. Both the input page and the submittal page use the same bean

Classloader issues using Xalan with Orion

2000-12-12 Thread Matt Krevs
My web app works fine except for some Xalan transform issues (involving extension fuctions). These dont work because in a typical deployment the classes cant be found even though the jars live in the orion/lib or myapplication/WEB-INF/lib directory. I guess the extension functions of Xalan

RE: SV: Off topic: development tools

2000-12-12 Thread Chris Bartling
Sure. Here they are... EJBDoclet: http://www.dreambean.com JUnit: http://www.junit.org Apache Ant and other Apache Java initiatives: http://jakarta.apache.org UltraEdit-32: http://www.ultraedit.com HomeSite: http://www.allaire.com Hope this helps. -- chris -- -Original Message-

Re: common jars

2000-12-12 Thread Hitesh Jasani
Matt, Here's a manifest of one of my .ear files in which Ibundle a couple of common non-ejb classes: META-INF/MANIFEST.MF lib/atoc-app2-common.jar lib/atoc-app2-xcpt.jar META-INF/application.xml META-INF/orion-application.xml atoc-app2-ejb.jar atoc-app2-web.war counter.jar Hope that

RE: Orion JSP form validation and redisplay...

2000-12-12 Thread Suominen, Joni
From: Keith Kwiatek [mailto:[EMAIL PROTECTED]] Does orion have anything that helps with capturing the values of a form, and then if validation fails, --allowing you to re-display the form with the submitted values? Hi Keith! Jakarta Struts has a nice framework to do this. It implements

RE: common jars

2000-12-12 Thread shlomo
Hi , Just put "common.jar" under Orion's lib Dir , exactly the same for the Oracle driver (classes111.zip) :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Matthew Domarotsky Sent: Wednesday, December 13, 2000 12:05 AM To: Orion-Interest Subject:

Distributed Transaction without EJB.

2000-12-12 Thread Winston Ng
Hi All, Is it possible to perform distributed transaction using JTA/JTS from a servlet without using EJB at all? From reading some of the past posting, one of the benefits of using EJB over Servlets is that EJB can provide distributed transaction but not servlets. However, isn't it true that

connection pooling

2000-12-12 Thread Greg Matthews
dear all, do requests for EJB UserTransaction objectsor db connections accessible through a Context get handled in a *queued* manner under orion?, or does it just notifyAll() the worker threads and let them fend for themselves? we're currently doing our own database connection pooling,