orion + php

2002-02-08 Thread Justen Stepka

I am getting the following error,

500 Internal Server Error
Couldnt find/launch the interpreter, searched for php

My configuration file has the following,

servlet
servlet-namephp/servlet-name
servlet-
classcom.evermind.server.http.CGIServlet/serv
init-param
param-nameinterpreter/param-name
param-valuephp/param-value
/init-param
/servlet

I have php working with Apache no problem (mod_php4 port for fbsd).

Is there something obvious that I'm just missing?

Thanks,

Justen Stepka






apache + orion

2002-02-05 Thread Justen Stepka


Hello,

I recently started up Orion on 127.0.0.1:8090 with apache serving up the
front end. I have the proxy service working great, but I would like to get
Orion to answer all .jsp request similar to how I have php setup.

Is this possible?

Thanks in advance.

Justen Stepka






Re: using jDriver from BEA WebLogic

2001-06-13 Thread Justen Stepka
Title: using jDriver from BEA WebLogic



You can't.

Justen Stepka

  - Original Message - 
  From: 
  Ta Nguyen Binh 
  Duong 
  To: Orion-Interest 
  Sent: Tuesday, June 12, 2001 8:32 
PM
  Subject: using jDriver from BEA 
  WebLogic
  
  Hi all, How can I use 
  the WebLogic jDriver for MS SQL Server 7 in jsp pages with Orion? This driver 
  has a license file, and when I start the jsp page, there's an error: 
  LicenseNotFoundException. How can I show the server way to the license file? 
  I've changed my system classpath toward the license file, but it did not 
  affect. Does Orion use the system classpath or it has another one?
  Thanks 
  Binh Duong [EMAIL PROTECTED] 


Re: problem running oracle with orion: 'oracle.jdbc.driver.OracleDriver'not found!

2001-03-24 Thread Justen Stepka

Add the jar/zip to the orion lib folder.

On Fri, 23 Mar 2001, Roland Dong wrote:



 I tried to run oracl with orion. When I started orion I got the following
 error message:

 Error initializing server: DriverManagerDataSource driver
 'oracle.jdbc.driver.OracleDriver' not found.   Where is driver supposed to
 be located?  I have set the environment so that the class12.zip is included
 in the classpath.

 Should class="com.evermind.sql.DriverManagerDataSource" include
 OracleDriver?

 this is my data-source.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 ordinary
   JDBC-driver (in this case hsql) to create the connections.
   This tag creates all the needed kinds
   of data-sources, transactional, pooled and EJB-aware sources.
   The source generally used in application code is the "EJB"
   one - it provides transactional safety and connection pooling.
   --

 data-source
   class="com.evermind.sql.DriverManagerDataSource"
   name="Oracle"
   location="jdbc/OracleCoreDS"
   xa-location="jdbc/xa/OracleEJBDS"
   ejb-location="jdbc/Oracle"
   connection-driver="oracle.jdbc.driver.OracleDriver"
   username="scott"
   password="tiger"
   url="jdbc:oracle:thin:@uxb.wiu.edu:1521:uxora"
   inactivity-timeout="30"
   /

   /data-sources


 Please help!

 Roland








RE: Weblogic and Orion 6.

2001-03-23 Thread Justen Stepka

What about the remote stubs that Weblogic 6 generates? Do I need to
somehow put these files into my class path?

On Wed, 21 Mar 2001, Allen Fogleson wrote:

 basically you are going to have to instantiate your properties (or
 hashtable) with the values specific to wl.

 If I recall you need the providerURL to be t3://hostname
 (might be forced to use rmi there )

 and then the context factory is WLInitialContextFactory (if I remember
 right) and then you have security principle stuff if needed.

 Al


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Justen Stepka
 Sent: Thursday, March 22, 2001 10:28 PM
 To: Orion-Interest
 Subject: Weblogic and Orion 6.


 My company has decided to use Weblogic 6 for the backend J2EE server, but
 I managed to convince the project managers to use Orion for the war.

 For the last day I've been playing with getting Orion to communicate with
 Weblogic 6 but I just can't get an initialcontext with any value from
 Weblogic to use with the servlets running on Orion.

 Has anyone done this before? What do I need to do so that I can get a
 remote interface to Orion?

 Justen Stepka









RE: Weblogic and Orion 6.

2001-03-23 Thread Justen Stepka

Right, I got this part working, but I'm getting a
java.lang.ClassCastException error when I try to narrow the object. Any
ideas?

Justen Stepka

