RE: RE: Stored procedures and J2EE

2001-09-09 Thread Frank Eggink
ame thing can be said of having the logic reside in the middle layer, where you also have the benefits of a strong OO machine independent language. > > - Brian Chan ([EMAIL PROTECTED]) > > -Original Message- > From: Frank Eggink <[EMAIL PROTECTED]> > To: Orion-Intere

RE: Stored procedures and J2EE

2001-09-08 Thread Frank Eggink
Is it correct to state that from a performance and design perspective using stored procedures is helpfull if you need access from outside the J2EE environment? If no out side access is necessary, the stored procedures are likely to be helpfull for perfomance if they filter out a lot of data or

RE: Orion license only valid for one year?

2001-05-31 Thread Frank Eggink
Isn't it that you get one year max of support with the license? FE On Tuesday, May 29, 2001 1:03 PM, Rob Lapensee [SMTP:[EMAIL PROTECTED]] wrote: > 6 months ago (or so) I read the license agreement carefully and it seemed to > be worded as $1500 per year, so I sent an e-mail to this group asking

Re: How to access EJB's from client (not packaged in .ear) ?

2001-05-23 Thread Frank Eggink
Here is how I think it works. The system registers the fully qualified classnames at the server side when starting the server. Yes, I'm assuming that fqnames are registered. When the client container starts, the client-application.xml is loaded and the system checks whether it can find locally

RE: Host header

2001-05-21 Thread Frank Eggink
Aren't you refering to virtual hosting? If so, check the docs regarding the default-website.xml. That's the file containing the settings from the top of my hat. FE On Monday, May 21, 2001 3:53 PM, Patrik Andersson [SMTP:[EMAIL PROTECTED]] wrote: > Hi, > > I was just wondering how I set up two

RE: Load balancing advice needed

2001-05-18 Thread Frank Eggink
Guess what you what is more of an -un-clustering excercise :-) When specifying your params for your InitialContext you have to set the PROVIDER_URL. That specifies a host path. e.g. ... properties.put(Context.PROVIDER_URL, "ormi://your-bean-server/your-application/");

RE: http-ormi tunneling

2001-05-18 Thread Frank Eggink
Maybe something todo with the Orion version? I'm using 1.4.5 on Win98 and WinNT and have to say: it works. FE On Friday, May 18, 2001 10:06 AM, Thomas Hertz [SMTP:[EMAIL PROTECTED]] wrote: > > Hello. > > > > When we try to connect to the server using > > > http:ormi://localhost/appName, the t

RE: http-ormi tunneling

2001-05-18 Thread Frank Eggink
Strrrange, I followed exactly the same path as you did and it worked like a breeze. >From the top of my head this can be caused by two things: - packet filtering, in otherwords is port 80 indeed accessible? - some xml setting for your server breaks the tunneling To check the latter maybe try it

RE: Access Denied on Linux, but NT/w2k fine

2001-05-18 Thread Frank Eggink
If that is to no reveal to that I would check (with a program) all files (especially the settings in the xmls) on whether they are the same on both machine Linux & Wins, unless you are 100% sure they are the same (and not 99.9% sure they are the same!). The upper/lower case differences in inte

RE: Stateless bean and remove

2001-05-13 Thread Frank Eggink
me data is > still stored in the private variable). > > So in a way I think I need a kind of "static" statefull session bean such > that all clients have the same session bean. > > What are your ideas about this ? > > Eddie > > > > >From: Fran

RE: Stateless bean and remove

2001-05-11 Thread Frank Eggink
Nope, as a rule you will have a limited number of stateless session beans at anyone moment instantiated in your container, due to the nature of a stateless bean. The container can 'garbage collect' them. Guess it will do that after some time out. If you are seriously concerned about resource us

RE: JMS or just function ??

