RE: Bowser back buttons and jsp

2001-02-22 Thread Ray Brown
What is an example of the errors? I use a nice freebie menu system, written in JavaScript, for my apps and if the user uses the "Back" button (provided by the browser) and the page has not fully been written by the browser, the browser decides not to display the page at all. If you request to

RE: Error Page

2001-02-22 Thread Randahl Fink Isaksen
Could anyone tell me where this syntax from web.xml is defined (could not find it in the JSP 1.2 spec - there is no complete documentation on web.xml): error-page error-code500/error-code exception-typejava.lang.Exception/exception-type locationerror_500.jsp/location /error-page TIA

RE: No influence on CMP 2.0 getter setter methods - a feature or a bug?

2001-02-22 Thread Daniel Cardin
I completely understand where you're trying to go. However, keep in mind Entity beans are not meant to hold business rules. They are an interface to your physical storage. We have solved that problem using a facade pattern that basically works by shielding the developper from the actual

RE: restarting orion

2001-02-22 Thread James Nelson
Take off the :90, it should just be ormi://localhost -Original Message- From: Peter Peltonen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 21, 2001 9:39 AM To: Orion-Interest Subject: restarting orion When I give the command "java -jar admin.jar ormi://localhost:90 admin

Re: Debugging and orion

2001-02-22 Thread Justen Stepka
No matter what anyone tells you, System.out.println ("ObjectName:MethodName ():line number"); will work wonders! Justen Stepka On Wed, 21 Feb 2001, Julian Richardson wrote: Hi, What tools / IDEs are people out there using to develop EJBs for use with Orion? At the moment we (as a project

SV: Bowser back buttons and jsp

2001-02-22 Thread Magnus Rydin
Title: SV: Bowser back buttons and jsp Just make sure that your application can handle ppl going forward and backward. Disble cache:ing if needed and define flowcontrol to manage the flow. Its pretty basic. WR -Ursprungligt meddelande- Från: Tim Endres [mailto:[EMAIL PROTECTED]]

SV: EJB 2.0 CMP features of Orion

2001-02-22 Thread Magnus Rydin
Title: SV: EJB 2.0 CMP features of Orion One more thing, currently, you need to add the object on each end of the bidirectional 1-n relation. Finders are automatically generated for simple expressions, such as findByCustomer, findbyId etc but does not handle findByCustomerAndId etc. And Im

SV: Application clients

2001-02-22 Thread Magnus Rydin
Title: SV: Application clients Check out the news app in the /demo/ directory for example. WR -Ursprungligt meddelande- Från: Alexander Jerusalem [mailto:[EMAIL PROTECTED]] Skickat: den 21 februari 2001 14:11 Till: Orion-Interest Ämne: Application clients Hi, Can anyone

SV: Error Page

2001-02-22 Thread Rikard Westlund
Hi guys, In order to get this to work on IE the file locationerror_500.jsp/location must be 512b or more in size Rikard -Ursprungligt meddelande-[Rikard Westlund]If Frn: Conrad Chan [mailto:[EMAIL PROTECTED]]Skickat: den 22 februari 2001 00:32Till: Orion-Interestmne:

RE: How can I use Application session?

2001-02-22 Thread Angus Mark
you can call getSession(boolean create) where create is false instead -Original Message- From: Yves Bossel [SMTP:[EMAIL PROTECTED]] Sent: 21 February 2001 11:40 To: Orion-Interest Subject: RE: How can I use Application session? I would add: * how can I retrieve the

RE: restarting orion

2001-02-22 Thread James Nelson
Take off the port number (:90). It should just be ormi://localhost. -Original Message- From: Peter Peltonen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 21, 2001 9:39 AM To: Orion-Interest Subject: restarting orion When I give the command "java -jar admin.jar

Test20Cmp / Jim Archers example

2001-02-22 Thread Randahl Fink Isaksen
I just read Arhcer's Test20Cmp example (posted on this list earlier on). I am unaware of the need for the initToNull() method (see below); does anyone know why its there - its is repeated in the later examples aswell. Well, I know at least one guy who knows... but if anyone else but Jim himself

RE: EJB 2.0 CMP features of Orion

2001-02-22 Thread Jeff Schnitzer
Unidirectional 1-1 and 1-n relationships between EJBs work, but bidirectional relationships do not. There are easy ways to fake it, though. It's not strictly according to the specification - with Orion, you must define the CMR fields as cmp-fields in the entity. pd2 and pdf say you shouldn't.

RE: Application clients

2001-02-22 Thread Jeff Schnitzer
There are a number of posts in the archive about how to configure the initial context (either programmatically or by using a jndi.properties file). In addition to that: Define a META-INF/application-client.xml and package it in the client's jar. Define the application client in the j2ee

RE: Debugging and orion

2001-02-22 Thread Mac Ferguson
I was in contact with Allaire's Kawa support recently and they told me that Kawa will support running/debugging Orion directly in it's IDE in an upcoming service pack, how soon it will be released is not certain, so caveat emptor. I found Kawa to be a pretty good basic IDE (I don't like lots of

JMS samples NPE

2001-02-22 Thread Edoardo Comar
Hi. has anyone been able to get the jms samples to work ? I struggled with the chat application, but always get a NullPointerException on connection.start() which is the same bug I got in my own application ... which makes me think I can't use Orion. BTW, I tried it in 1.3.8, 1.4.0, 1.4.5,

RE: No influence on CMP 2.0 getter setter methods - a feature or abug?

2001-02-22 Thread Robert Krueger
At 19:16 21.02.2001 , you wrote: hi, check EJB-INTEREST archives for discussions on this. I think most pros and cons (including my view on things ;-) were in a discussion a few months ago. at the moment the server hosting the search seems to be down, so I cannot give you the exact thread.

RE: Bowser back buttons and jsp

2001-02-22 Thread Kev Roberts
You can try to get round this on the client side with JavaScript but to do things robustly you need to handle this server side. How do you handle the navigation, validation and processing from your JSP? Have a look at the State pattern, this works really well for an encapsulated approach to

Session cookies and https behavior

2001-02-22 Thread Sergio Socarras
Hi I'm running into some strange behavior with sessions when running under https. I notice that when I set my browser to prompt me when a cookie is to be set and hit my application with regular http, I get a prompt for the session cookie. If I hit the same page running a secure connection I'm

starting and stopping orion

2001-02-22 Thread Eduardo Estefano
What happens when you stop orion with a Ctrl-C ? Is this bad? Does it not release all the resources it's using? I run my application fine. Then I stop it with Ctrl-C. When I start it again and try to access an EJB, I get a classnotfound exception (the class is from the jdbc driver - and its

unsubscrieb

2001-02-22 Thread mai
????.Pa??@?B?w?$??0??P"H?c?m?????????PJ??j?{10q X?B?hW?|o?q XhW??????q?J?"??' m? ???qZ.?(w?t?-  Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit unsubscribe thanks you for all the mail from

RE: Got SecurityException, bu shouldn't it be NamingException?

2001-02-22 Thread Juan Lorandi (Chile)
you're right... please report this to bugzilla in www.orionserver.com TIA JP -Original Message- From: Eduardo Estefano [mailto:[EMAIL PROTECTED]] Sent: Mircoles, 21 de Febrero de 2001 13:57 To: Orion-Interest Subject: Got SecurityException, bu shouldn't it be NamingException?

Re: EJB Clustering -- ANYONE? [Urgent!]

2001-02-22 Thread Mohit Palhan
Hi! there, I am not trying to patronise Orion but hey !! the clustering does work,I tried it with the news-app it works though I had some problem with the hsql inregards with connections but yes the clustering works!! along with the load balancer.As my friend Kevin Duffey gave me direction

EJB Clustering -- ANYONE? [Urgent!]

2001-02-22 Thread Dylan Parker
Hello, all. My company is about to drop Orion. The documentation issues, the dead website, the documentation issues, the absence of company responses, the documentation issues... We've contacted them asking where to send our money. Nothing back. In one last futile attempt to keep Orion afloat

bug: InitialContext(Map) to different servers failed.

2001-02-22 Thread Thomas Hertz
Hello, If I try to connect with 'new InitialContext( Map )' to a server and then try to connect to a different server (with a different java.naming.provider.url), the connection is established, but always to the first server I connected to. I did not found a way to connect to more than one

Re: How can I use Application session?

2001-02-22 Thread Huibert Aalbers
Hi everyone, On a related note, I have two questions regarding sessions and Orion: A) Can I expire a session programmatically? B) In Orion my sessions do no seem to expire automatically. Does orion expire sessions only when it needs resources or am I doing something wrong? Thanks in advance,

