Re: session

2000-09-06 Thread TomyWang
hi Albert.. i have read the api of servlet 2.2,and i feel confused the details about how to carry out your method. so will you please show me some code ? thanks ..:)) === To unsubscribe: mailto [EMAIL PROTECTED] with body: "

100% Pure Java Certification

2000-09-06 Thread Sachin S. Khanna
Hello Jspians, As there is 100% Pure Java Certification for Applications is there something for web applications made using jsp as well. If yes, i'd appreciate if you could give me links to the resources. Thanking you in anticipation. Have a nice day. With regards, Sachin S. Khanna. www.em

Problem with getRequestDispatcher()

2000-09-06 Thread Naren
Hi All, I am using weblogic 5.1.0 with netscape server 3.6. I have problems using getRequestDispatcher(), method. No error at the weblogic and netscape log files, it is compiling the jsp file and creating myserver/classfiles/jsp_servlet/_jsp/_confirm classfile under weblogic directory, but the n

Re: How to test JRE?

2000-09-06 Thread tasneem
to check the version of java type java -version === 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

Re: JspDestroy() and Bean Variable.

2000-09-06 Thread Kevin Jones
Oops, no you're right! Kevin Jones DevelopMentor www.develop.com > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Martin Cooper > Sent: 07 September 2000 01:02 > To: [EMAIL PROTECTED] > Subject: Re:

Re: session

2000-09-06 Thread Albert Wong
Consider using javax.servlet.http.HttpSessionBindingListener. When a session is invalidated (either the user logged out resulting in your explictly invalidating their session, or because their session timed out) and is about to be removed, the servlet container iterates through the contents of yo

Bea Weblogic

2000-09-06 Thread JSP Insider
I am looking into setting up a Mid sized JSP project and the customer is considering using Bea's WebLogic Platform. I have a really basic question of: Does it come with its own Java IDE (if so what is it called) or do you use a third party IDE with it. If you use a third party IDE, which one would

Re: session

2000-09-06 Thread JSP Insider
Do you have cookies enabled? On the close out question. You can use Javascript, put code in the document close event. This code can trigger opening another page which then performs the required operation. (the other page can then close itself in the open event.) We have coded something similiar f

Re: How to display a different language text in the Browser?

2000-09-06 Thread wensj
try: eg. <% String aa=request.getParameter("formtag"); aa=new String(aa.getBytes("ISO-8859-1"),unicode); //replace unicode use your wantting. out.println(aa); %> - Original Message - From: Rathna <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 06

Re: To Forte' users

2000-09-06 Thread Martin Cooper
According to Sun's web site, only the Community Edition is available right now (although a preview of the Internet edition is available). See: http://www.sun.com/forte/ffj/index.html -- Martin Cooper Tumbleweed Communications - Original Message - From: "mike dell" <[EMAIL PROTECTED]> To

Re: session

2000-09-06 Thread Sivakumar Sankarasubramanian
Hi, You can refer my recent question with subject 'JspDestroy() and Bean Variable.' I'm also going thru the same problem Regards Siva -Original Message- From: Angela Chow [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 06, 2000 4:44 PM To: [EMAIL PROTECTED] Subject: session hi

Re: JspDestroy() and Bean Variable.

2000-09-06 Thread Martin Cooper
> > HttpSessionBindingListener > > That should be HttpBindingListener No, you were right the first time (unless that's another interface I'm not aware of). -- Martin Cooper Tumbleweed Communications - Original Message - From: "Kevin Jones" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Se

Re: JspDestroy() and Bean Variable.

2000-09-06 Thread Sivakumar Sankarasubramanian
Kevin, Thank you. We have already implmented a thread that runs in backgroud and on user incativity for a specified interval updates the database and logs out the user. Thers is also an explicit LOGOUT in the front end. Only for accidental killing of the browser I wanted to implement a method to

session

2000-09-06 Thread Angela Chow
hi, i need some help with the session. For some reason, the session id is not unique everytime i bring up the page when i use session.getId(); How do i make it unique? Another problem, i have to update the database when the user has logged out, i could do it when they click to the logout.jsp pa

Re: To Forte' users

2000-09-06 Thread JSP Insider
To my knowledge only internet edition has a production release , the rest are in beta builds?? has this changed recently? Casey Kochmer [EMAIL PROTECTED] >From: mike dell <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]>

Re: JspDestroy() and Bean Variable.

