ejbPassivate and max-instances

2002-02-18 Thread Eric Cassady
Hi all. Using Orion 1.5.2, I'm having some difficulty making sense of how the entity instance caching works. I've seen a lot of messages on this list referring to almost the exact same issues, but no real resolution. Orion never seems to call passivate on my entity beans under normal circumstan

global servlet initialization parameters?

2002-02-18 Thread Mark Weaver
is there any way to specify inititialization parameters in orion so that 2-3 different related web applications can all access them with ServletConfig.getInitParameter() or ServletContext.getInitParamter()? tomcat appears to allow this through the use of a default context, but i can't make o

Is Orion 1.5.4 == Oracle OC4JR2 or R1

2002-02-18 Thread Gerardo
Hi all A good question for Magnus it's wich version of the Oracle OC4J represents this release of Orion ( I kwon that for contract reasons should not be exactly the same, but it's interesting to kwon it ), because I downloaded both and they are very similar in content. Thanks in advance. Saludo

RE: Direct call to j_security_check when using form based authori zati on

2002-02-18 Thread Jason Coward
Erik: Try changing your snippet below to... http://www.mongoosetech.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Erik Johansson Sent: Monday, February 18, 2002 1:30 PM To: Orion-Interest Subject: RE: Direct call to j_security_check when using fo

RE: 1.5.4 and OracleAQ

2002-02-18 Thread Geoff Soutter
Probably. Check the resource providers document http://www.orionserver.com/docs/resource-providers/resource-providers.xm l, you should be able to figure it out from there. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of António Cruz Sent: Monday, 18 Febr

RE: Orion MDB reverses message order with SwiftMQ as well as OrionJMS (was RE: fyi: 1.5.4 still stacks rather than queues JMS messages)

2002-02-18 Thread Geoff Soutter
Hi there, Actually I didn't read the EJB spec as I had guessed it was a JMS bug originally, so thanks for pointing that out. Very lazy of me. However, section 15.4.6 "Concurrency of Message Processing" of the EJB 2.0 spec says: "the container should attempt to deliver messages in order when it

Re: a newbie question: error in deploying a stateless ejb

2002-02-18 Thread Steven Lamb
Are you using Sun's 1.3 deploytool. If so the ejb-jar.xml file does not work with Orion. You need to comment out the security role mappings, repackage the ear file  and redeploy and then it will work fine. Steve On Mon, 2002-02-18 at 19:48, daniele rizzi wrote: Hi all, this Sunday I'

RE: Direct call to j_security_check when using form based authori zati on

2002-02-18 Thread Erik Johansson
Thank you for your answer. I understand what you mean, but I am afraid I did not specify my problem enough. I would like to have a login form (fast login) on my public page where a visitor can directly insert username and password. When the client press the login button I would like to send him t

Re: Problems configurating classpath

2002-02-18 Thread Stephen Davidson
Luis María Ruiz del Portal Lázaro wrote: > Hi all, i try to run fop in OC4J (with orion.jar). I have downloaded the > jaxp winter package from sun that contains the xerces.jar and xalan.jar > files. > > The classpath of orion has this order "ejb.jar, jndi.jar, jdbc.jar, > jta.jar, jaxp.jar, c

Re: Orion 1.5.4 Local/LocalHome with BMP -> deployment problem

2002-02-18 Thread David Tunkrans
Thanks for the reply. Does this mean that you cant use findBy-methods on the localhome inteface?   /David   public interface ProductLocalHome extends EJBLocalHome{  public static final String PRODUCT = "ejb/ProductLocal";  public static final String JNDI_PRODUCT = "java:comp/env/ejb/Product

RE: Local EJB Home methods WAS: Orion 1.5.4 Local/LocalHome with BMP -> deployment problem

2002-02-18 Thread Ray Harrison
It appears that the local home methods must catch/throw an java.rmi.RemoteException - obviously going against the concept of local. While this will allow deployment to the server, I have yet to test the functionality. I have reported the bug as #731 in bugzilla. --- "Kutzera, Dieter-Norbert" <[

RE: Orion 1.5.4 Local/LocalHome with BMP -> deployment problem

2002-02-18 Thread Kutzera, Dieter-Norbert
...  are you using ejbHome-methods? I think there is a bug in orion 1.5.4 . It it not possible to use ejbHome-methods in local home-interfaces. When you remove the declaration of this methods everythink should work.   I hope the bug is fixes rapidly!   Dieter -Original Message-Fro

Problems configurating classpath

2002-02-18 Thread Luis María Ruiz del Portal Lázaro
Hi all, i try to run fop in OC4J (with orion.jar). I have downloaded the jaxp winter package from sun that contains the xerces.jar and xalan.jar files. The classpath of orion has this order "ejb.jar, jndi.jar, jdbc.jar, jta.jar, jaxp.jar, crimson.jar, xalan.jar, saxon.jar, tools.jar, jsse.j

Re: Orion MDB reverses message order with SwiftMQ as well as OrionJMS (was RE: fyi: 1.5.4 still stacks rather than queues JMS messages)

2002-02-18 Thread Poop
"Well, I just tested an MDB with SwiftMQ, and Orion still stuffs up the message ordering." --Geoff Soutter Please read the EJB2.0 spec before recording this as a bug. Message order is not guaranteed in MDB's. - Original Message - From: "Geoff Soutter" <[EMAIL PROTECTED]> To: "Orion-In

1.5.4 and OracleAQ

2002-02-18 Thread António Cruz
Hi, has i see in early posts, there are several issues relating to MDBs that have been fixed in this new release, what i really need to know is if in this release OracleAQ can act as a resource provider to MDBs in Orion, if so, how can i do that? Thanks, Tony Cruz

But which version

2002-02-18 Thread Djemal, Guy (TWIi London)
Hi all, now that we have a new versions of Orion, 1.5.4, it is all more confusing which version we should be using. It would seem that the official line is to use 1.5.2 but that is way old. I still have a short while before I need to deploy my app but would like to de doing this with the 'right

RE: Direct call to j_security_check when using form based authorizati on

2002-02-18 Thread Douma, Ate
Define an secure url (e.g. /secure/requestedLogin) which forces the user to login (just as you described) and request it from a button or link on the public page you want. When the user isn't logged in yet the servlet container will intercept the request and force the user to login remembering the

Direct call to j_security_check when using form based authorization

2002-02-18 Thread Erik Johansson
I am using form based authentication in my application. When trying to access a protected resource, the container automatically prompts the login form to the user, where he can fill in authentication info (username and password). Code from login.jsp: Here the Servlet-specification dictat

a newbie question: error in deploying a stateless ejb

2002-02-18 Thread daniele rizzi
Hi all, this Sunday I've got some time to spare so I tried out the sun ejb tutorial: in chapter 1 a stateless ejb is deployed on Application SErver, then a client connects to it: in this step this error is produced: what have I done to deserve this? --- the error --- com.evermind.server.rmi.Or

Direct call to j_security_check when using form based authorization

2002-02-18 Thread Erik Johansson
I am using form based authentication in my application. When trying to access a protected resource, the container automatically prompts the login form to the user, where he can fill in authentication info (username and password). Code from login.jsp: Here the Servlet-specification dictat