RE: Memory leaks

2001-06-28 Thread Van Dooren, Damian
I can speak from a production machine we have running on NT4 SP5 with Orion 1.3.8. We only use servlets, but we've been running since September 25, 2000. And we only rebooted once, and that was because of a ISP network outage and I thought I'd take the oppertunity to reboot NT. Of course your

Charting/Graphing libraries

2001-04-25 Thread Van Dooren, Damian
Does anyone have any suggestions for a good charting/graphing library to use within a servlet to generate jpgs or gifs preferably from XML data. Thanks. - Damian Van Dooren Information Technology The Investment Centre

RE: Sending a PDF via a servlet to IE 5

2001-02-22 Thread Van Dooren, Damian
s not. We were left with "Click here for an html version," "Click here to have a pdf copy emailed to you", "Please use Netscape", etc. If you find a fix, let me know! Mike Hoolehan Sycamore Associates, Inc. [EMAIL PROTECTED] 301.668.4681x103 On Mon, Fe

RE: Browser crash under Orion/SSL

2001-02-22 Thread Van Dooren, Damian
It must be something else. We are running an SSL Orion site for the past 6 months, without any browsers crashes, both IE 5 and 5.5. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 22, 2001 9:43 AM To: Orion-Interest Subject: Browser

RE: Sending a PDF via a servlet to IE 5

2001-02-20 Thread Van Dooren, Damian
Unfortunately setting the content length didn't have any effect on the problem. Thanks anyways for the suggestion. -Original Message- From: Mark Meuer [mailto:[EMAIL PROTECTED]] Sent: Monday, February 19, 2001 4:03 PM To: Orion-Interest Subject: Re: Sending a PDF via a servlet to IE 5

RE: Sending a PDF via a servlet to IE 5

2001-02-20 Thread Van Dooren, Damian
Re: Sending a PDF via a servlet to IE 5 Have you tried setting the Content-disposition header? "Van Dooren, Damian" wrote: Unfortunately setting the content length didn't have any effect on the problem. Thanks anyways for the suggestion. -Original Message-

Sending a PDF via a servlet to IE 5

2001-02-19 Thread Van Dooren, Damian
Has anyone encountered an issue with sending a PDF back to IE 5? Here's my situation. I generate a PDF dynamically then store it in a database. I then retrieve the PDF from the DB via a servlet that sets the mime-type then outputs to the response stream. This works fine with Netscape and IE 5.5

RE: Downloading a file via a Servlet

2001-01-30 Thread Van Dooren, Damian
Type("application/octet-stream") ; response.setHeader("Content-disposition", "attachment;filename=" + "yourfilename.ext" ) ; response.setContentLength(file_to_send.length()); /code ~boris "Van Dooren, Damian" wrote: I was wonder

RE: Downloading a file via a Servlet

2001-01-30 Thread Van Dooren, Damian
All you need to do is set the contentType in the response to the proper mimeType. res.setContentType("application/pdf"); If you still have troubles, let me know (off the list) and I'll help you out. -Original Message- From: Norman Jefferies [mailto:[EMAIL PROTECTED]] Sent: Monday,

RE: Connection reset by peer: socket write error Can someone help

2001-01-25 Thread Van Dooren, Damian
I'm not sure if this exactly applies to using JSPs but here is the Servlet answer. If the browser hits the stop button or makes a new request than the original stream is closed, therefore the exception is thrown. When you use a PrintWriter it hides the exception. But when you use an

RE: Orion as NT4 Service

2000-10-26 Thread Van Dooren, Damian
I used google.com and found it right away. http://www.eworksmart.com/JNT/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 26, 2000 4:55 AM To: Orion-Interest Subject: SV: Orion as NT4 Service Is it the opesource project: jsrvany?

RE: Orion/SSL and InternetExplorer

2000-10-26 Thread Van Dooren, Damian
It's appearently a problem with the SSL implementaion (Sun code). Make sure in your $ORION/config/[name]-web-site.xml you set the shared="true" for your web app. default-web-app application="default" name="AppName" shared="true"/ BTW: This is in the mail list archives, atleast a half dozen

RE: What database are you using??

2000-09-30 Thread Van Dooren, Damian
We are using MS SQL Server 7.0 with I-Net Software's Opta 2000 JDBC Drivers. Setting up the datasources is straight forward. Performace wise we are smoking the current implementation (IIS/ASP/ODBC). Not a real surprise, even though we are adding two extra layers of abstraction, converting the