RE: fyi: 1.5.4 still stacks rather than queues JMS messages

2002-02-17 Thread Russ White
Yes, they should be received in order, but not necessarily stored/retrieved in order. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Geoff Soutter Sent: Sunday, February 17, 2002 5:18 PM To: Orion-Interest Subject: RE: fyi: 1.5.4 still stacks rather

RE: Yahoo orion list is up..

2001-08-24 Thread Russ White
http://groups.yahoo.com/group/orionserver Post message: [EMAIL PROTECTED] Subscribe: [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] List owner: [EMAIL PROTECTED] 56 members so far... It really is very slick. I appreciate the orion-interest group, but a good host like this has been long

Re: Anyone using TogetherSoft TCC with Orion?

2001-06-26 Thread Russ White
I also do similar, but I use ANT For all the rest of you, TogetherJ is very worth checking out. - Original Message - From: [EMAIL PROTECTED] To: Orion-Interest Sent: Tuesday, June 26, 2001 8:31 AM Subject: Re: Anyone using TogetherSoft TCC with Orion? We are

Re: Counting CMP entities

2001-06-14 Thread Russ White
That would work fine but would be very expensive. I would create a getCount() method and have that method do a simple JDBC call and return the count. This way the container does not have the added overhead of creating/marshalling the collection. - Original Message - From:

RE: Oracle deal

2001-06-09 Thread Russ White
Since a large part of the EJB2.0 spec has not completely gelled (especially relationships), you would be foolish to point a critical finger at Orion for their very hard work to implement a spec that is still in flux. Please try to keep things in perspective, your rant has next to nothing to do

init params

2001-05-12 Thread Russ White
the init() method and a service() method. Any thoughts? WR Russ White test.ear

RE: Number of JVMs on Orion..