2000-09-06 Thread Kevin Jones
> HttpSessionBindingListener That should be HttpBindingListener Kevin Jones DevelopMentor www.develop.com > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Kevin Jones > Sent: 06 September 2000 23:59

Re: request object & system memory (again)

2000-09-06 Thread Kevin Duffey
No..the request object uses memory only during its scope, a single request. Once the response goes back, the thread is freed up as well as any data (objects) created during that request. HOWEVER, there is one instance as far as I know..that can keep objects around after a request. The only thing t

Re: Debugging HttpJspPage superclasses?

2000-09-06 Thread Kevin Jones
Can you debug servlets under Cafe? If so, pre-compile the page to a servlet then debug the servlet, Kevin Jones DevelopMentor www.develop.com > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Nicholson

Re: JspDestroy() and Bean Variable.

2000-09-06 Thread Kevin Jones
> The problem happens when the user kills his browse or the system crashes. We > wanted to capture that event and update the database. You can't capture this event - the browser won't tell you when the user has killed it (unless the browser is written by you!). The best you can do is put a bean i

Debugging HttpJspPage superclasses?

2000-09-06 Thread Nicholson Robert
Ok... I know about the performance issues but a client is using HttpJspPage subclasses. ... Is there any way to debug these when running a JSP app with JRun 3.0 and Visual Cafe? === To unsubscribe: mailto [EMAIL PROTECTED]

To Forte' users

2000-09-06 Thread mike dell
Ho all, Which edition is better for JSP: Community, interner or the Enterprise edition. Thanks. __ Do You Yahoo!? Yahoo! Mail - Free email you can access from anywhere! http://mail.yahoo.com/

JspDestroy() and Bean Variable.

2000-09-06 Thread Sivakumar Sankarasubramanian
Hi All, Working on a JSP/Bean architecture. This is a database driven search application. When the user logs into the database, we are tracking his usage with an entry in the database and when he logs out we update the database by putting the end time. If he times out, then we measure some period

request object & system memory (again)

2000-09-06 Thread Jim Huffsmith
(I posted this question yesterday, but our ISP went down right afterwards. As a result, I was cut off from the list and didn't see any of the responses. Can we try it again?) I've heard that you should be careful not to overload the session object with data because it can have a big impact on mem

Re: Question regarding JSP and HTML forms

2000-09-06 Thread Kevin Jones
JSP is serverside, Javascript is client side. You could do the same sorts of tings in JSP as javascriot but it would involve a network round-trip, so why bother? ... The JSP page can access the form params any number of ways but typically through <% myParam = request.getParameter("ParamName" %

Re: Question regarding JSP and HTML forms

2000-09-06 Thread Boriso Edward
Dear Ryan, As per the specifications, JSP is compiled on the server. Javascript is typically run on the client's web browser. So, the answer to your question is no. JSP builds the web pages and is not living code on the client's machine. You can, however, get the parameters passed in the form

Re: JSP tutorial online?

2000-09-06 Thread JSPInsider
If you are looking for a good introduction to JSP check out http://www.jspinsider.com . We recently put up a fairly comprehensive introduction tutorial for JSP. If you are looking for more then an introduction, there is also a large collection of JSP related links. Hope it helps, [EMAIL PROTECTE

Re: JSP tutorial online?

2000-09-06 Thread Shailendra S Dhanoa/Cupertino/IBM
Roberto, Try the JSP and EJB tutorials here: http://www2.software.ibm.com/developer/education.nsf/java-onlinecourse-bytitle?open&l=222,t=gr,p=tuthp Regards, Shailendra === To unsubscribe: mailto [EMAIL PROTECTED] with body

Re: Cool site running on EJB, XML and JSP

2000-09-06 Thread Alireza Nahavandi
Hi, Nice site, do you have any experience with Web Beans and Data Web Beans offered by Oracle ? Has anybody created a site using them ? Thank you, Alireza. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf

Re: HTML tags in JSP function ???

2000-09-06 Thread Liu
Michal Belicek, You can't use the implicated "out " object directly within your declaration because whatever you define will be outside of the "_jspService" method, which is where "out" and some other objects being defined by the sever. If you really want use it, you can pass the JspWriter as a

Listmaster

2000-09-06 Thread Agarwal Gokul
How to unsubsribe.the one given below listerv@ doesn't workhave tried with the given body message which one has to write to sign off!!! > -Original Message- > From: Jorge Barrera [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, September 06, 2000 10:59 PM > To: [EMAIL PROTECTED] > Su

Re: Listmaster

2000-09-06 Thread Raj Sinha
All tyhe more better having graduated from asp, it would be a better idea to further split the list into specific areas. Some of the suggestions could be: 1. JSPBeginner 2. JSPAdvanced 3.JSPIBMwebSphere 4.JSPDatabases etc etc similar on the lines of what we have on www.learnasp.com It really wor

Re: HTML tags in JSP function ???

2000-09-06 Thread Liu
Michal Belicek, You can't use the implicated "out " object directly within your declaration because whatever you define will be outside of the "_jspService" method, which is where "out" and some other objects being defined by the sever. If you really want use it, you can pass the JspWriter as a

Question regarding JSP and HTML forms

2000-09-06 Thread Ryan Richards
Question: I am trying to use JSP's for a project I am working on. Can I use JSP to obtain information from HTML form elements as I would do in JavaScript? hence eliminating the need for JavaScript altogether? Any links to JSP-HTML Form info would be appreciated. I have had trouble finding specif

Re: HTML tags in JSP function ???

2000-09-06 Thread Liu
> Michal Belicek, > > You can't use the implicated "out " object directly within your declaration because > whatever you define will be outside of the "_jspService" method, which is where > "out" and some other objects being defined by the sever. If you really want use > it, you can pass the JspW

Cool site running on EJB, XML and JSP

2000-09-06 Thread Gene Chuang
Most ejb and xml applications these days are enterprise and business oriented backwares. Well, Kiko inc. (Knowledge In, Knowledge Out) just launch a education-oriented community-based site that's free and open to everyone of all ages, and showcases bleeding edge java technologies! We are running

Re: Listmaster

2000-09-06 Thread Jorge Barrera
Listmaster, This is a good suggestion to split the JSP list into beginner & advanced sections. I have been contemplating getting off the list service because many silly things come through here but every blue moon, some good piece of JSP information does come about. I second the motion. Jorge

Re: HTML tags in JSP function ???

2000-09-06 Thread Kevin Jones
Write a custom tag - that's exactly what they are for, Kevin Jones DevelopMentor www.develop.com > -Original Message- > From: A mailing list about Java Server Pages specification and > reference [mailto:[EMAIL PROTECTED]]On Behalf Of Michal Belicek > Sent: 06 September 2000 17:08 > To: [

Re: javax.servlet.jsp

2000-09-06 Thread Kevin Jones
This package is used by the JSP engine in its implementation of servlets. Read the jsp spec for details, Kevin Jones DevelopMentor www.develop.com > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Marc

Re: Query Regarding Sessions

2000-09-06 Thread Kevin Jones
Why are you doing a redirect rather than a forward? Is the jsp part of the same context as the servlet? Kevin Jones DevelopMentor www.develop.com > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Naray

Re: How to test JRE?

2000-09-06 Thread John Ahrens
Unless you're in the install directory, don't use the ./ instead try java -version -Original Message- From: Lambert, Stephen : CO IR To: [EMAIL PROTECTED] Sent: 9/6/00 11:05 AM Subject: Re: How to test JRE? In a shell window I typed ./java -version Error: can't find libjava.so.

Listmaster

2000-09-06 Thread Stefan Demetz
Listmaster, please put a system in place where newbies are forced to read a minimum of information (tutorials, recommended books,dev kits, tools, FAQs, servers) before joining the lists, otherwise every day we get the same questions and the list gets were low tech You could do this by sending the

Re: JSP tutorial online?

2000-09-06 Thread Michael Levin
There is a simple JSP article with an exercise in the May, 2000 WebTechniques mag online ... http://www.webtechniques.com/archives/2000/05/trachtman/ Michael Levin, [EMAIL PROTECTED] - Original Message - From: "Robuschi (Delfi)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent

Re: JSP tutorial online?

2000-09-06 Thread Rogério Saran
Look at http://java.sun.com/products/jsp/docs.html "Robuschi (Delfi)" wrote: > > Hello, I'm Roberto from Italy. Does anybody can tell me where can I find a > good JSP&BEANS tutorial online (if it exists) > > Thank you in advance!!! > > Robuschi Roberto Delfi srl

Remove Out put statements

2000-09-06 Thread Siritha R. Krushna
Hi, When you are trying to forward(redirect) to another page (inlcude file) make sure that there are no output statements (eg:-println statements) that will write on to the current page.If there are any , have them all removed and past them after the the call to the include page(red

HTML tags in JSP function ???

2000-09-06 Thread Michal Belicek
I need to put in jsp file many times a set of HTML tags which are differencing from each other with only one word. I thought about writing some JSP function and then call the function with the differencing word as parameter. I encountered some problems creating the function so I ended with messy

Re: JSP tutorial online?

2000-09-06 Thread Lamport, Mark
TRy looking at http://java.sun.com and look at the JSP/serlets and EJB tutorials. ALso try http://archive.coreservlets.com Regards, Mark Lamport Lead Online Engineer, EASPORTS. http://www.easports.com Tel: 01932 452814 mailto:[EMAIL PROTECTED] -Original Message- From: Robuschi (Del

Re: How to test JRE?

2000-09-06 Thread Lambert, Stephen : CO IR
In a shell window I typed ./java -version Error: can't find libjava.so. Any suggestions? -Original Message- From: Tad Krolik [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 05, 2000 4:30 PM To: [EMAIL PROTECTED] Subject: Re: How to test JRE? In the shell window, type: java -ve

JSP tutorial online?

2000-09-06 Thread Robuschi (Delfi)
Hello, I'm Roberto from Italy. Does anybody can tell me where can I find a good JSP&BEANS tutorial online (if it exists) Thank you in advance!!! Robuschi Roberto Delfi srl P.za Ravenet 1/b - 43100 PARMA Tel. 0521/932411 Fax 0521/989045 [EMAIL PROTECTED] --- http:

ErrorPage on Include JSPs does not work!!

2000-09-06 Thread Ismael Blesa Part
I have a JSP A that includes a JSP B both with the errorPage set to receive all the errors. When the exception is throwen in B I get a page with some content from JSP A and the following exception : java.lang.IllegalStateException: Cannot forward as OutputStream or Writer has already been obtaine

Re: request.getHeader("REFERER")

2000-09-06 Thread Janco Tanis
you may try request.getHeader("Referer"); Shiraz Wasim Zaidi wrote: > >I assume that the above method call doesnot have a uniform behaviour. > It has a uniform behaviour. > > > Could you guys throw some light on the above method. > > It just keeps returning null. > The Referer header field tell

Query Regarding Sessions

2000-09-06 Thread Narayanaswamy, Kumaran (CTS)
Hi Iam fecthing a Set of Records form the Database through a Servlet and storing the result in Vector.Then iam loading the Vector into session and redirecting the Control to a JSP from the Servlet.When i access the vector in the JSP iam getting null.The Application server which iam using is IBM We

Re: URGENT JRun Apache PHP ???

2000-09-06 Thread Angela Tang
Sufi, Run Service program from administration tool=20 (NT 5 in Program, NT4 in control panel),=20 Set Startup type of JRun Admin Server or JRun Default Server to Manual, and Stop the service. This will remove the current setting and configuration for JRun server. Hope it helps. --www.iconixx.c

Re: Java Based Web Browser

2000-09-06 Thread Stephen R
oops!! I'll read a bit slower next time.. Stephen R wrote: > > The src for W3C's Jigsaw server is available free @ http://www.w3c.org/Jigsaw > > -Stephen > > Sanjay Gomes wrote: > > > > U can try Hotjava ,its freee on suns site > > > > -Original Message- > > From: A mailing list about Jav

Re: session method errors

2000-09-06 Thread Kachana Ung
Hi, JWS 2.0 supports servlets 2.1. The methods Session.get/putValue are replaced by Session.get/setAttribute in 2.2. Kachana --- Maurice Coyle - Sun ireland - Software Products and Platforms - Internationalization Engineer <[EMAIL PROTECTED]> wrote: > hi all, > > i was messing abou

Re: How to display a different language text in the Browser?

2000-09-06 Thread Mihail Belanov
There are several interesting articles on IBM's web site: www.ibm.com/developer/java then link to "Library" then "Unicode". The articles there are: Working with the international text in JDK1.2 Java Cookbook: Creating global applications Introducing IBM's international classes for Unicode - O

How to Convert Array into String

2000-09-06 Thread kanojiajogesh
Hi there I have one array consisting of 5 value ie myval[0]="one"; myval[1]="two"; myval[2]="three"; myval[3]="four"; myval[4]="five"; is there any function that will copy the value of array into a string seprated by comma(without using any loop) ie abc ="one,two,three,four,five"; Since I have

Re: how to getProperty from form...

2000-09-06 Thread Dion Dion
whoa. you're right.. it runs well when i move the statement.. thx a lot. Wednesday, September 06, 2000, 12:46:38 PM, I Wayan Saryada wrote: IWS> I think you should put this statement: IWS> in your IWS> processregister.jsp not in the register.jsp IWS> Regards, IWS> wayan -- Best regards,

Re: Java Based Web Browser

2000-09-06 Thread Stephen R
The src for W3C's Jigsaw server is available free @ http://www.w3c.org/Jigsaw -Stephen Sanjay Gomes wrote: > > U can try Hotjava ,its freee on suns site > > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf

Back Button

2000-09-06 Thread Claybrook, Cecelia
I there some way to disable the back button using JSP? Cecelia Claybrook Software Engineer, EAI 913-307-7464 === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets

Re: How to display a different language text in the Browser?

2000-09-06 Thread Silvey, Andrew
Have a think about the UNICODE. We run our portal in German/English/Czech/Hungarian/Polish We use UNICODE to allow local characters to be interpreted. Andy. -Original Message- From: DeVoil, Nick [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 06, 2000 2:47 PM To: [EMAIL PROTECTED

Re: TOMCAT 3.1 Issues

2000-09-06 Thread Armen Ezekielian
I have experienced the same issue. My guess is that a more careful reading of the spec would enlighten us all. The ClassCastException does not occur when referencing objects that have page scope. For example, if I simply recompile a bean (making no changes to the source) then attempt to reload a .

strange behaviour - JSP page dumps the source code

2000-09-06 Thread Rathna
I'm sick of this problem,i have a jsp page with some .js includes and when i load the page it dumps the source code in the browser instead of interpreting the code that too it is not happening consistenly.I really wanted to make it work... please help me out to get out of this problem . en

Concurrent access to a file

2000-09-06 Thread Jamel Tayeb
Hi Everybody, I want to read a configuration file from my Jsp application but I am having problems that I suspect are due to concurrent access to this file by multiple instances of the application. Does anybody know how to avoid conflicts? Will putting the code in a method that is declared synchr

Re: How to display a different language text in the Browser?

2000-09-06 Thread DeVoil, Nick
Some useful stuff relating to Greek at http://www.hri.org/fonts/advanced/ Nick -Original Message- From: Rathna [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 06, 2000 1:15 PM To: [EMAIL PROTECTED] Subject: How to display a different language text in the Browser? Hi all, How do i

Re: double quote and carraige return in jsp variable with frames

2000-09-06 Thread Sanjay Gomes
I think Ravi this Newsgroup is for sorting out the Java problems and discussing them until u get a solution for it Sanjay -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of ravi arora Sent: 06 September 2000 1

Re: Java Based Web Browser

2000-09-06 Thread Sanjay Gomes
U can try Hotjava ,its freee on suns site -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Human Resources Sent: 06 September 2000 04:58 To: [EMAIL PROTECTED] Subject: Java Based Web Browser Does anyone kn

Re: TOMCAT 3.1 Issues

2000-09-06 Thread Antonio W. Lagnada
I encountered the same thing on my jsp page using a bean. I encountered the same thing for servlets. It was unpredicatable and it didn't happen everytime. When it does happen, all I did was restart tomcat and it would work. My servlets are also set to be reloadable. I would appreciate if someon

Re: Help In Beans

2000-09-06 Thread Antonio W. Lagnada
That's a good idea to restart. I've had some situations where I recompiled and had to restart the server in order for my servlet/jsp to work. Anyone know why this occurs? -- Antonio W. Lagnada [EMAIL PROTECTED] - email This email address is specifically for JSP-Interest email list Dion

How to display a different language text in the Browser?

2000-09-06 Thread Rathna
Hi all, How do i display a differnet language string in the browser? Our requirement is that we have a HTML page which conatins the english text and the particular part of the text should be in greek langage. It is very urgent,any information or the links will be very help full. we are using : J

Re: double quote and carraige return in jsp variable with frames

2000-09-06 Thread ravi arora
maria why are you taking the tension of this programme. earth is very big. enjoy life. ravi >From: Maria Baldassarri <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAI

session method errors

2000-09-06 Thread Maurice Coyle - Sun ireland - Software Products and Platforms - Internationalization Engineer
hi all, i was messing about with the session object methods, trying to get the hang of it all. however, i get the errors below. am i forgetting to import some package? getValue() and setValue() work just fine, so i see no reason why these others don't. Error during compilation : /jsp/JavaWebS

a liberty question

2000-09-06 Thread TomyWang
hi guys. can someone tell me some useful mail list address about servlet? thanks..:)) === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http: