Ynt: Re: A EJB Problem

2001-01-03 Thread Superonline
ANANIN AMINI SIKERIM OROSPU ÇOCUGU > Hi > when u have more than one field as a primary key , u have to get a class ! > regards > bahram > > === > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". > F

Visual Age For Java

2001-01-03 Thread Bhavesh Vakil
Hi to all, I just install Visual Age for Java (ver 3.5) - Enterprise Edition. How I create JSP pages in this IDE. Servlet creation wizard is possible. In documentation they mention JSP support is also there. In document they mention I have to inherit PageListServlet. Where I found this servlet a

Re: I must restart WLS5.1 everytimes I modify my bean?

2001-01-03 Thread Deepak Kumar
hi, I am using iPlanet Web server. And our team is facing the same problem. Is there any way to configure the server so that it start picking up the changes in the bean component. Thanks in advance Regards Deepak Kumar --- Panos Konstantinidis <[EMAIL PROTECTED]> wrote: > I do not think you

Re: problem in forward tag

2001-01-03 Thread Deepak Kumar
Hi, You can use the following code <%@ page language="java" %> <% response.sendRedirect("/examples/jsp/dw/HOME.htm"); %> Regards Deepak Kumar --- prasanjeet <[EMAIL PROTECTED]> wrote: > Hello everybody, > I have a strange problem the forward tag > command of JSP is not > working . >

Re: problem in forward tag

2001-01-03 Thread Manish Vohra
hi u can't specify the relative path as u have done here... specify the full url manish -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of prasanjeet Sent: Thursday, January 04, 2001 11:15 AM To: [EMAIL PROTEC

Re: XML to HTML via XSL/XSLT??

2001-01-03 Thread Marco M
use JSP tags > -Original Message- > From: ext Duffey, Kevin [mailto:[EMAIL PROTECTED]] > Sent: 03. January 2001 20:41 > To: [EMAIL PROTECTED] > Subject: XML to HTML via XSL/XSLT?? > > > Hi all, > > I am in the process of trying my hand at using XSL/T to > convert XML output > from a JSP p

Re: How to set resultSet size

2001-01-03 Thread Deepak Kumar
Hi Dear, If you are using MySQL then use the following query. "select * from abc limit 0,100" this will give you only first 100 records. Regards, Deepak Kumar --- Bhushan Bhangale <[EMAIL PROTECTED]> wrote: > Select * from tablename where rownum < 101 will give > you the desired result. > >

problem in forward tag

2001-01-03 Thread prasanjeet
Hello everybody, I have a strange problem the forward tag command of JSP is not working . ex. hello this is showing the 404 error , i have tried all the possible combination of it URI though. I am using Jswdk 1.0.1. Thanks is advance regarsd Prasanjeet

Re: HOW TO DETECT THE REFERAL PAGE

2001-01-03 Thread HEMANT MALLEPEDDI
Hi, one way u can use hidden variables for storing the page information. Hemant _ Get your FREE download of MSN Explorer at http://explorer.msn.com === To unsu

HOW TO DETECT THE REFERAL PAGE

2001-01-03 Thread hotmail
Hi all, hey when i cometo a jsp page frm another page how can i detect on 2nd page frm where i came frm? anybody.? thx MJ === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For dig

Re: some concepts... 2

2001-01-03 Thread Alex A. Almero
no, when ur going to use the class u have to declare it as static e.g. private static PoolManager poolManager; - Original Message - From: "Rafael Romero" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 04, 2001 10:21 AM Subject: some concepts... 2 > >-every connecti

some concepts... 2

2001-01-03 Thread Rafael Romero
>-every connection request will utilize ur pool >-your pool will should be shared for every user. >-make your pool object static so that it will only create a single >instance once instantiated. I have the Pool class that starts: public class ConnectionPool{ ... } Do I have to write it like: pub

Re: tag question need help!

2001-01-03 Thread Hans Bergsten
jeff luo wrote: > > Hi, I want to create a tag that can declare a script > variable in the jsp page, I use the tag extraInfo > class to declare the variable, it work fine when I > know how many variable I want to declare in the jsp > page. But I have a problem need to solve, the > variable nu

Re: some concepts...

2001-01-03 Thread Alex A. Almero
-every connection request will utilize ur pool -your pool will should be shared for every user. -make your pool object static so that it will only create a single instance once instantiated. - Original Message - From: "Rafael Romero" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thurs

tag question need help!

2001-01-03 Thread jeff luo
Hi, I want to create a tag that can declare a script variable in the jsp page, I use the tag extraInfo class to declare the variable, it work fine when I know how many variable I want to declare in the jsp page. But I have a problem need to solve, the variable number defined in the extratInfo

some concepts...

2001-01-03 Thread Rafael Romero
Hi all there, Happy New Year! I'm just starting with JSP, Beans, and JDBC. I'm trying to do a typical e-commerce site. In the first step of this developing, I'm just doing a page to get SQL commands that are sent to the Database and then... are executed. I use a Bean to access the Database. The

Re: How does the session is maintained incase of multiple loginfrom the same mac?

2001-01-03 Thread Craig R. McClanahan
Bhushan Bhangale wrote: > Hi > > The two browsers on the same machine will always have two different session. You >said they are using same session object but they will have different session id. > That may or may not be true on the Mac (I don't run one, so don't know how cookies are implement

Re: Session Tracking without Cookies

2001-01-03 Thread Craig R. McClanahan
Kevin Yeung wrote: > Hello all, > > I'm sorry if this question has been asked and answered before, but I > couldn't find a satisfactory answer elsewhere. > > First, let's assume cookie has been disabled. My understanding is that the > only way to track session is to use URL rewriting. > > My ques

Re: sendRedirect Problem

2001-01-03 Thread Bhushan Bhangale
it won't work as javascript is a client side script. And i never heard any solution to do that, if any one has some good solution then pls come up. I can suggest a way to do that. Call the JSP or servlet where your redirection code is written using javascript. some.jsp and the some.jsp code w

sendRedirect Problem

2001-01-03 Thread Miranda Carlos
Hi all. I need browser client open new window without toolbar ? In my JSP or Servlet ( in response Object ) , I write : sendRedirect( encodeRedirectURL ( "javascript:window.open("xxx.html","","width=100, heigth=100 , toolbar=no")) . but the browser generate error 404.- Is possible ? Any help

Re: FW: Runtime.exec() within servlet

2001-01-03 Thread Daryani Santosh
XML to PDF Another way of converting your XMl using XSL to PDF is using FO ( Formatting Objects ). Check FOP parser from APACHE , it has servlets and command line programs that allow you to style and convert a xml into PDF . Also Cocoon from Apache does something similar. FOP is the world's fi

Re: init method in JSP

2001-01-03 Thread Rosario Samanez
yes <% public void jspInit() { //Source }%> -Mensaje original- De: Yesudason Paulraj [mailto:[EMAIL PROTECTED]] Enviado el: miércoles 3 de enero de 2001 19:52 Para: [EMAIL PROTECTED] Asunto: init method in JSP Dear all, Can we implement init method ( as in servlet) in J

init method in JSP

2001-01-03 Thread Yesudason Paulraj
Dear all, Can we implement init method ( as in servlet) in JSP ? Thanks in advance. Regards Yesudason P === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] wi

FW: Runtime.exec() within servlet

2001-01-03 Thread Bansal, Monika
Hi Craig, Where can I find and buy the package 'JClass Pagelayout' as mentioned in your earlier post? I need to generate pdf reports from XML using XSL. How good is this package? Thanks in advance. Monika -Original Message- From: Sullivan, Craig R. [mailto:[EMAIL PROTECTED]] Sent: Wed

Re: Session - Help please

2001-01-03 Thread Bhushan Dear
Hi Hotmail If you are maintaining session in you codingin the session then it will be destroyed as soon as one will close the browser. If you are maintaining it in the cookie then you need to close all the browser instances to destroy that session cookie. If the application server is maintain

Re: How to set resultSet size

2001-01-03 Thread Bhushan Bhangale
Select * from tablename where rownum < 101 will give you the desired result. The 'top' fundaa works in access database only i guess. > -Original Message- > Change your query to "Select top 100 * from ..." returns the first 100 > records. > -Original Message- > From: List Reside

A recursive error was detected

2001-01-03 Thread Sushil Singh
Hi, Can anybody help in understanding why I am getting recursive error: A recursive error was detected. The server cannot use specified error page. Please check the application error-path. Original Error: Error Message: [JSP 1.0 Processor] reported an error Error Code: 404 Target Servlet: JSP

OffTopic: Apache HTTP Rewriting

2001-01-03 Thread Sushil Singh
Hi, Sorry to post an offtopic question, but I am strugling since last three days to solve the problem, I will appreciate if anybody can provide me any help. Here is my question: I am having IBM HTTP Server (Powered by Apche) running on RS/6000. I would like to perform URL redirection. If the URL

XML to HTML via XSL/XSLT??

2001-01-03 Thread Duffey, Kevin
Hi all, I am in the process of trying my hand at using XSL/T to convert XML output from a JSP page, into HTML. The code I have thus far uses the latest XALAN processor (which comes with the latest XERCES parser). Thus, I am using the TrAX APIs. Here is my code snippet: // for the sake of bevity,

Session Tracking without Cookies

2001-01-03 Thread Kevin Yeung
Hello all, I'm sorry if this question has been asked and answered before, but I couldn't find a satisfactory answer elsewhere. First, let's assume cookie has been disabled. My understanding is that the only way to track session is to use URL rewriting. My question is, where do I do the response

Re: Whats up with all these out of office replies??

2001-01-03 Thread Sandarbh Sharma
Dear all, Now that all have contributed to this chain and everyone has given a piece of his/her mind let's stop it and get on with the cause for which we have it in first place as for stupid ads we will block the senders of such mails, I have recently joined and am a beginner and also have gained

Re: detecting settings in browser

2001-01-03 Thread Jim Bishop
>Does anyone know if there is any way to use Java to detect if a viewer's >browser has Javascript enabled? try searching google. http://www.cyscape.com/developer/workshop/workshop-script.asp === To unsubscribe: mailto [EMAI

Re: Whats up with all these out of office replies??

2001-01-03 Thread Sicaud Patrice
I'll second that. It's bad enough to get all those out-of-office replies without having to deal with the resulting arrogant flames. This in turn obviously generates messages like Don's and this one. In in all, we probably tripled the amount of useless mail. This is not, I am sure the original inte

Re: Whats up with all these out of office replies??

2001-01-03 Thread paul
I agree completely. I can understand someone wanting a snippit of code to show syntax and maybe a little more code to illustrate general approaches, but some of these requests to supply cut-and-paste solutions shouldn't be tolerated. I am by no means an expert; and beginner questions a

Re: How does the session is maintained incase of multiple login from the same mac?

2001-01-03 Thread Bhushan Bhangale
Hi The two browsers on the same machine will always have two different session. You said they are using same session object but they will have different session id. Do tell me whether you are maintaining session using cookie or via url rewriting or the application server is taking care of it.

detecting settings in browser

2001-01-03 Thread Daniel Lynn
Does anyone know if there is any way to use Java to detect if a viewer's browser has Javascript enabled? -Daniel === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTE

Re: I must restart WLS5.1 everytimes I modify my bean?

2001-01-03 Thread Bhushan Bhangale
same here i m using ATG Dynamo, in this application server i need to restart it again and again. but this is not a problem with IBM Websphere there it always picks up the changes. Thanks & Regards Bhushan Bhangale http://www.bbhangale.com -Original Message - I do not

Re: Whats up with all these out of office replies??

2001-01-03 Thread Kevin Duffey
Listen..I started this thread out of being pissed off for seing some 5 or so emails come back to me each time I sent a message to the list. I realize I was a bit rude and for that there is no excuse. However, the list is for JSP questions. I do not mind stupid, easy, beginner questions. I even ans

alias to jsp

2001-01-03 Thread umit.aytekin
Hi I am using tomcat and want to give aliases to jsp's how can i achieve this? __ ÜCRETSÝZ E-MAIL ALDINIZ MI? Türkçe ilk Portal http://www.mynet.com === To unsubscribe: ma

Re: I must restart WLS5.1 everytimes I modify my bean?

2001-01-03 Thread Sandarbh Sharma
this is how it is. even WLS 5.1 has no alternative. I was expecting it to be better than 4.5 in this aspect as well sandarbh >From: Panos Konstantinidis <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTE

Re: Whats up with all these out of office replies??

2001-01-03 Thread Panos Konstantinidis
Scott man you rule. I wanted to say these for a long time. I am with you man. >From: Scott Burkey <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: Whats up with all these out of offi

Re: I must restart WLS5.1 everytimes I modify my bean?

2001-01-03 Thread Panos Konstantinidis
I do not think you can do it without restarting the server. I have exactly the same problem. Every time I change something in my Bean I have to restrat the JRun. This is kind of annoying. >From: Martin Nwalal <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification a

I must restart WLS5.1 everytimes I modify my bean?

2001-01-03 Thread Martin Nwalal
Hi, everytimes i make modifiactions on my bean I must restart the server. what can I do to make the server take on my modifications without stop it? Martin === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JS

Re: How to set resultSet size

2001-01-03 Thread Sandarbh Sharma
you can make a view in database *** as create or replace view ordertransdate as select * from table1 order by trans_date desc in your query add the following select * from ordertransdate where rownum <101 order by trans_date desc *** try this and let me know pleas

Re: Whats up with all these out of office replies??

2001-01-03 Thread Scott Burkey
I'm not saying "I'm so good". I'm a beginner too. Been writing JSP for two weeks now. But I'm not coming to the board asking for a complete sample application that somebody else wrote so that I can plug it in and impress my boss. People need to bring some specific questions to the board that will

Re: Code Security.

2001-01-03 Thread Sreelatha Kattamuri
There are some tools called obfuscators which shrink the java class file. Obfuscator Programs strip understandable variable and method names from your class file. The program would replace variable names with weird symbols. The Obfuscator Program cannot stop decompiling but it can make the Class f

Re: Code Security.

2001-01-03 Thread Surya Prakash
hi bhavesh wish u happy new year my project is also in same manner like jsppages+process bean+database bean i have my db queries in almost all jsp pages in one of my page i have to enter the text into textboxes and put them in array when i click continue button i coded the bean and it is showing t

Re: How to set resultSet size

2001-01-03 Thread paul
What database are you using? In Oracle you can use the 'rownum' psuedo column to limit the number of rows returned. You could change your query to: String query = "select * from table1 where rownum<=100 order by trans_date desc"; This will return at most 100 rows. As already mentioned

Re: Whats up with all these out of office replies??

2001-01-03 Thread Sandarbh Sharma
U R right DON. with you sandarbh >From: Don Makoviney <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: Whats up with all these out of office replies?? >Date: Wed, 3 Jan 2001 08:24:11 -0

Re: Whats up with all these out of office replies??

2001-01-03 Thread Don Makoviney
You guys should really come down off of your high horses. You were a beginner once too. Oftentimes these people just need a push in the right direction. You really shouldn't be discouraging new JSP people, but instead build the community up. If it really becomes a problem, then there should be a b

Re: Beginner JRun question

2001-01-03 Thread Scott Burkey
Exactly what I was looking for, Mahesh. Thanks. I don't have a "servers" folder or a "default-app" folder within my JRun directory, but I mapped a "server mapping" to my IIS directory in JRun Studio. That's working so I'm set. Thanks again. Scott -Original Message- From: Mahesh Chhatlan

Re: Whats up with all these out of office replies??

2001-01-03 Thread Scott Burkey
Exactly, guys. Why sign up for a listserv and then kick back out-of-office replies to everyone on the list that posts a message. Ridiculous. Oh, and my FAVORITE one is what you mentioned, T.A.. These lazy so-and-so's that post questions like, "What is JSP?" or "How do I build an e-commerce appli

Re: Session - Help please

2001-01-03 Thread Yogeeta_Raghunathan
u can capture the window close event using javascript and submit ur page to a servlet/jsp to invalidate ur session... > -- > From: hotmail[SMTP:[EMAIL PROTECTED]] > Reply To: A mailing list about Java Server Pages specification and > reference > Sent: Monday, December

Re: Session - Help please

2001-01-03 Thread hotmail
Thx very much i m using iplanet only warm MJ - Original Message - From: Sudha H R <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 03, 2001 5:21 PM Subject: Re: Session - Help please > It's got to do with the server setting. If u are using IPlanet, this might

Re: Session - Help please

2001-01-03 Thread Gebriel George
I dont know how to detect browser close event.u could try some thing with getLastAccessTime() ,set some default time above which you can invalidate hotmail wrote: > hi, > but how u do invalidate on browser close event? > MJ > - Original Message - > From: Gebriel George <[EMAIL PROTECTED]

Re: Session - Help please

2001-01-03 Thread Murthy B V S N
use HttpSession.setMaxInactiveInterval() ... - Original Message - From: hotmail <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 04, 2000 5:02 PM Subject: Re: Session - Help please > hi, > but how u do invalidate on browser close event? > MJ > - Original Message -

Re: Session - Help please

2001-01-03 Thread Sudha H R
It's got to do with the server setting. If u are using IPlanet, this might help. Goto the config directory. In contexts.properties, set the following context.global.sessionExpireOnClose=true - Original Message - From: hotmail <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, Decem

Re: Session - Help please

2001-01-03 Thread Gebriel George
use HttpSession.invalidate(); hotmail wrote: > hi All, > another headache frm session thing, > hey in my prgm i m writin some contents in session array using vectors now > when i close the browser and return the site after sometime say 1 minute,in > my page i get all session array back so i want

Re: Session - Help please

2001-01-03 Thread hotmail
hi, but how u do invalidate on browser close event? MJ - Original Message - From: Gebriel George <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 03, 2001 5:00 PM Subject: Re: Session - Help please > use HttpSession.invalidate(); > > hotmail wrote: > > > hi All, > > a

Session - Help please

2001-01-03 Thread hotmail
hi All, another headache frm session thing, hey in my prgm i m writin some contents in session array using vectors now when i close the browser and return the site after sometime say 1 minute,in my page i get all session array back so i want tht when i close the browser it shud erase all the sessi

Re: test

2001-01-03 Thread Sandarbh Sharma
I want details for use of XML with JSP, need reading material as I am new to XML thanks in advance sandarbh _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. =

Open Source implementation for RFC 1867- to upload files using HTTP

2001-01-03 Thread Raja Nagendra Kumar
I am sending this again.. as I had no reply.. Please reply... Hi! Please point me to open source implementation for RFC 1867, which is ment for uploading files to server using HTTP. I want to use jspsmartupload at the server end and applet at the client side, to upload files without the user

Re: How to set resultSet size

2001-01-03 Thread Kemin Yang
May this sql help you(ORACLE database) SELECT transactionid from (SELECT rownum rowseq, transactionid from transaction) WHERE rowseq<=5; - Original Message - From: "Deepak Kumar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 03, 2001 4:23 PM Subject: Re: How to se

Private JVM

2001-01-03 Thread Deepak Kumar
Hi Guru's I want to know how to seup private JVM in iPlanet server. Thanks in advance Regards, Deepak Kumar __ Do You Yahoo!? Yahoo! Photos - Share your holiday photos online! http://photos.yahoo.com/ =

Re: How to set resultSet size

2001-01-03 Thread Deepak Kumar
you can use int i=0; i=rs.getFetchSize(); to count the number of records. Regards Deepak --- "S. Chen" <[EMAIL PROTECTED]> wrote: > Happy New Year to All! > > Hi, I have a JDBC question. > > I have a database and I need to retrive the latest > 100 transactions into my > jsp p