JMS queue not found

2001-03-23 Thread Christian Billen
I'm trying to connect to a JMS queue from a stateless session bean. I got the feeling I am missing something, I get a javax.naming.NameNotFoundException: jms/SyncQueue not found Here is what I have, my jms.xml has an entry like this:

RE: Dependents remove not supported

2001-03-19 Thread Christian Billen
Title: RE: Dependents in 1-N don't go away Well no that's the prob, spec says you can have an abstract remove method in the DO but it looks like it's not an implemented feature.    Has anyone on the list been able to delete specific dependents from a parent ejb and can maybe share how they

RE: Dependents remove not supported

2001-03-19 Thread Christian Billen
ection it is there.   -tim   -----Original Message-From: Christian Billen [mailto:[EMAIL PROTECTED]]Sent: Sunday, March 18, 2001 12:30 PMTo: Orion-InterestSubject: RE: Dependents in 1-N don't go away   Is that remove() method an abstract method to be implemented

RE: Dependents in 1-N don't go away

2001-03-18 Thread Christian Billen
thod of the DO.  Try:   getDependents().remove(dependent);  // remove DO from parent's list dependent.remove();  // remove DO from database/container   -tim   -Original Message-----From: Christian Billen [mailto:[EMAIL PROTECTED]]Sent: Saturday, March 17, 2001 9:29 PM

RE: Dependents in 1-N don't go away

2001-03-17 Thread Christian Billen
issues with DOs in the spec and one reason they may be changed. For now, just implement ejbRemove in your entity and DOs so they call the remove of their children. -tim > -Original Message- > From: Christian Billen [mailto:[EMAIL PROTECTED]] > Sent: Friday, March

Dependents in 1-N don't go away

2001-03-16 Thread Christian Billen
Hi everyone, I am having an issue with my 1-n dependents relationship. My dependents don't get deleted when I remove them from the cmr Set. I have a PhoneNumber dependent class which has a field type, countrycode, number, etc... I implemented the equal method in my class such that two phonenum

RE: Custom UserManager.

2001-03-15 Thread Christian Billen
I don't know what type of User manager you made, but I had problems using EJBUserManager, I had to leave the principals.xml containing all my groups (not my users) and the link to it in orion-application.xml. I struggled for a while on this since it doesn't make sense as all my users are in the d

Using another EJB as part of the Primary Key Class

2001-03-13 Thread Christian Billen
Hi everyone, Can one specify another EJB Entity object as part of the primary key for one ejb? Here is a imaginary example: TreeEJB has a one to many relationship to AppleEJB And I have a primary key for AppleEJB which contains TreeEJB and a AppleID In my application when I tried to do someth

RE: Orion/Linux, kill -9, and dead server

2001-03-09 Thread Christian Billen
It's running stable here with Linux Redhat 7, kernel 2.2.18, glibc-2.2-12 and Sun JDK 1.3.0. I had this problem before but it was running with IBM JDK 1.3. By using sun's jdk it solved the problem. Christian > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On

Dependent Primary Key

2001-03-08 Thread Christian Billen
Hi list, I realize the very existence of Dependent might be changing in the near future, but have some question regarding their use in the current implentation on orion 1.4.7 I have a Person (EJB CMP) with a one-to-many PhoneNumber(dependent). My problem is that orion creates a person_phonenumb

RE: still can't get struts working w/ orion 1.4.5

2001-03-07 Thread Christian Billen
You write that your application resource file is located here: ../WEB-INF/classes/com/neuroquest/cais/resources/myProps.properties   then your web.xml action definition should be like this: ...     application     com.neuroquest.cais.resources.myProps   As written, you only points to the pa

RE: Here is a SAP DB schema if interested...

2001-03-07 Thread Christian Billen
Very good, here's three more disallowed field for your schema: And it works for me then, anyone else want to change something to this schema? Christian > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Ray Harrison > Sent: Tuesday, M

RE: Using jakarta-struts with orion1.4.5

2001-03-06 Thread Christian Billen
is your struts.jar is WEB-INF/lib ? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Mark Kettner > Sent: Tuesday, March 06, 2001 9:23 AM > To: Orion-Interest > Subject: Using jakarta-struts with orion1.4.5 > > > I'm trying to use jakarta-struts wi

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 s

RE: classloader does not implement getResourceAsStream ?

2001-03-03 Thread Christian Billen
Hi there, I got struts working here, here's the two important things: - Make sure struts.jar is in your WEB-INF/lib and not in Orion/lib which you got - Get a source version of Struts, and modify the ActionServlet.java of Struts: This line (about line 881 in my version): URL url = this.getClass(

RE: How do I map a .doc extension to a .jsp execution

2001-02-27 Thread Christian Billen
I haven't tried this but try to modify the config/global-web-application.xml and add a mapping for the jsp servlet: jsp /*.doc > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Christi

RE: Win2k Pro. is mess... choosing the right database product

2001-02-24 Thread Christian Billen
I second that opinion on SapDB, clean and nice GUI tools for managing the database, support on linux, windows and other unix flavors. The JDBC driver is type 4. The documentation is nice but could be improved. And if you want commercial support from sap themselves it is available since they sti

RE: EJBUserManager, what am i missing?

2001-02-23 Thread Christian Billen
lication.xml. > > -mike > > > -Original Message----- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED]]On Behalf Of Christian > > Billen > > Sent: Saturday, February 24, 2001 9:43 AM > > To: Orion-Interest > > Subject: EJBUserManager,

EJBUserManager, what am i missing?

2001-02-23 Thread Christian Billen
I want to implement EJBUserManager in my application, but the authentication from the web doesn't accept my credentials and keep popping up until finally I get a 401. Here's how I'm doing it: 1) I defined the EJBUserManager in ejb-jar.xml and it gets instantiated properly: tables COM_EVERMIND_EJ

SAPDB experience and Datasource

2001-02-22 Thread Christian Billen
Hello, I'd be interested in hearing the experiences from people who used SAPDB with Orion CMP in terms of stability and performance on both linux and nt. Also if you have them available, can you share your database-schema ? Thanks, Christian

Struts

2001-02-17 Thread Christian Billen
share your experience and configuration settings Thanks, Christian Billen

EJB-QL in 1.4.7

2001-02-12 Thread Christian Billen
Is there any implementation of EJB-QL at this time in the 1.4.7 code? Thanks, Christian

Factoring EJB Homes from within Session EJB

2001-02-07 Thread Christian Billen
Hi everyone, I have a newbie question so please don't shoot me :) I have a web application and an ejb application composed of CMP and Session beans. I noticed that I needed to reference all the homes of my EJBs within the web.xml and I wanted to know if it was recommended/safe to create one stat

cascade-delete support

2001-02-01 Thread Christian Billen
Hi there, I run Orion 1.4.5 and was playing with the EJB 2.0 features. Is on the many side of the relationship supposed to work yet or is it still on the todo list? Thanks, Christian

RE: orion on unix

2001-01-07 Thread Christian Billen
You could run the following command in your script as root: ipchains -A input --destination-port 80 -p tcp -j REDIRECT 10080 Then su to the orion user and start orion on a port > 1024 as non root, there is an article on orionsupport.com about this but it's down at the moment. Christia

Security constraint and directory browsing

2001-01-05 Thread Christian Billen
://myserver/mydir/, however if I specifies a file: http://myserver/mydir/somefile.html then it works. Any way to get the authentication working on the directory browsing? Thanks, Christian Billen HyperQuest Solutions, Inc.