RE: UserManagers

2000-12-15 Thread Mike Cannon-Brookes
As far as I can tell, EJBUserManager and EJBUser are BROKEN in 1.4.4+. The getGroups() method always returns null, and any role checking always returns false (isUserInRole(x)). This to me is a the most serious bug in Bugzilla, but has received no attention yet from the guys - sad. I have a compl

custom finder and dependent object (ejb 2)

2000-12-15 Thread Tim Drury
I'm trying to write a custom finder by editing the orion-ejb-jar.xml file. I understand the syntax for params ($beanvar = $argnum), but I have an entity with a dependent object. The entity is Contact and the dependent object Address. How do I specify fields of the dependent object within the q

Orion and J2EE licensing

2000-12-15 Thread Scott Stirling
I'm trying to grasp some J2EE licensing concepts. I'm trying to decide if Sun is fleecing some companies over J2EE branding fees while leaving others alone for arbitrary or capricious reasons. I just posted a long message about it to the jbosslicense group at http://www.egroups.com/group/jbossli

RE: UserManagers

2000-12-15 Thread Werner Bohl
Arved: Could you please enlighten us with the hacks required to use EJBUserManager? TIA, Werner Bohl Organization for Tropical Studies - Original Message - From: Arved Sandstrom <[EMAIL PROTECTED]> To: Orion-Interest <[EMAIL PROTECTED]> Sent: Tuesday, December 12, 2000 6:56 AM Subject:

Re: JDom and Orion

2000-12-15 Thread Tim Endres
> I have swapped out the Orion xerces JAR in favor of a newer version, and I have not seen any problems associated with that change. tim. > Hi all, > > I am trying to use the most excellent JDom in my web app on Orion (1.3.9) and > running into a little snag. For certain parts of its funcation

compound key

2000-12-15 Thread Henry Hu
Could anybody tell me how I can specify a compound key in the descriptor file? When the primary key consists of 2 or more fields, the DTD told me not to specify the " "tag. However, the deployment has an error as No direct database fields for primary key Please help. Henry

Re: Deployment problems (web-app not found in application)

2000-12-15 Thread Joshua Goodall
Hi Malcolm Three things: 1. in application.xml, change the web-uri to a relative path. i.e. ... mvcapp-web.war ... Orion will correctly find the .war file relative to the content of the .ear file. 2. it may not be a problem on a Windows box, but if you deploy this to a unix pla

RE: setting radio buttons in JSP with database values