2001-05-08 Thread Russ White
No doubt that clustering on a single IP works, in fact that was how I first clustered Orion, but if the idea is to try to spread the network traffic to ease a bottleneck then using multiple IPs on multiple NICs is the better solution. Cheers Russ -Original Message- From: [EMAIL

RE: Number of JVMs on Orion..

2001-05-07 Thread Russ White
This can easily be done by multi-homing your box and assigning a Orion runtime instance to each unique IP address. Then you could run the Orion load balancer to divvy up requests to all instances. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of sub k

RE: ejb 2.0 proposed final draft #2 is out

2001-04-27 Thread Russ White
Title: RE: ejb 2.0 proposed final draft #2 is out Am I the only one that think the following makes more sense? EJBObject - Local interface RemoteEJBObject - Remote interface as opposed to EJBObject - Remote interface EJBLocalObject - Local interface Isn't is the more natural state for an

Security model message.

2001-04-16 Thread Russ White
Ran auto update last night, and now when users access web apps that use basic authentication I get the following message from Orion 1.4.7 Netscape security model is no longer supported. Please migrate to the Java 2 security model instead. Can anybody shed some light on this?

RE: Security model message.

2001-04-16 Thread Russ White
not to use the defunct APIs. Lesson learned. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Russ White Sent: Monday, April 16, 2001 11:15 AM To: Orion-Interest Subject: Security model message. Ran auto update last night, and now when users access web

wrong servlet executed bug in 1.4.7

2001-04-09 Thread Russ White
: Sara Lee * @author Russ White * @version 1.0 */ public class Servlet1 extends HttpServlet { public void init(ServletConfig config) throws ServletException { super.init(config); } public void service(HttpServletRequest request, HttpServletResponse response) throws IOException

RE: wrong servlet executed bug in 1.4.7

2001-04-09 Thread Russ White
executed bug in 1.4.7 Is the bug that you dont get an 404 when following the link? Or is "/servlet/" missing from your post here (Servlet source)? WR -Ursprungligt meddelande----- Från: Russ White [mailto:[EMAIL PROTECTED]] Skickat: den 9 april 2001 06:20 Till: Orion-Inte

RE: Problems deploying

2001-03-23 Thread Russ White
Title: SV: Problem run demo servlets This is a classloader issue that arises because of the way that orion.jar is packaged. here are a couple of work arounds. Add the classes you need by usinga library tag. Or, start Orion by calling the com.evermind.server.ApplicationServerclass

RE: Orion on RedHat

2001-03-22 Thread Russ White
This actually sounds like a good setup for what you want to do. I have setup many site for non-profits with a setup similar to what you are doing. Using Linux in such an environment is a great idea because you can set it up like a hands off appliance, and it is very cost effective. you could

RE: Orion on RedHat

2001-03-22 Thread Russ White
Actually the Hypersonic DB that comes with Orion is quite suitable for small sites, and it is fast, and works well with Orion because it already has the configuration for the db in the distribution. I would stick Hypersonic unless you really need something else. -Original Message-

RE: Sharing sessions between sites

2001-03-20 Thread Russ White
I hope this helps. I manage this by making sure that all URLs used in the web app are absolute (of course they can be absolute and still be dynamic). and include the appropriate protocol. This of course includes form actions. Then I can enforce that certain portions of the web app are only

RE: I switch from X to Orion because:

2001-02-27 Thread Russ White
X is to slow to implement new J2EE specs while Orion is moving at a nice pace. And once you understand the spec, and take a little familiarization time Orion simply works like a dream. Granted documentation is lacking, but the product is solid and feature rich. -Original

RE: Is xerces.jar too old ?

2001-02-20 Thread Russ White
I have, and it rocks. Much easier interfaces. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of KirkYarina Sent: Tuesday, February 20, 2001 11:28 AM To: Orion-Interest Subject: Re: Is xerces.jar too old ? Has anyone tried Xalan Java 2.0.0 yet? If so,

RE: Sending a PDF via a servlet to IE 5

2001-02-20 Thread Russ White
One fix I have found is to construct your url in a way the it end with ".pdf" for example http://www.apes.com/test.jsp?target=test.jsp This is of course clunky and awfully ugly, but it works. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Mike Hoolehan

RE: Problems with a finder method in a cmp

2001-02-12 Thread Russ White
Read O'Reilly - Enterprise JavaBeans 2nd ed. It will clear up a lot of your questions. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Geoff Marshall Sent: Monday, February 12, 2001 10:31 AM To: Orion-Interest Subject: Re: Problems with a finder method

RE: ClassNotFoundExcpetion running xalan extensions under Orion app s erver

2001-02-09 Thread Russ White
Add a library tag in orion-application.xml that references your /web-inf/classes directory. like this: library path = "../applications/your-app/your-web-app/web-inf/classes" HTH -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Peter Delahunty Sent:

1.4.7 ejb1.1 entity problem.

2001-02-06 Thread Russ White
Just an alert. I am testing 1.4.7 and after deploying one of my apps I get the following error when creating a new entity: javax.ejb.CreateException: Error creating EntityBean: [SQL0205] Column USER_ not in table GARMENT_SHRINK_TEST in CWQC01. The weird thing is that the USER_ field mentioned

RE: I need reference card for ejb-jar.xml

2001-02-05 Thread Russ White
read the spec. It contains the whole dtd. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Alberto Yano Sent: Monday, February 05, 2001 7:44 AM To: Orion-Interest Subject: I need reference card for ejb-jar.xml I need a full reference card for

RE: message-driven beans from a topic

2001-02-02 Thread Russ White
This is a serious hack, but... Make your bean kill itself when it responds to a message. Sometimes all you have is the suicide solution. :) -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED]Sent: Friday, February 02, 2001

RE: Removing Stateful Session Beans

2001-02-01 Thread Russ White
The samples here are partial, and assume a good understanding of EJB and Servlets/JSP. :) 1) Despite what some older ejb texts say you should never ever store a reference to an EJBs remote interface in a session variable(See EJB2.0 Spec. Sections 5 6). Instead you should store a handle to the

RE: Influencing the order that EJB jars are deployed

2001-01-23 Thread Russ White
May you could try repackaging the ejbs so that they are in the same ejb.jar -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jennifer Grechuk Sent: Tuesday, January 23, 2001 9:44 AM To: Orion-Interest Subject: Influencing the order that EJB jars are

RE: Having trouble forcing browser-side XSL transformations

2001-01-19 Thread Russ White
The problem is the .jsp at the end of your url. make your url end with .xml and maybe it will work. this problem also exists with ie5x for jsps(servlets) that create pdf output. good luck. Hope you get it working. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On

RE: Kawa

2001-01-10 Thread Russ White
Title: RE: Kawa I use JBuilder and NetBeans for Linux and Solaris development and find them both good if not stellar. I have also used both of these IDEs with BSD, but occasionally run into problems when not using the Linux emulator. For people on a budget you can't beat NetBeans, check