ejb-ref-mapping

2001-02-22 Thread colin harris
Hi, I'm requesting help with an orion deployment problem that i have been trying to solve for a while. I have two applications running in orion 1.4.5, (i) Soap which consists of a number of servlets and (ii) Serene which has a number of ejbs. I want the Soap application to be able to lookup

Any way to forward to j_security_check?

2001-02-22 Thread michael . kaufman
Does anyone know a way to "forward" to the j_security_check processing in Orion ? We use form-based login but have our own processing to do ahead of the standard j_security_check. On J2EE Reference Implementation (and e.g. Weblogic) we post the form to our own servlet instead of

RE: Debugging and orion

2001-02-22 Thread Ted Rice
Hi, What tools / IDEs are people out there using to develop EJBs for use with Orion? At the moment we (as a project team, rather than company) are trying to standardise on an app server and IDE to use, requirements being the usual: cost speed flexibility

Inactive application-scope bean problem

2001-02-22 Thread Geoff Marshall
- Hello all! I have a simple class that I'm using as a bean. All it does is provide a secure and non-secure root url: package db; public class AppBean { private String SecureRootURL, NonSecureRootURL; public AppBean() { this.SecureRootURL=

Error Page

2001-02-22 Thread orion
Hello, I placed an error page tag in the web.xml in order to show a warning when any kind of error occurs. However, that works fine with Netscape but not with Internet Explorer. Does anyone have any idea? The following is the error page tag that I put. error-page error-code500/error-code

Orcale connection setup

2001-02-22 Thread Eyal Litman (Kamoon IL)
Title: Orcale connection setup Hi, I am a new orion user. How do i set up my orion database connection (to oracle db) so : 1. I'll have a connection pool. 2. I'll have an EJB-aware and pooled version DataSource. I got a connection to my DB using com.evermind.sql.DriverManagerDataSource but

Re: Inactive application-scope bean problem

2001-02-22 Thread Rafael Alvarez
Hello Geoff, GM If I don't use the application for some period of time and then try to hit GM the index page, I get this error, which only restarting Orion seems to GM fix... GM 500 Internal Server Error GM java.lang.ClassCastException: db.AppBean GM at

RE: Sending a PDF via a servlet to IE 5

2001-02-22 Thread Van Dooren, Damian
Actually for my current requirement, that is the easiest and cleanest "hack". It's not pretty but it is the best solution for my requirement. Thanks. -Original Message- From: Russ White [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 20, 2001 2:22 PM To: Orion-Interest Subject:

Re: New Orion Primer (2nd try)

2001-02-22 Thread Mark Meuer
Thank you so much for writing this! I'm quite new to J2EE and this primer is exactly what I've been looking for. Please know that your efforts are appreciated. -mark At 02:59 AM 2/21/01 +0100, you wrote: The new version of the Orion Primer is in place again. *

RE: Debugging and orion

2001-02-22 Thread Kemp Randy-W18971
Mac I would be interested in what steps you took to get Bugseeker connected to your remote VM, as would other people on the list. Are the steps short enough to include in an Orion Interest email? Randy -Original Message- From: Mac Ferguson [mailto:[EMAIL PROTECTED]] Sent:

RE: Error Page

2001-02-22 Thread Randahl Fink Isaksen
You are right, thanks. R. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Gary Shea Sent: 22. februar 2001 10:14 To: Orion-Interest Subject: RE: Error Page Isn't web.xml described in an appendix of the Servlets spec? Gary Today, Randahl Fink

