prob with taglibs

2000-12-04 Thread umesh sonavane
I am trying to run pet store in orion i start the orion server with the instruction given in the estore-install.txt for eg java -Djsp.reuse.tags=false -jar orion.jar but its seems that it doesnot works Is there any more setting in orion that i have to give to make templating working

Re: OR mapping with Oracle

2000-12-04 Thread wim veninga
You can use complex OR mapping with orion, for instance if you have an compound PK object you can map all its fields to different columns in the database table See orionsupport - complex or mapping http://www.orionsupport.com/articles/complex-or.html - Original Message - From: "Hegyi

FW: Problem with synchronized method

2000-12-04 Thread Michael Piwonka
Can anyone help with the following? I originally sent this to [EMAIL PROTECTED] but haven't gotten a response yet... Thanks, Michael Piwonka -Original Message- From: Michael Piwonka Sent: Wednesday, November 29, 2000 10:12 AM To: '[EMAIL PROTECTED]' Cc: Douglas Burns Subject:

FORM login with FRAMES

2000-12-04 Thread theo van niekerk
Hi there We would like to use FORM login/authentication with our web app that uses FRAMES and JavaScript extensively - example one frame will call a dynamically generated FRAMESET that loads different documents depending on the situation, while Onload events reloads contents of other frames.

RE: OR mapping with Oracle

2000-12-04 Thread Hegyi Tibor
Hi Wim, In my code snippet I have shown the mapping in orion-ejb-jar.xml, that is as follows: primkey-mapping cmp-field-mapping name="key" fields cmp-field-mapping name="key" persistence-name="key" / /fields /cmp-field-mapping /primkey-mapping This "compound" PK class has one field for sake

ORMI: changing username, password Client Context properties

2000-12-04 Thread theo van niekerk
Hi there It seems like once a client app has established a jndi-connection with the ejb-container through ormi that it can't change the user,password properties for the lifetime of the VM. I've tried resetting properties, closing/unbinding connections and creating new intances of InitialContext.

Orion UserManager and ejbPostCreate

2000-12-04 Thread theo van niekerk
Hi there We're getting a deadlock during the creation of a UserBean. We're using the Orion UserManager. In the ejbPostCreate Method of the UserBean we do a.. User caller = userhome.findByUsername(context.getCallerPrincipal().getName()); ..that causes the freeze. The reason for the post

Class-Cast-Exception Error

2000-12-04 Thread Paul Kofon
Hi, I have a Web application with forms. A servlet updates a database on behalf of a JSP. It worked okay until today when some one in my company tried to fill and submit one of the forms. He got a class-cast Exception. I was amazed because that had never happened. I tried it myself and got

integrating orion-ejb-jar.xml into application

2000-12-04 Thread Marcus Lankenau
Hey! I understand the possibilities of the orion-ejb-jar.xml file (specifying finder-sqls and rel-mapping), but I wan't to intigrate this into our application appname.ear or the tree beneath orion/applications. Are there any possibilities to integrate these information into the ejb-jar.xml

R: How to use EJBUserManager?

2000-12-04 Thread DeVincentiis Giustino
Hello Alexander, if you want to use an EJB named Account you should have the following classes: - AccountBean (extending EJBUserBean), - Account (extending EJBUser), - AccountHome (extending EJBHome, you have to copy all the definitions from EJBUserHome modifying the return type, and optionally

application client and EJB: TX was null

2000-12-04 Thread Dario Dorigo
Hi, I'm testing Orion 1.3.8 with another EJB based application developed with weblogic. After a bit of pain I was able to connect to the ejb and to call the ejbs. But when I try to get the data from the ejb (the method signature is: public String [] getListOfModules(); ) I got this

Entity Bean to XML

2000-12-04 Thread Fink, Paul
How can I marshal an entity bean into XML. I'm trying to use Castor and I can get it to work if I marshal a dependent object but how can I marshal the whole entity bean?

RE: integrating orion-ejb-jar.xml into application

2000-12-04 Thread Scott Farquhar
This has been answered before - check the archive at www.orionserver.com Here is the original email: --- You can include a sample orion-ejb-jar.xml file in your project by including it in a directory called orion: /lib /client /ejb

Traversing JNDI namespace

2000-12-04 Thread Nick Newman
Hi, How can I find what's in an entity bean's java:comp/env namespace? If I ask the InitialContext for a list of what is in it (using initialcontext.list("") ) I get a list of things (mainly home interfaces) plus entries for "java:comp" and "ejb" which are both Contexts. If I ask for what's

Re: Where is Orion's copy of ejb-jar dtd?

2000-12-04 Thread Yves Bossel
I got it work :) The short hint: check that every method you invoke exists and your JSP syntax. The long story == 1. I started using Orion and built an application that simply sniffes the user name and roles using an EJB named SecuritySniffer. 2. On deployment, I got an error

Re: Traversing JNDI namespace

2000-12-04 Thread Gary Shea
On Today, Nick Newman ([EMAIL PROTECTED]) wrote: Hi, How can I find what's in an entity bean's java:comp/env namespace? If I ask the InitialContext for a list of what is in it (using initialcontext.list("") ) I get a list of things (mainly home interfaces) plus entries for "java:comp"

onMessage()

2000-12-04 Thread TH Lim
Hi! I'm testing Orion 1.4 JMS coffeemaker demo. The demo runs fine. I modified it to use onMessage() instead of pooling using QueueReceiver.receive() method. This however, renders this demo useless. onMessage() is not triggered. It is my logic fault or Orion doesn't support onMessage() trigger?

Re: Traversing JNDI namespace

2000-12-04 Thread Reid Hartenbower
Hi, (And I preface this with 'as I understand it') First, it's the app server's context, not the bean's. What parts of it you get to see are determined by the principal/credential pair (and the roles they connect you to, as defined on the app server) that you pass to the context factory when

How to set Session-Time out

2000-12-04 Thread Santosh Kumar
globally for orion and not just for individual web components? Regards, Santosh.

Re: Class-Cast-Exception Error

2000-12-04 Thread Marcus Lankenau
Hi Paul! Same probleme here.We get this errer when a ejb is recompiled and redeployed. The disappeares on server restart. Paul Kofon wrote: Hi, I have a Web application with forms. A servlet updates a database on behalf of a JSP. It worked okay until today when some one in my company