JSP Reference implementation bug !!!

1999-08-06 Thread Michael Rumpf
Hi ! Did someone notice the bug that the JSWDK-1.0EA does not accept jsp files starting with a 'u' ? I created a subproject 'repository', added the mapping entries to the default.cfg file and created a first page called upload.jsp. Each time when I tried to compile the page I got an error "Inva

IE and callPage()

1999-08-06 Thread Nicolas Pujol
Has anybody noticed that callPage() will result in opening the download window in IE? Is there anything I should include in the response header so that IE actually displays the response Thank you Nicolas === To unsubsc

No Subject

1999-08-06 Thread Nanavate Mahesh
Hi , I am gettting this error. Does anybody have any idea as to what's going wrong? Thanks, Mahesh. Error getting compiled page. d:\progra~1\WEBSPH~1\APPSER~1\servlets\pagecompile\_StoresInfo\_StoresInfoS umm_xjsp.java:65: Missing term.

Error:Missing Term

1999-08-06 Thread Nanavate Mahesh
Hi , I am gettting this error. Does anybody have any idea as to what's going wrong? Thanks, Mahesh. Error getting compiled page. d:\progra~1\WEBSPH~1\APPSER~1\servlets\pagecompile\_StoresInfo\_StoresInfoS umm_xjsp.java:65: Missing term.

No Subject

1999-08-06 Thread Daniel Lopez
Hi Magnus, I've been succesfully using a similar approach to download files from a database and my file's size goes up to 13 Mb. The only difference I can see is that I'm using a servlet instead of going through a Jsp page. Jsp pages are supposed to buffer the output before sending it to the clie

Do JSP has bean providing File Upload features like ActiveX uploa d control?

1999-08-06 Thread Calvin Ng
Hello everybody, Do JSP has bean providing File Upload features like ActiveX upload control? If not, Could anybody has experience in writing such things and could u give me some guidelines? Thanks a lot!! Regards, Calvin =

error invoking a JSP1.0 page from a servlet

1999-08-06 Thread Daniel Kehoe
I've looked at the example in the FAQ (rewrote it for JSP 1.0 (JRun implementation)) and I get a java.lang.NoClassDefFoundError when I try to run a servlet that contains Foo foo_o = new Foo("test"); request.setAttribute("fooBean", foo_o); What's wrong? Thanks! Daniel [EMAIL PROTECTED] _

Java OODB and EJB ( was OODB and EJB )

1999-08-06 Thread Bernard Sauterel
Does anyone got some experience using an 100% Java OODB with EJB ? -bernard. -- Bernard Sauterel [EMAIL PROTECTED] +41 78 6044334 === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body

Browser sessions aren't expiring with WebSphere 2.02

1999-08-06 Thread Kirkdorffer, Daniel
I'm sorry to bother people with what is a WebSphere problem, but ever since we upgraded to 2.02 from 1.1 our web apps no longer timeout after 30 minutes. I've tried asking on the IBM WebSphere newsgroup about this problem, but NO ONE *EVER* responds to my postings there (sorry, but that really ag

Re: Sessions and multiple browser windows

1999-08-06 Thread Jesper Jørgensen
David Wall wrote: > > I think you have the best solution I've heard so far. Can each window have a > separate servlet session? If so, how would I go about assigning a new > session to the new window, since I obviously don't want to end the original > session. Or is the trick to store "logical se

2 jsp pages on 1 .shtml page?

1999-08-06 Thread Houser, Matt
Hello, I'm having a problem placing 2 jsp pages on 1 .shtml page using the tag. Each of the includes go to the same servlet but with different parameters being passed in. The servlets are displaying data using jsp pages that get data from a bean. The page displays fine when I only use 1 servle

Date problem in Netscape

1999-08-06 Thread Amol Rao
Hi there : May I have your attension please ? I am writing an applet which at one point displays system date. I am using Calendar object to read the current date from the system. I do Calendar cal = Calendar.getInstance(). When I see this applet in Netscape browser the displayed date is a day f

Re: Date problem in Netscape

1999-08-06 Thread Richard Vowles
Hi Amol, 1) This is a JSP forum, which doesn't cover applets, I highly recommend you find an applet list (anyone with suggestions?) - as there are lots of issues with applets. I personally recommend requiring the Java Plug-in. 2) Months in Java start from zero, so you need to give us some code...

Re: Uploading file to jsp/servlet

1999-08-06 Thread Pascal Houde
I don't know where this Upload.class comes from but give a try to the MultiPartRequest class from servlets.com at http://www.servlets.com/resources/com.oreilly.servlet/cos.zip. The default upload size is limited to 3MB but you can change that value easily. It works fine for me and I can even uploa

Re: Adding a parameter to a Request ???

1999-08-06 Thread Leong Mun Wai
Hi, Try pageContext.setAttribute(String, Object, PageContext.REQUEST_SCOPE)? regards, Mun Wai > Sylvain Roche wrote: > > Hi > > I don't know if somebody has already answered this question, or if it > has already been asked. I guess it must have, but it would be helpful > if so had the solution.