RE: index.jsp as default page of a directory

2001-08-12 Thread Mathias Bogaert

Put

welcome-file-list
welcome-fileindex.jsp/welcome-file
/welcome-file-list

in web.xml. This will solve your extra index.html problem...

Regards,
Mathias Bogaert

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Roozbeh
Ghaffari
Sent: zondag 12 augustus 2001 15:10
To: Orion-Interest
Subject: index.jsp as default page of a directory


Hi!

It seems that Orion does not use index.jsp as default page for a
directory.
It just looks for index.html. I usually put an index.html in my
directories
which redirects the client to index.jsp of the same directory. I think
it's
somehow silly!

Any other idea?

tnx,
Roozbeh/


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Problem with SimpleUserManager Class for application level security...please hel

2001-08-12 Thread Qualence Inc

Hi Everybody
   I am trying to implement the application level security provided by the 
SimpleUser Manager class in the orionsupport.com. I am constantly getting 
error at the time of deployment that the class which i have wriiten 
extending the SimpleUserManager class is not found in the application.ear 
file .
   Can anyone please guide me thru this or tell me where should i bind this 
class is it the .jar or .war file s that it is put by orion in .ear filw at 
the build time.

Thanking you in Advance
Regards
Sachin



_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp





JDO in orion?

2001-08-12 Thread kevin1

Is it possible to use JDO in orion?  How would one go about this?





-- 
No one may be called good if they have had no chance to be bad...




directory-browsing

2001-08-12 Thread Romen Law

ello,

I want to allow directory browsing on one of the directories in my web
application. But by setting the directory-browsing=allow in orion-web.xml,
all web directories are browsable. How do I limit this to just the
directoy/directories that I want to expose for browsing?

cheers
romen


This Email is intended only for the use of the individual or entity
named above and may contain information that is confidential and
privileged.  If you are not the intended recipient, you are hereby
notified that any dissemination, distribution or copying of this
Email is strictly prohibited.  Before opening or using attachments,
check them for viruses and defects.

If you have received this Email in error, please notify us
immediately by return email or telephone +61 2 8220 6000 and
destroy the original message.  Thank You.






RE: Automatic reloading of new class files.

2001-08-12 Thread Duffey, Kevin

There are a couple of ways.

First, in /orion/config/global-web-application.xml, do the following:

orion-web-app what ever else is here development=true
persistence-path=state.ser

The development=true makes sure it reloads any changes in classes that are
recompiled. Infact, I think if done properly you don't even have to
recompile the class..it figures out that the .java date and .class date are
different and recompiled the .java for you. Not sure if it does this though.
But I have had no problems in it picking up the changes.

Second, what I prefer, is to leave development=false in place, and use ANT
to do all my builds. At the end of a target, I specifically tell it to touch
the META-INF/application.xml file. Orion automatically redploys your site
when this file is touched.

Not sure if you use the EAR type of setup, where you have configured the
orion server.xml to use your OWN application (and not the default one or
default web-site). I do this myself, and it makes it a little easier to
maintain. I don't like deploying any application or website as part of the
server-specific dir structure. Call me picky, but I prefer my own dir for my
projects, leaving the Orion dir the way it was when I unzipped it.


-Original Message-
From: Morten Gjetanger [mailto:[EMAIL PROTECTED]]
Sent: Sunday, August 12, 2001 11:20 AM
To: Orion-Interest
Subject: Automatic reloading of new class files.


I'm developing a site and I'm constantly editing and
changing many java files which lies under
./WEB-INF/classe/ . But everytime a make a litle
change in a class it seems like I have to restart the
orion server to make it use the new class file.

Is it some way to avoid this???

regards

Morten Gjetanger

__
Do You Yahoo!?
Organiser sammenkomsten på http://no.invites.yahoo.com




monitor your entity beans/other jdbc calls

2001-08-12 Thread Jeff Goke

There is a free tool at http://www.provision6.com that
intercepts and logs all database statements of any
application that uses JDBC.  This is particularly
useful, for example, for monitoring the SQL generated
by entity beans.

There are no code changes required to your
application, and setup is very easy.  There are
explicit instructions for installing under Orion.

-Jeff


__
Do You Yahoo!?
Send instant messages  get email alerts with Yahoo! Messenger.
http://im.yahoo.com/




Does Orion work fine in MySQL and BSD?

2001-08-12 Thread HyungKee Hwang








Hello



Can Orion work with MySQL and FreeBSD?



Any comment would be appreciated.

Regards,

-HK










RE: Automatic reloading of new class files.

2001-08-12 Thread Martin J. Wells

 Second, what I prefer, is to leave development=false in place,
 and use ANT
 to do all my builds. At the end of a target, I specifically tell
 it to touch
 the META-INF/application.xml file. Orion automatically redploys your site
 when this file is touched.


Is there any clear advantage to using ANT to build projects instead of
having development=true?



Regards,
Martin Wells





Re: JDO in orion?

2001-08-12 Thread Michael J. Cannon

There's been talk in the past  (April, 2001--maillist archives) on issues of
Orionserver with Castor.  Additionally, there's been somme disccussions on
the Serverside.com.

Google for JDO orionserver and Orionserver Castor

Castor can be found at http://castor.exolab.org

Michael J. Cannon
PM--hsqldb.org, Inc.
Si vis pacem, para bellum.





RE: Automatic reloading of new class files.

2001-08-12 Thread Kevin Duffey

In terms of reloading an app..none probably. But since I use ANT for all
compile, build, ejb, war, ear, etc, I use it to automatically reload the
app. Just make sure your app is written so that sessions are persistent as
well.


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Martin J.
 Wells
 Sent: Sunday, August 12, 2001 8:55 PM
 To: Orion-Interest
 Subject: RE: Automatic reloading of new class files.


  Second, what I prefer, is to leave development=false in place,
  and use ANT
  to do all my builds. At the end of a target, I specifically tell
  it to touch
  the META-INF/application.xml file. Orion automatically redploys
 your site
  when this file is touched.
 

 Is there any clear advantage to using ANT to build projects instead of
 having development=true?



 Regards,
 Martin Wells