RE: Everyones problem

2001-03-08 Thread Julian Richardson
The list actually has a "fool filter" which takes an unsubscribe messages sent to the full list instead of the admin account and unsubscribes the user. However, people seem to have trouble spelling "unsubscribe". Nice. Maybe there should be a fool test for

Re: Debugging the EJB applications in the ORION server using JBuilder

2001-03-08 Thread Marco Pas
10:54 / 8-3-2001 Thomas, i want to start developing for Orion, using JBuilder 4. But JBuilder only lets me integrate with the Borland App.server and Weblogic.. How do i enable JBuilder so it lets me use the Orion server, the Enterprise tabs keeps grayed out... Your help

HELP: Settings for pooled datasources, timeout errors

2001-03-08 Thread Jens Stutte
Hello all, i have a problem with my datasource settings (timeout etc.). To give you a picture of my environment, i am using orion together with a SAP DB database and bean managed persistence (all under linux, orion 1.4.7, jdk 1.3.1 beta). My settings looked as follows: data-source

Re: HELP: Settings for pooled datasources, timeout errors

2001-03-08 Thread Robert Krueger
snip I'd like to know if i did not get something regarding the configuration of datasources and if others had problems with the timeout settings. Hi Jens, I believe your observations are correct and your not doing something wrong. We have also had a number of strange effects in that area

Re: orion.jar needed for JNDI-lookup??

2001-03-08 Thread Stefan Wendel
Hi, 1st: sorry, I was offline during the last week Juan: what do you mean by "inline"? for loading the necessary class, yes, I mean the RMI-classloader (since Orion provides class-loading via RMI in order to get the stubs/skeletons to the server) Cheers, Stefan - Original Message

Re: Inconsistent EJB JNDI Locations

2001-03-08 Thread Peter Pontbriand
- Original Message - From: "Valentijn Scholten" [EMAIL PROTECTED] To: "Peter Pontbriand" [EMAIL PROTECTED] Sent: Thursday, March 08, 2001 3:51 AM Subject: RE: Inconsistent EJB JNDI Locations what do you mean just the ejb-name? So use "MyBean" instead of "java:comp/env/MyBean" ???

Calibrating EJB Pooling in Orion

2001-03-08 Thread Tibor Hegyi
Hi, Well, I am a bit confused how Orion handles pools of Entity/SLSB/SFSB instances. Let me share my expreiences so that you can give me some explanation and clue how to calibrate pooling in Orion. Thiscan be important intimes of heavy load applications running in Orion. I have already

RE: Problem starting up Orion, Please help!

2001-03-08 Thread Roland Dong
Thanks, everybody for your suggestions. Now the port problem has been solved. But jsp is not running yet. The tools.jar is already in orion directory. Still, I can not figure out why orion has started up and running but couldn't run a simple jsp? To save time, I uploaded the whole orion

Re: Settings for pooled datasources, timeout errors

2001-03-08 Thread Falk Langhammer
Hi Jens, interesting posting! I think You still could get the JDBC source code (since it is open source now and there is a download option for it). Maybe, the bug is in jdbc, not the sapdb itself. Then You could fix it (maybe running a 36h debug session ;-) and post the fix. I mean, isn't it

Re: Calibrating EJB Pooling in Orion

2001-03-08 Thread Falk Langhammer
Hi again, - Original Message - From: Tibor Hegyi Furthermore, despite the overtime Entity instances are removed from the instance pool, the amount of memory does not reduce at all!. Quite strange and bad news (if true) to those of many complaining about memory problems. At least

Re: SOAP interface for ejb beans?

2001-03-08 Thread Richard E. Sansom
Have you tried the Apache/XML project's SOAP implementation? -Rich --- John Pletka [EMAIL PROTECTED] wrote: Has anyone out there implemented a generic SOAP servlet that can take requests in, lookup the requested bean, execute the method and return the result? I'm getting ready to write one,

Re: Calibrating EJB Pooling in Orion

2001-03-08 Thread Falk Langhammer
Hi Tibor, I may have no answers but volunteer to discuss the issue with You... - Original Message - From: Tibor Hegyi My test application scenario is: servlet-SLSB-SFSB-Entity. (A - B: means A instantiates B and calls business methods on it) 1. When the SLSB bean looks up the home

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

new error... never seen this.