RE: Can not locate ..... when running orion under Jbuilder?

2000-12-28 Thread Russ White
class. I am not an expert in JBuilder but as I heard JBuilder is one of those Debuggers that do decompile of the classes if needed. Boris - Original Message - From: "Russ White" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Wednesday, December

RE: Can not locate ..... when running orion under Jbuilder?

2000-12-28 Thread Russ White
++, so it is very fast. To Darren: Orion compiles wrappers, jar them and put to $ORION_PATH/application-deployments/$your_application_name/$jar_file_name directory/deployment.cache It is a jar, don't let the name confuse you. - Original Message - From: "Russ White" [EMAIL

RE: Can not locate ..... when running orion under Jbuilder?

2000-12-27 Thread Russ White
a breakpoint directly after the call you are interested in. That way you can hit F9 when you get your icky message and still monitor the results of the call. Also placing a break point in the ejb class itself will provide a way to step into the ejb. HTH Russ White -Original Message- From

RE: Can not locate ..... when running orion under Jbuilder?

2000-12-27 Thread Russ White
r debugger if it supports JPDA (every debugger that I know of do). You can set breakpoints, step through your code in beans and watch properties just as if it would be usual java application. Read Debugging how-to on orionsupport.com to set it up. Boris - Original Message - From: &

RE: Changing Orion Generated SQL

2000-12-08 Thread Russ White
Of course. Just modify orion-ejb-jar.xml to reflect your schema. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jarek Skreta Sent: Friday, December 08, 2000 11:14 AM To: Orion-Interest Subject: RE: Changing Orion Generated SQL Hi everybody,

RE: Classpath problems

2000-12-01 Thread Russ White
app, as pointed out in the previous post, you must duplicate the classes in the EAR file. John N Alegre Andante Systems On 30-Nov-00 Russ White wrote: Hi Alex, I too had this problem, and solved it by creating a library directory which I now have library tags in my orion

RE: Data type to access a datetime field in database AGAIN. Please help!

2000-12-01 Thread Russ White
java.sql.TimeStamp -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jose FresnadilloSent: Friday, December 01, 2000 7:36 AMTo: Orion-InterestSubject: Data type to access a datetime field in database AGAIN. Please help! Hi, I'm

RE: Same application without clustering

2000-12-01 Thread Russ White
If the object which you are executing a method on is a member of a session bean then you should have the session bean act on the object and return the results. That way the remote object is accessing the object and not the client. -Original Message- From: [EMAIL PROTECTED]

RE: Running two instances of Orion on the same IP and port

2000-11-29 Thread Russ White
Title: Running two instances of Orion on the same IP and port Larry, Orion is acting just as it should. You cannot have to two servers bind to the same port (This could create all sorts of problems). There is no web server I am aware of that will do this. That being said, all you really

RE: Creating zones in orion server

2000-11-29 Thread Russ White
One other solution: create a second web app that uses a different servlet directory directive. like so: in application.xml add: module web web-urienseek/web-uri context-root/enseek/context-root /web /module in orion-application.xml add: library

RE: Using JSP to write/append PDF's

2000-11-29 Thread Russ White
The best advice I could give you would be to check out Cocoon and FOP from the Apache project. http://xml.apache.org/cocoon/index.html http://xml.apache.org/fop/index.html -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of John MillerSent:

Wrapper source

2000-11-28 Thread Russ White
Is there any way to get a look at the source code for Orion generated ejb remote wrappers? I think I have uncovered an Orion bug, but I cannot confirm it without looking at the wrapper code.

RE: jdk version

2000-11-28 Thread Russ White
Just do a fresh install of JDK 1.3 on your box. Don't even think about running JBuilder without 1.3 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Suresh Ajja Sent: Tuesday, November 28, 2000 10:44 AM To: Orion-Interest Subject: jdk version

RE: Problem - Calling EJB in Orion from Resin

2000-11-23 Thread Russ White
My 2c It is foolish to use Resin with Orion. Why would you ever want to do this? Just use Orion. Resinand Orion areso similar that you should be able to run your servlets just fine on Orion. If you want a separate servlet container just run two instances of Orion. It will be much

RE: Having problems displaying pdf files.

