Re: How to unsubscribe?

2001-06-19 Thread Wes Weems
UMM why not go to www.orionserver.com, put your email address in there, and hit unsubscribe instead of subscribe? Wes - Original Message - From: "Daniel Frey" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Tuesday, June 19, 2001 11:03 AM Subject: How to unsubscribe?

Re: Question about DataSourceUserManager

2001-06-19 Thread Eric Hodges
Thanks for the help. I figured out the problem. We weren't storing the group/role names in the membership table, just a numeric key into the group table. A little denormalization and it all works. :-)

RE: tunneling ORMI through SSL?

2001-06-19 Thread Rabi Satter
You could use SOAP since it uses a web server as a proxy you get HTTPS thrown in for free. It also allows you to have other programs in different languages be able to use the EJBs as well. The client simple do POST calls to a SOAP servlet via HTTPS. In addition you are using Java on the clie

Re: Question about DataSourceUserManager

2001-06-19 Thread Michael Jara
I implemented my user manager based on the Orion api javadocs, and the DataSourceUserManager article on orionserver.com. So basically, what I did is this: - Implement the "com.evermind.security.UserManager" interface. (I don't remember why I did that instead of subclassing the AbstractUserManag

Re: Question about DataSourceUserManager

2001-06-19 Thread Eric Hodges
I thought it might be a group/role problem, so I tried to add the user to the group that has permission to access the web app. I'm using this code in MyUserManager (extends DataSourceUserManager): public User getUser(String parm1) { User aUser = super.getUser( parm1); try { Group

Re: tunneling ORMI through SSL?

2001-06-19 Thread Wes Weems
I guess I just want to be able to have secure transactions (executions of beans rather)  encryption via ssl or whatever. If nothing else I suppose I could just create a SSH tunnel... but I'd like to avoid that, as I want to have win32 clients, and I know nothing about createign ssh tunnels o

How to unsubscribe?

2001-06-19 Thread Daniel Frey
How do you unsubscribe from this list. I have sent it to the other address a number of times, but the messages keep coming. Can anyone help? __ Do You Yahoo!? Spot the hottest trends in music, movies, and more. http://buzz.yahoo.com/

Re: Question about DataSourceUserManager

2001-06-19 Thread Eric Hodges
Even if I write my own user manager, I'm not sure what I should make it do to fix the problem. The one from Orion seems to be doing everything correctly. It just never lets me in. The AbstractUserManager class doesn't seem to have any methods that would help. - Original Message - From:

native_user_support tarball

2001-06-19 Thread Berry Sizemore
Anyone have the native user support tarball at hand? Could you send it to me. I'm in dire need of this. Berry Sizemore

Re: Transaction and DriverManagerXADataSource

2001-06-19 Thread Ray Harrison
Aby - Why don't you go into a little more detail as regards your transaction, how you are currently trying to handle it and what gets thrown (or should be thrown) when the transaction is supposed to fail...that way we can provide some insight Cheers Ray --- [EMAIL PROTECTED] wrote: > > Hi

Re: Question about DataSourceUserManager

2001-06-19 Thread Michael Jara
I had the same problem with the DataSourceUserManager. Judging by messages in the mailing-list archive, it looks like some people have gotten it working, but I have no idea how. I ended up writing my own user manager, which didn't take very long. (I spent more time trying to get the DataSourceU

Re: Transaction and DriverManagerXADataSource

2001-06-19 Thread aby
Hi Ray, Thanks for the reply on the second point. I had tried the same using the points which you had given, But the driver is still the one in the ejb-location and no transaction rollback had taken place. I guess I will have to wait about the data source. Thanks very much Regards Aby Ray Ha

re: messages

2001-06-19 Thread Simon Harris
Well I just unsubscribed [EMAIL PROTECTED] from the mailing list. hopefully that should stop the flood of messages.

Re: Servlet and CSS

2001-06-19 Thread Robert Koberg
nobody is stating an obvious solution: > > out.println(""); This will always look for a css in a css folder off of the document root of the site. - Original Message - From: "Alexander Jesse" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Tuesday, June 19, 2001 3:40

Re: Transaction and DriverManagerXADataSource

2001-06-19 Thread Ray Harrison
Can't help with your first question, but can with the second: In your ejb-jar.xml file(s) there is a section called and within that, you can set up security roles on methods, etc but can also define container transactions in a section called (you guessed it) which looks like this: . . .

RE: Servlet and CSS

2001-06-19 Thread Alexander Jesse
try: > out.println(" -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 19, 2001 12:25 AM > To: [EMAIL PROTECTED] > Subject: Servlet and CSS > > > Hi all gurus, > I am trying to include a CSS in my servlet: > > out.println(""); > out.println(""

Very Strange loadbalancing problem with applet jar files

2001-06-19 Thread Darren Mosley
Hi, I have two Orion 1.3.8's configured to be clustered and load balanced using the Orion loadbalancer.jar My main 'web app' is not called default, but called 'Java-web-app' (please dont ask why, it wasnt me). Now, everythings working fine, I can call my EJB ok, I can call my pages ok, and i can

Transaction and DriverManagerXADataSource

2001-06-19 Thread aby
Hello everyone, I am new to orion server and am trying to find out how to use transaction handling within orion. Now within the datasource.xml file. I have got something like this In this case when I am using the code in the client as InitialContext ic = new InitialContext(); DataSource ds = (

Re: Classpath and library path ERROR ??? --> PLEASE again ???

2001-06-19 Thread Eddie
Thanks,   Indeed the library tag wasn't on the correct place in the orion-application.xml. However, after placing it in the correct place it still doesn't work: .                    ---   I also tried the orion-web.xml:  deployment-v

RE: Servlet and CSS

2001-06-19 Thread Simon Kitching
Hi, You have not put an absolute path on your href, so the webbrowser will generate an absolute path by merging this filename with the URL it loaded the parent document from (ie your servlet's URL). Are you accessing your servlet as http://host:port/servlet/serletname? If so, then the webbrowser

No Subject

2001-06-19 Thread Trent Rosenbaum
I am developing a system using Orion, I have developed a previous system using the server. The first system was using a web front end and included jsp, sevlets and different EJBS. The current system I want to develop is a RMI front end and an EJB back end. I have not done this before and I am f

Re: Servlet and CSS

2001-06-19 Thread Johan Fredriksson
Use Netscape to develop this for the first time, since Netscape complains more ( Netscape 6 is worst / best ). the file blaf.css as you have now written the code is assumed to be in the /servlet dir, which probably is not the case. Use something like request.getContextPath()+"/css/blaf.css" wh

Re: Classpath and library path ERROR ??? --> PLEASE again ???

2001-06-19 Thread Steffen Stundzig
Hi Eddie, > "Eddie" <[EMAIL PROTECTED]> wrote: > Hellu, > > I am have still having problems with the problem below. Can someone PLEASE help me with this ??? do you have tested this with absolute path's? I've have disabled, that orion deploys my ear in an specific deployment directory. Otherwi

Re: [EJB][1.5.1] ShowStopper on CMP deploying

2001-06-19 Thread Steffen Stundzig
Hi Ara, > "Ara Abrahamian" <[EMAIL PROTECTED]> wrote: > I want to notice another limitation: if you have a CMP bean with ejb-name > say bank/Account, then orion throws an exception when generating tables, > etc. Orion should use table name bank_Account for example but it doesn't > expect a / in e