Re: ipchains and Orion

2001-08-07 Thread David Morton
I recommend using IPTABLES.THIS IS HOW I DO ITworks great...i got ipchains working, but didn't log remoteAddr...probably is a workaround out there, but I recommend iptables (on linux) David Darren Gibbons wrote: Hi all, Apologies if this is the second time for this email -- I

Re: disabling jsessionid

2001-07-16 Thread David Morton
perhaps play with some of these in orion-web.xml session-tracking autoencode-absolute-urls=true/false autoencode-urls=true/false autojoin-session=true|false cookie-domain=.mydomain.com cookie-max-age=123 cookies=enabled/disabled David At 04:41 PM 7/16/01 -0700, you wrote: is there any

Re: Log Analysis

2001-07-15 Thread David Morton
I figured I'd update this archive message...I believe there was a minor mistake - the access-log format below reverses the agent and referer. No big deal, however, in some reporting packages it shows top referer's in top browsers...and vice - versa here is a nice monthly access

list orion here

2001-04-27 Thread David Morton
orion should be listed here: http://www.javaworld.com/javaworld/tools/jw-tools-appserver.html

jsessionid errors

2001-04-27 Thread David Morton
anybody notice that once in a while browsers complain about the way orion encodes session ids? why doesn't the session ID get encoded like: http://www.mysite.com/mypage.jsp?arg=blahjsessionid=BEOKGFBKKKPI what are advantages and disadvantages of above compared to orions method thanks

Simultaneous Username/Password Detection

2001-03-22 Thread David Morton
I am building a system that protects content by username and password. No problem there. The more complicated part of the system prevents two people using the same username and password at the same time on our web site. I have a plan to do this, but I haven't seen if there are any

Re: redhat 7

2001-03-22 Thread David Morton
I am having great success with Redhat 7.0 jdk 1.3/MySQL/javaexchange.com connection broker (autoreconnect=true) and the mm.mysql driver JDBC driver. David At 01:37 PM 3/22/01 -0800, you wrote: Any experience with the latest redhat distro and orion? Has anybody seen any conflicts?

Re: AW: Java ftp

2001-03-02 Thread David Morton
http://www.savarese.org/oro/products/NetComponents.html At 01:08 PM 3/2/01 -0500, you wrote: There is also a nice FTP package at: http://www.gjt.org/servlets/JCVSlet/list/gjt/com/fooware/net tim. Multithreaded FTP-Bean (OpenSource IBM). Would not reccommend it in a EJB-Class, since

Re: orion and mysql?

2001-01-30 Thread David Morton
I found it very easy...I use: http://mmmysql.sourceforge.net/ - jdbc driver http://javaexchange.com/ - connection pooling One variable i had was w/javaexchange's DBBroker, set AutoReconnect=true... so far so good...been using awhile David At 05:20 PM 1/30/01 +0100, you wrote:

Re: orion and mysql?

2001-01-30 Thread David Morton
I just switched to latest and greatest of 3.23 tree from the greatest of the 3.22 tree...so far so goodeven updating the working server was easy. It's fantastic for medium size web sitesI haven't played with the Berkeley DB transactions yet.

Re: Re: Port forwarding

2001-01-25 Thread David Morton
YesI got it working by binding orion to host="[ALL]" and port="10080" and executing the following two: echo "1" /proc/sys/net/ipv4/ip_forward ipchains -I input 1 -d MYIP 80 -p tcp -j REDIRECT 10080 It is odd that i had to do thatI originally was going to bind all instance of orion

Port forwarding

2001-01-22 Thread David Morton
Has anybody gotten port-forwarding to work? I want orion to run as non-root user on Linux.I did see: http://www.orionsupport.com/articles/unixprocess.html The following is an excerpt: IP Chains (ipfw) IP Chains is a program that comes with recent versions of Linux that uses the

Log Analysis

2000-12-02 Thread David Morton
Anybody using standard tools to analyze logs? Anybody have the format string for apache's combined format set up? So it is a quick fix? David

Re: What database are you using??

2000-09-29 Thread David Morton
MYSQL very successfully. David SkyLabs Corporation At 08:44 PM 9/29/00 -0400, you wrote: Hi All... I'm currious to know what database products people are using with Orion, open source or commerical. Also, please include any comments about problems if you have had any, or anything

Re: What database are you using??

2000-09-29 Thread David Morton
It depends on your solutionif you are building the next Etrade, I may not recommend itif you are building a web site that does what 95% of the population is doing...then it is great. At 07:08 PM 9/29/00 -0700, you wrote: Can you please give me more information regarding

RE: One IP - 3 Sites - 3 Domain Names

2000-09-27 Thread David Morton
What are you guys talking about? I have orion running 10 web sites on same IP. Use Virtual-Hosting.Did i misunderstand your question? http://www.orionserver.com/docs/web-site.xml.html virtual hosting works by checking the host in the request.if it sees the virtual-host

Re: Autoencoded urls/Posting

2000-08-03 Thread David Morton
Can someone explaing to me how orion knows what session is current when the user does not have cookies enabled and the user is using a POST form. should I do urlEncode() for all action...or should I make a hidden variable? In my test, however, I noticed that orion just

Re: Did someone get roles working ? How about Web Single Signon?

2000-07-31 Thread David Morton
- With FORM authentication, the browser does NOT know that authentication has been requested - it simply serves the login form like any other. That means that it cannot re-send the login information for you. It is also my belief that the session information (in which the authentication

Re: Did someone get roles working ? How about Web Single Signon?

2000-07-29 Thread David Morton
I'm working on getting "Web Single Signon" to work as specified in the J2EE bluprints, Page 3-13. It requires that the same login session represents a user to all the applications that they accessthis is important for my site(s) so that my users can change applications/sites