RE: Client program for simple EJB tutorial

2002-04-01 Thread Eric Hodges
I don't think -cp and -jar can be used together like that. Try just using -cp and place the .jar on the classpath. -Original Message- From: John D. Ware [mailto:[EMAIL PROTECTED]] Sent: Monday, April 01, 2002 3:10 PM To: Orion-Interest Subject: Re: Client program for simple EJB

RE: Java IDE?

2002-03-22 Thread Eric Hodges
Idea for coding, Jbuilder for GUI layout. -Original Message- From: Clay Mitchell [mailto:[EMAIL PROTECTED]] Sent: Friday, March 22, 2002 12:55 PM To: Orion-Interest Subject: Java IDE? Just a question, any suggestions as to what a good IDE is? I've tried JBuilder, IDEA (I

Re: OT: Session Related

2002-03-18 Thread Eric Hodges
This is an old issue. I've solved it in other environment by sending a token back with the first response that contains a key to lookup the context of the conversation. Subsequent requests send that token and the server can lookup the context info in a database shared between the servers. Not

RE: Local interfaces difference ???

2002-03-06 Thread Eric Hodges
1. Not every app server provided that optimization. 2. Even if they optimized they had to emulate pass by value arguments. 3. It's bassackwards to code for the 10% of EJBs actually used remotely and hope an app server optimizes the remoteness out of the other 90%. -Original Message-

RE: JUnitee

2001-11-16 Thread Eric Hodges
Check out Cactus at apache.org. We're using it for that sort of test. -Original Message- From: Ely Wagner Aguiar de Oliveira [mailto:[EMAIL PROTECTED]] Sent: Friday, November 16, 2001 11:00 AM To: Orion-Interest Subject: RE: JUnitee Hello, mates! Does anyone know any kind of JUnit

Problem with DataSourceUserManager on orion 1.5.2

2001-07-09 Thread Eric Hodges
I just upgraded to Orion 1.5.2 and my DataSourceUserManager stopped working. It can find the User info, but when the getGroup() call is returning null for some reason. Has something changed that would break this? (Also, I can't get to orionsupport.com or Orion's mailing list archive or I

Re: Question about DataSourceUserManager

2001-06-19 Thread Eric Hodges
that problem, I ran into some issues with Orion's EJB security for which I never found a solution. But I was working with application clients... You might be fine if you are using Orion's integrated web server(?) Mike - Original Message - From: Eric Hodges [EMAIL PROTECTED] To: Orion

Re: Question about DataSourceUserManager

2001-06-19 Thread Eric Hodges
:+portalUsers.getName()+:+portalUsers.getDescription()); } catch (Exception ex) { ex.printStackTrace(); } return aUser; } After aUser.addToGroup(portalUsers), aUser.isMemberOf(portalUsers) still returns false. What am I doing wrong? - Original Message - From: Eric Hodges [EMAIL

Re: R: Why is Netscape slower with Orion?

2001-02-09 Thread Eric Hodges
- Original Message - From: "Tony Wilson" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Friday, February 09, 2001 3:36 PM Subject: RE: R: Why is Netscape slower with Orion? We found that if the table depth was more than 5 or so AND the table at that depth was

Multiple application clients sharing oneMETA-INF/application-client.xml file?

2001-02-03 Thread Eric Hodges
context look at multiple apps? Then at least the unused references wouldn't throw NamingExceptions. /* Eric Hodges, Chief Technology Officer Mongoose Technology, Inc. "We chase cobras so you don't have to." */

Re: Questions about running an EJB client

2001-02-02 Thread Eric Hodges
OK, I got the security problem resolved. Thanks Juan! Now I've got another problem: javax.naming.NamingException: Error reading application-client descriptor: No location specified and no suitable instance of the type 'AgentRegistrar' found for the ejb-ref AgentRegistrar Where is it looking

Re: Questions about running an EJB client

2001-02-02 Thread Eric Hodges
- Original Message - From: "Juan Lorandi (Chile)" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Thursday, February 01, 2001 3:33 PM Subject: RE: Questions about running an EJB client Read the j2ee spec again. orion-x.xml files are deployment info; deployment

Re: Questions about running an EJB client

2001-02-02 Thread Eric Hodges
It still doesn't work. I get the same error message. My orion-application.xml file looks like this: ?xml version="1.0"? !DOCTYPE orion-application PUBLIC "-//Evermind//DTD J2EE Application runtime 1.2//EN" "http://www.orionserver.com/dtds/orion-application.dtd" orion-application

Re: Questions about running an EJB client

2001-02-02 Thread Eric Hodges
oesn't support writing, so the write-access part is irrelevant HTH JP -Original Message- From: Eric Hodges [mailto:[EMAIL PROTECTED]] Sent: Mircoles, 31 de Enero de 2001 20:14 To: Orion-Interest Subject: Questions about running an EJB client I'm trying to set up an E

Questions about running an EJB client

2001-02-01 Thread Eric Hodges
I'm trying to set up an EJB (my first time) on Orion. I have the .EAR file running, I just need to get the client to test it. When I try to run the client, it fails on the constructor for InitialContext(). Here's the error: java.lang.SecurityException: Not allowed to look up

Questions about running an EJB client

2001-02-01 Thread Eric Hodges
I'm trying to set up an EJB (my first time) on Orion. I have the .EAR file running, I just need to get the client to test it. When I try to run the client, it fails on the constructor for InitialContext(). Here's the error: java.lang.SecurityException: Not allowed to look up

Question about automated testing with Orion

2001-01-05 Thread Eric Hodges
I'm trying to set up some automated unit tests for our servlets. I'm using HttpUnit and JUnit, but the authentication in HttpUnit doesn't work with Orion. Does anyone out there have experience at this? Is there a better tool? Some sort of trick? I've been talking to the HttpUnit folks, and

Re: JMS TopicSession Transactions ...

2000-04-28 Thread Eric Hodges
I was never able to get JMS to work in Orion. The test code wouldn't compiler, and some of the classes couldn't be instantiated. I asked several times on this list and no one had any success with the JMS support. - Original Message - From: "Harsh Waghmare" [EMAIL PROTECTED] To:

Security problems with RMI and Orion

2000-04-19 Thread Eric Hodges
I have a servlet that tries to call an RMI method. The RMI method tries to return a serializable object. I receive this error: java.rmi.UnmarshalException: error unmarshalling return; nested exception is: java.lang.ClassNotFoundException: com.sun.xml.tree.XmlDocument (no security manager:

Re: Security problems with RMI and Orion

2000-04-19 Thread Eric Hodges
Oops, I figured it out. My classes aren't being loaded from the classpath, they have to be copied to an obscure directory for some reason. - Original Message - From: Eric Hodges To: Orion-Interest Sent: Wednesday, April 19, 2000 3:50 PM Subject: Security

Re: No examples of client demarcated transactions...

2000-03-31 Thread Eric Hodges
I've been asking for weeks for someone to explain how to instantiate an EvermindTopicConnection for JMS. No one has replied. I don't think anyone really uses some parts of Orion. - Original Message - From: "Alex Paransky" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent:

Re: General Questions...

2000-03-28 Thread Eric Hodges
No one seems to know how to make JMS work. I've asked the list repeatedly with no success. The coffee maker example won't compile. The documentation is no help. - Original Message - From: "James Sue Ann Birchfield" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent:

Re: JMSChat

2000-03-28 Thread Eric Hodges
Does anyone out there know how to instantiate an EvermindTopicConnection? Please? - Original Message - From: "Eric Hodges" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Thursday, March 23, 2000 12:54 PM Subject: Fw: JMSChat (I forwarded my rep

Fw: JMSChat

2000-03-23 Thread Eric Hodges
(I forwarded my reply to the list since [EMAIL PROTECTED] doesn't accept my email.) - Original Message - From: "Eric Hodges" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 23, 2000 11:58 AM Subject: Re: JMSChat It isn't just that the demo won

Re: JMSChat

2000-03-22 Thread Eric Hodges
: "Magnus Stenman" [EMAIL PROTECTED] To: "Eric Hodges" [EMAIL PROTECTED]; "Orion-Interest" [EMAIL PROTECTED] Sent: Thursday, March 16, 2000 12:42 PM Subject: Re: JMSChat Hi, the demos in the 0.9.4 distro are temporary and use internal Orion APIs (which have changed

Re: JMSChat

2000-03-16 Thread Eric Hodges
Hmmm. Are there any docs on how to use the current release's JMS? - Original Message - From: Magnus Stenman [EMAIL PROTECTED] To: Eric Hodges [EMAIL PROTECTED]; Orion-Interest [EMAIL PROTECTED] Sent: Thursday, March 16, 2000 12:42 PM Subject: Re: JMSChat Hi, the demos in the 0.9.4

Problem with JMS demo

2000-03-14 Thread Eric Hodges
Anyone have any feedback on this? Can anyone else compile the JMSChat demo? - Original Message - From: Eric Hodges To: Orion-Interest Sent: Monday, March 13, 2000 8:48 PM Hi there, new Orion user here. I installed Orion today to use the JMS implementation

No Subject

2000-03-13 Thread Eric Hodges
Hi there, new Orion user here. I installed Orion today to use the JMS implementation. I tried to run the demo code (JMSChat) and it won't compiler. It complains that EvermindTopicConnection is an abstract class. Looking at the class file, I see 4 abstract methods. g1, g2, g3, g4 and run. I