2001-05-11 Thread Frank Eggink
In general you use JMS for three purposes: 1. The message receiver is not always accessible (due for instance to the unreliable nature of the internet) but you do want guaranteed delivery. 2. You would like to give clients the option to subscribe at will (allthough you probably can do this using

RE: orionconsole and firewall -> hangs !??

2001-05-11 Thread Frank Eggink
A good firewall can log packages that are denied. For example ipchains on Linux can log any packet that matches a specific rule. If you log all denied packages and start orion with the console you'll find out easily what the ports are ... Guess you can do this trick with other firewall as well

RE: Username/password in principals.xml

2001-05-10 Thread Frank Eggink
It is used for J2EE authentication. Changing the config files and starting / killing the server (without using admin.jar) is not done via J2EE stuff and therefore: no admin login needed. On Thursday, May 10, 2001 7:43 PM, Terrance Davis [SMTP:[EMAIL PROTECTED]] wrote: > I found it used for con

RE: User/Role problem

2001-05-09 Thread Frank Eggink
Are you using the default user manager (the using the principal files)? In that case it is easy to check what's happening by adding roleManager.store() in your code. That'll store all your changes in the principal files. After that it's piece of cake to check the relations. 'user123' should be

RE: Fun with compound primary keys

2001-05-09 Thread Frank Eggink
Yep, if you don't make things serializable you get as a 'value'. That applies to return values crossing the wire as well :-). Note that, to prevent yourself from having more fun! FE On Tuesday, May 08, 2001 2:43 AM, Michael Jara [SMTP:[EMAIL PROTECTED]] wrote: > It took me a while to figure

RE: Multiple instances of the orion server using the same install?

2001-05-09 Thread Frank Eggink
With ' java -jar orion.jar -config ' you can do the trick ... On Tuesday, May 08, 2001 8:46 PM, Chaya Ramanujam [SMTP:[EMAIL PROTECTED]] wrote: > I know it is possible to run multiple instances on Orion on one machine > using multiple installs of Orion and multiple server.xml files. Is it > p

RE: Running 2 Orions on the Same Machine

2001-05-09 Thread Frank Eggink
1 10:46 PM, sub k [SMTP:[EMAIL PROTECTED]] wrote: > Hi Frank, > I typed in the file properly. Do I have to modify any > other files? > Thanks > Subrah > --- Frank Eggink <[EMAIL PROTECTED]> wrote: > > Did you copy the text from the rmi.xml file to your > > mail? &

RE: Running 2 Orions on the Same Machine

2001-05-07 Thread Frank Eggink
Did you copy the text from the rmi.xml file to your mail? It reads Hi, > When I added these lines to the file rmi.xml, still it > is giving me an error saying Illegal character at the > end of the document. > > > > > and my host is localhost, so I think I don't have to > add this. > > Plea

RE: Number of JVMs on Orion..

2001-05-07 Thread Frank Eggink
t. Am I correct? My > concern is can we run multiple instances with some > dispatcher mechanism to distribute the load equally to > all these JVMs on the same server? > Thanks > Subrah > > > --- Frank Eggink <[EMAIL PROTECTED]> wrote: > > As long as the port num

FW: custom finder in CMPs (SLSB facade)

2001-05-07 Thread Frank Eggink
The call to a SFSB cause you (with Orion) at max the additional penalty of an extra Activation and Passivation cycle. Depending on the amount of resource usage for these extra cycli as percentage of the overall resource usage, the use of SFSBs will hit you. The thing which puzzles me is why not g

RE: custom finder in CMPs (SLSB facade)

2001-05-06 Thread Frank Eggink
U, this is a question which is burning for sometime now. I certainly not intending to challenge, but I take this as an opportunity to raise the question. I understand the performance benefit of Stateless Session Beans (SLSB) over Stateful Session Beans (SFSB): this benefit is caused by th

RE: Number of JVMs on Orion..

2001-05-06 Thread Frank Eggink
As long as the port numbers for HTTP, JMs (if used) and RMI do not overlap you can start as many Orion instances as you like. See the files jms.xml, rmi.xml and default-website.xml for the port settings. Make sure you use the correct port numbers in the clients as well :-) FE On Sunday, May

RE: Howto on MessageDriven Beans

2001-05-03 Thread Frank Eggink
There is an example of it in the ATM (see orion/applications directory) On Thursday, May 03, 2001 9:35 PM, Kesav Kumar [SMTP:[EMAIL PROTECTED]] wrote: > Do any one have howto for MessageDrivenBeans. A sample app or some kind of > notes on how to deploy them. > > Thanks in advance. > > Kesav Ku

RE: Interests sake

2001-05-03 Thread Frank Eggink
Personally Linux, but you can add an interesting option: Solaris 8.0 for x86. My gut feeling and some circumstantial evidence (a.o. the infamous test in which MS outperformed Linux 2.2 on a 'big' SMP box) gives me the impression Solaris could out perform Linux in the TCP/IP arena. I have seen

RE: How to access EJB's from client (not packaged in .ear) ?

