Re: problem with passing value througn query string

2000-04-24 Thread pranav kumar
Hello Nathan, Thanks for your valuable help Pranav - Original Message - From: Nathan Hoover <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 25, 2000 2:31 AM Subject: Re: problem with passing value througn query string > just use getParameter instead

Re: problem with passing value througn query string

2000-04-24 Thread pranav kumar
Hello Hans, Thanks for your Suggestion. It was very help for me. Pranav - Original Message - From: Hans Bergsten <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 25, 2000 12:17 AM Subject: Re: problem with passing value througn query string > pranav kum

Re: JRUN does not accept <%!?

2000-04-24 Thread Abhishek sharan
Hi > Sangita Gupta wrote: > > > Hi All, > > > > JRUN does not seem to understand <%! String ABC %> declaration for a > > variable. i guess you need to put a semi-colon at the end of it ie <%! String ABC="hello" ; %> bye Abhishek > What is the alternative? JSWDK seems to take it well. Any help

Re: JRUN does not accept <%!?

2000-04-24 Thread piyush raj jain
hi .. what is the error piyu Sangita Gupta wrote: > Hi All, > > JRUN does not seem to understand <%! String ABC %> declaration for a > variable. What is the alternative? JSWDK seems to take it well. Any help > will eb greatly appreciated. > > Thanks in adv. > Sangita > >

Re: <%@ include file ="filename" %> problem

2000-04-24 Thread piyush raj jain
hi . i guess your tag is after the <%@ include...>directive first instantiate the bean then include the page i hope the bean with the same name would be visible regds piyu Liza J Alenchery wrote: > Hi > > I have a jsp file(file1.jsp) which has a <%@ include file ="file2.jsp" %> > in it. I am

Looking for a Generic [Insert, Delete, Update database table] Component

2000-04-24 Thread Carlos Augusto Leite Netto
Hi folks: I'm looking for some stuff that allows me to easely insert, delete, update and query database tables. I'm thinking on a class that can read all columns of a table, get cosmetic informations from an XML file (like masks, labels, validations) and dynamicaly displays a HTML form (created

Re: jsp:getProperty+correction to pre

2000-04-24 Thread piyush raj jain
oh !!! sorry naik i didn't read your entry properly you may use <%!String meStr; %> <% meStr=me.getName(); %> as <%=me.getName()> and will be translated by jspengine in servlet as out.println(me.getName()); regds piyu Ishwar Naik wrote: > can someone help me, > how to get the value return

Re: Thin beans in model 2 - revisited

2000-04-24 Thread Albert Wong
1. One design to minimize code changes on the web tier (servlet/jsp) caused by changes in component models (eg. moving from regular java beans with business logic to EJB or Corba)is to have the web tier use a facade. The facade could be an interface which defines all business methods needed by th

Re: Thin beans in model 2 - revisited

2000-04-24 Thread Andrew S Tomlinson
Kevin, I'm following the same train of thought with perhaps the following adjustments. Stateless session EJB = business process i.e. the performance of a coordinated sequence of "atomic" operations performed to accomplish a coherent goal. Typically this would involve the instantiation/use of enti

Re: Resin class reload

2000-04-24 Thread Scott Ferguson
Cheong Takhoe wrote: > I'm testing Resin out and I heard that it could automatically reload > the classes without the need to restart the server. Resin-specific questions should either go to the Resin interest list (you can subscribe to [EMAIL PROTECTED]), or send the question to [EMAIL PROTECTE

Re: DB connection problem with NES/Jrun

2000-04-24 Thread Narendra Acharya
Hi Visakh, U need to set the class path in the JRUN. Let me know if u need more info. Luv narendra -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]] On Behalf Of Visakh Menon Sent: Tuesday, April 25, 2000 1

Re: Another even more trivial model 2 question

2000-04-24 Thread Craig R. McClanahan
Kevin Duffey wrote: > > Thanks Craig. That did inform me more than I had hoped! ;) > > When you get time...do you use getServletPath() or getRequestURI() to get > your action from a form action=""? As I stated in my example, I use getServletPath() and strip off the extension. > In either case,

