Dynamic sorting

2000-11-01 Thread Maureen Chandra
Hi fellows, I'm trying to use DATASRC attribute in jsp, but it doesn't work. What I mean is there's no data displayed on the page. But, when I change the value "query.jsp" to "datasrc.txt" where datasrc.txt contains all the records from such table, it worked. Please help me on this. The purpose I

The Session Issues .

2000-11-01 Thread john
I use the resin for the Server . There is no Golbal.asa as ASP . So i find it is not easy for me to handle the the session's start & destory . Another problem , when i close the page use the unnormal methods (such as close the page from the up right corner "X") , i can not decide the status of th

Re: trouble with the back button if I use session variable

2000-11-01 Thread M. Simms
Just disable the Back button via Javascript: if (window.history.length > 0) history.forward(); > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of hua ge > Sent: Wednesday, November 01, 2000 12:25 PM >

Re: Anybody thinking of using JRun just don't.

2000-11-01 Thread M. Simms
Hard to believe Jrun is that bad. Allaire just won a ton of awards from some leading journals. > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Chin Sung Kit > Sent: Monday, October 30, 2000 9:54 PM >

Re: JSWDK ERROR

2000-11-01 Thread Amar_singh
I think there is somehting wrong with your registery install jdk1.2.2 again and run .i am sure it will run -Original Message- From: kal inuganti [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 5:27 AM To: [EMAIL PROTECTED] Subject: JSWDK ERROR Hi all I am trying to run

Re: JSP - CORBA

2000-11-01 Thread Patrick Flahan
This will work, but I would recommend putting this logic in a bean and then use the bean to access the data. This would help encapsulate/separate the CORBA access from the jsp. The bean would then be reusable and you wouldn't have to code so much logic in the jsp itself. Patrick - Original

Workflow?

2000-11-01 Thread Martin Smith
Anyone aware of a workflow taglib/component/whatever that works in a J2EE environment??? Martin === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found

Caching an Object

2000-11-01 Thread Sushil Singh
Hi, Can anybody help in understanding how to cache an object, lets say I would like to cache a resultset, how can I do? Thanks in advance. Sushil === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTERES

JSWDK ERROR

2000-11-01 Thread kal inuganti
Hi all I am trying to run jswdk on windows ME (millenium edition) and it doesnot work. once i start the server i get to see just the class path and nothing happens after that. An automatic window opens up showing the contents of a folder called JAVA under my windows directory that I did not creat

Re: JSP - CORBA

2000-11-01 Thread Daryani Santosh
<%@page import="org.omg.CORBA.ORB"%> <%@page import="org.omg.CosNaming.NamingContext"%> <%@page import="org.omg.CosNaming.NamingContextHelper"%> <%@page import="org.omg.CosNaming.NameComponent"%> <%@page import="packagename.*"%> <% //create stubs of corba components and compile them into classes /

JSP - CORBA

2000-11-01 Thread Chen Shirley
Hi everyone, I am working on retriving a string array from other application(which gets the data from the database) to one of my jsp page through corba service. How do I write code to access CORBA objects from my jsp page? Anyone has samples about jsp page using corba service? Thanks a lot ___

Re: a few quick questions

2000-11-01 Thread Geert Van Damme
> 1) does anyone know a good book to better learn how to use beans? Just use them. No books needed. the best thing is to start createing almost all your classes as beans. You don't need a specific reason to create a bean. You need a very good reason to create a class that's not a bean. (IMO) > 2

Re: EJB mailing list (out of topic)

2000-11-01 Thread T A Flores
[EMAIL PROTECTED] - Original Message - From: Eric Owens <[EMAIL PROTECTED]> Date: Saturday, October 28, 2000 8:22 am Subject: Re: EJB mailing list (out of topic) > I was looking for one as well. > > - Original Message - > From: "Raj S" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]

Re: Shopping cart

2000-11-01 Thread Murphy, Chris (OTS-EDH)
Access is not strong enough to handle a bunch of simultaneous requests because of its limited architecture. Every time a user performs a query on the database, no one else can do anything (just for a split second). I have experimented with connection pooling, and it does seem to help performance

Re: a few quick questions

2000-11-01 Thread Michael Donnelly
In response to #2, you can do that fine from JSP. But if you do it from JCP, then the VM in the browser will throw a security exception. Mike (client, server, app, applet... feh!) -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAI

trouble with the back button if I use session variable

2000-11-01 Thread hua ge
hi, I have a jsp search page searchForm.jsp, the commit button will invoke a servlet which going to implement the bussiness logic and store the result object in a session object named "geCollection", then this servlet will redirect to the result.jsp page and display the results based on the value

a few quick questions

2000-11-01 Thread Daniel Lynn
ok, I have a couple of questions, so I'm just going to stick them all in here... 1) does anyone know a good book to better learn how to use beans? 2) will basic writeUTF's to a flatfile in JSP through a ton of security exceptions or does JSP let you write files onto the server? 3) I'd like to p

Re: Servlet and Bean as One

2000-11-01 Thread Scott Evans
This all sounds weird (why not separate the two?), but you could try having the Servlet place itself inside one of the scopes, for example: in servlet... context.setAttribute("ServletBean", this); in jsp... or in servlet... request.setAttribute("ServletBean", this); in jsp... Be careful