On Wed, 21 Mar 2001, Allen Fogleson wrote:

 basically you are going to have to instantiate your properties (or
 hashtable) with the values specific to wl.

 If I recall you need the providerURL to be t3://hostname
 (might be forced to use rmi there )

 and then the context factory is WLInitialContextFactory (if I remember
 right) and then you have security principle stuff if needed.

 Al


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Justen Stepka
 Sent: Thursday, March 22, 2001 10:28 PM
 To: Orion-Interest
 Subject: Weblogic and Orion 6.


 My company has decided to use Weblogic 6 for the backend J2EE server, but
 I managed to convince the project managers to use Orion for the war.

 For the last day I've been playing with getting Orion to communicate with
 Weblogic 6 but I just can't get an initialcontext with any value from
 Weblogic to use with the servlets running on Orion.

 Has anyone done this before? What do I need to do so that I can get a
 remote interface to Orion?

 Justen Stepka









RE: Weblogic and Orion 6.

2001-03-23 Thread Justen Stepka

Update,

I have the class cast exception removed, but it's a really strange fix.

I've zipped up the class files com/blah/something/hi into a zip and placed
the zip file into the orion/lib dir. The class files from the
web-inf/classes directory match the class files in the .zip but when the
zip is added to the lib folder everything runs fine.

Is this normal?

Justen Stepka

On Fri, 23 Mar 2001, Justen Stepka wrote:

 Right, I got this part working, but I'm getting a
 java.lang.ClassCastException error when I try to narrow the object. Any
 ideas?

 Justen Stepka

 On Wed, 21 Mar 2001, Allen Fogleson wrote:

  basically you are going to have to instantiate your properties (or
  hashtable) with the values specific to wl.
 
  If I recall you need the providerURL to be t3://hostname
  (might be forced to use rmi there )
 
  and then the context factory is WLInitialContextFactory (if I remember
  right) and then you have security principle stuff if needed.
 
  Al
 
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED]]On Behalf Of Justen Stepka
  Sent: Thursday, March 22, 2001 10:28 PM
  To: Orion-Interest
  Subject: Weblogic and Orion 6.
 
 
  My company has decided to use Weblogic 6 for the backend J2EE server, but
  I managed to convince the project managers to use Orion for the war.
 
  For the last day I've been playing with getting Orion to communicate with
  Weblogic 6 but I just can't get an initialcontext with any value from
  Weblogic to use with the servlets running on Orion.
 
  Has anyone done this before? What do I need to do so that I can get a
  remote interface to Orion?
 
  Justen Stepka
 
 
 
 








Weblogic and Orion 6.

2001-03-22 Thread Justen Stepka

My company has decided to use Weblogic 6 for the backend J2EE server, but
I managed to convince the project managers to use Orion for the war.

For the last day I've been playing with getting Orion to communicate with
Weblogic 6 but I just can't get an initialcontext with any value from
Weblogic to use with the servlets running on Orion.

Has anyone done this before? What do I need to do so that I can get a
remote interface to Orion?

Justen Stepka





Re: Debugging and orion

2001-02-22 Thread Justen Stepka

No matter what anyone tells you,

System.out.println ("ObjectName:MethodName ():line number");

will work wonders!

Justen Stepka

