Re: Showing Error Messages

2002-03-13 Thread Joseph Ottinger
Do you have development mode on in your application? - Joseph B. Ottinger [EMAIL PROTECTED] http://enigmastation.comIT Consultant On Tue, 12 Mar 2002, Deniz Bocek wrote: Hi all, I have Following

Fw: Session Managment and Cache

2002-03-13 Thread Deniz Bocek
Hi All, I have the following problems: with orion when my application creates a session it gets the old session Id.I mean if the session expired or my program invalide it, nex created session gets the old session id. Should it be a unique?I am asking because maybe my creation procedure is

timed events

2002-03-13 Thread Casper Højstrup
This more of a regular EJB question, I suppose. I need to initiate some specific tasks and specific times in my application, since the application server aren't multithreaded(so to speak), and the usage of threads is not recommended, I cannot make a simple timer, that will initiate the

RE: Where is my stderr output?

2002-03-13 Thread John Creaner
if I understand you correctly what you need to do is check in your application.xml for the log file path=something.log / /log This will lead you to where your log file is located and if you haven't set it then simply set it by default I think most of the log files

Bug?!

2002-03-13 Thread Linus Larsen
Updating from 1.5.2 to 1.5.4 Everything seems to work just fine except for one thing. When I use a Filter mapped to one of my servlets a strange error occures. Orion throws a java.lang.NoClassDefFoundError: javax/servlet/Config In my code I have no references to that class. And for all I know

Re: timed events

2002-03-13 Thread Johan Fredriksson
Perhaps via a croned java client? //Johan - Original Message - From: Casper Højstrup [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Wednesday, March 13, 2002 10:20 AM Subject: timed events This more of a regular EJB question, I suppose. I need to initiate some

R: timed events

2002-03-13 Thread daniele rizzi
Hi Casper, EJB are not multithreaded but a normal class *is*. Try putting the stuff in a public class TryMe extends Thread{} d. ps. if you need a scheduler the things are tougher. -Messaggio originale- Da: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Per conto di Casper Højstrup

Re: Bug?!

2002-03-13 Thread Christian Meunier
You need to update your filter, the 1.5.2 was buit on not yet finished servet 2.3 spec while the 1.5.4 is based on the latest and finished servlet 2.3 spec. Your generic filter should now looks like this: import javax.servlet.FilterChain;import javax.servlet.FilterConfig;import

Re: Bug?!

2002-03-13 Thread Sergey G. Aslanov
Hi Orion-Interest You just have to recompile your filter class with Orion 1.5.4 orion.jar lib. Wednesday, March 13, 2002, 2:21:54 PM, you wrote: LL Updating from 1.5.2 to 1.5.4 LL Everything seems to work just fine except for one thing. When I use a LL Filter mapped to one of my servlets a

Resource Adapter Assembly descriptor

2002-03-13 Thread Khan Ronny
Hello I'm trying to deploy a test resource adapter on the Orion server. My understand is that in addition to the standard J2EE deployment desriptor (ra.xml) I will need to write an application server spesific assembly desriptor (for JNDI binding etc). Do anybody out there know how to write such

RE: timed events

2002-03-13 Thread tibor . hegyi
Hi, I use a java.util.Timer wrapped my Scheduler class to schedule tasks. I bind an instance of this Scheduler to the JNDI from one of my servlet's init() method. It works fine, use -userThreads switch to start orion if you want context lookup from the scheduled threads. HTH, Tibor

RE: timed events

2002-03-13 Thread Justin Crosbie
I have done this using the java.util.Timer class. I created a class that extends the TimerTask class, and calls the EJB. I made a singleton class that wraps the Timer class, so I can call it from the servlet layer to schedule tasks, and guarantee only one instance per VM. Thus, my EJBs aren't

Using NT security

2002-03-13 Thread Justin Crosbie
Hi all, I checked thearchives and support pages for this, didn't seem to find it. Is there any way to get Orion to usethe NT username+password of whoever is logged in, for running client apps? Currently I'm reading them from a config file, which obviously is not ideal. Also, I am using

Re: [orion-interest]Using NT security

