RE: Clustering..

2001-07-18 Thread Ismael
When you use a SSL hardware accelerator, are you able to retrieve the digital certificate that the user uses from your application on Orion?. Is there a way to retrieve the digital certificate while usin a SSL hardware accelerator? At 14:11 16/07/2001 -0700, you wrote: -Original

RE: Clustering..

2001-07-18 Thread elephantwalker
AFAIK, these accelerators handle the front end, and the backend doesn't use ssl. You can also have ssl throughout, but ...I mean, what's the point of having the accelerator if you don't use it. You may be able to tunnel through the accelerator or proxy, or something. I will check out the docs to

LDAP User Manager

2001-07-18 Thread Simon Harris
Just thought I'd publicly say you're a legend! Simon

SOAP interface for ejb beans

2001-07-18 Thread Jon Ward
Is there an apache soap implementation of the StatelessEJBProvider class available. Jon winmail.dat

Book Announcement

2001-07-18 Thread Krister Saleck
# Java Server Pages and J2EE Web-based Applications for Enterprises # Book Announcement, now available: Java Server Pages and J2EE Web-based

RE: SOAP interface for ejb beans

2001-07-18 Thread Montebove Luciano
If I understand your question you should give a look to GLUE. It permits to invoke a Stateless Session Bean as a web service. You can download a beta for free. http://www.themindelectric.com/products/glue/glue.html Hope this help Luciano -Original Message- From: Jon Ward

Re: SOAP interface for ejb beans

2001-07-18 Thread Joseph B. Ottinger
Why don't you ask the Apache group, instead? On Wed, 18 Jul 2001, Jon Ward wrote: Is there an apache soap implementation of the StatelessEJBProvider class available. Jon --- Joseph B. Ottinger [EMAIL

EJB 2.0 Spec approved!!!

2001-07-18 Thread Simon Harris
The JCP just approved the EJB 2.0 specification. Read the article here: http://www.crn.com/sections/BreakingNews/breakingnews.asp?ArticleID=28281

Java HotSpot Server VM

2001-07-18 Thread Setlur, Atul (MED)
Has anyone compared the performance of their application running using the HotSpot Clinet VM versus the HotSpot Server VM? I would be interested in knowing if they found a significant variance in the numbers. Additionally, what VM execution parameters has anyone tweaked to improve performance?

Re: EJB 2.0 Spec approved!!!

2001-07-18 Thread Ray Harrison
Finally! This is very good news indeed! --- Simon Harris [EMAIL PROTECTED] wrote: The JCP just approved the EJB 2.0 specification. Read the article here: http://www.crn.com/sections/BreakingNews/breakingnews.asp?ArticleID=28281 __ Do You

RE: SOAP interface for ejb beans

2001-07-18 Thread Kesav Kumar
Title: RE: SOAP interface for ejb beans Apache Soap2_2 is already having this. Kesav Kumar Kolla Voquette Inc 650 356 3740(W) 510 889 6840(R) Voquette...Delivering Sound Information -Original Message- From: Jon Ward [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 18, 2001 2:52

Re: EJB 2.0 Spec approved!!!

2001-07-18 Thread Ray Harrison
This is actually semi-difficult to validate at the Sun site - the specs page for the EJB spec still list the pfd2 as the latest. Nothing that I have been able to find says Yes - the spec has been finalized. They have included the spec in the latest release of j2EE 1.3 beta(2)...I am somewhat

Re: JNDI lookup form Applet problem, Please Help!

2001-07-18 Thread Todd Benge
We've been doing this for a few months now and are actually on an effort to move away from it because of the security problems presented from this approach. That being said, the context that we've found to work the best is the RMIInitialContextFactory. Here is sample of some code we're using.

Re: deployment - part2

2001-07-18 Thread Jeanne
My gratitude to all who responded to my first question. Thank you. As you may be able to tell, I am very new to server side stuff. I re-did the entire ear file from the ground up using jar and was able to deploy the app. Unfortunate, the next roadblock was an error message complaining about the

Datasource Question - is there a way to setup a JDBC log file?

2001-07-18 Thread Bill Clinton
Hello, I am curious on how to set up logging for JDBC. I thought there would be a parameter in the data-source definition that would allow logging. Does this exist? Bill btw: I am using oracle

RE: deployment - part2

2001-07-18 Thread Simon Evans
you dont seem to be giving any permissions to your methods. in the method-permission element you are just listing all the methods but are not defining the roles with permissions to the methods. you are also not defining any roles. i would recommend removing the entire method-permission element

Re: Oracle JDBC problems

2001-07-18 Thread Hasnul Hirudin
hi... What type of connection that you are used;JDBC connection or DataSource connection to communicate with oracle database ? If you try to used DataSource connection with oracle 8.0.5.2, probbly it will not work.Although you used Oracle 8.1.7 JDBC Driver but Oracle 8.0.5.2 doesn't support

Re: EJB 2.0 Spec approved!!!

2001-07-18 Thread Ray Harrison
Confirmed! --- Ray Harrison [EMAIL PROTECTED] wrote: This is actually semi-difficult to validate at the Sun site - the specs page for the EJB spec still list the pfd2 as the latest. Nothing that I have been able to find says Yes - the spec has been finalized. They have included the spec in

RE: UNSUBSCRIBE

2001-07-18 Thread Romy Chan

Re: Datasource Question - is there a way to setup a JDBC log file?

2001-07-18 Thread Ashok Banerjee
Start OC4J with -Djdbc.debug=true this turns on Orion JDBC debug information. Cheers, Ashok Bill Clinton wrote: Hello, I am curious on how to set up logging for JDBC. I thought there would be a parameter in the data-source definition that would allow logging. Does this exist? Bill