RE: starting and stopping orion

2001-02-22 Thread Kemp Randy-W18971
What JDK are you using? Try JDK 1.3. -Original Message- From: Eduardo Estefano [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 21, 2001 5:08 PM To: Orion-Interest Subject: starting and stopping orion What happens when you stop orion with a Ctrl-C ? Is this bad? Does it not

RE: Third party JDBC error

2001-02-22 Thread Andres Garcia Hourcade
Title: SV: Third party JDBC error nop -Mensaje original-De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]En nombre de Magnus RydinEnviado el: jueves, 22 de febrero de 2001 5:21Para: Orion-InterestAsunto: SV: Third party JDBC error No Simba mailinglist?

RE: EJB Clustering -- ANYONE? [Urgent!]

2001-02-22 Thread Jason Westra
Hi! As far as I know, Orion does not support EJB tier clustering (only web clustering). Meaning: there is no auto-failover calls to an EJB in another server in a cluster and there is no state replication for stateful EJBs, etc. However, there is no reason why you can't wrap your calls to EJBs

RE: Any way to forward to j_security_check?

2001-02-22 Thread Mike Cannon-Brookes
This is very simple to do. Just grab the RoleManager from java:comp/env/RoleManager I think and then the method if just RoleManager.login(username, password) - see the Orion API docs for more info. Alas there is no standard way to do this defined in the spec. -mike -Original Message-

RE: EJB Clustering -- ANYONE? [Urgent!]

2001-02-22 Thread Kemp Randy-W18971
The problem is that the Orion team is great at building a product, but need some lessons on marketing it. Very few people on the list -- myself included -- say anything really negative about the product. But I (and many others) have strong reservations about the documentation. Granted, if you

Re: No influence on CMP 2.0 getter setter methods - a feature or a bug?

2001-02-22 Thread wim veninga
Hi Randahl, Why don't you just leave the method setBalance(float b) out of the remote interface and put public void setBalanceAndDoWhatHasToBeDoneWhenYouSetBalance(Float balance) in the remote interface. So no other objects can call setBalance but only

RE: Error Page

2001-02-22 Thread Valentijn Scholten
unsubscribe [EMAIL PROTECTED] -Original Message-From: Rikard Westlund [mailto:[EMAIL PROTECTED]]Sent: Thursday, February 22, 2001 09:49To: Orion-InterestSubject: SV: Error Page Hi guys, In order to get this to work on IE the file locationerror_500.jsp/location

Browser crash under Orion/SSL

2001-02-22 Thread Cornel Masson
Hi Thanks to the mailing list, I seem to have solved the well-known "Orion times out very quickly under SSL" problem. However, now my browser hangs/crashes at a specific point in my application. I've tested it on IE 5.00 and IE 5.50 and it happens with both browsers. The problem does NOT occur

RE: Bowser back buttons and jsp

2001-02-22 Thread Matt MacGillivray1
Title: RE: Bowser back buttons and jsp I've run into similar problems and decided to deal with it through javascript, hoping the user won't open the page in a new browser window. Although, you can still deal with that problem through javascript. You get rid of the back button problem by

DTD versions

2001-02-22 Thread Alexander Jerusalem
Hi, does anybody know what DTD version I should reference in my deployment descriptors? Those for EJB 1.1 or those for EJB 2.0 or what does that decision depend on? thanks, Alexander Jerusalem vknn [EMAIL PROTECTED]

RE: Get me off this subscription!!!!

2001-02-22 Thread KirkYarina
mail-archive.com will not be able to help; it's just another subscribed address that happens to keep a public archive. Take a look at their FAQ at http://www.mail-archive.com/faq.html if you're interested in details. It's not connected with Evermind/Ironflare in any way. If you go back a

Re[2]: How can I use Application session?

2001-02-22 Thread Rafael Alvarez
hi Huibert, to expire a session use the invalidate() function: HttpSession s = request.getSession(true); // To expire it s.invalidate(); You can set the session timeout in the web.xml session-config session-timeout15/session-timeout /session-config