2001-03-08 Thread D. Akers
Hi guys, here's a strange, strange thing. I have a jsp page, which includes another page. Basically, --- page1.jsp: %@ page ... % % if (request.getParameter("checkpage").equals("page2")) {% %@ include file="page2.jsp" % %}

Uploading class file from application client

2001-03-08 Thread Vidur Dhanda
Hello, This is not an Orion specific question, but since I'm using Orion 1.4.7 I thought I'd try here. Is it possible to upload a class file from an application client? I want users to be able to implement a serializable interface, say X, and upload it to the server. The server will manage

RE: SOAP interface for ejb beans?

2001-03-08 Thread Robert Nicholson
Thinking about this I guess you can define the message signature for SOAP so you'd have to pass a JNDI name right in the message. Trivial by the sound of it. So you plan to deliver the response as a SOAP message? so you have to use Reflection to do this and make sure your APIs adhere to a naming

RE: SOAP interface for ejb beans?

2001-03-08 Thread Robert Nicholson
I don't know a whole lot about soap. But are the type mappings one to one? Can Soap carry user defined data? ie. JNDI names? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of John Pletka Sent: Thursday, March 08, 2001 9:35 AM To: Orion-Interest

RE: problems with orion server

2001-03-08 Thread Mike Cannon-Brookes
Nemad, I'll say it again - DO NOT SEND ORION SUPPORT REQUESTS TO PERSONAL EMAIL ADDRESSES. Use the mailing list - you will NOT get help by spamming people personally. -mike -Original Message- From: Nenad Momcilovic [mailto:[EMAIL PROTECTED]] Sent: Friday, March 09, 2001 6:38 AM

Case insensitive primary keys

2001-03-08 Thread Jeff Schnitzer
I have a primary key which is a string (user's name), and I would like it to be case-insensitive. That is, if there is already a "bob" entity, trying to create a "Bob" entity should throw a DuplicateKeyException. Is there a way I can do this with Orion? I vaguely recall reading something in

Re: new error... never seen this.

2001-03-08 Thread Peter Kua
basically your html headers have already been written before you did a forward. do not do this. if you need to forward or sendRedirect to another page, do it before writing any html out. - Original Message - From: D. Akers To: Orion-Interest Sent: Friday, March 09, 2001

Re: Uploading class file from application client

2001-03-08 Thread SCOTT FARQUHAR
I would imagine that you would need to upload the class to somewhere where the classloader can find them. I'm not sure where this is in orion. If orion can load classes dynamically, then all you would have to do is to save them into the correct directory. If you want to save them to a

RE: new error... never seen this.

2001-03-08 Thread Tim Endres
The newline between the "{% and %@ include file" causes a println to be generated and sends output the to client, which precludes the jsp:forward from working because forwards only work before you generate output. I think if you eliminate this newline, the problem will go away. tim. %@ page

Re: Case insensitive primary keys

2001-03-08 Thread Patrick V. Madden
Can't you just take your input key in the ejb finder method and always convert it to lower case or uppercase. Then do your search. Do the same if you provide an ejb create method that takes a string. Just a quick thought. At 03:30 PM 3/8/2001 -0800, Jeff Schnitzer wrote: I have a primary key

SV: Warning: Dependent Objects

2001-03-08 Thread Magnus Rydin
Title: SV: Warning: Dependent Objects Personally, I already hate the distinction between local and remote EJBs. Any such distinction could be handled by a descriptor. It shouldnt force the developer to develop different classed depending on local or remote usage.. That sucks so bad my teeth

Orion with Apache.

2001-03-08 Thread Harsh Vinod Mohta
hi, Does Orion application Server provide support for Apache Web Server on WinNT platform? I would appreciate if you could suggest some pointers to information regarding integration of Orion with Apache Web Server on WinNT platform. Regards, Harsh begin:vcard n:Mohta;Harsh tel;fax:91 -

SV: Orion with Apache.

2001-03-08 Thread Magnus Rydin
Title: SV: Orion with Apache. Hi. check out http://www.orionsupport.com/articles/apachefrontend.html and please dont sent questions like these to my personal mail. WR -Ursprungligt meddelande- Fran: Harsh Vinod Mohta [mailto:[EMAIL PROTECTED]] Skickat: den 8 mars 2001 23:04