2000-12-15 Thread Jeff Schnitzer
I'm not sure I'm reading your message correctly. Do you want to know how to initialize a radio button value? You use the "checked" attribute in the tag: /> Jeff Schnitzer [EMAIL PROTECTED] >-Original Message- >From: Kemp Randy-W18971 [mailto:[EMAIL PROTECTED]

JDom and Orion

2000-12-15 Thread mascolino . mr
Hi all, I am trying to use the most excellent JDom in my web app on Orion (1.3.9) and running into a little snag. For certain parts of its funcationality, JDom requires a very recent version of Xerces. The datestamp on it is Sep 1, 2000 and it is approx 1,464KBs. As you can tell this is almos

RE: More than one InitialContext

2000-12-15 Thread J Davis
Can you cast some votes on 215/216 in buzilla, it may help fix this bug faster. -Original Message- From: Peter van Rensburg [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 14, 2000 10:21 AM To: Orion-Interest Cc: 'Karl Avedal' (E-mail) Subject: RE: More than one InitialContext Hi I

RE: Deployment problems (web-app not found in application)

2000-12-15 Thread Juan Lorandi (Chile)
remove the slash (/) from the web-uri tag in application.xml OR, copy the war-ic to the root dir (/) . just kidding it looks like this (in application.xml): /mvcapp-web.war should be: mvcapp-web.war -Original Message- From: Malcolm Ferguson [mai

Deployment problems (web-app not found in application)

2000-12-15 Thread Malcolm Ferguson
I am having problems deploying an application on orion. I have deployed the attached .ear file (which contains a web-app with a couple of .jsps and a servlet) to e:\applications and made the following config file changes, in server.xml: and in default-web-site.xml: when I request one of the

Re: Standard Err stream

2000-12-15 Thread Seung Bang
Adam, Scott, Mikko, and Juan: I appreciate your helps. That's THE ONE I wanted.

Re: Struts 1.0 - Anyone Do It?

2000-12-15 Thread Ate Douma
Ok, once more: Deploying the stuts 1.0 pre-release example web application on Orion in (more or less) five steps (based on Orion 1.3.8 and jakarta-struts-src-20001209.zip on W2k, jdk1.3): 1. build the struts example web application (or retrieve it from the nightly build distribution) 1.1. ext

RE: An apology for Christian Sell

2000-12-15 Thread Michael S. Kelly
Very good then, on to other topics. With respect to "y'all", English has for a couple centuries now limped along without a true second person plural ("you" has tried, unsuccessfully in my opinion, to be both singular and plural). We can thank the genteel people of the southern US for resolving t

RE: setting radio buttons in JSP with database values

2000-12-15 Thread Juan Lorandi (Chile)
with or wihtout EJB's ?? if with: <% Collection col = ButtonHome.findButtons(...); for (Iterator it = col.iterator(); it.hasNext(); ) { Button tbut = (Button) it.next(); %> N <% } %> if without, you'll have to iterate a recordset instead of a collectio

AW: HOWTO: Using OpenJMS with Orion

2000-12-15 Thread Jon Lipsky
Unfortunately it does not work with message driven beans (at least that I've been able to figure out).  Fortunately for us we are not using message driven beans right now, though we would like to in the future...   Jon... -Ursprüngliche Nachricht-Von: John D'Ausilio [mailto:[EMA

RE: How to configure a data-source alias per application?

2000-12-15 Thread John N. Alegre
I have had the same problem tending to make me doubt the Krueger post. My solution is to have a data-sources.xml for each datasource and rotate them by hand before I launch Orion. I know this is not correct but its the only way I have found to do this ... could someone please help. john On 14-

RE: HOWTO: Using OpenJMS with Orion

2000-12-15 Thread John D'Ausilio
and this works with message-driven beans?   jd -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Lipsky, JonSent: Friday, December 15, 2000 8:53 AMTo: Orion-InterestSubject: HOWTO: Using OpenJMS with Orion Hello all,   My deve

setting radio buttons in JSP with database values

2000-12-15 Thread Kemp Randy-W18971
This is probably a simple question, but I can't find the answer. I am developing some JSP forms mapping values to a CMP bean and RDMS database. My boss wants to change some text fields in the JSP pages for adding and updating to radio buttons. I can easily set the value with code like this o

RE: When CMP fails...

2000-12-15 Thread Juan Lorandi (Chile)
check out autocreate-tables autodelete-tables in orion-application.xml HTH JP -Original Message- From: Mikko Kurki-Suonio [mailto:[EMAIL PROTECTED]] Sent: Viernes, 15 de Diciembre de 2000 7:55 To: Orion-Interest Subject: Re: When CMP fails... On Fri, 15 Dec 2000, Randahl Fink Isaksen

RE: Strainge missing ServletRequest

2000-12-15 Thread Juan Lorandi (Chile)
if you are using MultipartRequest in cos.jar, I've been using it successfully in 1.4.4 for 2 months Check that javax.servlet.ServletRequest isn't more than once in the classpath HTH JP -Original Message- From: Tim Squires [mailto:[EMAIL PROTECTED]] Sent: Viernes, 15 de Diciembre de 2

RE: Standard Err stream

2000-12-15 Thread Juan Lorandi (Chile)
try: java -jar orion.jar .options. &2> log.txt sometimes the ampersand not needed (I don't remember exactly) -Original Message- From: Seung Bang [mailto:[EMAIL PROTECTED]] Sent: Jueves, 14 de Diciembre de 2000 20:35 To: Orion-Interest Subject: Standard Err stream Hello, Where d

Struts 1.0 - Anyone Do It?

2000-12-15 Thread Neal Kaiser
I get the common "Missing resources attribute org.apache.struts.action.MESSAGE" error. I've read a lot of threads on this, but didn't find a solution yet. If anyone has successfully deployed the struts-examples could you please post the steps? I'm sure there are many people that would benefit fro

R: Different JMS and Orion Message Bean

2000-12-15 Thread Montebove Luciano
Hi Andrew, I am interested in this topic too. My company has choosed SonicMQ as JMS server but I can't find a direct way to call a message bean in Orion (the only way seems to be using, the SonicMQ provided, JMS bridge to make the two JMS services talk each other). If you solve the problem ple

Re: When CMP fails... problem solved, or...

2000-12-15 Thread Mikko Kurki-Suonio
On Fri, 15 Dec 2000, Randahl Fink Isaksen wrote: > Thanks to Mikko Kurki-Suonio I have now solved the problem. Not only should > I wipe the deployed application, it turns out that I needed to alter the > defaultdb.script aswell. Originally it contained the line (That's HyperSonic -specific). An

HOWTO: Using OpenJMS with Orion

2000-12-15 Thread Lipsky, Jon
Hello all,   My developers have been fighting with the JMS implentation in Orion so I decided to play around with getting one of the open source JMS implentation to work with Orion.  At the bottom of this email are the steps to get OpenJMS working and the changes you need to make to your ap

When CMP fails... problem solved, or...

2000-12-15 Thread Randahl Fink Isaksen
Thanks to Mikko Kurki-Suonio I have now solved the problem. Not only should I wipe the deployed application, it turns out that I needed to alter the defaultdb.script aswell. Originally it contained the line CREATE TABLE ADDRESSBOOK_EJB_ADDRESSENTRY(NAME VARCHAR NOT NULL PRIMARY KEY,ADDRESS VARCHA

How do you get a 128 bit certificate installed on Orion?

2000-12-15 Thread Keith Kwiatek
Hello, I followed the instructions on orion site for getting ssl up and working, but it seems that the thawte certificate was only signed using a 40 bit key How/where do I get it signed (for free) with a 128 certificate? Also, is there a config parameter on orion that manadates 128 browsers

Strainge missing ServletRequest

2000-12-15 Thread Tim Squires
Moved an app from Ye Olde JServ to Orion 1.4.4 and when uploading a file, the following exception is chucked: java.lang.NoClassDefFoundError: javax/servlet/ServletRequest at StormData.service(StormData.java:161) at javax.servlet.http.HttpServlet.service(HttpServlet.java)

RE: When CMP fails...

2000-12-15 Thread Jeff Schnitzer
>From: Randahl Fink Isaksen [mailto:[EMAIL PROTECTED]] > >Contradicting my expectations it seems Orion does NOT detect >my changes to >ejb-jar.xml. Do I really need to add the new "EMAIL" column to >the database >myself (I hope not...) - or is there a way to tell Orion that >it needs to >update

Re: An apology for Christian Sell

2000-12-15 Thread Christian Sell
Michael, I hardly remeber which of the flames yours was (the first one, right?). I posted an apology to the list shortly after that, stating that I agreed with y'all (thats the way to say it these days, isn't it?) but it never made it. I did have a slight foreboding of what was going to come whe

Re: SV: to boldly go where no man has gone before

2000-12-15 Thread Robert Krueger
At 08:36 15.12.00 , you wrote: >Den här tråden börjar bli plågsamt tråkig.. >Vem bryr sig om hur folk stavar så länge som dom kan förklara sitt problem >eller sin lösning? >Låt oss hålla oss till Java och Orion istället, ok? > >And for the rest of you non-swedes: >Lets stop wasting bandwith on g

Re: When CMP fails...

2000-12-15 Thread Mikko Kurki-Suonio
On Fri, 15 Dec 2000, Randahl Fink Isaksen wrote: > Contradicting my expectations it seems Orion does NOT detect my changes to > ejb-jar.xml. Orion does this kind of thing on occasion (don't know why). Wipe the appropriate application-deployment directory (as in "rm -rf") to force redeployment.

Re: Orion shutdown problem

2000-12-15 Thread Shailesh
  Hi there  ,   In  your  command  don't specify  the port no. , then it will work.   e.g. Use the command like following  [root@ns orion]# java -jar admin.jar  ormi://localhost admin 123 -shutdown   Shailesh Joshi Java Programmer Versaware (India) Ltd.       - Original Message -

RE: weird Orion 1.4.4 JSP bug

2000-12-15 Thread Joe Walnes
As well as what Scott pointed out, This is invalid: /> ... as custom tags cannot contain other custom tags within attributes. Try something like: (Scriptlets are allowed inside attributes - also, remember quotes). And... You may have problems with this: ...as JSP will s

Referer information

2000-12-15 Thread Andrew Whalley
Hi I was looking for a way to log referer information in orion. Currently the config line in default-web-site.xml looks like this: But this seems to only give pages from within the web site that is set up on my orion server. No information from outside sites seems to be appearing in the

Re: Cocobase integration

2000-12-15 Thread Joe Walnes
>I would be interested if the cocobase O/R mapping tool could be used to >create BMP beans for orion. I`m very interested in orion and I would be glad >if I could use cocobase to generate my BMP beans. Martin, It is possible to use Cocobase for O/R mapping from BMP entity beans using it's stan

When CMP fails...

2000-12-15 Thread Randahl Fink Isaksen
To test Orion I built the address book application from the "Orion CMP Primer". Since this went quite well I decided to add a single attribute to the AddressEntry bean, namely a String attribute called email, containing a persons e-mail address. Unfortunately I forgot to add the email to the ejb-j

Shutting down...

2000-12-15 Thread Randahl Fink Isaksen
To shut down orion I created a simple shortcut which calls Orion with "C:\Program Files\jdk1.3\bin\java.exe" -jar admin.jar ormi://localhost admin -shutdown It works fine but a few times I have seen Orion writing "Shutting down..." without actually terminating, which leaves the prompt-window ha

Re: HttpSession problem

2000-12-15 Thread Petr Podsednik
I apologize very much for this question. My testing wasn´t proper. Thanks for understanding. Petr -Original Message-From: Petr Podsednik <[EMAIL PROTECTED]>To: Orion-Interest <[EMAIL PROTECTED]>Date: 14. prosince 2000 15:01Subject: HttpSession problem Hi a