Re: EJB Clustering -- ANYONE? [Urgent!]

2001-02-22 Thread Magnus Stenman
Hello, stay tune for a little while longer (if you want to and are able to). There will be a clustering-howto released in roughly a week or so (no promises though, just an estimate), and yes there's plenty of support (and more to come). The doc will be kind of an 'umbrella doc' to the already

RE: How can I use Application session?

2001-02-22 Thread Allen Fogleson
HttpSession ses = request.getSession(true); ses.invalidate(); Al -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Huibert Aalbers Sent: Wednesday, February 21, 2001 1:51 PM To: Orion-Interest Subject: Re: How can I use Application session? Hi everyone,

Re: Error Page

2001-02-22 Thread Johan Fredriksson
I've gotten the error-page to work quite well, but not for the 404 error on a .jsp page... Everytime when I try to do a garbled http-request I end up with an octet-stream/application response. 500 internal server works fine with the errorpage. 404 on badly formed urls works, unless it

RE: Browser crash under Orion/SSL

2001-02-22 Thread Van Dooren, Damian
It must be something else. We are running an SSL Orion site for the past 6 months, without any browsers crashes, both IE 5 and 5.5. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 22, 2001 9:43 AM To: Orion-Interest Subject: Browser

RE: Any way to forward to j_security_check?

2001-02-22 Thread Andre Vanha
It might be possible to achieve this without forwarding. I haven't tried it, but using Orion's role manager might do the trick. First you can retrieve the role manager using RoleManager manager = (RoleManager)new InitialContext().lookup("java:comp/RoleManager"); The you can call login on the

RE: Third party JDBC error

2001-02-22 Thread KirkYarina
From http://www.simba.com/support/support.htm (searched www.google.com for simba jdbc, clicked on support): At Simba, our customer service mandate is to provide our customers with the support, knowledge, and tools they require to be competitive in the marketplace. Simba now offers free

RE: Get me off this subscription!!!!

2001-02-22 Thread Tim Endres
Folks, Orion has responded to this request at length. The response was simple. If you can't remember the email address you subscribed to the list with, how are they going to figure it out? If you use the unsubscribe form, and it does not work, then guess what? You are trying to unsubscribe the

Re: EJB Clustering -- ANYONE? [Urgent!]

2001-02-22 Thread Etienne Bernard
On Thu, Feb 22, 2001, Magnus Stenman wrote: While on that note, what are the other especially wanted areas for improved/more elaborate documentation (howto's and similar)? Please be as specific as possible (ie the opposite of "improved overall documentation" :) and keep in mind that the

Custom UserManager Problem

2001-02-22 Thread Michael A Third
This message is being sent on the behalf of Ernie Phelps at parts.com since it keeps rejecting his mails:) -- I am having difficulties getting a custom user manager to work. Here are the steps I have taken: Implemented User (as TMUser) Implemented Group (as

Re: Error Page

2001-02-22 Thread orion
Hi Rikard, Thanks for your attention but... My error_500.jsp file is larger than 512b in size. Simon - Original Message - From: Rikard Westlund To: Orion-Interest Sent: Thursday, February 22, 2001 12:48 AM Subject: SV: Error Page Hi guys, In order

RE: No influence on CMP 2.0 getter setter methods - a feature or abug?

2001-02-22 Thread Tim Drury
Title: RE: No influence on CMP 2.0 getter setter methods - a feature or abug? The search engine is back up. Here is the start of the thread on database constraints vs. ejb constraints: http://archives.java.sun.com/cgi-bin/wa?A2=ind0007=ejb-interest=R49824 There seems to be some

RE: Debugging and orion

2001-02-22 Thread Mac Ferguson
start orion with the following options: java -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,se rver=y,suspend=y,address=whatever port you're going to use -jar orion.jar then create a new project in Bugseeker, selected Remote as the project type, and accepted all other

RE: Customer User Manager problems

2001-02-22 Thread Juan Lorandi (Chile)
have you got a login error page? that's why the three times, also, if a user doesn't belong to a sr_guest group, you won't have access -Original Message- From: Ernie Phelps [mailto:[EMAIL PROTECTED]] Sent: Jueves, 22 de Febrero de 2001 12:36 To: Orion-Interest Subject: Customer User

RE: No influence on CMP 2.0 getter setter methods - a feature or abug?

2001-02-22 Thread Robert Krueger
There seems to be some smart-ass named "Robert Krueger" who thinks he knows all the answers :) :) :) I've heard of him. he must be a real pain in the ass ;). cheers, robert Thanks Robert! -tim (-) Robert Krger (-) SIGNAL 7 Gesellschaft fr Informationstechnologie mbH (-) Brder-Knau-Str. 79