2001-05-01 Thread Frank Eggink
Harley, If I'm correct the attached files should give you a working example, if not let me know. I have not looked at it for a year, apart from changing the readme format from (UNIX) text to HTML just now onder the save assumption not everybody works on UNIX. Success, FE On Monday, April

RE: EJBUserManager how-to? (How to setup the EJBUserManager for the ATM example)

2001-05-01 Thread Frank Eggink
ges to the original copy (in the same directory as the application.xml file) have no effect whatsoever on your configuration. Only edits direct on the orion-application.xml file in the deployment directory have effect on the server behavior. Kind regards, Frank Eggink Swift Applications [EMAIL PROTECTED] +31 6 28847325 (voice) +31 33 4532464 (fax)

RE: Setting Up Orion/OpenJMS Behind Firewall - What Ports to Open?

2001-05-01 Thread Frank Eggink
The RMI port is defined in rmi.xml with default value: 23791, JMS alike default: 9127 Regards, FE On Monday, April 30, 2001 2:37 PM, Neal Kaiser [SMTP:[EMAIL PROTECTED]] wrote: > Hi All, > > I will have two machines in my environment, both running Orion. One > will be holding the EJBs, database,

RE: when i was executing jsp page iam geting these error could pls help me any one

2001-04-27 Thread Frank Eggink
Well, this tells you that you hit a null pointer exception in the jsp page. Not very much more ... Best you can do is to add some debugging code to trace the execution of your jsp page (write print statements to the HTML page or to a log file). FE On Friday, April 27, 2001 6:06 PM, Komal Kand

RE: ...need urgent help!

2001-04-27 Thread Frank Eggink
I'll have to dive into this as well. So far I have not done any hands-on work to see what would be the best solution for us. One of the routes I was thinking of is to use the tunneling protocol. It works like a breeze without the encryption. I don't know whether it works with HTTPS. There is no

RE: On large programming teams [RE: A Swedish Idea]

2001-04-23 Thread Frank Eggink
hare of Bill's > market. > > -----Original Message- > From: Frank Eggink > To: Orion-Interest > Sent: 4/21/01 7:01 AM > Subject: On large programming teams [RE: A Swedish Idea] > > The following is one of the classic readings on programming at large. 25 > years old an

RE: JSP tags

2001-04-21 Thread Frank Eggink
Johan, Guess you could throw the exception using a scripting element in the page. <% if (yourBean.isNotAccessible()) { throw new NoAccessException(""); } %> FE On Friday, April 20, 2001 4:23 PM, Johan Fredriksson [SMTP:[EMAIL PROTECTED]] wrote: > I'm trying

On large programming teams [RE: A Swedish Idea]

2001-04-21 Thread Frank Eggink
The following is one of the classic readings on programming at large. 25 years old and I can still recommend it: "The Mythical Man-Month" from F.P. Brooks jr. Yes, it's even 26 years old and talks about OS/360, some odd system which is now out performed by your 100$ marketvalue Pentium

java.lang.InternalError thrown ...

2001-04-12 Thread Frank Eggink
instrative stuff a number of times. I do 'destroy()' the process created by the exec() call. The problem is gone after restarting the server. FE Frank Eggink Swift Applications [EMAIL PROTECTED] +31 6 28847325 (voice) +31 33 4532464 (fax) One, two, three: Testing ... Auto-deploying test

RE: Building an application

2001-04-10 Thread Frank Eggink
You can change that entry to: or what ever names you prefer. Make sure you have defined 'myApp' in the server.xml though. FE On Wednesday, April 11, 2001 1:29 AM, SCOTT FARQUHAR [SMTP:[EMAIL PROTECTED]] wrote: > Two things that might be of interest: > > > > > in defa

How do EJBs register with JNDI ??

2001-04-10 Thread Frank Eggink
ort of guessing if I would use in orion-ejb-jar.xml, getting close. Does anyone have any experience with this??? Thanks in advance, FE Frank Eggink Swift Applications [EMAIL PROTECTED] +31 6 28847325 (voice) +31 33 4532464 (fax)

RE: What's needed to run a remote client...

2001-04-10 Thread Frank Eggink
Guess you do not need a licence per client, as you are not runnning the server. I've seen pretty small client side runtimes (under 100k) for other servers. I assume that something like that is possible for the Orion product as well. The jars you mention contain a lot of superfluous stuff (inclu

RE: Friendly error messages from Microsoft get in the way (was Er ror pages defined in web.xml not found / activated)