2000-11-21 Thread Russ White
What browser are you using? Some browsers (IE5 for instance) do not correctly read MIME types. In some cases this can be solved by simply putting .pdf (or whatever) at the and of the servlet(or whatever) is producing your PDF document. This clues the browser in to what you are producing. This is

RE: autoupdate errors

2000-11-20 Thread Russ White
try this java -DproxyHost=proxy.your-domain.net -DproxyPort=your-port -jar autoupdate.jar replace the appropriate values. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Arthur Copeland (Saphari.com - www.saphari.com) Sent: Monday, November 20,

RE: orion server works with jdk 1.3???

2000-11-15 Thread Russ White
al Machine Error, Internal Error # Please report this error at # http://java.sun.com/cgi-bin/bugreport.cgi # # Error ID: 43113F32554E54494D45110E43505002C5 # # Problematic Thread: prio=1 tid=0x82463b0 nid=0xeda suspended # Russ White wrote: I am running Orion under Linux(RedHat 7)

RE: Orion as JBuilder Servlet Engine

2000-11-14 Thread Russ White
See my post yesterday. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Marc Rabil Sent: Monday, November 13, 2000 4:25 PM To: Orion-Interest Subject: Orion as JBuilder Servlet Engine I have JB4 Enterprise and have figured out (thanks to help from some

RE: orion server works with jdk 1.3???

2000-11-14 Thread Russ White
I am runningOrion under Linux(RedHat 7) with Sun's JDK 1.3 with absolutely wonderful stability. I would look more closely at your particular setup to see why your server is crashing. I have load tested it to the max with JMeter and my own load tester and found it almost as well behaved as

RE: JBuilder4.0

2000-11-13 Thread Russ White
ronment so that we can add it to orionsupport? WR -Original Message-From: Russ White [mailto:[EMAIL PROTECTED]]Sent: den 9 november 2000 13:31To: Orion-InterestSubject: RE: JBuilder4.0 It must be a configuration problem as I do this regularly with no

RE: Web upload of a Java class

2000-11-12 Thread Russ White
This sounds dangerous. Why would you want to do it? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Storm Linux User Sent: Saturday, November 11, 2000 6:55 AM To: Orion-Interest Subject: Re: Web upload of a Java class I mean it's showed to the user a

RE: Properties

2000-11-11 Thread Russ White
It depends on were you added it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Magnus Naeslund(b) Sent: Saturday, November 11, 2000 3:03 AM To: Orion-Interest Subject: Re: Properties From: "Russ White" [EMAIL PROTECTED] try putting your

RE: dual cpu Linux problems

2000-11-10 Thread Russ White
I have Orion running very well on a homebrew rack mount dual PIII 800 box running Redhat 7. (You should upgrade from 6.2 by the way). The box has 2gig DDR Ram, and gigabit Ethernet to a DS3. I have load tested it to the max and not had any failure. I am running Sun's JDK 1.3 for Linux, as it is

RE: Problems with CMP PrimKey...

2000-11-09 Thread Russ White
it is part of the ejb spec. all fields must be public so they can be directly manipulated by the container. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Sean P. McNamara Sent: Thursday, November 09, 2000 12:10 PM To: Orion-Interest Subject:

RE: Getting reference of DataSourceUserManager

2000-11-09 Thread Russ White
Orion specific -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jim Crossley Sent: Thursday, November 09, 2000 1:33 PM To: Orion-Interest Subject: Re: Getting reference of DataSourceUserManager What do you mean by "configured your app properly"?

RE: Setting up EJB's only -- both zipped and not zipped

2000-11-09 Thread Russ White
Any servlet or jsp can act as a client of Orion's. You simplly set your other server up just like any other ejb client. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Kemp Randy-W18971 Sent: Thursday, November 09, 2000 1:58 PM To: Orion-Interest

RE: Forcing servlet declarations

2000-11-08 Thread Russ White
, November 07, 2000 4:59 PM To: Orion-Interest Subject: RE: Forcing servlet declarations remove the classes? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Russ White Sent: 07 November 2000 20:25 To: Orion-Interest Subject: Forci

RE: Tools was: There has GOTTA be a BETTER way !!!!

2000-11-08 Thread Russ White
I have been doing ejb as long as there has been a spec, and I have settled on JBuilder4 and Together for development. Both are rock solid products and have saved me hundreds of hours. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Adam

RE: HIGH PRIORITY:Contact Information??????

2000-11-08 Thread Russ White
Me too, I just bought two licenses last night, and zingo wammo they are here this morning. Great job Orion guys! Thanks for a rockin app server! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Arved Sandstrom Sent: Wednesday, November 08, 2000

RE: startup shutdown classes

2000-11-08 Thread Russ White
Simple solution, write a servlet that is loaded on startup and load/run the classes you need from the init mehod. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Edmund Cheung Sent: Wednesday, November 08, 2000 9:54 AM To: Orion-Interest Subject:

RE: mapping a user to a group using DataSourceUserManager

2000-11-07 Thread Russ White
mapping is done in orion-application.xml (orion deployment files). Principals.xml defines users and groups in a manner unrelated to J2EE roles and is thus comparable to the user base you have in any other datastore. regards, Christian - Original Message - From: "Russ White&qu

RE: What's new?

2000-11-07 Thread Russ White
How do you get 1.4.2? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Robert Krueger Sent: Tuesday, November 07, 2000 12:38 PM To: Orion-Interest Subject: Re: What's new? At 12:02 07.11.00 , you wrote: Does anybody know what is new in the 1.4.2

Forcing servlet declarations

2000-11-07 Thread Russ White
I have several apps the share common libraries. Some apps I want to execute some servlets in the library but not others. Is there a way to keep a web-app from executing arbitrary servlets?1 Ordinarily http://yourserver.com/servlet/class will execute class as long as it is in the classpath and

RE: What's new?

2000-11-07 Thread Russ White
Updated and get same wrapper exception. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Robert Krueger Sent: Tuesday, November 07, 2000 2:15 PM To: Orion-Interest Subject: RE: What's new? At 13:45 07.11.00 , you wrote: How do you get 1.4.2?

mapping a user to a group using DataSourceUserManager

2000-11-06 Thread Russ White
I have spent the morning looking through the archives and not really found what I am looking for. I found that I can grab username and password from the DataSourceUserManager just fine, but I have to map the user to a group manually still with priciples.xml. If this is the only way to do this

RE: Re[2]: xml,xsl in orion

2000-11-03 Thread Russ White
Kevin, Here is a simpler way to do this: 1) request comes to controller servlet. 2) controller makes url connection and get content from xml producing jsp. 3) controller then gets xsl from any other location (file, jsp, or db) 4) controller hands xml, and xsl to xalan directly (no servlet here)