Servlet and Bean as One

2000-11-01 Thread Phil Hedley
Hi all, I have created a servlet which processes the output of a jsp page, and also provides the input for the next jsp page. The class is actually a Bean and a Servlet. The jsp pages use the directive and appropriate get methods. The problem I am having is that I get 2 instances of the same cl

Exception while using beans in jsp

2000-11-01 Thread Nivedita
HI, I get the exception while trying to access a bean in jsp. When i trace the line in the generated file for the jsp. The code is out.flush(). What could be the reason for this. I face this probelm in Iplanet web server. [01/Nov/2000:20:56:45] info ( 425): Internal Info: loading servlet /shoes

Bug using HttpUtils.parsePostData ?

2000-11-01 Thread Phil Hedley
Hi all, I call HttpUtils.parsePostData() in my servlet which works fine. When I have finished processing the data I forward the request to a jsp page using :- getServletConfig().getServletContext().getRequestDispatcher("/mypage.jsp").forward(request, response) At this point I get an internal

Re: Shopping cart

2000-11-01 Thread alan goodenough
I've never encountered any problems serving data from Access on e-commerce stores using ASP... not tried it in JSP, but i can't see there being a problem. I've only ever used MySql for the JSP stores which I've created. - Original Message - From: "cupid1" <[EMAIL PROTECTED]> To: <[EMAIL PR

Re: Shopping cart

2000-11-01 Thread cupid1
CM, It sounds great if I can use Access database to store products info with jsp as front end. I asked the question because I read somewhere that Access is not a client/server capable database. The way I understood that was that if I have a jsp user interface that retrieves information about prod

Best Connection Pooling

2000-11-01 Thread Shankar Lal
Which is the best Connection Pooling implementation around - JavaExchanges ConnectionBroker, Poolman, BitMechanic . Has anyone used Oracles Connection pool implementation? Has anyone faced any problems with any of these implementations. Also can I use a third party connection pooling implementati

JBuilder/Tomcat problem

2000-11-01 Thread Charlotte Schaffstein
Hi everyone! Can anyone solve a problem regarding the connection between JBuilder and tomcat? We always have to move the contents of a selfdefined local directory, i. e. the changed files, into the tomcat environment after we made changes to them before we can see the changes under netscape. How

Re: my jsp page is not getting refreshed

2000-11-01 Thread RAJARAJAN.A.L
Hi, Even we face similar problems often. Clearing the cache, deleting = the jsp class files, restarting the j2ee serverNothing works = sometimes. The funniest thing is that the page that the browser fetches = is one that was before nearly half-a-dozen updations. What shall we do = now

Re: jsp, servlet, java bean , jbdc ... advice needed?

2000-11-01 Thread Hendrik Schreiber
Hi! I currently prefer the following: * encapsulate JDBC in some kind of beans or persistence layer. Do not spread SQL statements all over your application. Do not embed SQL in JSP, even if some taglib vendors offer that as feature. * place your servlet independent application lo

Re: Redirect to JSP from HTML page

2000-11-01 Thread Surender
> hi vivek tiwari > > try this html contents as home.html. It will redirect the request to your jsp page. > > > > CONTENT="0;URL=HTTP://www.yourdomain/home.jsp"> > > > > Hope this works > > Surender Jain > www.webchutney.com > > - Original Message -- > vivek tiwari <[E

Re: Deploying multiple version of an application within the sameservlet engine?

2000-11-01 Thread Hendrik Schreiber
Hi, if you want to use different instances of your application in a single servlet engine, you have to make sure that the necessary classes, especially if they contain static variables, are located in /WEB-INF/classes or /WEB-INF/lib. That you way you can make sure that they are loaded by differe

Re: Where to download free Servlet Runner for MS W2K

2000-11-01 Thread Hendrik Schreiber
Actually most of the engines listed on http://java.sun.com/products/servlet/industry.html should work on w2k. And: many of them offer free downloads. E.g.: resin, orionserver, tomcat jo! etc. cheers, -hendrik - - - - - - - - - - - - - - - - - - - - - - - - - - - tagtraum industries http:

Re: Where to download free Servlet Runner for MS W2K

2000-11-01 Thread Marcel van Kooy
Free download of Unify's ServletExec (JSP Engine), also for Win2000. http://www.unifyewave.com/servletexec/index.htm Regards, > -Oorspronkelijk bericht- > Van: JEANCHG [SMTP:[EMAIL PROTECTED]] > Verzonden:woensdag 1 november 2000 10:28 > Aan: [EMAIL PROTECTED] > Onderwerp:Wher

Where to download free Servlet Runner for MS W2K

2000-11-01 Thread JEANCHG
Where to download free Servlet Runner for MS W2K? === 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

Error Message when running jsp file on my web

2000-11-01 Thread JEANCHG
Cannot contact Servlet Runner at localhost:6802 My OS is MS Windows 2000 and when I did the jsp test, there was an error message as above. What did I miss when I was configuring my web and installing Tomcat and JSDK 1.3? Thanks for help.