get chunk blowing chunks

2002-05-22 Thread Smith Jason
Hi, I am using Orion as a front end to IIS. When accessing a certain page, I get this error. However, I cannot reproduce this in test, even when I point the Orion dev machine at the prod IIS server. The code is exactly the same in both instances. My tunnel servlet just connects to IIS with the

RE: disappear postings (was Re: Uploading files to Orion webserver with MultipartParser API)

2002-02-28 Thread Smith Jason
Has happened to me too - serveral times. /Jason -Original Message- From: Simon Stewart [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 27, 2002 5:37 PM To: Orion-Interest Subject: OT: disappear postings (was Re: Uploading files to Orion webserver with MultipartParser API) On Wed,

RE: What about session-tracking?

2002-02-06 Thread Smith Jason
RU losing the session variables when hopping over to HTTPS? If so, you need to set your web app to "shared"... share=true maybe? /Jason -Original Message-From: José Mª García [mailto:[EMAIL PROTECTED]]Sent: Wednesday, February 06, 2002 1:51 PMTo: Orion-InterestSubject:

RE: Scheduler for Orion

2002-02-01 Thread Smith Jason
http://www.mail-archive.com/orion-interest%40orionserver.com/ -Original Message-From: Milosz Witkowski [mailto:[EMAIL PROTECTED]]Sent: Friday, February 01, 2002 11:55 AMTo: Orion-InterestSubject: Scheduler for Orion Hi Does anybody knows something about some

RE: automatic invocation of servlet as the root-service

2002-01-31 Thread Smith Jason
Sounds like you should use a filter! Check out the filter tutorials at orionserver.com. /Jason -Original Message- From: Robert Virkus [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 31, 2002 9:27 PM To: Orion-Interest Cc: Orion-Interest Subject: Re: automatic invocation of servlet

RE: big text in string as object over the network:

2001-06-21 Thread Smith Jason
Is there some sort of connection time out stuff on the Oracle server? Is there something on the Oracle server that kills connections after X seconds? Can you save another binary object of the same size as your String to the BLOB field? There is an inactivity timeout variable in the Orion

RE: Orion at port 80 with IIS

2001-06-13 Thread Smith Jason
You could do a port translation at your firewall so that your.orionserver.com is on port 80 for the users, but really runs on port 8090 on your machine. /Jason -Original Message-From: Karin Keur [mailto:[EMAIL PROTECTED]]Sent: Wednesday, June 13, 2001 9:26 AMTo:

Force Logon after X minutes

2001-06-13 Thread Smith Jason
I am custom user-authentication. The user and groups are in a database and I am using BASIC authentication. How can I allow users to logoff w/o them closing their browser? How can I force them to logon again after x minutes? Thxs, Jason

RE: Creating keystore file from an OpenSSL created cert

2001-05-31 Thread Smith Jason
Try reading in the certificate into a byte array and then see if you can convert it the X509 spec. KeyFactory kf = KeyFactory.getInstance(RSA); X509EncodedKeySpec x509spec = new X509EncodedKeySpec(ByteArray); PublicKey pk = kf.generatePublic(x509spec); Maybe you can

RE: SSL Question: Possibly Offtopic

2001-05-22 Thread Smith Jason
You might be able to use a SSL terminator. In this case, a seperate machine acts as a proxy to your sites and handles SSL for you. The ssl load is handled by the proxy machine and your web servers are somewhat protected. This is commonly used when you want to use SSL, and you still want your

RE: Standar Template

2001-05-11 Thread Smith Jason
Maybe you could use a filter? Check out the filter tutorial at http://www.orionserver.com/ /Jason -Original Message- From: Dave Ford [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001 9:17 PM To: Orion-Interest Cc: Dan Tharp Subject: Standar Template I want to create a web app

RE: Hardware load balancer

2001-03-26 Thread Smith Jason
Not sure if this helps but With web servers like IIS, people generally store the session info in a database when using a 3rd party hardware load balancer. /Jason -Original Message- From: calvin matthews [mailto:[EMAIL PROTECTED]] Sent: Monday, March 26, 2001 3:42 PM To:

Extending Orion with JCE 1.2.1

2001-02-27 Thread Smith Jason
Has anybody tried to use Java Cryptography Extension (JCE) 1.2.1 with Orion? I am able to use the JCE libraries by placing all of the JCE jars in one directory, setting the jars in my classpath and dynamically registering the provider like this: java.security.Security.addProvider(new