RE: Wrapper Classes

2000-11-03 Thread Russ White
You've got to give us more to go on than this. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Robert Hargreaves Sent: Thursday, November 02, 2000 6:30 AM To: Orion-Interest Subject: Wrapper Classes Dear All, We use a report writing tool

RE: accessing javamail provider

2000-11-01 Thread Russ White
Christian, If you read the JavaMail API docs you saw that putting all of the JavaMail API jars in jre/lib/ext is the prescribed method for deploying the API. This include mail.jar, activation.jar, and any providers custom or otherwise. At first I did not like that much, but it is an extension

RE: HIGH PRIORITY:Contact Information??????

2000-10-31 Thread Russ White
IMHO If they have not been getting back to you... Deploy now. License later. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of J Davis Sent: Monday, October 30, 2000 7:58 PM To: Orion-Interest Subject: HIGH PRIORITY:Contact Information??

RE: Erm.. To clarify the need for four environments...

2000-10-31 Thread Russ White
Kimberley, for what it's worth... career-council Sounds like it's time for a strategic career move. Stick with J2EE. I've been where you are, and left. /career-council Just my 2c. I can't imagine going back to com/asp/m$. Good luck. Russ -Original Message- From: [EMAIL PROTECTED]

RE: Orion JBuilder 4 Enterprise

2000-10-31 Thread Russ White
josh, I am already using JBuilder4E with Orion. And deployment is a breeze. Just point Orion to the ejb-grp.jar that JBuilder creates and your are golden. Also, the EJB 2.0 support in JBuilder seams to be working fine. Just deployed a series of entity beans with 1..1, 1..*, *..1 OR dependent

RE: Servlet Location

2000-10-27 Thread Russ White
Orion would expect any classes in your pack directory to be in a package called pack. So if you were to refer to the a servlet called Test.class you would need to refer to it as pack.Test I suspect what you are doing is referring to it as just Test. Also make sure that if you really meant to

RE: MYSQL, Orion, EJB and transactions ??

2000-10-27 Thread Russ White
Title: MYSQL, Orion, EJB and transactions ?? I would use the Hypersonic db that ships with Orion as you have to do nothing to set it up, and it works great. Don't bother with MySQL. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Laufer,

RE: calling native code from ejb

2000-10-26 Thread Russ White
I have gotten around this problem by having a session ejb do a remote procedure call using xml-rpc. This allows me to perform rpc on another class that may utilize JNI, or even to access the native code directly if it supports xml-rpc. -Original Message- From: [EMAIL PROTECTED]

RE: Installing cocoon with Orion

2000-10-25 Thread Russ White
I have been putting the Cocoon jar files in the web-app/web-inf/lib directory with success. This allows me to have web apps with different versions of Cocoon for comparison. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Robert Nicholson Sent:

RE: Orion in production

2000-10-23 Thread Russ White
Indeed with most JVM version the NT/W2K version will be faster than Linux. But now that the 1.3 versions from Sun IBM are out this is no longer true. I now almost exclusively deploy to Linux. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Holmes,

RE: I hate guest

2000-10-19 Thread Russ White
have a session bean create the account entity based on parameters. Then the user need not directly create the ejb. You could have another class that is operating in another role do that. HTH Russ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jeff

RE: JSP-Compiled Servlets ??

2000-10-18 Thread Russ White
You can also set the source path in orion-web.xml so you know where Orion puts the sources. the tag below is a good place to start. orion-web-app deployment-version="1.4.0" persistence-path="/persist" jsp-cache-directory="./persistence" temporary-directory="./temp"

RE: JBuilder + Orion

2000-10-18 Thread Russ White
Probably because together is stepping on your system properties. JPDA debugging is much easier. When I develop with TogetherJ I use JBuilder to do my debugging(But you could use many other tools). I have a JBuilder project that includes the Together project. Then I can debug using the JPDA. Very

RequestDispatcher null

2000-10-11 Thread Russ White
using Orion 1.3.9 I have some servlet code that does something like this: String uri = request.getRequestURI(); ServletContext sc = this.getServletContext(); RequestDispatcher rd = sc.getRequestDispatcher(uri); rd.forward(request,response); When it executes the RequestDispatcher is null. why?

RE: Deployment platforms

2000-10-11 Thread Russ White
1) I have had the most success lately running 4 cpu(PIII xeon 800) intel boxes with 2gig ram. 2) I prefer Linux(Currently using Redhat 7), but use Solaris(Especially Free Solaris) as well. 3) I use the Sun JDK 1.3 exclusively. 4) Yes I do cluster. No extra hardware. I have clustered as many as 20

CMP with DB2 again. Urgent.

2000-10-09 Thread Russ White
Hey folks, I really need an answer to this question because while I would love to use Orion I cannot risk moving my 100+ EJBs over to Orion until I can get this resolved. I am at a critical descission point here. The IBM DB2 JDBC drivers do not allow SetNull(FLOAT). Instead you have to use

RE: EJB vs Servlets

2000-10-09 Thread Russ White
You should read up on J2EE so you can understand what separation of data/logic/presentation is all about. I would recommend any of the O'Reilly books on the subject(s). Also Development of EJBs is very simple. Especially with a good IDE like VA, Forte, or JBuilder. Orion even comes with a simple

RE: EJB vs Servlets

2000-10-09 Thread Russ White
JB than those that have logic in their servlets. -Original Message- From: Russ White [mailto:[EMAIL PROTECTED]] Sent: Monday, October 09, 2000 11:32 AM To: Orion-Interest Subject: RE: EJB vs Servlets You should read up on J2EE so you can understand what separation of data/logic/pres

RE: EJB vs Servlets

2000-10-09 Thread Russ White
Why do you have the idea the EJBs yield slower performance? This is false. Your site sounds to small to worry about EJB right now. Stick with Struts. Still as a developer you owe it to yourself to dig deeper. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On

RE: Server.xml and datasources

2000-10-06 Thread Russ White
in orion-application.xml set data-sources path="./data-sources.xml" / to whatever data-sources.xml you need. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Magnus Nilsson Sent: Friday, October 06, 2000 9:42 AM To: Orion-Interest Subject: