RE: HTTPS from Orion Java Bean

2001-02-06 Thread Konstantin Polyzois
Are you using the exact same JDK in both cases? With the exact same libraries? We had some trouble with Weblogic always using their implementation of ssl and used the following to override it: if(url.indexOf("https")!=-1){ URLStreamHandler h =(URLStreamHandler) new

RE: Client site HttpSession simulating

2001-02-06 Thread Marcel Schutte
Hi, see my comments inline. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Boris Erukhimov Sent: Monday, February 05, 2001 2:45 PM To: Orion-Interest Subject: Client site HttpSession simulating I have a site which stores user profile in

Orion 1.4.7 error with SessionBean

2001-02-06 Thread Klaus Thiele
Hello, i just trying to run my application with 1.4.7. in my (stateless)session bean i have following code: public void setSessionContext(SessionContext context)... ... ic = new InitialContext(); Context rootCtx = (Context)ic.lookup("java:comp/env"); ... with 1.4.7 i get

RE: Form-based authentication not working right

2001-02-06 Thread Marcel Schutte
see inline -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Gerald Gutierrez Sent: Tuesday, February 06, 2001 12:52 AM To: Orion-Interest Cc: [EMAIL PROTECTED] Subject: Form-based authentication not working right Recently I asked about

Where to get Java tools ?

2001-02-06 Thread Vinh Chu Xuan
Hi all Please let me know where to get java tool, which can work with Orion Server ? Can them work in separated workstations ? Thank you

Suggestion

2001-02-06 Thread bsb108765
Since EJB 20 Spec does not support SQL ANSI datatypes inside ejb-jar.xml, I suggest that Orion accept folowing: accept JavaDoc like tags. So, we can have following: entity description@Data-source jdbc/MySQL @Table-name myOwnTable/description cmp-field

RE: Form-based authentication not working right

2001-02-06 Thread Chris Bartling
Gerald, I've been working with Form-based authentication for the past several weeks on iPlanet 6.0. Looking at your web.xml deployment descriptor, it looks like that's OK. You aren't using a user-data-constraint, but it's not required either. Check out the J2EE specs and Blueprints for more

Virtual hosts

2001-02-06 Thread Henrik Skafsgaard Larsen
If you have 2 (or more) virtual hosts defined, should the be defined to different ports or is it possible for Orion to use the same port? tia med venlig hilsen / kind regards Henrik Skafsgaard Larsen

RE: Secured Page?

2001-02-06 Thread Juan Lorandi (Chile)
That depends more on your app design than nothing else; both ways are pretty much costless (in orion). JP -Original Message- From: Korosh Afshar [mailto:[EMAIL PROTECTED]] Sent: Lunes, 05 de Febrero de 2001 18:08 To: Orion-Interest Subject: RE: Secured Page? which one would

R: Virtual hosts

2001-02-06 Thread DeVincentiis Giustino
There is an example at http://www.orionsupport.com/articles/vhosts.html Giustino De Vincentiis -Messaggio originale- Da: Henrik Skafsgaard Larsen [mailto:[EMAIL PROTECTED]] Inviato: marted 6 febbraio 2001 14.02 A: Orion-Interest Oggetto: Virtual hosts If you have 2 (or more) virtual

RE: Where to get Java tools ?

2001-02-06 Thread Randahl Fink Isaksen
I am not sure if I understand you correctly, but if you are looking for the Java platform which is needed to run Orion, you should download the Java Software Developer Kit 1.3 from java.sun.com at http://java.sun.com/j2se/ If you are looking for a development tool (IDE) then you could take a

Re: Form-based authentication not working right

2001-02-06 Thread John Hogan
Are you only specifing a partial path, relying on a default page name (index.jsp, default.jsp)? If so, in your redirect code, be specific and specify the entire path, including the file name. You should also be able to turn off directory browsing. I don't know how to do this with Orion

1.4.7 ejb1.1 entity problem.

2001-02-06 Thread Russ White
Just an alert. I am testing 1.4.7 and after deploying one of my apps I get the following error when creating a new entity: javax.ejb.CreateException: Error creating EntityBean: [SQL0205] Column USER_ not in table GARMENT_SHRINK_TEST in CWQC01. The weird thing is that the USER_ field mentioned

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

Re: SSL Attributes

2001-02-06 Thread David C. Papayoanou
Never mind everybody. It looks as if the latest beta version (1.4.7) of Orion has finally started implementing these attributes. It does appear that the key-size is just a placeholder though so will always return 0 at this point so If you're testing, you probably want to test by cipher-suite

Fw: orion-ejb-jar.xml is not being copied when changed, why?

2001-02-06 Thread Ozzie Gurkan
I have added a delete command to my ant buildfile to remove the orion-ejb-jar.xml file for now. But, isn't there a better solution? Please, any help would be appreciated. Someone must have figured this out or isn't aware of it Thanks, Ozzie Gurkan - Original Message - From: "Ozzie

Re: auto-deploying without editing config/*.xml

2001-02-06 Thread Ozzie Gurkan
Here are the command line (using ant) that I use to initially deploy my application for the very first time! target name="admindeployorion" depends="init" echoDeploying application for the very first time to host./echo exec dir="c:\orion" executable="java" arg

RE: NamingException using custom UserManager with stand alone applications

2001-02-06 Thread kkvarfordt
Hi Marcel, The web application works using either the jndi name (java:comp/env/ejb/Customer) or the ejb-name (ejb/Customer). However, the "naming convention" doesn't seem to matter when I try to use a stand alone application. The NamingException is thrown either way. Thanks for the help,

RE: Where to get Java tools ?

2001-02-06 Thread Kemp Randy-W18971
Good point. If you do a search on www.northernlight.com for "java tools", an example site is http://www.netobjectives.com/rs_java_tools.htm, with talks about anything from IDE's to JSP engines. You can go to a site like tucows.samarts.com and do a search on "java". -Original

Re: Form-based authentication not working right

2001-02-06 Thread Nick Newman
Gerald, I tried your exact example (see attached zipped up web app) and everything worked just as it should (using orion 1.4.5). Once again I ask, what happens if you remove the security and simply request the secured page? Nick At 03:52 PM 2/5/01 -0800, you wrote: Recently I asked about

Suggestion

2001-02-06 Thread bsb108765
Ops, something wrong, the correct would be: entity description@Data-source jdbc/MySQL @Table-name myOwnTable/description cmp-field description@Persistence-type varchar(30)/description field-nameuserId/field-name /cmp-field /entity -- De:

Output Volume

2001-02-06 Thread Chandika Mendis
I'm trying to run a very simple JSP that gives a rather large volume of output. It loads the first time but fails the second time.(was doing some performance comparisons). The same JSP works fine with ServletExec. Any help will be appreciated. I've attached the JSP below:- %@page

RE: Download Orion version 1.4.7

2001-02-06 Thread Juan Lorandi (Chile)
autoupdate.jar looks for orion in http://www.orionserver.com/orion/orion.jar that URL sure is handy if you don't know what your proxy is JP -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Martes, 06 de Febrero de 2001 8:38 To: Orion-Interest Subject:

RE: Form-based authentication not working right

2001-02-06 Thread Juan Lorandi (Chile)
gerald, I have a configuration matching yours and it's working; May I suggest a test? If you will, add a user called 'jlorandi' and make it part of group 'myuser', and add an user 'dummy' but DON'T make him part of group 'myuser' ,then, could you please edit SecuredPage.jsp so it executes these

Re: Too much caching? - the database has changed

2001-02-06 Thread Danut Prisacaru
Thanks for the help Tim. I am not sure I like this solution. Why do I have to go and change this in the application-deployments folder? The same question applies to the table name for the CMP Beans. How do I choose a table name different than the default one without touvhign the

RE: Client site HttpSession simulating

2001-02-06 Thread Juan Lorandi (Chile)
you have to postfix any URL with ";JSESSIONID=id" NOTE THE SEMICOLON JP -Original Message- From: Boris Erukhimov [mailto:[EMAIL PROTECTED]] Sent: Lunes, 05 de Febrero de 2001 10:45 To: Orion-Interest Subject: Client site HttpSession simulating I have a site which stores user

Re: Too much caching? - the database has changed

2001-02-06 Thread Robert Krueger
At 10:29 06.02.2001 , you wrote: Thanks for the help Tim. I am not sure I like this solution. Why do I have to go and change this in the application-deployments folder? The same question applies to the table name for the CMP Beans. How do I choose a table name different than the default one

Re: Too much caching? - the database has changed

2001-02-06 Thread Tim Endres
You should not be changing the deployment folder files directly, except to check to see if something works. You should create your own orion-ejb-jar.xml file in your own EAR (or build directory if you deploy directly). Orion will then pickup your version of orion-ejb-jar.xml and add anything else

Properties for DataSourceUserManager?

2001-02-06 Thread Matt Bauer
Does any one know the properties for the datasourceusermanager. I can get it to work for the username and password, but not the groups. Here is what I have: user-manager class="com.evermind.sql.DataSourceUserManager" property name="dataSource" value="jdbc/HermesCoreDataSource" / property

RE: Output Volume

2001-02-06 Thread Kemp Randy-W18971
If something works OK with one piece of software, and not with another, then who is at fault? The one the program works with or the one it does not? This same dilemma occurred with someone running a program under Weblogic and Orion: It works for Orion but not for Weblogic. Try it with a

RE: Any news from Orion yet??

2001-02-06 Thread Fink, Paul
So, no good news then, eh? -Original Message- From: Robert Krueger [SMTP:[EMAIL PROTECTED]] Sent: Friday, February 02, 2001 8:11 AM To: Orion-Interest Subject: Re: Any news from Orion yet?? At 11:33 02.02.2001 , you wrote: Any news from Orion yet?? Two weeks and nothing

Re: Output Volume

2001-02-06 Thread Geoff Marshall
Check your implicit out object (Type JSPWriter). You can get the size of the output buffer from the bufferSize property and you can flush your output buffers before you hit that size. e.g. // output something out.println("..."); if (out.getRemaining() someComfortableMargin) {

Orion-console in 1.4.7 supports DataSource properly... now what!!!

2001-02-06 Thread Daniel Cardin
Hi everyone! I'm progressing... Orion 1.4.7 has support for DataSources in the orion-console application. If you select a DataSource, you will see a new panel allowing you to enter SQL commands that will be sent directly to the database through the DataSource + connection. it WORKS in the

Re: HTTPS from Orion Java Bean

2001-02-06 Thread Geoff Marshall
Tim- Thanks for responding. I need to learn to write these messages a little more clearly. Basically, I downloaded the JSSE stuff from Sun and tweaked the J2sdkee1.2.1 to allow me access to the SSL routines as per Sun's instructions. I compiled the Java class and executed it (see below).

Re: Too much caching? - the database has changed

2001-02-06 Thread Danut Prisacaru
Thank you again for your very helpful advices! It saves me a lot of time. Danut At 12:55 PM 2/6/2001 -0500, Tim Endres wrote: You should not be changing the deployment folder files directly, except to check to see if something works. You should create your own orion-ejb-jar.xml file in your

Re: Client site HttpSession simulating

2001-02-06 Thread Boris Erukhimov
Thanks a lot Juan, it's working. Is it possible for https session ? I've also found out that URL rewriting syntax is server specific, which means it's not part of the spec ? "Juan Lorandi (Chile)" wrote: you have to postfix any URL with ";JSESSIONID=id" NOTE THE SEMICOLON JP

RE: Orion-console in 1.4.7 supports DataSource properly... now what!!!

2001-02-06 Thread Jeff Schnitzer
Are you sure that the JDBC driver isn't finding its way into the classpath? Did you try the console remotely from a machine that you know doesn't have the JDBC driver? You may already know this, but just in case: Almost all of the orion tools (including orionconsole.jar) are simply empty jar

Tunnel Servlet and POST requests

2001-02-06 Thread Peter Beck
From: Porfiriev Sergey Subject: Re: Integration with existent www-servers Date: Mon, 07 Aug 2000 14:52:19 -0700 I've succesefuly installed tunneling except for "POST" method - "GET" request works fine, but POST doesn't :( Orion 1.1.37 Is this issue known? PS: i use tunneling to access

Re: Form-based authentication not working right

2001-02-06 Thread Gerald Gutierrez
At 09:07 AM 2/6/2001 -0700, you wrote: Gerald, I tried your exact example (see attached zipped up web app) and everything worked just as it should (using orion 1.4.5). Once again I ask, what happens if you remove the security and simply request the secured page? Then I get the secured page.

RE: Orion-console in 1.4.7 supports DataSource properly... now what!!!

2001-02-06 Thread Allen Fogleson
Daniel; As far as I can tell the DS lookup works in 1.4.7 I have an app that does many lookups and I just ran it unchanged from 1.4.5 to 1.4.7. Now Granted I am in orion so I just have to do a... InitialContext ctx = new InitialContext(); DataSource ds = (DataSource) ctx.lookup("jdbc/myDS");

Error getting pooled Oracle connection

2001-02-06 Thread James Halloran
I would really appreciate it if someone could tell me where I am going wrong here. It is probably something very simple. I'm just trying to get a pooled Oracle connection. This is in my data-sources.xml: data-source class="com.evermind.sql.DriverManagerDataSource"

SV: Benchmarks should be better

2001-02-06 Thread Magnus Rydin
Title: SV: Benchmarks should be better Michael, do you have the result on some website somewhere? it would be very interesting to see some tests preformed by external parties. WR -Ursprungligt meddelande- Från: Michael Quinn [mailto:[EMAIL PROTECTED]] Skickat: den 4 februari 2001

Re: Too much caching? - the database has changed

2001-02-06 Thread Robert Krueger
Danut, please reread my posting. I wrote that it is not meant as a flame and I was dead serious about that. you are discussing with people on this list about why something has to go where in the deployment files, so you obviously have to know. if you don'zt trake the time to learn those

Re: Error getting pooled Oracle connection

2001-02-06 Thread Robert Krueger
At 22:36 06.02.2001 , you wrote: I would really appreciate it if someone could tell me where I am going wrong here. It is probably something very simple. I'm just trying to get a pooled Oracle connection. there is some shared library missing for your OCI driver. if you're on a unix system

SV: I need reference card for ejb-jar.xml

2001-02-06 Thread Magnus Rydin
Title: SV: I need reference card for ejb-jar.xml There is also the http://www.orionserver.com/docs/ejb-jar.xml.html -Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Skickat: den 5 februari 2001 05:09 Till: Orion-Interest Ämne: SV: I need reference

SV: Any tutorials on form based authentication

2001-02-06 Thread Magnus Rydin
There is one in progress: http://www.jollem.com/~ernst/orion-security-primer/ -Ursprungligt meddelande-Från: Dominic Hanlan [mailto:[EMAIL PROTECTED]]Skickat: den 5 februari 2001 08:45Till: Orion-InterestÄmne: Any tutorials on form based authentication Title says it all,

SV: Form-based authentication not working right

2001-02-06 Thread Magnus Rydin
Title: SV: Form-based authentication not working right If nothing else, the ATM uses form based authentication. -Ursprungligt meddelande- Från: Chris Bartling [mailto:[EMAIL PROTECTED]] Skickat: den 6 februari 2001 04:42 Till: Orion-Interest Ämne: RE: Form-based authentication