SV: How to set orion to perform a timely task..

2001-03-05 Thread Magnus Rydin
Title: SV: How to set orion to perform a timely task.. how about an client-application that does some operation on scheudled hours? WR -Ursprungligt meddelande- Fran: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Skickat: den 3 mars 2001 09:44 Till: Orion-Interest Amne: How to

Re: Finding my images

2001-03-05 Thread Petr Podsednik
Try this: ear ejb . Meta-Inf web *.jsp *.html . images *.gif Meta-Inf Web-Inf You can then in your jsp pages use this construction to find images (or in case of

un subscribe

2001-03-05 Thread joonkim
un subscribe

How to configure connectionpool to the database for orion.

2001-03-05 Thread Deepak Yadwad
Orion has given connectionpool class to connect to the database. How to configure that. is there any documents for that. I have downloaded the orion documentation but I didn't any relavent documentation. Please help me regarding this. Thanxs in advance Deepak

RE: un subscribe

2001-03-05 Thread Randahl Fink Isaksen
please use the form at orionserver.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Abhishek Sehgal Sent: 5. marts 2001 06:34 To: Orion-Interest Subject: un subscribe un subscribe __ FREE Personalized

RE: Orion crashed under load test

2001-03-05 Thread John Miller
Title: Orion crashed under load test Was wondering what you used to test it with? -Original Message-From: Eyal Litman (Kamoon IL) [mailto:[EMAIL PROTECTED]]Sent: 04 March 2001 09:29To: Orion-InterestSubject: Orion crashed under load test Hi, I load tested orion under linux red hat

Simple classpath prob

2001-03-05 Thread Daryl Hall
Hi - pls someone help me before I go nuts! I've written a servlet in development=true mode that implements an interface class. How do I tell orion where to find this class? The interface is in the same package as the servlet and I've tried the following: Dropping the interface.class

Simple classpath prob

2001-03-05 Thread Daryl Hall
Hi - pls someone help me before I go nuts! I've written a servlet in development=true mode that implements an interface class. How do I tell orion where to find this class? The interface is in the same package as the servlet and I've tried the following: Dropping the interface.class

RE: How to set orion to perform a timely task..

2001-03-05 Thread Mike Cannon-Brookes
Title: SV: How to set orion to perform a timely task.. Or if you're using JDK 1.3 there's always java.util.Timer (vastly underused IMHO). -mike -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Magnus RydinSent: Monday, March 05, 2001 7:08

RE: How to set orion to perform a timely task..

2001-03-05 Thread Jaco van Rooijen
Title: SV: How to set orion to perform a timely task.. We use a client application that runs in the orion vm that uses a scheduledTIMER - they've been added in JDK1.3 Timer t = new Timer(true); t.schedule(new Job(), 0, 20); Jaco -Original Message-From: [EMAIL PROTECTED]

RE: How to set orion to perform a timely task..

2001-03-05 Thread Jaco van Rooijen
Title: SV: How to set orion to perform a timely task.. We use a client application that runs in the orion vm that uses a scheduledTIMER - they've been added in JDK1.3 Timer t = new Timer(true); t.schedule(new Job(), 0, 20); Jaco -Original Message-From: [EMAIL PROTECTED]

Request for your comments: Possible improvement of Orion CMP 2.0

2001-03-05 Thread Randahl Fink Isaksen
I noticed that CMP 2.0 getXYZ-methods like customer.getAccounts() return a Collection which does not use isIdentical() to test whether it contains some element. I.e. when you invoke customer.getAccounts().contains(myAccount); this does not work. It seems to me that the collection returned by

Again EJB 2.0

2001-03-05 Thread fresnaULL
Hi, I have the following entity beans: person(id(integer), name(varchar)) job(id(integer), name(varchar)) So, this is my ejb-jar.xml: enterprise-beansentitydescriptionPerson EJB CMP

problems using JDBC 2.0 functions

2001-03-05 Thread Paul Wilcox
Hi all, I cant seem to use JDBC 2.0 functions on Orion. Any time I attempt to use a JDBC 2.0 function (such as ResultSet.isLast(), ResultSet.previous(), etc.) I get this error: java.lang.NullPointerException at /ert/Prod_ApplServ.jsp._jspService(/ert/Prod_ApplServ.jsp.java, Compiled Code)

RE: un subscribe

2001-03-05 Thread Nye, Donovan
sorry bout that -Original Message- From: joonkim [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 3:41 AM To: Orion-Interest Subject: un subscribe un subscribe

un subscribe

2001-03-05 Thread Nye, Donovan
un subscribe -Original Message- From: joonkim [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 3:41 AM To: Orion-Interest Subject: un subscribe un subscribe

RE: Simple classpath prob

2001-03-05 Thread cybermaster
Did you set your source-directory in orion-web.xml? Did you make sure your browser doesn't do any caching? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Daryl Hall Sent: Monday, March 05, 2001 4:47 AM To: Orion-Interest Subject: Simple classpath prob

Has anyone written an EJBDoclet impl for Orion?

2001-03-05 Thread Michael A Third
If not, I'm probably going to write one. Thanks, Michael

Re: Has anyone written an EJBDoclet impl for Orion?

2001-03-05 Thread jbirchfield
We use EJBDoclet. We have it set to generate all our Homes and Remotes, our descriptiors, and our utility classes that return handles to all our Homes. Sweet tool ,and easy to extend. James Birchfield Ironmax a better way to buy, sell and rent construction equipment 5 Corporate Center 9960

Re: Simple classpath prob

2001-03-05 Thread Dan North
Put it in a jar file in a lib somewhere, and add the line: library path="/path/to/your/lib" / to $ORION/config/server.xml At 11:41 05/03/2001 +, Daryl Hall wrote: Hi - pls someone help me before I go nuts! I've written a servlet in development=true mode that implements an interface

RE: classloader does not implement getResourceAsStream ?

2001-03-05 Thread Tim Endres
This line (about line 881 in my version): URL url = this.getClass().getResource(registrations[i+1]); Must be replaced by this: URL url = getServletContext().getResource(registrations[i+1]); Gee, that makes it look like a bug in Struts, as opposed to the reported bug in Orion. I believe

RE: Has anyone written an EJBDoclet impl for Orion?

2001-03-05 Thread Tim Drury
Title: RE: Has anyone written an EJBDoclet impl for Orion? I'm in the process of writing one. It currently generates the home, remote, and data classes. I'm working on the ejb-jar portion now. Features that Rickard's does not have: 1) ejb 2.0 2) real xml templates 3) ejb-jar portions for

Subject: unsubscribe

2001-03-05 Thread Tony Daniello
Please remove me from your mailing list. -- Tony Daniello Phone: (301) 572-1694 System Support Engineer [EMAIL PROTECTED] Harbor Branch pager [EMAIL PROTECTED]

RE: Problem retrieving dependents after Orion restart

2001-03-05 Thread Alex Paransky
Here is an excerpt from orion-ejb-jar.xml, can someone tell me if I have something configured incorrectly. Again, the data is properly written to the database, it is just NOT READ when orion is restarted and getPhoneDependents() api is executed. entity-deployment name="ejb.person.PersonEntity"

Re: significance of web-site.xml

2001-03-05 Thread Jeff Hubbach
Greg, Is the paying customer thing dynamic? or do you know who and how many at any one time? I don't have any experience with clustering, so I'll be answering this question with one server in mind. It sounds like you want each customer to access a different copy of the same web-app, under the

Re: https problems...

2001-03-05 Thread SCOTT FARQUHAR
I'm guessing that you have something running on the same port as ssl (443). Check that you don't have anything else running on those boxes that might be listening on that port. [EMAIL PROTECTED] 03/06/01 06:58am I've read the two documents on setting up https and have performed the steps

Cannot dispatch url with session id?

2001-03-05 Thread Nevin Ng
Hi there, I found that when requesting a RequestDispatcher's path is url encoded with session id, the returned object will be null. e.g. RequestDispatcher rd = request.getRequestDispatcher(response.encodeURL("/index.jsp")); this rd will return null if the encodeURL produces

RE: Problem retrieving dependents after Orion restart

2001-03-05 Thread Alex Paransky
I have been playing with the simple example some more, and still cannot resolve the issue. The strange thing is that it seems to write the data to the tables correctly. All the fields are filled in as expected, it just fails to read the data back after restart. I am not sure the best way to

non-secure and secure site

2001-03-05 Thread Greg Matthews
dear all, what's the standard way to structure an app where some pages are non-secure and other are secure? i can set up a secure site, and redirect from the non-secure site to the secure site, and wondered what the best way is to transfer context to the secure site to continue processing.

hasPermission

2001-03-05 Thread Christian Billen
Hi, I noticed that the implementation of EJBUser.hasPermission(Permission p) always return false, has anyone been implementing this method for permission checking of your users? any tip on best approach to use Permission with the use of Principal for application level permission checking (how to

SV: problems using JDBC 2.0 functions

2001-03-05 Thread Magnus Rydin
I've got an old sin of my own (a JDBC solution) that works perfectly. Can you elaborate a bit on your setup, such as version of Orion, JDBC driver, the actual code performed and your database setup? It does not sound as a Orion problem but a JDBC driver problem. WR -Ursprungligt

RE: Problem retrieving dependents after Orion restart

2001-03-05 Thread Alex Paransky
Has any one been able to get the Entity(1) to Dependent(N) relationship working? I am thinking of removing Dependent objects and just using Entity Beans. However, in the way Orion handles relationships, I will have an extra table I do not really need. If I have a PersonEntity relating to

RE: Again EJB 2.0

2001-03-05 Thread Randahl Fink Isaksen
Sounds like the database you are using does not support a type called "int" which you are mapping all "Integer"s to. You need to instead have Integer mapped to some 4-byte wide integer value supported, so you would have to check your database documentation for such a type. Anyways,

RE: Subject: unsubscribe

2001-03-05 Thread Randahl Fink Isaksen
use the form at orionserver.com -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Tony DanielloSent: 6. marts 2001 02:56To: Orion-InterestSubject: Subject: unsubscribePlease remove me from your mailing list. -- Tony Daniello Phone: (301)

RE: Problem retrieving dependents after Orion restart

2001-03-05 Thread Randahl Fink Isaksen
I had the same symptom once, I had declared my primary keys as Integer and returned int rather than Integer in my ejbCreate methods. Have you accidently done the same??? Anyways, it seems Orion is quite non-informative about semantical errors, so I have entered a bug report about this issue