RE: ...need urgent help!

2001-04-25 Thread Nijhawan, Sumit

What do you mean by a connection to Orion?  A servlet or an EJB component.
You can make http connections to a servlet or JSP running in Orion.  Let me
know if you need help with that.  I haven't tried invoking EJBs from
standalone clients.

-Original Message-
From: Tobias Streckel [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 25, 2001 8:39 AM
To: Orion-Interest
Subject: ...need urgent help!


Hello,

how can I make an coded connection between orion an my standalone java
client?

I think I must use the jce but how?

Thanks

Tobi





RE: ...need urgent help!

2001-04-25 Thread Dean Parker

A few more details please. Do you want to encode transmission from the Orion
server to a standard java application sitting on another node in a single
corporate LAN? Why? That would be no different than all of the other normal
LAN data flowing around in a corporation. If you want to encode transmission
from an app server to a java client over the general Internet, you might try
making your java app into an RMI server, then save the stub and skeleton
files in the app server classpath. This will allow you to do a lookup of the
RMI server from the app server. You can then use JCE to generate a symmetric
key shared between the app server and the rmi server. Just encode your data
before sending it to the RMI server and decode it when it arrives.

The actual details of all this is what I get paid for, and I don't feel like
typing that much.

:-)


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Tobias
Streckel
Sent: Wednesday, April 25, 2001 9:39 AM
To: Orion-Interest
Subject: ...need urgent help!


Hello,

how can I make an coded connection between orion an my standalone java
client?

I think I must use the jce but how?

Thanks

Tobi







...need urgent help!

2001-04-25 Thread Tobias Streckel

Hello,

how can I make an coded connection between orion an my standalone java
client?

I think I must use the jce but how?

Thanks

Tobi





...need urgent help!

2001-04-25 Thread Tobias Streckel

Hello,

how can I make an coded connection between orion an my standalone java
client?

I think I must use the jce but how?

Thanks

Tobi





Re: ...need urgent help!

2001-04-25 Thread denis despinoy

What do u mean by coded connection ?

Are u referring to secure ! If so we used the jsse
package to implement an ssl protocol. Otherwise u can
configure orion with a secure option for server
authentication. see the ssl tutorial online at the
orion website select resource and click on
orionsupport there u'll find some guidelines.

Hope this help !

denis 

--- Tobias Streckel [EMAIL PROTECTED] wrote:
 Hello,
 
 how can I make an coded connection between orion an
 my standalone java
 client?
 
 I think I must use the jce but how?
 
 Thanks
 
 Tobi
 
 


__
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/




RE: ...need urgent help!

2001-04-25 Thread Andre Vanha

Tobi,
it sounds like you're trying to use ejb's deployed in your orion server from
a stand-alone java app, and you want the communication channel between your
app and the orion server to be encrypted.  

Athough I'm not sure it'll work, you might want to look at Orion's RMI-HTTP
tunnelling.  It enables RMI requests to run over http.  If you then install
a secure certificate and enable https you might be enable to tunnel RMI over
HTTPS, securing your channel.

Although there is a document (not very informative) on how to enable
RMI-HTTP tunneling the one for RMI-HTTPS says To be written.  Sounds like
it's possible but you might have to do some hacking at it to get it to work.


The docs can be found here:
http://www.orionserver.com/docs/index.html

-Original Message-
From: Tobias Streckel [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 25, 2001 7:39 AM
To: Orion-Interest
Subject: ...need urgent help!


Hello,

how can I make an coded connection between orion an my standalone java
client?

I think I must use the jce but how?

Thanks

Tobi





Re: ...need urgent help!

2001-04-25 Thread Streckel

Okay Okay :-))

I'm using a standalone Java Client to connect the orionserver over the
network.
I want to use crypto. between client and orionserver.

Thanks again

tobi


- Original Message -
From: Dean Parker [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Sent: Wednesday, April 25, 2001 7:34 PM
Subject: RE: ...need urgent help!


 A few more details please. Do you want to encode transmission from the
Orion
 server to a standard java application sitting on another node in a single
 corporate LAN? Why? That would be no different than all of the other
normal
 LAN data flowing around in a corporation. If you want to encode
transmission
 from an app server to a java client over the general Internet, you might
try
 making your java app into an RMI server, then save the stub and skeleton
 files in the app server classpath. This will allow you to do a lookup of
the
 RMI server from the app server. You can then use JCE to generate a
symmetric
 key shared between the app server and the rmi server. Just encode your
data
 before sending it to the RMI server and decode it when it arrives.

 The actual details of all this is what I get paid for, and I don't feel
like
 typing that much.

 :-)


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Tobias
 Streckel
 Sent: Wednesday, April 25, 2001 9:39 AM
 To: Orion-Interest
 Subject: ...need urgent help!


 Hello,

 how can I make an coded connection between orion an my standalone java
 client?

 I think I must use the jce but how?

 Thanks

 Tobi