Re: New JSP books

2000-04-24 Thread Duane Fields
You can get the electronic copy online, visit http://www.manning.com/Fields for details Duane Fields [EMAIL PROTECTED] === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP

Resin class reload

2000-04-24 Thread Cheong Takhoe
Hi, I'm testing Resin out and I heard that it could automatically reload the classes without the need to restart the server. My development approach is that I develop the classes on my desktop before I port over the compiled classes to the server. Is this still possible with Resin because I've

Re: Another even more trivial model 2 question

2000-04-24 Thread Craig R. McClanahan
Kevin Duffey wrote: > Hey Craig, > > Do you happen to know when you put the mapping in web.xml does it mean you > MUST have a file with the exentions .do in the file system for that to work? > > I would think not..but I recall someone saying that it does require a file > to be in the file system

Re: Another even more trivial model 2 question

2000-04-24 Thread Kevin Duffey
Hi, >Not at all. > >The mappings you list in web.xml are attempted in the order >defined in the servlet >api spec, section 10.1 -- basically, that means trying things in >the following >order. In all cases, the string being tested is that portion of >the request URI >that follows the context pat

Re: .jar vs .zip

2000-04-24 Thread Kevin Duffey
I don't know about performance, but because Java is supported on so many platforms, I would think JAR is the way to go over ZIP. Not everyone has a zip utility, but everyone can unjar a jar file. I do believe when deploying a file as .jar, you don't use compression though. ==

Re: Thin beans in model 2 - revisited

2000-04-24 Thread Kevin Duffey
Hi, I posted a question on this a week or two ago and don't recall seeing a response. My email was down for 3 days so maybe some came across..so I apologize if this is a repeat. I went to a seminar on JSP/JavaBean/EJB use not too long ago, and from my understanding, on the EJB side of things

Re: Servlets/JSP on Mac-Server?

2000-04-24 Thread Neeraj Dad
you can check the website www.caucho.com and check their product Resin1.1 although i didn't tried it on Mac. but I was told that it works in Mac. Neeraj -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Phili

Re: Another even more trivial model 2 question

2000-04-24 Thread Kevin Duffey
Hey Craig, Do you happen to know when you put the mapping in web.xml does it mean you MUST have a file with the exentions .do in the file system for that to work? I would think not..but I recall someone saying that it does require a file to be in the file system with a name like Login.do for the

Re: Another even more trivial model 2 question

2000-04-24 Thread Albert Wong
Another way to retreive the action is to include the action as a part of the http request via the virtual path: eg. http://server:port/servlet/ServletName/theAction?queryString Then in the servlet do the following: String actionRequest = req.getPathInfo(); // retreives the action "/theAction"

Re: Another even more trivial model 2 question

2000-04-24 Thread Craig R. McClanahan
"Bailey, Jeff A" wrote: > Well, I actually got the controller -> Action class model working > appropriately (Thanks to all those who answered all these trivial questions > of mine). . . .but I have another question. > > What sort of methods are others out there using to obtain a "match part" > fr

Re: Servlets/JSP on Mac-Server?

2000-04-24 Thread Neeraj Dad
for mac you can use Resin. go to website www.caucho.com -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Jens Laufer Sent: Saturday, April 22, 2000 5:42 PM To: [EMAIL PROTECTED] Subject: Servlets/JSP on Mac-

Re: Another even more trivial model 2 question

2000-04-24 Thread Kevin Duffey
Hi, My form call looks like so: and my controller servlet code rips it like so: String actionName = equest.getRequestURI().substring( request.getRequestURI.lastIndexOf("/") + 1, request.getRequestURI().lastIndexOf(".") ); If the page the form is on is saved in /path/outside/page.jsp, then t

Another even more trivial model 2 question

2000-04-24 Thread Bailey, Jeff A
Well, I actually got the controller -> Action class model working appropriately (Thanks to all those who answered all these trivial questions of mine). . . .but I have another question. What sort of methods are others out there using to obtain a "match part" from the requestURI? I am ripping the

Re: .jar vs .zip

2000-04-24 Thread Wes Biggs
Performance-wise, no. JAR is a specialized version of ZIP (it defines the manifest), but both use the same compression algorithm. Wes On Mon, 24 Apr 2000, Chris Ernenwein wrote: > Is there any difference in performance of deploying classes in a jar or a > zip format? > > thanks, > Chris E > >

Asynchonous JSP?

2000-04-24 Thread Lutt Poc
Is it possible to write asynchronously to the client (browser) in JSP? Having just come the Microsoft world, I found out that this is not possible in ASP, but is possible using ISAPI. Thank you. IMPORTANT NOTICE: If you are not using HushMail, this message could have been read easily by the m

Re: question about sessions

2000-04-24 Thread Dave Ferguson
Since all request are coming from the same browser instance (even if different windows), there is only one session as far as the servlet knows. There's no way around that. Of course, using two different browsers would keep the sessions distinct (i.e., user opens IE, then opens Netscape). The

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. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Peter Choe Sent: Monday, A

Newbie at jswdk 1.0.1 : Getting strange behaviour

2000-04-24 Thread AVATAR SINGH
Hi All I am trying this out and getting a strange behaviour. When I press submit to a adduser.jsp page with a post action from an html input page I get a message HTTP method POST is not supported by this URL and when I change it to a 'get' it just shows me the html/java coded text of the .jsp page

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

2000-04-24 Thread Howard Lee
Thanks everyone! -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Nathan Hoover Sent: Monday, April 24, 2000 2:02 PM To: [EMAIL PROTECTED] Subject: Re: [JSP-INTEREST] how to have two submit buttons calling d

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

2000-04-24 Thread Jesse Clark
You can have two form image fields in one form though. When clicked they will both use whatever you designate as the action of the field, but you can access parameters of the form x.imagename y.imagename that correspond to the x & y values of the point the image was clicked on. So in whatever obje

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, A

Re: DB connection problem with NES/Jrun

2000-04-24 Thread Visakh Menon
I'm using NT. I've set class path the driver in my NT setting. Do I have to do it again in NES or Jrun ? If so where do I do it ? >From: "Cogley, Jonathan" <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTE

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

2000-04-24 Thread Jaffa, Dan
function tabcheck(j) { switch (j) { case "1": addmodify.action = "addmodifytab1.jsp" addmodify.submit() break; case "2": addmodify.action = "addmodifytab2.jsp" addmodify.submit() break; case "3": addmodify.action = "addmodifytab3.jsp"

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

2000-04-24 Thread Bala Suresh
Sorry, since u want to have two different jsps invoked, call javascript functions (inside which u can change the submission target) from the onClick event. Eg. function submitform1( frm ) { frm.action= jspName; frm.submit(); } B. Suresh -Original Message- From: Howard Lee [mailto:[

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

2000-04-24 Thread Bala Suresh
Hi, U can use javascript to do this. Hope this helps, B. Suresh -Original Message- From: Howard Lee [mailto:[EMAIL PROTECTED]] Sent: Monday, April 24, 2000 2:37 PM To: [EMAIL PROTECTED] Subject: how to have two submit buttons calling different JSP's Hi, I know this is more of an

.jar vs .zip

2000-04-24 Thread Chris Ernenwein
Is there any difference in performance of deploying classes in a jar or a zip format? thanks, Chris E === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be

Re: Thin beans in model 2 - revisited

2000-04-24 Thread Craig R. McClanahan
"Shun, Vadim" wrote: > [snip] > Another approach is to leave business logic in Command/Action class and let > the bean be just a placeholder for information (text, numerical, date) to > pass to JSP and back. An advantage of this approach is that apparently that > passing "lean" bean deprived of

Re: Session expiry detection

2000-04-24 Thread Craig R. McClanahan
Bala Suresh wrote: > Hi, > > Is there a graceful way of checking whether a HttpSession has expired or > not? > > In this context, I would like to let u know what I am doing right now. > > I have a bean that stores the session information in a hashtable. I create > the hashtable in the bean by in

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

2000-04-24 Thread Peter Choe
as far as i know you can only have one submit button per form. but you can have more than on form per page. so, i would say make different forms on the page. peter choe Howard Lee wrote: > Hi, > > I know this is more of an HTML question than JSP's but since many people on > here are web gurus

Re: DB connection problem with NES/Jrun

2000-04-24 Thread Cogley, Jonathan
Visakh, The user that you have the web server running as probably does not have the CLASSPATH set correctly else it would be able to find the jdbc drivers. Regards, Jonathan BTW - You didn't mention what platform you are on (NT/Unix?) ... -Original Message- From: Visakh Menon [mailto:

Session expiry detection

2000-04-24 Thread Bala Suresh
Hi, Is there a graceful way of checking whether a HttpSession has expired or not? In this context, I would like to let u know what I am doing right now. I have a bean that stores the session information in a hashtable. I create the hashtable in the bean by invoking its initialize method in my

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

2000-04-24 Thread Rebecca Coleman
You can't have two submit buttons calling two different URLs in the same form. However, you can have two submit buttons with different VALUES that you can read in your JSP and do something based on the VALUE of the submit button. -Original Message- From: Howard Lee [mailto:[EMAIL PROTECT

subscribe

2000-04-24 Thread Teddy Oswari
Teddy Oswari Lead Engineer ECOlogic Corporation http://www.ecologic.net mailto: [EMAIL PROTECTED] phone: (202) 218-4100 fax: (202) 842-5088 19 Eye Street, N.W. Washington, DC 20001 Object-Relational Engineering === To

how to have two submit buttons calling different JSP's

2000-04-24 Thread Howard Lee
Hi, I know this is more of an HTML question than JSP's but since many people on here are web gurus, I thought I asked here. How would you have two submit buttons to have two different URLs? I have two buttons, and each calling different JSP's. Because I can only have one action in , I couldn't s

Re: Learn JSP

2000-04-24 Thread Soon Hong
what a helpful answer. good thing you took the time to write that. jsp is java so you cannot really learn jsp without learning the fundamentals of java. --- "Krishna, Suresh" <[EMAIL PROTECTED]> wrote: > hi, > Having knowlege will be helpful > > > > -Original Message- > > From: Paurnima

Re: how to get a error page

2000-04-24 Thread Hans Bergsten
Amanda Fu wrote: > > hi, you guys, > > I don't know how to get error page, codes as follow, but server always > tell me "you might want to have an error page ...". > myjsp.jsp: > <%@ page import="java.util.*" errorPage="error.jsp" %> > error.jsp: > <%@ page isErrorPage="true" import="java.util.*"

Re: include directive.

2000-04-24 Thread Hans Bergsten
"Khurram Mahmood (Outlook&Lotus Notes)" wrote: > > Hi, > > I have been trying to use the include directive to include files dynamically > i.e. without hard-coding the path of the file. > > I have tried: > > <% String myFile = request.getParameter("strFileName"); %> > > <%@ include file="<%=myFile%

Re: How to configure Java Web Server for Java Server Pages

2000-04-24 Thread Patrick Deloulay
Sorry for the post. It does support Servlet 2.1 specs as well as JSP 1.0 Overview with Key Technology support can be found at http://www.sun.com/software/jwebserver/overview/index.html Patrick Deloulay - [EMAIL PROTECTED] 650-966-1200 x.310 650-966-1450 (Fax) Claria Corporation - www.claria.com

Re: problem with passing value througn query string

2000-04-24 Thread Hans Bergsten
pranav kumar wrote: > > Hello Everybody, >My problem is about the value passing through the > querystring method. > For Ex. > click on the following links > 1. Very Good > 2. Very Bad > 3. Ver

Thin beans in model 2 - revisited

2000-04-24 Thread Shun, Vadim
Hi, I would like to ask conceptually a question of how 'fat' JavaBeans can be in model 2. Guided purely by object-oriented principles, I would probably keep Action/Command classes in a role of a Factory class, i.e. instantiate bean, initialize it and return to the caller (JSP). Let the bean keep

Re: problem with passing value througn query string

2000-04-24 Thread Bradley McLain
String param = (String) request.getParameter("paramName"); bradley mclain >From: pranav kumar <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: problem with passing value througn query str

Re: How to configure Java Web Server for Java Server Pages

2000-04-24 Thread K Ramesh
JWS supports JSP very well. It support both JSP0.92 and JSP1.0 Patrick Deloulay <[EMAIL PROTECTED]> on 04/24/2000 22:54:20 Please respond to A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc:(bcc: K Ramesh/Chennai/HCL

Re: XML (& problem)

2000-04-24 Thread Mike McKechnie
On Monday, April 24, 2000 12:34 PM, Jo-Ann Fletcher - Axys [SMTP:[EMAIL PROTECTED]] wrote: >   I use <[CDATA[&]]>nbsp; because the HTML output method doesn't always change & to & when outputting. Ugly, but functional. I suppose one could declare the whole thing as an entity and use the

Re: How to configure Java Web Server for Java Server Pages

2000-04-24 Thread Patrick Deloulay
Sorry, but JWS (2.0) does not support JSP. Patrick Deloulay - [EMAIL PROTECTED] Claria Corporation - www.claria.com We Build Teams That Build Companies - Original Message - From: "Mehul Patel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 21, 2000 10:26 PM Subject: How t

Re: JRUN does not accept <%!?

2000-04-24 Thread Shannon Moschetti
Its not JRun that has a problem with the tag. It might be that you're using JSP .92 with JRun. In this case your tag won't work, and you'll need to use... String ABC; -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]

Re: XML (& problem)

2000-04-24 Thread Jo-Ann Fletcher - Axys
In order to have the effect of " " that you would normally find in HTML, I had to do the following:   the "&" represents the "&" in HTML. > -Original Message- > From: Jyoti Bongarala [SMTP:[EMAIL PROTECTED]] > Sent: Monday, April 24, 2000 10:48 AM > To: [EMAIL PROTECTED] > Subject

JRUN does not accept <%! ?

2000-04-24 Thread Sangita Gupta
Hi All, JRUN does not seem to understand <%! String ABC %> declaration for a variable. What is the alternative? JSWDK seems to take it well. Any help will be greatly appreciated. Thanks in adv. Sangita === To unsubscribe:

Re: JRUN does not accept <%!?

2000-04-24 Thread K Ramesh
Try this . . . Sangita Gupta <[EMAIL PROTECTED]> on 04/24/2000 21:07:28 Please respond to A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc:(bcc: K Ramesh/Chennai/HCLDELUXE) Subject: JRUN does not accept <%!? H

JRUN does not accept <%!?

2000-04-24 Thread Sangita Gupta
Hi All, JRUN does not seem to understand <%! String ABC %> declaration for a variable. What is the alternative? JSWDK seems to take it well. Any help will eb greatly appreciated. Thanks in adv. Sangita === To unsubscribe: m

DB connection problem with NES/Jrun

2000-04-24 Thread Visakh Menon
Hi folks I'm using NES 3.6 webserver and Jrun 2.3.3 servlet engine. I'm trying to connect to a oracle database in a remote machine using JDBC (using Oracle thin driver). I can connect if I run the program from command prompt. but If I try to run as a servlet I get an error. java.lang.ClassNotFou

Re: Cleaning global resources stored in ServletContext

2000-04-24 Thread Craig R. McClanahan
"Shun, Vadim" wrote: > Thanks Graig and Hans, > > it comes to my mind that if this is the situation, storing global resources > in ServletContext is not a good idea at all under some circumstances. > At least, in case with my database connection broker this is what happens: > > DbBroker is initia

Re: Diff. between HttpSession and

2000-04-24 Thread Gulam . J . Irfani
Howard, Bean is not persistant and its scope depends on the include directive, but the session is persistant and has only one scope ie untill the life of the session. Thanks Howard Lee <[EMAIL PROTECTED]> on 04/24/2000 01:32:15 AM Please respond to A mailing list about Java Server Pa

XML (& problem)

2000-04-24 Thread Jyoti Bongarala
Hi! I am having a problem with &(ampersand). Some of the xml files that I have with '&' get parsed well by IE5, but some of them don't. The error I get is : Whitespace is not allowed at this location. Line 1, Position 164 Can someone help me by telling me why this happens... thanks, Jyoti. _

Re: Error Inserting in Database - Part II

2000-04-24 Thread Jose Castro
I've done it with the following code: try { conn = getCon(); if (conn != null) { String employee_id = request.getParameter("employee_id"); String name = request.getParameter("name"); PreparedStatement pstmt = conn.prepareStatement("INSERT INTO JSP_TESTS VALUES ( ?, ?)"); pstmt.setString(

Re: Diff. between HttpSession and

2000-04-24 Thread Shun, Vadim
Howard, I believe you are correct in your assumption, the XML style directives are often used in JSP to ease shock that HTML designer will have once they see the page. JSP creators thought that making scripting rather familiar to Web designer will ease the coordination between the JSP developer a

Re: Cleaning global resources stored in ServletContext

2000-04-24 Thread Shun, Vadim
Thanks Graig and Hans, it comes to my mind that if this is the situation, storing global resources in ServletContext is not a good idea at all under some circumstances. At least, in case with my database connection broker this is what happens: DbBroker is initialized in servlet init () method an

Re: problem with passing value througn query string

2000-04-24 Thread Rata Mirel
Try java.net.URLDecoder.decode(String value) from JDK 1.2 > Hello Everybody, >My problem is about the value passing through the > querystring method. > For Ex. > click on the following links > 1. Very Good >

Error Inserting in Database - Part II

2000-04-24 Thread Jose Castro
Hi, Thanks to all, for your help about my mail "Error Inserting in Database". Now the error is the following: Is in the code, line 43 really missing something ?!?! Thanks in advance, José Castro E:\weblogic\myserver\classfiles\examples\jsp\_dbtest\_Personal_95_form_95_v4 _95_2.java:100: ')' exp

Re: OFF TOPIC:List server problem

2000-04-24 Thread Jose Castro
And I don't know why I'm sending messages to this mailling lists, and the messages goes to other people that I don't know ... José Castro -Original Message- From: Howard Lee <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Segunda-feira, 24 de Abril de 2000 15:22 Subje

Re: problem with passing value througn query string

2000-04-24 Thread Lee Elenbaas
There is a method that does this conversion for you in the ServletUtil class, but i think i encountered a problem with that. Why not simply pass the data as a parameter . You can do that using a hidden form, setting the parameter and then subbmiting it. This should solve all your problems since ge

Error Inserting in Database - Part II

2000-04-24 Thread Jose Castro
Hi, Thanks all for your help about my mail "Error Inserting in Database". Now the error is the following: Is in the code, line 43 really missing something ?!?! Thanks in advance, José Castro E:\weblogic\myserver\classfiles\examples\jsp\_dbtest\_Personal_95_form_95_v4 _95_2.java:100: ')' expecte

problem with passing value througn query string

2000-04-24 Thread pranav kumar
Hello Everybody, My problem is about the value passing through the querystring method. For Ex. click on the following links 1. Very Good 2. Very Bad 3. Very Nice Now what I want that when user

OFF TOPIC:List server problem

2000-04-24 Thread Howard Lee
Hi, I've noticed that my messages got repeated over and over. I think there's a problem with the list. Could someone please look into this problem? Thanks. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP

Re: jsp:getProperty

2000-04-24 Thread piyush raj jain
why don't you call <%=me.getName()> b'coz will be translated by jspengine in servlet as out.println(me.getName()); regds piyu Ishwar Naik wrote: > can someone help me, > how to get the value returnd from the following "jsp:getProperty" to a > String > > (i dont want to display on the html pag

It's possible that a file that is beeing included, do another include?

2000-04-24 Thread Patricio Otamendi
It's possible that a file that is beeing included, do another include? I have this File one.jsp: . . . <%@ include file="two.jsp"%> . . . File two.jsp: . .

Re: off topic

2000-04-24 Thread piyush raj jain
b'coz v generally use PrintWriter out = res.getWriter(); just see the code below u won't need to import java.io.*; and throws IOException import javax.servlet.*; import javax.servlet.http.*; public class piyu extends HttpServlet { public void doGet(HttpServletRequest req,HttpServletResponse

Jsps-Servlets

2000-04-24 Thread Bilal Ali Nawaz
Hi, i've asked this question in various other forums but haven't received an informative response. can anyone please help me out? I'm using Jswdk1.0.1 to run my Jsps. What i want to do is to call some servlets, developed in VisualAge, from my Jsp. how do i go about doing it? Also, if anyone has ev

jsp:getProperty

2000-04-24 Thread Ishwar Naik
can someone help me, how to get the value returnd from the following "jsp:getProperty" to a String (i dont want to display on the html page) thanks, ishwar === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JS

Re: off topic

2000-04-24 Thread Scott Evans
I believe it is because to read input & write output from the client, servlets use stream classes which inherit from stream classes in the java.io package. Some of the methods of these servlet streams throw IOExceptions themselves. These streams are retrieved by a servlet using request.getInputS

off topic

2000-04-24 Thread Pattabiraman_Meenakshisundaram
Hi, I have a basic doubt and is outside the scope of JSP. Could any one tell me the reason for a servlet throwing IOException. I am forced to include java.io package just for the sake of this exception. Thank you. Regards, pattabi

Re: off topic

2000-04-24 Thread Lee Elenbaas
Servlets communicate with the web server by using streams, and streams require java.io.* lee [EMAIL PROTECTED] -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Pattabiraman_Meenakshisundaram Sent: Monday, Ap

No Subject

2000-04-24 Thread Nguyen Van Tuan
Hi All ! Please help me, How to "plug-ins" tomcat 3.1 to IIS. I have troubles in inserting "isapi_redirect.dll" becoming a "filter" (the arrows not change into greenup but it become a reddown).Please help me, I'm a novice. __ Do You Yahoo!? Send onl

Re: 64K limit

2000-04-24 Thread Osvaldo Pinali Doederlein
From: "Howard Lee" <[EMAIL PROTECTED]> > Hi guys, > I'm using Tomcat, and one of my JSPs got pretty big, and I'm getting this > error message. "Code of a method longer than 65535 bytes" Is there any way > to get around to it? Is there a way to increase this limit? Thanks. This limit is imposed by

Re: how to get a error page

2000-04-24 Thread Arnab Acharya
Use try, catch -- on encountering error, the code will move into catch. > -Original Message- > From: Amanda Fu [SMTP:[EMAIL PROTECTED]] > Sent: Monday, April 24, 2000 9:42 PM > To: [EMAIL PROTECTED] > Subject: how to get a error page > > hi, you guys, > > I don't know how to get er

WEB DATABASES/LISTS - 30% TO 50% OFF - 10 DAYS ONLY--Adv.

2000-04-24 Thread pline9
Good day, We wanted to share with you the latest 30%-50% OFF, 10 DAYS ONLY PRICING SPECIALS on our database of online businesses--a cutting edge business tool for the growing networked marketplace. Our databases include contacts representing millions of online business domains which have sprung

Re: JSP & iPlanet 4.1

2000-04-24 Thread Jon Baer
Dont know if this was answered yet or u figured it out (just reading list now), but try putting the current directory into your CLASSPATH, any external .jar files you use *must* be in your CLASSPATH in order for the server to recognize. /apps/integra/www/ims (java.lang.ClassNotFoundException: S

how to get a error page

2000-04-24 Thread Amanda Fu
hi, you guys, I don't know how to get error page, codes as follow, but server always tell me "you might want to have an error page ...". myjsp.jsp: <%@ page import="java.util.*" errorPage="error.jsp" %> error.jsp: <%@ page isErrorPage="true" import="java.util.*" %> What mistakes have I made or i

Re:

2000-04-24 Thread Arnab Acharya
Sorry but, as the product is getting ready for delivery, it wouldn't be advisable. 'Hope you understand! Arnab > -Original Message- > From: Howard Lee [SMTP:[EMAIL PROTECTED]] > Sent: Monday, April 24, 2000 10:55 AM > To: [EMAIL PROTECTED] > Subject: Re: > > Is it possible for me

Re: New JSP books

2000-04-24 Thread Arnab Acharya
Could any of u tell me where and when (in Calcutta/Delhi/Noida) to get Fields/Kolb in India and its price? > -Original Message- > From: Mark Wilcox [SMTP:[EMAIL PROTECTED]] > Sent: Saturday, April 22, 2000 9:43 PM > To: [EMAIL PROTECTED] > Subject: Re: New JSP books > > Wrox will a

Re: Learn JSP

2000-04-24 Thread Ritu Kamboj
For learning jsp. Surely you don't need to go in details of these things But you should have atleast good idea about java... Rest you can refer some good tutorials available on site for jsp... Paurnima Sabne <[EMAIL PROTECTED]> on 04/24/2000 07:37:34 AM

Re: Learn JSP

2000-04-24 Thread Arnab Acharya
U need: 1. HTML for the presentation purposes. 2.Java -- u simply can't avoid it. In our autoportal project, we used beans. 3.Javascript will be needed for form validations. These are mostly at the client-side, but some have to be done at the server-side also (eg- verification of login). 4.Servlet

Re: 64K limit

2000-04-24 Thread Arnab Acharya
Thanks, I didn't know about this limit and the rest of it! Must have missed one of the intermediate mails. > -Original Message- > From: Howard Lee [SMTP:[EMAIL PROTECTED]] > Sent: Monday, April 24, 2000 11:52 AM > To: [EMAIL PROTECTED] > Subject: Re: 64K limit > > Hi guys, > > I go

Ready For A Career Change??

2000-04-24 Thread marymoore
This Is NOT Multi Level Marketing LOOKING FOR GEMS! It's So Simple To Earn $2,000 - $5,000 Per Week Nowadays... We're searching for only 10 elite individuals with the work ethic necessary to generate a cash-flow for themselves of $2,000 - $5,000 per week, and to increase that to over $20,000 p

Re: Learn JSP

2000-04-24 Thread Krishna, Suresh
hi, Having knowlege will be helpful > -Original Message- > From: Paurnima Sabne [SMTP:[EMAIL PROTECTED]] > Sent: Monday, April 24, 2000 12:08 PM > To: [EMAIL PROTECTED] > Subject: Learn JSP > > Hi all, > For learning JSP Do i need to learn HTML ,Java ,Javascript,Java,java > servle

include directive.

2000-04-24 Thread Khurram Mahmood (Outlook&Lotus Notes)
Hi, I have been trying to use the include directive to include files dynamically i.e. without hard-coding the path of the file. I have tried: <% String myFile = request.getParameter("strFileName"); %> <%@ include file="<%=myFile%>" %> and many different combinations of it but all of them fail

Learn JSP

2000-04-24 Thread Paurnima Sabne
Hi all, For learning JSP Do i need to learn HTML ,Java ,Javascript,Java,java servlets If yes then to what extent? If no then can you suggest any good book for beginner?? Thanks Paurnima === To unsubscribe: mailto [EMAIL