2002-03-13 Thread Hani Suleiman
On 13/3/02 12:16 pm, Justin Crosbie [EMAIL PROTECTED] wrote: Hi all, I checked the archives and support pages for this, didn't seem to find it. Is there any way to get Orion to use the NT username+password of whoever is logged in, for running client apps? Currently I'm reading them from

RE: Using NT security

2002-03-13 Thread Andre Vanha
Take a look at the sample JAAS modules that you can download from Sun in conjunction with JAAS. Specifically, they include an NT module which can be used to retrieve username and group information for a running process. Note however, there is no way to retrieve a password for a logged on

Passivate problems with inheritance

2002-03-13 Thread Michael Moossen
Hi, People I have trouble wenn the application server (orion/jboss) passivates an entity bean that extends another, andI don't know why!! :( I have two beans, "Request" and "AccountRequest" (and another: "PrivilegeRequest") Declaration of Request: EJB: public class RequestEJB implements

Sayisal Lotoya Para VERMEYÝN !!!

2002-03-13 Thread Bedava Sayisal Loto
Title: C:\WINDOWS\Desktop\2freebooks.htm =DDNTERNETTE SAY= ISAL LOTO =DCCRETS=DDZ !! Say=FDsal Loto oynamak =E7o= =F0umuz i=E7in g=FCzel bir tutku. Her zaman =FEans y=FCz=FCm=FCze g=FClmese de o heyecan=FD ya= =FEamak bile g=FCzel. Ayn=FD

Fw: Re: J2EE Security issue...

2002-03-13 Thread Jeff Hubbach
repost.. One thing we added to what Rabi is doing is as follows: We track version with each object. If the user object is already on the session then we get it off and double-check to make sure that the version on the session is the most up-to-date. If it isn't, then we refresh that object on

RE: timed events

2002-03-13 Thread Jens Schumann
Which is not that portable across Application Servers ;) Typical issues are JNDI lookup problems up to ClassCastExceptions. Jens | -Original Message- | From: [EMAIL PROTECTED] | [mailto:[EMAIL PROTECTED]]On Behalf Of | [EMAIL PROTECTED] | Sent: Wednesday, March 13, 2002 5:21 PM | To:

RE: timed events

2002-03-13 Thread Tim Endres
There are several solutions out there, both commercial and open source. You might wish to take a look before reinventing. tim. Which is not that portable across Application Servers ;) Typical issues are JNDI lookup problems up to ClassCastExceptions. Jens | -Original Message- |

Chained servlets and chained filters

2002-03-13 Thread Aaron Tavistock
I've got an interesting issue where I've got three chained filters running which all work great. One of these filters is a compression filter that modifies the Stream by compressing the final output. Unforutately I discovered that when the server sends a HTTP 500 response code, the result on

Another filter chaining question

2002-03-13 Thread Aaron Tavistock
I'm starting to get into some intersting space with filters and I've found yet another thing that seems like it would be a requirement for chaining filters. Order. It seems that theres no clearly defined way to know which filter will process a request first. I've been playing with placement

is restarting Orion necessary ??

2002-03-13 Thread mittal . sunil . a
Hi Please let me know if restarting Orion necessary if I change a class when the server is running. I do not want to run my server in development mode regards Sunil

is restarting Orion necessary ??

2002-03-13 Thread anandpt
Hi Please let me know if restarting Orion necessary if I change a class when the server is running. I do not want to run my server in development mode regards Sunil

RE: timed events

2002-03-13 Thread tibor . hegyi
Jens, Unfortunately, you're correct :-(. It is not portable for exactly what you have written (Context issues), but for Orion it is pretty simple and straightforward. Tibor -Original Message- From: Jens Schumann [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 11:15 PM To:

Re: is restarting Orion necessary ??

2002-03-13 Thread wzfg
Hi,friend, Thanks for your reply. Yes, I tried every cases. And I also found the same problem when I tried to subscribe the e-mail. I don't know why, I also re-isntalled the low stable version 1.5.2, but same problems. By the way, I also have 2 questions: 1.Can you tell me where(the