2001-04-04 Thread Frank Eggink
> se/batborsen_error.html > > > 500 > > > se/batborsen_error.html > > > take an extra look at the location tag... > > I am using IE6 > > Johan > > > - Original Message -

RE: Friendly error messages from Microsoft get in the way (was Er ror pages defined in web.xml not found / activated)

2001-04-02 Thread Frank Eggink
the very first line of the response header-- and > orion doesn't allow you to control that > > > -Original Message----- > > From: Frank Eggink [mailto:[EMAIL PROTECTED]] > > Sent: Monday, April 02, 2001 3:56 AM > > To: Orion-Interest > > Subject: Friendly

RE: Understanding the login for ATM

2001-04-02 Thread Frank Eggink
e > for this exception. > In this file, the accountManager gets declared. > > At the time of writing the app, I was feelinga bit lazy and wanted to limit > the amount of tags to write in each page, so I came up with this little > solution. > > WR > > > -Ursprungligt m

Friendly error messages from Microsoft get in the way (was Error pages defined in web.xml not found / activated)

2001-04-02 Thread Frank Eggink
, which is considered (by them) to be more user friendly. Still I do not understand how the Explorer gets the information there is a 404 error. Could this be somewhat less wanted feature of Orion? I certainly would like to have control over this error message. FE On Friday, March 30, 2001 5:4

Understanding the login for ATM

2001-03-30 Thread Frank Eggink
Hi, I'm having difficulties understanding the login of the ATM. In the index.jsp the 'accountManager' get declared using a 'jsp:useBean' tag. Where does the accountManager is instantiated? I it must be somewhere between the login and the first use in the index.jsp p

Error pages defined in web.xml not found / activated

2001-03-30 Thread Frank Eggink
27;m obviously overlooking something, but what?? [When I define the error page in a jsp page with <%@ errorpage=/errors/error404.jsp %> it does work. So it can find the page, which gives me the impression I've setup something wrong. What?? FE Frank Eggink Swift Applications [EMAIL PROTEC

RE: Specification for java.naming.provider.url...

2001-03-24 Thread Frank Eggink
If you are connecting an application client, you should use the app name you define in server.xml. When you define: You use: ormi://.../yourApp FE On Friday, March 23, 2001 11:18 PM, Alex Paransky [SMTP:[EMAIL PROTECTED]] wrote: > Orion's documentation talks about specifying the

RE: ASP config + clustering

2001-03-23 Thread Frank Eggink
mine the > server.xml defined application name and use that to build > the path. > > greg. > > - Original Message - > From: "Frank Eggink" <[EMAIL PROTECTED]> > To: "Orion-Interest" <[EMAIL PROTECTED]> > Sent: Thursday, March 2

RE: system management with orion

2001-03-23 Thread Frank Eggink
Hi, Here are my 2cts. You have two routes: keep all in one directory-tree / partition (easy to backup an restore) or spread it out the UNIX way. I would go for the latter one. The original setup for the filestructure in the UNIX world was based, amongst others, on where the files where used f

RE: Simultaneous Username/Password Detection

2001-03-22 Thread Frank Eggink
I think the major part is a design issue. How do you recognize someone is logging-in after he accidentally killed his browser? Maybe you could use IP addresses for that??? As far as I know most ISPs use simple timeout mechanisms on their POP3 servers (you can reconnect after sometime when the conn

RE: Orion doesnt' start as other user then root ??

2001-03-22 Thread Frank Eggink
Eddie, If you check the mailing list and or www.orionsupport.com, you will find some decent answers. What is causing your trouble is the fact that port 80 is for root only. One of the trick is using the packet filtering technique of the firewall of your site and forward all packages for orion t

RE: ASP config + clustering

2001-03-22 Thread Frank Eggink
Greg, Why run an instance of orion per client you are serving? I'm looking to host an applications for a number of clients too, but I'm looking into another route. We plan to 'copy' the applications and run them from one server-instance. Guess for resource usage we are better off, just copyin

RE: Using another EJB as part of the Primary Key Class

2001-03-14 Thread Frank Eggink
I don't know your code, but it looks like you forgot to handle the RemoteException at line 294 in Apple_ORSet295.java. Anyway, why use a compound key? IMHO generating a technical key has a lot of advantages and the downside that you need to handle the uniquesness of the candidate key is not tha

RE: fundamental bugs in EJBmaker?

2001-02-23 Thread Frank Eggink
As I can remember from previous postings it had to do with the UI for selecting the skeleton file. If you check the mailing archive on www.orionserver.com you'l find an answer. FE On Friday, February 23, 2001 9:02 AM, Schouten, Andreas [SMTP:[EMAIL PROTECTED]] wrote: > > > Hello! > > >

Where to specify the sub-context of a bean at deploy time?

2001-02-23 Thread Frank Eggink
ext in the orion-application.xml, but I could not find out from the docs what I should do. Frank Eggink Swift Applications [EMAIL PROTECTED] +31 6 28847325 (voice) +31 33 4532464 (fax)

How to configure datasources

2001-02-16 Thread Frank Eggink
To be honest I know little about how to configure datasources for Orion. What should I read to understand the differences between the classes you can specify in 'data-sources.xml'? Thanks, FE Frank Eggink Swift Applications [EMAIL PROTECTED] +31 6 28847325 (voice) +31 33 4532464 (fax)

Performance: CMP beans vs SessionBean Wrappers

2001-02-06 Thread Frank Eggink
Hi, I've received some negative feedback on the use of CMP beans regarding performance. They switched to Session beans which gave them a remarkable perfomance increase (no figures available). Note: These guys did not use Orion. Does anyone have likewise experience with Orion? Regards, FE

Hypersonic hiccup?

2001-01-29 Thread Frank Eggink
Hi, I just ran into a small hiccup. When orion autocreates tables for hypersonicsql I get the following message: Warning: Error creating table: Unexpected token: 255 in statement [create table MySomething (id BIGINT not null primary key, field1 VARCHAR(255) null, field2 VARCHAR(255) null, fie

RE: Segmentation Fault

2001-01-28 Thread Frank Eggink
> James Hays > 1415 Code Apt. 1 > Crete, NE 68333 > > Phone 1 - 402.826.2829 > Phone 2 - 402.826.3927 > Mobile - 402.826.0023 > Fax - 509.691.6441 > > > From: Frank Eggink <[EMAIL PROTECTED]> > > Organization: De Frisse Jongens > > Reply-To: Or

RE: Segmentation Fault

2001-01-28 Thread Frank Eggink
I guess the Orion part is crashing?? That would imply the JVM crashed, what they theoretically should not do. What JVM are you running? Frank On Sunday, January 28, 2001 1:57 AM, James Hays [SMTP:[EMAIL PROTECTED]] wrote: > I?ve been trying to connect Macromedia?s UltraDev 4.0 with Orion for a

RE: mapping of existing m2m tables

2001-01-16 Thread Frank Eggink
Maybe a bit late, but I guess using custom finder queries in the home interface could be an option as well. I'm using custom finders for candidate keys defined in the home interfaces of the beans. That gives direct access to sql without using session beans. I assume that leaves out the overhead

JSP vs PHP

2001-01-10 Thread Frank Eggink
Hi, I just ran into a discussion regarding PHP vs. JSP (and ASP). A claim was made that PHP was the better alternative as it is quicker in development and gives you a better runtime performance. I have no hands-on PHP experience. Can anyone explain me the benefits of PHP over JSP (and vice ver

RE: orion on unix

2001-01-07 Thread Frank Eggink
For whats worth it: in a previous thread someone mentioned the ipchains equivalent for Solaris. Ipchains does Network Address Translation. My bet is that the overhead is minimal (as is likely to be with ssh). Sudo is an option, I guess. I've never used the tools. NAT does give you more options

RE: Off topic: development tools

2000-12-11 Thread Frank Eggink
Visual Cafe is rebranded as WebGain and sold by Bea. My 2$cts: I use TextPad, which is pretty convenient for editing, compiling and very fast and stable as you can't talk about bloat with that product (= still an understatement). For the more complex build procedures I'm using 'ant', as it is

RE: BMP vs CMP with Orion

2000-11-08 Thread Frank Eggink
s from different tables to define what makes up the fields within an > entity bean. > > Cory > > At 10:12 PM 11/7/00 +0100, Frank Eggink wrote: > >Hi Cory, > > > >How do they recognize relations between tables? > > > >Frank > > > >On Tuesday,

RE: BMP vs CMP with Orion

2000-11-07 Thread Frank Eggink
on. > > It does also have support for EJB 2.0 style descriptors Haven't tested > this yet though. > > Cory > > > At 09:37 AM 11/7/00 +0100, Frank Eggink wrote: > >I guess I'm using neither. > > > >The clue is that, when you stick to the r

RE: BMP vs CMP with Orion

2000-11-07 Thread Frank Eggink
16 AM, Cory Adams [SMTP:[EMAIL PROTECTED]] wrote: > Are you using the command or business object pattern? > > At 08:49 AM 11/6/00 +0100, Frank Eggink wrote: > >I'm using Swing instead of JSP. > > > >On Sunday, November 05, 2000 9:04 PM, Cory Adams > [SMTP:[EMAIL PRO

Specifying different datasources per application

2000-11-06 Thread Frank Eggink
Hello, I'm trying to setup different datasource locations for different applications, but can't get it to work for some reason. Can someone give me a clue? Orio does not complain when deploying. As far as I can understand the datasources.xml file in /config is ok (contains a tag for TestDS).

RE: BMP vs CMP with Orion

2000-11-06 Thread Frank Eggink
a single servlet > becomes that controlling mechanism to the EJBs. I wondering how that is > done? > > Cory > > At 10:23 PM 11/5/00 +0100, Frank Eggink wrote: > >My personal trade off was: > > > >Why not CMP 2.0 style: > >- Too scared to use it for real a

RE: BMP vs CMP with Orion

2000-11-05 Thread Frank Eggink
My personal trade off was: Why not CMP 2.0 style: - Too scared to use it for real as it is not even officially there ... Why choose for CMP 1.1? - CMP is more portable (across db's). - Working already towards EJB2.0. - The claim is CMP can be optimized better (I would be happy to know more deta

RE: findByPrimaryKey..what should be a primar key?

2000-10-27 Thread Frank Eggink
So far I've had a little struggle to implement a Query By Example form as well. Orion does generate finder methods for you. You can define them using the finder-method definitions in 'orion-ejb-jar.xml'. The dificulty is in the more complex queries. Joe Walnes and Torgier Lerkerod reacted to a q

RE: Orion in production

2000-10-23 Thread Frank Eggink
In general the JVM developped by SUN runs substantially quicker on Windows then on Linux. Try for instance to run HypersonicSQL in core on both platforms. As I recall the performance penalty using Linux is reduced using JVM 1.3. Another disadvantage using 1.3 Linux is that the stability of the J

RE: Orion in production

2000-10-23 Thread Frank Eggink
No offence and thanks very much for the data ... On Monday, October 23, 2000 12:00 PM, Holmes, George (TWIi London) [SMTP:[EMAIL PROTECTED]] wrote: > I wasn't working on the project myself, and possibly gave a slightly > mis-leading impression ;-> > > To the best of my knowledge there were 8-12

RE: Do EJB 2.0 dependent object classes work as per the spec?

2000-10-23 Thread Frank Eggink
If you like I can send you a copy. Drop a mail to me direct (not via the mailing list). Frank On Friday, October 20, 2000 10:04 PM, Joel Shellman [SMTP:[EMAIL PROTECTED]] wrote: > > I'm just wondering if dependent object classes in Orion 1.4.0 work as laid > > out in the EJB 2.0 PD2 spec. > > T

RE: Orion in production

2000-10-20 Thread Frank Eggink
I don't know what's the downside of believing these statistics. On http://www.netcraft.com: click on 'what's that site running' click on 'help' click on 'range' click on 'Index' (of Sept 2000 of course) Hit Ctrl-F and search for orion. It tells you 1238 servers are running orion. (If you want y

RE: Orion in production

2000-10-20 Thread Frank Eggink
As of interest. What sort of configuration were the running? Frank On Friday, October 20, 2000 10:14 AM, Holmes, George (TWIi London) [SMTP:[EMAIL PROTECTED]] wrote: > www.opengolf.com > > This is the official web site for the British Open Golf tournament. Did 30 > million page impressions/da

RE: startup / monitor script?

2000-10-17 Thread Frank Eggink
Hi, I'm by far not a UNIX sysadm expert, but as far I my memory goes I think that by looking at the init(8) documentation you'll find good directions how to implement this in a UNIX fashion. The 'init' process is designed to take care of things like automagically restarting processes and loggi

RE: orionsupport.com

2000-10-16 Thread Frank Eggink
Joseph, I think better sources of information then the standard documentation is great and very helpful for people using Orion. I have sometimes great difficulties getting things sorted out to the extend I'm wondering whether I'm on the right track. Assuming I'm not the only one in that situati

RE: HARDWARE FOR J2EE apps

2000-10-12 Thread Frank Eggink
I was wondering whether it would be possible to let the orion server(s) switch datasource as a sort of failover procedure. I haven't digged myself into clustering and failover, but here's the idea. Assuming you have made sure the server are running with failover and you have bought yourself a

RE: How to select an other datasource then the default one?

2000-10-12 Thread Frank Eggink
" > password="password" > /> > > Obviously, in this case, I've got both the Oracle and Postgres drivers in my > orion/lib directory. Then when you want to get a pooled connection, you'd > use... > > connection = ((javax.sql.Data

RE: I cannot use ejbmaker

2000-10-11 Thread Frank Eggink
Neither have I. On Wednesday, October 11, 2000 6:06 PM, Sean Han [SMTP:[EMAIL PROTECTED]] wrote: > Hi, everyone: > > When using ejbmaker, I found I cannot restore it from a saved .skeleton > file. No matter what I entered for the bean, I always get an empty package > when I reopen it. Can anyone

How to select an other datasource then the default one?

2000-10-11 Thread Frank Eggink
Hi, How do you select a different datasource? I have defined a second data source in the datasources.xml file. Also I have added "default-data-source="jdbc/TestEJBDS" to the orion-application.xml file in the application-deployments/ directory, as suggested by the manual. It doesn't work thoug

RE: Kawa Enterprise Edition 5.0

2000-10-11 Thread Frank Eggink
I had problem using Kawa client side. Only the JDB debugger works on the client. Server side I have no experience. Frank On Tuesday, October 10, 2000 11:34 AM, =?BIG5?B?s6+nyrnF?= [SMTP:[EMAIL PROTECTED]] wrote: > Hello: > > Dose Kawa Enterprise Edition 5.0 support Orion J2EE server ?? > > T

RE: EJB vs Servlets

2000-10-10 Thread Frank Eggink
Here is what we are at ... By the mere fact we are using Swing we can't use Servlets. I'm working on an application that we will run as a webservice. That is, you will be able to enter/retrieve data in a Swing applet. We choose for the Swing route, because using HTML/ASP/JSP doesn't give you a

RE: EJB vs Servlets

2000-10-10 Thread Frank Eggink
that is easily done using Servlets, as I have not investigated that technology. Frank On Tuesday, October 10, 2000 10:13 AM, Frank Eggink [SMTP:[EMAIL PROTECTED]] wrote: > On Monday, October 09, 2000 9:24 PM, Reddy Krishnan [SMTP:[EMAIL PROTECTED]] wrote: > > hi Kevin, > > > >

RE: Client application

2000-10-07 Thread Frank Eggink
Hope I haven't made any errors in the example causing to to waiste your time (as i did with my typo comp:/java/env). If so let me know. I'll fix the example. The error messages tell me that the system can't find the home interface. >From the output I can't deduct what is wrong (which could be

RE: HTTP Tunneling

2000-10-06 Thread Frank Eggink
; > > -----Mensaje original- > > De: Frank Eggink [SMTP:[EMAIL PROTECTED]] > > Enviado el: Viernes, 29 de Septiembre de 2000 04:57 a.m. > > Para: Orion-Interest > > Asunto: RE: HTTP Tunneling > > > > I just tried it this week: piece of cake. See

RE: Client application Please Help

2000-10-06 Thread Frank Eggink
I bet you'll have to change ic.lookup("TeamBean") in to ic.lookup("comp:/java/env/TeamBean"), a bit depending on what's defined in your *.xml files. These files define the name under which the bean gets registered. "comp:/java/env/" is a fixed? prefix. Frank On Thursday, October 05, 2000 7:1

RE: Run Orion as a daemon in Linux

2000-10-06 Thread Frank Eggink
Check 'man nohup'. A line like 'nohup (cd ; java -jar orion.jar) &' in a file called /etc/rc.d/boot.local will do the trick, a bit quick and sirty though. In the /etc/rc.d directory you'll find a lot of startup scripts to start an stop services. To integrate it even better in your system-admin

RE: Client application

2000-10-03 Thread Frank Eggink
Late August (22/8) I posted a simple example on this mailing list: "An example to connect to a remote client". If you look in the archives you'll find it. Hope it works for you. Frank On Tuesday, October 03, 2000 8:42 AM, Daniel C. DiCesare [SMTP:[EMAIL PROTECTED]] wrote: > Hello, > I have an

RE: HTTP Tunneling

2000-09-29 Thread Frank Eggink
I just tried it this week: piece of cake. See the Orion Documentation: RMI-HTTP tunneling. It is in the section about deployment in a production environment. Frank On Thursday, September 28, 2000 3:14 PM, Lopez Esteban [SMTP:[EMAIL PROTECTED]] wrote: > Hi All > Please, explain me how to use R

RE: Orion on Linux NOT as root

2000-09-29 Thread Frank Eggink
This is very useful for me. Thanks for posting this ... Frank On Friday, September 29, 2000 3:43 AM, Jim Archer [SMTP:[EMAIL PROTECTED]] wrote: > Thanks to all who replied. > > Acually, my original message was not too well written. I was not concerned > about the port mapping issue. Thats not

RE: Example application

2000-09-29 Thread Frank Eggink
Use should add the current folder to your classpath: .;../../../orion.jar;../... Frank On Thursday, September 28, 2000 8:16 PM, Carl Troedsson [SMTP:[EMAIL PROTECTED]] wrote: > I have tried to run the test applications in Orion but can?t get them to work, for >example when I try :

Did anyone have any luck using EJBMaker?

2000-09-28 Thread Frank Eggink
Hi, I tried using EJBMaker, but was not very lucky. For some reason it doesn't read previously saved skeleton files. When using Save As to store is does not append the '.skeleton' postfix, which is only an inconvenience. When you try to reload your saved results you just get an empty tab. Fr

RE: SSL - Only a few pages need SSL, does that slow things down?

2000-09-27 Thread Frank Eggink
Mark, Don't know if its worthwhile: www.rainbow.com offers a PCI card for a.o. SSL encryption. Maybe take can take away the encryption burden from the server. I've have no experiences with the card. I ran into it on a fair. Frank On Monday, September 25, 2000 7:32 PM, Mark Delanoy [SMTP:[EMA

Having trouble reloading a page with an applet on it.

2000-09-22 Thread Frank Eggink
idea (because Win98 hangs) that it has to do with networking stuff is confirmed by the fact that reloading Swing applets without jndi calls don't give any problems at all. Any suggestions? Frank Eggink The applet code is: == import jav

RE: Specifying finder-methods (full query)

2000-09-13 Thread Frank Eggink
oducts by a particular name, > > > orion-ejb-jar.xml would contain: > > > > > > > > > > > > And the client code would contain: > > > > > > ...findByName("Bob") > > > > > > It is not possible to pass SQL statemen

RE: Run Orion on port80 without being root?

2000-09-13 Thread Frank Eggink
You might opt for installing a simple Linux router if you can't find a Solaris Network Address Translation tool. The Linux box would only be used to route the TCP/IP packages from one port to another. It is the old Linux story. Claim and older Pentium PC with some 32 Mb memory in it (in that ca

RE: Specifying finder-methods (full query)

2000-09-12 Thread Frank Eggink
advance. Allowing this would impact performance, breach security and allow > all havoc to break out. > > -Joe Walnes > > > -----Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED]]On Behalf Of Frank Eggink > > Sent: 12 Septemb

RE: Run Orion on port80 without being root?

2000-09-12 Thread Frank Eggink
With respect to port forwarding. I don't see why this should be a problem. Ipchains for instance on Linux would work transparant. A Quote from the IPCHAINS-HOWTO: The other major special target is REDIRECT which tells the kernel to send a packet to a local port instead of wherever it was he

Specifying finder-methods (full query)

2000-09-12 Thread Frank Eggink
I'm running into trouble specifying finder queries in orion-ejb-jar. As far as I can make sense of it the cause is in the quotes. Is that correct and does anyone know how the get around that? I've changed the default finder method to:

RE: SV: Performance for static files

2000-09-07 Thread Frank Eggink
Maybe a still too early notice: in the new 2.4 Linux kernel they will serve static http request direct from the kernel. This could give interesting results wrt performance :-) On Thursday, September 07, 2000 11:46 AM, Christof Baumgaertner [SMTP:[EMAIL PROTECTED]] wrote: > This benchmarks do

RE: PLEASE I NEED HELP TO GET START WITH ORION URGENT

2000-08-25 Thread Frank Eggink
Michel, Reading from the message to got it is a security 'problem'. From a first look your settings seem ok. Have you changed you config/princpals.xml file and removed the deactivation properties for the admin user? Frank On Friday, August 25, 2000 12:04 AM, [EMAIL PROTECTED] [SMTP:[EMAIL PROT

  1   2   >