Re: Inactive application-scope bean problem

2001-02-22 Thread Geoff Marshall
I'm working on the package, but not that class. Is that the problem -- -Geoff Marshall, Director of Development ... t e r r a s c o p e (415) 951-4944 54 Mint Street, Suite 110 direct (415) 625-0349 San

please tell me : does JMS work at all ?

2001-02-22 Thread Edoardo Comar
Please, can anyone confirm that (as of 1.4.7) JMS does not work at all ? See my previous messages for details ... basically a connection.start() throws an NPE and a send doesn't work if the connection is not started (contrary to the spec which requires start() to be called for message delivery).

RE: Customer User Manager problems

2001-02-22 Thread Ernie Phelps
Juan, I have tried putting the user into the principals.xml file, although the eventual goal is to not use this file at all (provide custom groups from the database via our UserManager). This does not seem to have any effect. I am not currently using a login error page, but I am not that worried

RE: Customer User Manager problems

2001-02-22 Thread Juan Lorandi (Chile)
ok. Some pointers: 1. I have my own imp. of UserManager and it's deliciously good 2. No need for principals.xml at this stage 3. When you add a security constraint, some pages require something 'extra' to be seen, in the case, this extra is that the user login'd belongs to a group sr_guest

Re: EJB Clustering -- ANYONE? [Urgent!]

