Unsubscibe

2001-02-26 Thread Matthias Buchhorn
Unsubscibe

RE: ISO good user mgmt system for web apps

2001-02-26 Thread Mike Cannon-Brookes
In a word, this does not exist. There is NO way to do vendor independant (and still spec compliant) user management, authorisation and authentication. However there's a project afoot to solve these problems, called OSUser - http://www.opensymphony.com - if you can do nothing else then

Re: configuring jdbc with oracle...

2001-02-26 Thread Alexey_Ryndin/Storactive
Paul, First of all, it may have sense to add schema attribute to your data-sources.xml file. At the second hand, try to use DataSource ds = (DataSource) ctx.lookup("java:comp/env/jdbc/DefaultDS"); instead of DataSource ds = (DataSource) ctx.lookup("jdbc/DefaultDS"); It may help. Alexey Ryndin.

ECPerf

2001-02-26 Thread Robert Krueger
hi, anyone interested in ejb benchmarking check out http://developer.java.sun.com/developer/earlyAccess/j2ee/ecperf/download.html robert (-) Robert Krger (-) SIGNAL 7 Gesellschaft fr Informationstechnologie mbH (-) Brder-Knau-Str. 79 - 64285 Darmstadt, (-) Tel: 06151 665401, Fax: 06151 665373

CMP 2.0

2001-02-26 Thread Randahl Fink Isaksen
Would somebody please confirm that they have been able to use CMP 2.0 relationships on Orion, that they have seen them get stored in the database AND brought back into main memory correctly after a restart of the server. When I create a relationship it works fine until I restart - I simply can't

2 problems with orion: restart and pageContext variable

2001-02-26 Thread Matthias Buchhorn
I have two problems with the orionserver. 1. Orion takes not implicit the pageContext instance in the JSP-page. There are exist a solution for this problem ? 2. I want restart my orionserver: java -jar admin.jar ormi://localhost:8080 admin 123 -restart Error: javax.naming.NamingException:

RE: documentation wanted

2001-02-26 Thread Mike Cannon-Brookes
Then I point you to the propert support channel - Orion Interest the mailing list. Goto http://www.orionserver.com to sign up. A note to everyone, DO NOT SEND SUPPORT REQUESTS TO INDIVIDUALS. Apologies for the caps, but this happens far too often and I'm sick of it. Use the list, deal with the

R: Problem with latest Oracle JDBC.zip..anyone having similar problems?

2001-02-26 Thread Marco Isella
Hi kevin, i dunno if it can help but i had a problem with oracle streaming it took me 3 days before i could find what was going on. The "Stream already closed" error appears when u are trying to read a stream from the db at the same time (with the same connection) u do other operations on the

Re: ISO good user mgmt system for web apps

2001-02-26 Thread Vaskin Kissoyan
So for the time being, I need a good user mgmt system, or just a good username/password gate example using the j_security_check and a simple interceptor that does a database lookup... - Original Message - From: Mike Cannon-Brookes To: Orion-Interest Sent: Monday,

Re: HELP!!! - Using UserManagers - Logging in users without asking for credentials

2001-02-26 Thread Falk Langhammer
Thanxs for the hint. I could also think of a more portable solution to this problem. If it is just to provide single sign-on, I would, from within the client-servlet, first access any page known to be form-based login-proteced and reply with a post containing j_username and j_password. Store the

re: configuring jdbc with oracle...

2001-02-26 Thread Alexey_Ryndin/Storactive
First of all, schema attribute in your data source file must look like 'schema="database-schemas/oracle.xml"'. The second issue I can guess that you must say somewhere in your application that you use this particular data-source. I use EJB, but in my ejb-jar.xml file I mention resource

RE: Orion FORM based authentication Configuraton problem

2001-02-26 Thread Jeff Schnitzer
If I'm reading the steps correctly, this behavior is actually fully spec-compliant. This is the reason I don't use FORM-based login. j_security_check is only required to be valid immediately after an attempt to visit a secured page. There is no provision to be able to re-enter credentials from

Re: configuring jdbc with oracle

2001-02-26 Thread Paul Wilcox
Problem solved!! thank you everyone for your help. among other things, there was a problem with the URL. Thanks again, Paul Wilcox

Re: 2 problems with orion: restart and pageContext variable

2001-02-26 Thread colin harris
I think for part 2. the port number 8080 maybe wrong, i don't specify a port number when using admin.jar example : java -jar admin.jar ormi://localhost admin niloc -deploy -file H:\dev\soap\rel\soap.ear -deploymentName soap so i think it uses the default port number for ormi.. colin.

Custom Role Manager?

2001-02-26 Thread Ernie Phelps
Is there a way in Orion to specify/create a custom implementation of RoleManager? Basically, what I want is to have a method like this: login(java.lang.String username, java.lang.String password, java.lang.String thirdparameter) where thirdparameter is a custom parameter that will narrow the

Re: Servlet loading twice, Help me, please

2001-02-26 Thread Vinh Chu Xuan
Hi Phong, I am now at home,so i do not have the source code here. In this case you should use global Java Bean. I will send you the sample. Hope that will help you. Talk to you later. Best regards, Vinh Chu Xuan Vietnam Data Communication Company Software RD Department 1E Truong Chinh - Hanoi -

Re: Recursion error in error-page

2001-02-26 Thread kkvarfordt
Assuming I am reading the web app DTD correctly, I believe you need to have either an error-code OR an exception-type, but not both defined for an error-page. Try removing the error-code tag. Kent Kvarfordt DISCLAIMERI have extensively searched the list archives and the sun jsp forum

data sizt mapping

2001-02-26 Thread Ruth He
Hi, every one there! I am working around the deployment descriptor "orion-ejb-jar.xml", in order to define fields size to what we are expecting. Orion has automatically generated all fields size for "String" to"varchar2(255)". I defined the field size under tag

Multiple CPUs

2001-02-26 Thread Robert Hargreaves
Anydody running Orion on a machine with more than one CPU? We are purchasing some new kit and just wondered if its beneficial to have multiple CPU's. If it is beneficial, then does the Orion handle the multiple thread/CPU setup or is this upto the JVM (we'll be using the Windows VM). TIA

Re: re: configuring jdbc with oracle...

2001-02-26 Thread John Hogan
As a sanity check, you may want to make sure you can get the Product example running with Oracle first (http://www.orionserver.com/docs/ejbexamples/index.html). There's some good by the numbers instructions for editing the xml files ... Also, make sure your oracle classes12.zip is in

Forward slashes in web.xml servlet init params;NT vs. 98

2001-02-26 Thread Jay Armstrong
Hi all, I run Orion Server on both NT and Win98. On Win98, I had a servlet init parameter for a JDBC URL, with two forward slashes for the host name. Win98 liked it, but NT complained. I added two more forward slashes and NT liked it. For example, in web.xml under Win98: servlet

RE: Orion FORM based authentication Configuraton problem

2001-02-26 Thread cybermaster
I agree with Jeff the Servlet 2.2 Spec only specifies that an error page is returned - so Orion's behaviour is up to spec. To allow continuation of the login process from loginError page would be an add-on ... cerrtainly a useful one, because it's more user friendly. But of course, it is Orion's

RE: Recursion error in error-page

2001-02-26 Thread Tony Wilson
This happened to us when we actually had an exception on the exception handling page (or a page that the exception handling redirects to or forwards). We had to make our error page very simple. Tony -Original Message- From: Grant Doran [mailto:[EMAIL PROTECTED]] Sent: Saturday,

RE: Servlet loading twice, Help me, please

2001-02-26 Thread Vinh Chu Xuan
Hi Phong, I am now at home, i do not have the source code here. In this case you should use global Java Bean. I will send source code to you. Hope that will help you. Talk to you later. Best regards, Vinh Chu Xuan Vietnam Data Communication Company Software RD Department 1E Truong Chinh -

Fw: configuring jdbc with oracle...

2001-02-26 Thread Falk Langhammer
I do not know the solution, but three things come to my mind... - Original Message - From: Paul Wilcox Using DataSource ds = (DataSource) ctx.lookup("java:comp/env/jdbc/DefaultDS"); instead of DataSource ds = (DataSource) ctx.lookup("jdbc/DefaultDS"); (or jdbc/DefaultCoreDS)

RE: Orion FORM based authentication Configuraton problem

2001-02-26 Thread Nick Newman
I suppose that you could use the SAME page for login and error. You could tell which context it's being called in by playing with a session variable, I think. That should give you the flexibility you want, and all within spec. Nick Newman At 11:31 AM 2/26/01 -0700, you wrote: I agree with

Re: Multiple CPUs

2001-02-26 Thread Robert Krueger
At 17:47 26.02.2001 , you wrote: Anydody running Orion on a machine with more than one CPU? We are purchasing some new kit and just wondered if its beneficial to have multiple CPU's. If it is beneficial, then does the Orion handle the multiple thread/CPU setup or is this upto the JVM (we'll be

How do I map a .doc extension to a .jsp execution

2001-02-26 Thread Christian Kvalheim
Hello I have the following problem. We have a certain number of Word documents in out database that we want to output to the browser. Everything is fine, we get the document as a blob from the database and into the jsp variables. However for internet explorer to recognise the file as a word

Re: Multiple CPUs

2001-02-26 Thread Sarathy Mattaparti
I'm Using Orion on multiple CPU Machine (Windows 2000 server). Orion handles multiple CPU's.. Sarathy Anydody running Orion on a machine with more than one CPU? We are purchasing some new kit and just wondered if its beneficial to have multiple CPU's. If it is beneficial, then does the Orion

access-log options

2001-02-26 Thread Lance Lavandowska
are these the only options for access-logging: (from http://www.orionserver.com/docs/web-site.xml.html) "format - Optional formatting of the log entries. $ prefixes vars, the available vars are: $time, $request, $ip, $host, $path, $size, $method, $protocol, $user, $status, $referer, $time,

problem in accessing ejb from a bean in web-inf/classesdirectory .

2001-02-26 Thread Prabahkar Subramaniam
Hi, I have an ejb installed in my local orion server(ver 1.4.0).I can access the ejb from a standalone application and everything works great.I created a java bean(called OrderBeanWrapper) which gets the initial context and does a lookup of the ejb.When I attempt a lookup , I get a Naming

Using your own web-site.xml instead of default-web-site.xml

2001-02-26 Thread Matt Krevs
I am trying to setup my own web-site.xml for my app instead of using orion/config/default-web-site.xml However I am having a few problems In default-web-site.xml I have the following line for my web app web-app application="boris" name="boris-web" root="/boris" load-on-startup="true"/ so when

RE: How do I map a .doc extension to a .jsp execution

2001-02-26 Thread Matt Krevs
Add the following lines to web.xml for your app servlet-mapping servlet-namejsp/servlet-name url-pattern/*.doc/url-pattern /servlet-mapping -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Christian Kvalheim Sent: Tuesday, 27 February

problem in accessing ejb from a bean in web-inf/classesdirectory .

2001-02-26 Thread Prabahkar Subramaniam
Hi, I have an ejb installed in my local orion server(ver 1.4.0).I can access the ejb from a standalone application and everything works great.I created a java bean(called OrderBeanWrapper) which gets the initial context and does a lookup of the ejb.When I attempt a lookup , I get a Naming

Re: What documentation?

2001-02-26 Thread Nick Newman
I think I can answer the second question about the dangling sentence. In the DTD the tag description looks like this: !-- The deployment info for a J2EE-application. Manually created or automatically produced when auto-deploying a J2EE-application (.ear). It extends

simple JSP bug with switch

2001-02-26 Thread Margulies, Adam
Title: simple JSP bug with switch Forgive me if this is a known bug, but I didn't see it in the FAQ or anywhere on orionsupport.com. I am using Orion 1.4.7 and I have tried having Orion use Jikes 1.12 as well as all three of the 1.30 JDKs {Sun,IBM,Blackdown}. This is all running on RedHat

Intro to Orion Tutorial

2001-02-26 Thread James Halloran
I don't know about everyone else, but I had a real difficult time getting started with Orion (coming from WebLogic). It seemed like I was stumped at every turn. I know there are a few tutorials, but I found them difficult to follow. Plus, I would rather use standard utilities like Sun's

RE: Orion FORM based authentication Configuraton problem

2001-02-26 Thread Jeff Schnitzer
But then I also want to be able to enter login credentials on the default page, so now that page must be login-required error the homepage... While I have no doubt that it could be made to work, this is not an elegant or appropriate solution to the problem. Sun needs to fix the spec. Jeff

orion/lib

2001-02-26 Thread Peter T. Brown
I am using Castor, Xerces and several other third party java packages. I have installed these in /usr/local/java/appname, and added these directories to my classpath. My env setup is: CLASSPATH=/usr/local/java/jdk1.3:/usr/local/java/j2sdkee1.2.1:/usr/local/jav a/castor0.9:/usr/local/java/bhawk4j

Re: Intro to Orion Tutorial

2001-02-26 Thread Tim Endres
James, Very nice work! You have made a great contribution. tim. I don't know about everyone else, but I had a real difficult time getting started with Orion (coming from WebLogic). It seemed like I was stumped at every turn. I know there are a few tutorials, but I found them difficult

Re: What documentation?

2001-02-26 Thread Magnus Stenman
No, it is a convertion error from the template errors that generate these docs rather, it has been fixed in the internal bundle to be pushed with the next version a while ago. What was to follow was a link ("href") to another document, there's a few places where you'll see this happen. The

Please Help!!:-(

2001-02-26 Thread Sameer
Dear friends, My name is Sameer Khanna and I am relatively new to this mailing list. I am trying to incorporate transactional features into my stateful session beans. As such I have been confronted with few problems. I would appreciate if someone can help. 1). When I try and start a

RE: How do I map a .doc extension to a .jsp execution

2001-02-26 Thread cybermaster
Christian, In your reponse object you have to set the MIME type (content type) to "application/vnd.ms-word" This might only work with MS Office 2000. You can find more (with some digging) at msdn.microsoft.com Peter

New site for everyone...

2001-02-26 Thread Jim
Hi all I found a new site for designing your jacket.Design your jacket online and beat the cold... http://www.webjacket.com don't mistake me bye then take care Jimmy _ Do You Yahoo!? Get your free @yahoo.com address at

RE: jsp form-based authentication

2001-02-26 Thread Roland Dong
Has anyone responded to this message? I am also interested in that... Roland -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Vaskin KissoyanSent: Friday, February 23, 2001 10:46 AMTo: Orion-InterestSubject: jsp form-based

JNDI Lookup Failure

2001-02-26 Thread Phan Anh Tran
How's the deployed EJB mapped to the JNDI context? 1. EJB = trantech.ejb.TestSession,TestSessionHome,TestSessionBean. 2. Is the JNDI lookup string "java:comp/env/ejb/trantech/ejb/TestSessionHome" ? I keep getting the following exception in my JSP page: