Re: problem with IE

2000-09-17 Thread Nathan Hoover
sure, this is an easy fix... just append a bogus parameter so your URL ends in .xls and you'll be fine... IE doesn't depend as much on the content-type as it ought to. N At 11:13 AM 9/17/00, sridhar r wrote: Hi I have a problem with the IE.When I try to download a file with the given content

Re: Dynamically Generated PDF

2000-07-24 Thread Nathan Hoover
with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets Nath

Re: JSP Servlet

2000-05-18 Thread Nathan Hoover
It depends on what web/app server you are using. Some servers compile at each page load / some compile occasionally / some compile only the first time you get the page after the server starts up... N -Original Message- From: A mailing list about Java Server Pages specification and

Re: jsp to oracle technique: paging display of large recordsets

2000-05-11 Thread Nathan Hoover
Basically your best bet would be to stuff your ResultSet into and HTTPSession object. Then, you could rs.next() 20 times, then the user cuold click next, and you would still have the recordset around, and the process could repeat itself. N -Original Message- From: A mailing list about

Re: Paging display of large recordsets

2000-05-11 Thread Nathan Hoover
I don't know... I am not all that knowledgeable. It certainly seems like any major db vendor's JDBC driver should support those methods on a ResultSet. You would just need two resultsets to get your order details. N -Original Message- From: A mailing list about Java Server Pages

Re: Solution with JSP

2000-05-01 Thread Nathan Hoover
In my experience Oracle Application Server is worthless. It does not run JSPs out of the box, and the servlet runner is very difficult to figure out. We have JSP/Servlet-based applications which we planned to deploy on OAS but instead we have junked OAS in favor of iPlanet (Netscape) Enterprise

Re: A compilation question

2000-04-28 Thread Nathan Hoover
that's because you need jsdk.jar in your classpath -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Charles Tam Sent: Friday, April 28, 2000 2:38 AM To: [EMAIL PROTECTED] Subject: A compilation question

name of file?

2000-04-26 Thread Nathan Hoover
How can I get the name of the currently executing JSP file? Thanks N === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at:

Re: Shopping Cart JSP/Servlet Package

2000-04-25 Thread Nathan Hoover
I am just finishing up my implementation of same, created a "Product" class that accessed products from the DB and then just stuffed them in a Hashtable -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of

Re: problem with passing value througn query string

2000-04-24 Thread Nathan Hoover
just use getParameter instead. for instance blah.jsp?status=Very%20Nice then request.getParameter("status") == "Very Nice" N -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of pranav kumar Sent: Monday,

Re: how to have two submit buttons calling different JSP's

2000-04-24 Thread Nathan Hoover
You can absolutely have two submit buttons on the same form. Just use this code. Assumptions are that your form tag has name=f1. input type=submit value="Submit 1" onClick="document.f1.action = 'submit1.jsp';" input type=submit value="Submit 2" onClick="document.f1.action = 'submit2.jsp';"

passing lots of text from servlet to JSP

2000-04-20 Thread Nathan Hoover
How can I pass a large amount of text from my servlet to a JSP page? I know that I can pass parameters on the query string but that is generally limited to like 256 bytes or something, and the data that I want to pass is a lot (2-3k) of text. N

Re: How to make URL alias for JSP pages ?

2000-04-18 Thread Nathan Hoover
There are some plugins that will allow your IIS to process JSP's without the JSWDK. I believe that resin will do that (www.caucho.com). Also, you could create an index.asp (default.asp) in your /test folder in your IIS webroot that had one line of script: %Response.Redirect

Re: html character escaping: is it possible?

2000-04-18 Thread Nathan Hoover
I am not sure on all of those, but here are a few to start: gt; = greater than lt; = less than quot; = quote I'm sure the W3C has a reference - www.w3c.org N -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf

Re: ResultSet first() does not work

2000-04-17 Thread Nathan Hoover
Because you can't navigate ordinally through a forward-only recordset. Find a JDBC tutorial. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Kowaleski, Michael Sent: Monday, April 17, 2000 3:22 PM To:

Re: Java whios DB query

2000-04-16 Thread Nathan Hoover
uot;signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets Nathan Hoover RD

Re: Java whios DB query

2000-04-16 Thread Nathan Hoover
BComm, BSc - 2001 === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html htt

Re: iPlanet 4.1 : problem with jsp's

2000-04-14 Thread Nathan Hoover
I encountered this very same problem yesterday, and the iPlanet docs have a pretty clear explanation. You need to install a JDK onto your server (NOT a JRE) and then goto the Global Settings / JDK-JRE Path and configure the server to hit that JDK. N -Original Message- From: A mailing

Re: IBM AIX running on RS6000 (JSP-Servlets-EJB-Database)

2000-04-12 Thread Nathan Hoover
Oracle Application Server runs on AIX. It works well with servlets and EJB, and Oracle is in the process of implementing JSP support (in beta right now). Their tool JDeveloper (a JBuilder knockoff) has good support for all of these technologies and is particularly well suited to Oracle given its

OAS + JSP?

2000-04-10 Thread Nathan Hoover
I am currently milling around in circles trying to figure out how to process JSPs with OAS 4.0.8.1. Has anyone successfully run a JSP with OAS on either Sun or Linux platforms? Nathan Hoover RD Manager Name Engine, Inc

Re: To access a word file thru a servlet and adding values to fields in it from a backend db

2000-04-07 Thread Nathan Hoover
That's absolutely possible since the MS Word file format is available on the MSDN Library. However, it's a much more complicated task than you might initially think. That library can be found at msdn.microsoft.com. N At 02:33 PM 4/7/00 -0700, Sajeev Anand wrote: Hi all I found this question on

Re: FW: My boss needs convincing..

2000-03-15 Thread Nathan Hoover
I'm sorry -- but I have to tear this apart: JSP and ASP *ARE*NOT*CGI*. They are indeed dynamic content, but do not use the Common Gateway Interface specification and therefore do not have its inherent scalability problems (thread per request). I would also say that it is incorrect that most

Re: JSP authoring tools

2000-03-13 Thread Nathan Hoover
Oracle JDeveloper isn't bad at JSP editing, although it's lacking in the HTML/CSS/JS department. That's what we use. Nathan Hoover RD Manager Name Engine, Inc. http://www.nameengine.com At 04:01 PM 3/9/00 -0500, Leon Tseng wrote: Hi all I'm looking for better JSP authoring tools (GUI!?) other

Re: Enabling JSP in iPlanet

2000-03-05 Thread Nathan Hoover
Speaking from a fuzzy memory here, I believe MIME types are stored in magnus.conf. Given that they are, there is a line there for .jsp files, you need to set the (?) handler to magnus-internal. Basically, those types should mirror the HTML type. N At 01:52 PM 3/3/00 -0600, Boi Ken wrote: Using