On Wed, 21 Feb 2001, Julian Richardson wrote:

 Hi,

 What tools / IDEs are people out there using to develop EJBs for use with
 Orion? At the moment we (as a project team, rather than company) are trying
 to standardise on an app server and IDE to use, requirements being the
 usual:

   cost
   speed
   flexibility
   resource usage
   debugging support from the IDE

 - I saw that someone mentioned using Kawa with Orion on the orionsupport
 website; has this combination been used by many people? (I'm new to the app
 server world, although I've been doing server-side Java work for several
 years now - I'm not used to environments where it's even possible to use an
 integrated debugger, but others on the team say it's necessary :-)

 Comments about the speed / flexibility / resource usage of Orion are welcome
 too, from the website it looks pretty slick and the documentation looks
 good, but time will tell... also if there's any major snags with orion in
 terms of things that the current version doesn't do correctly or doesn't
 implement...

 cheers

 Jules

 --







Re: your mail

2001-02-21 Thread Justen Stepka

The Java Developers Journal (JDJ) has an example in last months edition, I
think this example covers using message beans as a logging tool.

Justen STepka

On Wed, 21 Feb 2001, Chia, Pei Yen wrote:

 Hi,

   I'm trying to look for examples on MessageDrivenBean and i can't seem to
 find it at the orion website. Also, the latest downloadable version of orion
 server from "www.orionserver.com" is version 1.4.5. I gathered from the
 mailing list that most of you are already using version 1.4.7 ...

   Can someone please help me on this. Thank you.


 Regards,
 Pei Yen








Re: FreeBSD port for Orion

2000-12-23 Thread Justen Stepka

I'm on the list, I've just been busy with my book!

Justen Stepka

On Sat, 23 Dec 2000, Ernst de Haan wrote:

 Hey jstepka!
 
 Well, I more or less finished it. It is working, and I have some contacts in
 the Java/FreeBSD community. But if you have any improvements, suggestions,
 ideas, etc, please let me know! :) Oh, and join the freebsd-java mailing list,
 too! :)
 
 Ernst
 
 
 Justen Stepka wrote:
  Are you looking for any help on this port? I've been working on an
  internal copy and have yet to show anyone outside of my office.
  
  Justen Stepka
  
  On Sat, 23 Dec 2000, Ernst de Haan wrote:
  
   Hi to all fellow FreeBSD users on o-i,
   
   At the moment I am working on a port for Orion, and it is in beta stage. If
   anyone would like to comment on it, just poke it, and let me know. There's a
   tgz available at either of the following locations:
   
  * http://www.znerd.demon.nl/orion-port.tgz
  * http://www.jollem.com/~ernst/orion-port.tgz
   
   Or you can browse the files from either of these locations:
   
  * http://www.znerd.demon.nl/orion-port/
  * http://www.jollem.com/~ernst/orion-port/
   
   Any and all comments are welcome! To test this port thorougly, follow the
   procedure described at:
   
  * http://www.freebsd.org/porters-handbook/porting-testing.html
   
   Note that I tested this port with portlint, available from the devel/portlint
   port.
   
   Note for non-FreeBSD users: This will enable FreeBSD users to install and
   deinstall Orion in a very easy way. To install:
   
  # cd /usr/ports/java/orion/  make install
   
   And to deinstall:
   
  # cd /usr/ports/java/orion  make deinstall
   
   
   Ernst
   
  
  
  
 





Re: FreeBSD port for Orion

2000-12-22 Thread Justen Stepka

Are you looking for any help on this port? I've been working on an
internal copy and have yet to show anyone outside of my office.

Justen Stepka

On Sat, 23 Dec 2000, Ernst de Haan wrote:

 Hi to all fellow FreeBSD users on o-i,
 
 At the moment I am working on a port for Orion, and it is in beta stage. If
 anyone would like to comment on it, just poke it, and let me know. There's a
 tgz available at either of the following locations:
 
* http://www.znerd.demon.nl/orion-port.tgz
* http://www.jollem.com/~ernst/orion-port.tgz
 
 Or you can browse the files from either of these locations:
 
* http://www.znerd.demon.nl/orion-port/
* http://www.jollem.com/~ernst/orion-port/
 
 Any and all comments are welcome! To test this port thorougly, follow the
 procedure described at:
 
* http://www.freebsd.org/porters-handbook/porting-testing.html
 
 Note that I tested this port with portlint, available from the devel/portlint
 port.
 
 Note for non-FreeBSD users: This will enable FreeBSD users to install and
 deinstall Orion in a very easy way. To install:
 
# cd /usr/ports/java/orion/  make install
 
 And to deinstall:
 
# cd /usr/ports/java/orion  make deinstall
 
 
 Ernst
 





search engine w/ orion

2000-11-27 Thread Justen Stepka


Anyone have any luck or recommendations for a search engine to use with
Orion Server?

Justen Stepka





RE: search engine w/ orion

2000-11-27 Thread Justen Stepka

Has anyone actually used this product though?

Justen Stepka

On Tue, 28 Nov 2000, Neville Burnell wrote:

 Take a look at Lucene 
 http://lucene.sourceforge.net/features.html
 
 
 -Original Message-
 From: Justen Stepka [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, 28 November 2000 6:18 AM
 To: Orion-Interest
 Subject: search engine w/ orion
 
 
 
 Anyone have any luck or recommendations for a search engine to use with
 Orion Server?
 
 Justen Stepka
 
 





Setting max/min connections

2000-11-07 Thread Justen Stepka


Where can I set the pool size for my datasource in Orion?

Justen Stepka





EJB Context error

2000-11-07 Thread Justen Stepka


I'm getting the following error in my program,

javax.naming.NamingException: Error instantiating web-app JNDI-context: No
locat ion specified and no suitable instance of the type
'com.express_scripts.security.SecuritySession' found for the ejb-ref
ejb/com/express_scripts/security/SecuritySessionBean

Which is really strange, when I look in the generated orion-ejb descriptor
I'm seeing that the references are there correctly. I've also looped the
enumeration of the context at "java:comp/env/ejb/" and find nothing.

Justen Stepka