2001-02-22 Thread Christian Sell
While on that note, what are the other especially wanted areas for improved/more elaborate documentation (howto's and similar)? UserManager, RoleManager etc.

RE: Error Page

2001-02-22 Thread Gary Shea
Isn't web.xml described in an appendix of the Servlets spec? Gary Today, Randahl Fink Isaksen ([EMAIL PROTECTED]) wrote: Could anyone tell me where this syntax from web.xml is defined (could not find it in the JSP 1.2 spec - there is no complete documentation on web.xml):

RE: No influence on CMP 2.0 getter setter methods - a feature or a bug?

2001-02-22 Thread Randahl Fink Isaksen
Yep, as I wrote in an earlier post, that was what I chose to do. Randahl -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of wim veninga Sent: 22. februar 2001 15:38 To: Orion-Interest Subject: Re: No influence on CMP 2.0 getter setter methods - a feature

http 500 errors

2001-02-22 Thread Vaskin Kissoyan
I keep getting internal server errors (HTTP 500), where do I go to debugthis? Which log file has this stuff? I need a stacktrace! It's not popping up on the console, and I couldn't find it in any of the obvious .log files.Thanks in advance...

RE: Debugging and orion

2001-02-22 Thread Kemp Randy-W18971
Thanks, Mac. I will give it a shot. -Original Message- From: Mac Ferguson [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 22, 2001 12:20 PM To: Orion-Interest Subject: RE: Debugging and orion start orion with the following options: java -Xdebug -Xnoagent -Djava.compiler=NONE

RE: Customer User Manager problems

2001-02-22 Thread Ernie Phelps
Juan, I found the problem thanks to your example. My implementation of TMUserManager.getGroup was returning null, which always failed even when the user was found and had a proper password. Fixed this and it works fine now. Thank you very much for the assistance. - Ernie -Original

Re: http 500 errors

2001-02-22 Thread Tim Endres
Once you run your app, go to the application-deployments directory and into the directory for your application. In there you will find a file named orion-application.xml. Add something like this to that file: log file path="application.log" / /log I keep getting internal server

RE: EJB Clustering -- ANYONE? [Urgent!]

2001-02-22 Thread Brian Wing Shun Chan
I've worked with all of the other EJB Servers (Enhydra, JBoss, Jonas, etc). I do find the OrionServer to be far better (nice complex O-R mapping, web and app server in one, etc). For documentation, I refer to www.orionsupport.com, which is doing a great job. - Brian Chan On Thu, 22 Feb 2001,

RE: EJB Clustering -- ANYONE? [Urgent!]

2001-02-22 Thread Kemp Randy-W18971
Couldn't agree with you more. The product is great (for the price), the user support site is doing an excellent job, along with www.jollem.com. However, my point about marketing still stands, and they need to beef up the documentation to win over more converts (which they said today they

Re: EJB Clustering -- ANYONE? [Urgent!]

2001-02-22 Thread Phillip Ross
--- Etienne Bernard [EMAIL PROTECTED] wrote: A tuning HOWTO would we great. How to configure orion-ejb-jar.xml to limit number of in-memory instances of EJBs, how to specify passivation delay, how to limit EJB pool sizes. A little introduction about orion handles these pools would be great,

RE: No influence on CMP 2.0 getter setter methods - a feature or abug?

2001-02-22 Thread Nick Newman
My two cents ... Putting checks in the EJB's will give you much better information on exactly what has gone wrong. Adding checks in the DB as well can't hurt, but without the EJB checks it might be hard to know what action to take in the face of a generic SQL error. Nick Newman At 01:11 PM

RE: Jikes 1.12 compiled code is bad!

2001-02-22 Thread Fink, Paul
I use jikes 1.12 (8/1/2000) under Linux with JDK 1.3.0 works fine. -Original Message- From: Adam Cassar [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, February 14, 2001 6:21 PM To: Orion-Interest Subject: Re: Jikes 1.12 compiled code is bad! I am using jikes v1.13 on linux

Documentation wanted - WAS RE: EJB Clustering -- ANYONE? [Urgent!]

2001-02-22 Thread Mike Cannon-Brookes
On that note, it's about time I asked again what documentation people do want? OrionSupport survives on people's donations of documentation, tips, tricks and tutorials and we thank them very much for that. People often ask "what can I write" - well now is your time to tell us. Email me ([EMAIL

Re: http 500 errors

2001-02-22 Thread Rafael Alvarez
Hello Vaskin, Thursday, February 22, 2001, 3:39:33 PM, you wrote: VK I keep getting internal server errors (HTTP 500), where do I go to debug VK this? Which log file has this stuff? I need a stacktrace! It's not popping up on the console, and I couldn't find it in any of the obvious .log

RE: http 500 errors

2001-02-22 Thread Trond Nilsen
You mean you're getting the friendly IE error messages? Orion uses error 500 to indicate a JSP compile error. Sometimes IE chooses to replace the error with its useless monstrosity. You should be able to disable this by un-checking 'show friendly error messages' in the Internet Options. If that

RE: Debugging and orion

2001-02-22 Thread Kemp Randy-W18971
In terms of what Orion can and can't do, it is a full service App server, implementing all the functionality on their website at www.orionserver.com. Like all products, there are problems being worked on (this is true for the expensive servers as well). If you want to know the problems that

RE: Debugging and orion

2001-02-22 Thread Kemp Randy-W18971
Hi, Julian. This topic has been discussed so many times, that I have lost count. It's best to check the archives for a discussion here, and if you don't know, someone can help you. The tools really range from the free and cheap, to the very expensive, depending on what you are looking for

Re: Relationships between components!

2001-02-22 Thread Peter Pontbriand
Hi everbody! I'm trying to create relationships between components, both within the same jar and outside to another jar. In the first alternative, i.e. within the same jar, I succeded in creating the relationship, but unfortunately orion maps this to a blob. I have been playing around

CMP 2.0 OR mapping problem

2001-02-22 Thread Michael A Third
I have been trying to get Orion to correctly map a non-dependant bidirectional 1:N relationship using EJB 2.0. It tries to generate a collection mapping that uses a third table to hold the reference. I was able to deploy it properly using a unidirectional relationship. Here is the relevant

RE: Any way to forward to j_security_check?

2001-02-22 Thread Jeff Schnitzer
Yes, this works, and is how I perform user authentication. It's not app server portable though. :-( Jeff -Original Message- From: Andre Vanha [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 22, 2001 8:52 AM To: Orion-Interest Subject: RE: Any way to "forward" to j_security_check?

RE: EJB Clustering -- ANYONE? [Urgent!]

2001-02-22 Thread Jeff Schnitzer
I would like to see the documentation for the orion deployment descriptors fleshed out. Right now it's sparse and choppy, with some sentences just cut off in the middle. Verbose explanations with examples would be a major improvement. More than anything else, though, I think Orion needs a

Beginner...

2001-02-22 Thread Luis Javier Beltran
Hi all, I've just started using Orion server My question is, how do I create a new application?? What files should I modify, what lines should I add, to register it? Thanks!! Luis Javier

Application clients

2001-02-22 Thread Alexander Jerusalem
Hi, Can anyone tell what I have to do to use EJBs in Orion from an application client? thanks, Alexander Jerusalem vknn [EMAIL PROTECTED]

RE: EJB Clustering -- ANYONE? [Urgent!]

2001-02-22 Thread Allen Fogleson
An LDAPUserManager would be very nice, or at least some good docs on that whole schema so we could implement our own. I'm struggling through that now myself. Al -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Magnus Stenman Sent: Thursday, February 22,

RE: FAQ-O-MATIC (was: EJB Clustering -- ANYONE? [Urgent!])

2001-02-22 Thread Tim Endres
More than anything else, though, I think Orion needs a FAQ-O-MATIC. Seconded!

RE: CMP 2.0 OR mapping problem

2001-02-22 Thread Jeff Schnitzer
Bidirectional relationships do not yet work. There are two workarounds that have worked for me: Manually add (and remove!) both sides of the relationship. So your Marketplace.addStorefront() method would look like this: void addStorefront(Storefront front) {

Win2k Pro. is messing up the DB

2001-02-22 Thread orion
Hello, I do not really know if this is because she's using Window 2000 Professional. All our employees use Windows 2000 Servers or Linuxes or Solarises except for one person. The exception is Windows 2000 Professional. The problem occurs only at her computer. Once she updates a DB record, it

Re: Beginner...

2001-02-22 Thread Ray Harrison
Hi Luis - A good place to start is to look at: www.jollem.com www.orionsupport.com There are some examples there to get you started --- Luis Javier Beltran [EMAIL PROTECTED] wrote: Hi all, I've just started using Orion server My question is, how do I create a new application??

RE: please tell me : does JMS work at all ?

2001-02-22 Thread Chia, Pei Yen
Hi, The chat example works. You have to activate the JMS service in /config/server.xml file (uncomment jms-config path="./jms.xml" / ). Don't modify anything from the original jms.xml. Then do the steps as documented at "jmsdemo-readme.txt". It should be able to work. I encountered the

RE: EJB Clustering -- ANYONE? [Urgent!]

2001-02-22 Thread Mark Bernardinis
I think that we also need an explanation of what goes in the field, not what are valid values that it accepts. Some fields I look at in the XML are totally a question to me and I don't know why you would put one value in when compared to another. I would like to see the documentation for the

Re: Test20Cmp / Jim Archers example

2001-02-22 Thread Tim Endres
I am not certain about Jim's example. However, we use this style of code to null out "transient" fields that get filled in during the use of an entity bean. The problem is that these fields are not "cleared" between passivation and re-activation. Thus, you can have fields with invalid values from

RE: Any way to forward to j_security_check?

2001-02-22 Thread Juan Lorandi (Chile)
that's what I've been doing... whenever there's a sec-constraint, orion forwards to my login page; when I want login without securing, I simple use the login form(or some other functionally equal) and then login the user programatically (by changing the action field of the form) It works, just

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

  1   2   >