search mailing list

2000-01-25 Thread Jitendra Kothari
Is it possible to search old mailings from this archive? Please email me the instructions on how to do it? Somebody little while ago posted an email showing how I can create jsp-mode for xemacs using multi-mode.el. I lost that email, can someone please email it to me again. I 'll greatly

Re: WebSphere 3.0 can't do jsp:include file=joe.jsp / ???

2000-01-25 Thread ZhangQi
Yes,IBM WebSphere 3.0 does not support JSP 1.0 It only support JSP 0.9 ZhangQi 2000/1/25 - Original Message - From: John G Kroubalkian [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 25, 2000 7:31 AM Subject: WebSphere 3.0 can't do jsp:include file="joe.jsp" / ??? Has

announcement: JSR 052 and JSR 053

2000-01-25 Thread Eduardo Pelegri-Llopart
Two Java Specification Requests have been posted today. JSR-53 Java Servlet 2.3 and JavaServer Pages 1.2 Specifications http://java.sun.com/aboutJava/communityprocess/jsr/jsr_053_jspservlet.html and JSR-52 A Standard Tag Library for JavaServer Pages

Re: search mailing list

2000-01-25 Thread Kim Markegard
Yes, you can search from this location: http://archives.java.sun.com/archives/jsp-interest.html _ Kim Markegard Casino Studios 503.239.4468 www.casinostudios.com On Monday, January 24, 2000 9:32 PM, Jitendra Kothari [SMTP:[EMAIL PROTECTED]] wrote: Is it possible to

Help: servlet tomcat 3.0

2000-01-25 Thread Leon
How can I configure Tomcat 3.0 (on Redhat 6.1+Apache+Sun JDK2 RC2) to load a servlet (a connection pool) when it starts? I check server.xml, tomcat.conf, web.xml but no luck. Thanks in advance, Leon === To unsubscribe:

URL rewriting? (JSP WAP)

2000-01-25 Thread Wang, Dapeng
Hi, I'm trying to use JSP in connection with WAP. Because cookie is not available in WAP, so the only possibility is to use URL reqriting. But I found out that tomcat doesn't support URL reqriting for session management,(correct?), so I have to use jrun, which doesn't support the latest specs. I

Re: diplay of records page by page

2000-01-25 Thread Rajiv Kumar Bandaru
Hi Ashwani, I think better way to declare u'r array or vector as global variable, ie %! String results[][] = null; % after get records and assign to the Array. I hope u will not the data. Hope this may help U Rajiv - Original Message - From: "Ashwani Kalra" [EMAIL PROTECTED] To:

duplicate bean name

2000-01-25 Thread Andreas Hausleitner
Hi JSP Gurus, I tried to use a bean as session variable %@ page import="ObjectSpace.*" % jsp:useBean id="opsData" class="ObjectSpace.OSObjectPortal" scope="session" / how can I avoid that the bean isn't instantiated which gives the following error message thanks, Andreas

JSR-000053 Comment(Standardized and flexible security)

2000-01-25 Thread Daniel Lopez
Hi, As Java developer that has been writing server-side (java and non-java) applications for a couple of years, I'd like to rise again what I think it's a important need. So, following the JSR syntax 2.2 Need of the Java Community that this work addresses Areas: 2.2.1.- Better support

Re: Urgent

2000-01-25 Thread Jari Worsley
Please, please, please read the faq referenced at the bottom of every list message before posting. It really does provide answers, and that's what it's there for "Frequently Asked Questions"... It gives you lots of answers on what jsp is, and how to sue, with references to other good sites.

Re: WebSphere 3.0 can't do jsp:include file=joe.jsp / ???

2000-01-25 Thread Godfrey Peter
Websphere 3.0 supports both JSP1.0 and JSP0.91. However it defaults to JSP 0.91 you need to alter which pagecompile servlet it uses in order to switch to JSP1.0. In order to include one JSP within another use: %@ include file="relative url"%

Re: Need Help

2000-01-25 Thread Karl Roberts
Rao Dadi wrote: Hi All, I am New to JSP Technology. I want to use an Anchor in JSP page. Can you please give me a hint. Satya. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on

Info Required

2000-01-25 Thread Tendolkar Ajit
BDY.RTF WINMAIL.DAT

Re: search mailing list

2000-01-25 Thread Karl Roberts
Hi, If you go to the following URL you will be at a list of the lists on Listserv. one of them is JSP-INTEREST from there you can search the list. (which as you know is generally the best thing to do before asking a question ;-) http://archives.java.sun.com/archives/index.html Karl

Re: urgent: JSP's calling Servlets

2000-01-25 Thread [EMAIL PROTECTED]
I tried this but it says it cannot find the servlet pgm. Where should I place the servlet pgm. I'm using JAVA WEBSERVER? But I'm able to solve the problem .. call servlet with session alive using window.open(""); Thanks, Chary -- From: Sam[SMTP:[EMAIL PROTECTED]] Reply To:

Info required.

2000-01-25 Thread Tendolkar Ajit
BDY.RTF WINMAIL.DAT

Dynamic attributes to custom tags

2000-01-25 Thread Tim Fox
Is there any way, using taglibs to get dynamic attributes passed into the tag code, from my understanding it seems that the attributes get passed as literals. For example: mylib:mytag attribute1="(new Date()).toString()" / In my setter method for attribute1 in my tag code the string "(new

Re: Simple Custom Tag Example Error in Tomcat 3.0

2000-01-25 Thread Tim Fox
I had this problem too - you need to rebuild tomcat using the source and your jdk1.2.2 compiler - it seems it's a mismatch in the class files distributed as part of the binary release. Halpin Matthew wrote: Does anybody get the following error when trying to run the "Simple Custom Tag

Re: WebSphere 3.0 can't do jsp:include file=joe.jsp / ???

2000-01-25 Thread Godfrey Peter
Websphere 3.0 supports both JSP1.0 and JSP0.91. However it defaults to JSP 0.91 you need to alter which pagecompile servlet it uses in order to switch to JSP1.0. In order to include one JSP within another use: %@ include file="relative url"%

NES 4.02 can't do jsp:include file=joe.jsp / AS well

2000-01-25 Thread Vella Dan
I have a copy of Nestcape server 4.02 running jsp's and I faced with the same problem. In addition to have the includes not working, I can not even import in java packages. I can import my own packages however. Any ideas?? Has anyone set up Netscape server successfully?? Dan Vella The Money

Re: Dynamic attributes to custom tags

2000-01-25 Thread Damian Fauth
The following works for me in Tomcat 3.1_m1 mylib:mytag attribute1="%= new Date().toString() %"/ In your taglib.tld be sure to set the rtexprvalue of your tag: tag namemytag/name tagclasspath.to.myClass/tagclass bodycontentempty/bodycontent attribute

Re: jsp debugging

2000-01-25 Thread Hines, Bill
The IBM tools (WebSphere Studio, VisualAge Java) that we use have extensive facilities for debugging JSP and Java servlets, etc. Bill Hines -Original Message- From: Mohan Radhakrishnan [mailto:[EMAIL PROTECTED]] Sent: Monday, January 24, 2000 6:28 PM To: [EMAIL PROTECTED] Subject: jsp

Re: WebSphere 3.0 can't do jsp:include file=joe.jsp / ???

2000-01-25 Thread Hines, Bill
I think you want "jsp:include page=" and not "file=", or something like that. I had problems with this too at first, but got it working fine. We're using IBM WebSphere Studio, App Server, and VisualAge, all 3.x level. Bill Hines -Original Message- From: John G Kroubalkian [mailto:[EMAIL

Re: WebSphere 3.0 can't do jsp:include file=joe.jsp / ???

2000-01-25 Thread Hines, Bill
WRONG! I think this is incorrect. I use WebSphere 3.02 and it has JSP 1.0 as well as .9x. It defaults to .92 so you will have to change that, but I'm using JSP 1.0 in WebSphere App Server and WebSphere Studio, and VisualAge Java in the WebSphere Test Environment. Read the docs! There are

JSWDK and Nokia Wap Server

2000-01-25 Thread Elie Gharios
Title: JSWDK and Nokia Wap Server Dear all I was using the jswdk 1.0.1 with Nokia's Wap server version 1.0 beta 3 version and my application was working properly. When I upgraded to Nokia's Wap Server version 1.0 Full Release the application is not working anymore although I didn't change

Re: Forms with ENCTYPE=multipart/form-data

2000-01-25 Thread Elisabeth Freeman
The problem that I have is that i can process the paramters because the java.util.Enumeration enum=request.getParameterNames(); returns no data. Anybody kowns why? Thank U!! Bye Marc That's because the parameters aren't available from the request using the normal methods. You have to

Re: Forms with ENCTYPE=multipart/form-data

2000-01-25 Thread Marc Vila Pérez
Thank you all! my jsp application runs ok! Bye! Marc Elisabeth Freeman wrote: The problem that I have is that i can process the paramters because the java.util.Enumeration enum=request.getParameterNames(); returns no data. Anybody kowns why? Thank U!! Bye Marc That's because the

How to get rid of the returns

2000-01-25 Thread Gong Anna
Hi, Can someone tell me how to get rid of the new line characters (hard returns) from a textarea input box before inserting the string into the database? I don't know what to look for in the string. Please help!! Thanks. Anna

access to ORACLE from JSP

2000-01-25 Thread Stéphan Benichou
I'm writing an application that read/write data from/into table in ORACLE. As it is my first jsp appli, i would like information (and even some jsp code example ...) on how to access to the bd from jsp pages. Thanks. Stephan. ___ A.I.S Applied Innovative

Re: Dynamic attributes to custom tags

2000-01-25 Thread Veronique Dupierris
This is because your expression is quoted, it should work if you write: mylib:mytag attribute1=(new Date()).toString() / Veronique Tim Fox a écrit : Is there any way, using taglibs to get dynamic attributes passed into the tag code, from my understanding it seems that the attributes get

JSP Engines

2000-01-25 Thread Ryan Kennedy
Hi, Can someone point me to resources that can help me decide which JSP engine/web server combo is the best to use for a large scale deployment? If you have opinions, I would love to hear them. The things I need to take into account are: 1. I need JSP 1.0 support at least, JSP 1.1

(Network Error. Connection reset by peer)

2000-01-25 Thread Reed Harms
Hello, I'm getting the following message when my jsp does a POST to another jsp. Does anyone know what I can do to resolve this? If a use HTTP POST, I don't get this message. I'm using Netscape Navigator 4.08 on Windows 95 and Java Web Server 2.0. Thanks, Reed Message: A network error

Re: jsp debugging

2000-01-25 Thread Bail . Jeff
I debug my JSPs using an IDE called Kawa www.tek-tools.com/kawa What are the different methods that you are using to debug JSP pages ? === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff

Re: Dynamic attributes to custom tags

2000-01-25 Thread Dave Peckham
Use this syntax in your JSP: yourlib:yourtag name="%= (new Date()).toString() %" / then use rtexprvalue in your taglib attribute definition, like so: attributenamename/namertexprvaluetrue/rtexprvalue/attribute Dave - Original Message - From: Tim Fox [EMAIL PROTECTED] To:

Re: WebSphere 3.0 can't do jsp:include file=joe.jsp / ???

2000-01-25 Thread Rao Dadi
Hi, Can anyobe Tellme What are the methods supported by the Request, Response and Out in JSP. Thanks in Advance. Satya -Original Message- From: Hines, Bill [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, January 25, 2000 7:06 AM To: [EMAIL PROTECTED] Subject: Re: WebSphere 3.0

Re: diplay of records page by page

2000-01-25 Thread P'Simer, Dana
Unless you are planning to have only one user executing queries at a time I would suggest that you use a session variable to hold the data not a 'global' ( actually variables declared in the %! % declaration sections have class scope ). Like this: % String results[][] =

Looking for eCommerce App written in JSP

2000-01-25 Thread Jeff Douglas
If anyone knows of a company that provides any type of ecommerce/shopping cart application out of the box written in JSP, please contact me off list. Thanx Jeff Douglas === To unsubscribe: mailto [EMAIL PROTECTED] with

Re: URL rewriting? (JSP WAP)

2000-01-25 Thread Hans Bergsten
"Wang, Dapeng" wrote: Hi, I'm trying to use JSP in connection with WAP. Because cookie is not available in WAP, so the only possibility is to use URL reqriting. But I found out that tomcat doesn't support URL reqriting for session management,(correct?), so I have to use jrun, which doesn't

Re: Japanese Text

2000-01-25 Thread Marco Gonzalez
Thank you. That does works. It turns out the software I was using is a little old, and had trouble translating. A newer version worked properly. -Marco -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Tom Reilly Sent: Tuesday, January 25, 2000

Re: access to ORACLE from JSP

2000-01-25 Thread yves.huguenin
Get JDevelopper and use the wizard to get example... -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Stéphan Benichou Sent: Tuesday, January 25, 2000 2:37 PM To: [EMAIL PROTECTED] Subject: access to ORACLE

Re: jsp debugging

2000-01-25 Thread Bail . Jeff
how do you use it? http://penguin.tek-tools.com/kawa/docs/tutorial7.htm === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on JSP can be found at:

Re: JSP Engines

2000-01-25 Thread Matt Butler
Hey Ryan! I've been using IBM WebSphere 2.02. We are upgrading to 3.0 which will have JSP 1.0 support. What is has your looking for: 1. It is a plug in to almost an HTTP Server. We currently have it using Domino Go, Apache and Microsoft IIS. 2. It is really stable 3. NT 4.

URGENT: *W*e*b*S*p*h*e*r*e jsp include issues??

2000-01-25 Thread John G Kroubalkian
Sorry about the cryptic subject, but I have posted several times and it seems to be getting filtered by the list server. This is not a flame, I need some developer feedback. My development team has the 3.0 version of WS (see subject) When we attempt to do any kind of jsp:include file="..." /

Re: WebSphere 3.0 can't do jsp:include file=joe.jsp / ???

2000-01-25 Thread John G Kroubalkian
Do you remember what you did to resolve the problem? We are using WebSphere Studio, WebSphere App Server, etc. We are having these difficulties with: jsp:include page="next.jsp" / where "next.jsp" is a relative url to another .jsp. Many Thanks, John

setProperty

2000-01-25 Thread Paul Beer
could someone please post the code to use a request variable in a jsp setProperty tag ? thanks, paul === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on JSP can be found at:

Re: How to get rid of the returns

2000-01-25 Thread arthur alexander
Hi Anna; Depends if you are on a DOS (Windows) or Unix (Linux) type of machine, but both are similar. On both systems the character signaling the end of line is non-visible ( ASCII Value 10 in Decimal, '0A' in HEX ). Dos and Windows systems add an extra character, called the Cariage-Return /

Re: access to ORACLE from JSP

2000-01-25 Thread Corbett, Randy
I, too, am interested in this subject. Can SQLJ be used from JSP pages? Or is calling a bean that uses JDBC the only answer? (The FAQ does not appear to answer this...) -- From: Stiphan Benichou[SMTP:[EMAIL PROTECTED]] Reply To: Stiphan Benichou Sent: Tuesday,

New article: The Problems with JSP

2000-01-25 Thread Jason Hunter
Hello everyone, I just posted a new article to Servlets.com titled "The Problems with JSP" that will be of particular interest to the people on this list. From the first paragraph: By now almost everyone using servlets has heard about JavaServer Pages (JSP), a Sun-invented technology built

Re: setProperty

2000-01-25 Thread Brian Schaefer
jsp:useBean id = "first" scope = "session" class = "testbean.LinkBean" /jsp:useBean jsp:setProperty name = "first" property = "AuthorityName" / The code in the Bean is the standard set** and get***. -Original Message- From: Paul Beer [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

Re: FYI: iWS/NES4.1 for Linux

2000-01-25 Thread Paolo Sommaruga
Hi, I have installed iWS 4.1 on linux. I have tried one application with uses some custom tags, with Server Error. The same application runs fine with tomcat 3.0/3.1 I have build the three structure in iWS (as reported in Servlet 2.2 specification) like /index.html /jsome.jsp

Re: setProperty

2000-01-25 Thread Beer Paul
i know about set/get but I want to do the following : jsp:setProperty name = "first" property = "AuthorityName" value="request.something" / but i get errors - Original Message - From: Brian Schaefer [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, January

Re: URGENT: *W*e*b*S*p*h*e*r*e jsp include issues??

2000-01-25 Thread ICHTUS
Is your WebSphere installed to use jsp 0.92? In WebSphere Studio see: Edit-Properties-Advanced and set JSP Version, Server Version and classes version to 3.0. I think the server is ready to work. _ Vinicios Torres

How to code a button?

2000-01-25 Thread Kevin Yeung
Hi, all, How do I write code for a button that does its own things before passing data to a servlet? For example, I have input type=button and this button checks to see the date field has the correct format before submitting it to the server. Do I use javascript? Or do I use Java? What do I put

Re: WebSphere 3.0 can't do jsp:include page=joe.jsp / ???

2000-01-25 Thread John G Kroubalkian
Bill, I checked with our on-site IBM rep (he also can't figure this one out), who set up the WebSphere environment, and he claims that our WebSphere server has been adjusted to do JSP 1.0 (vs .92) Can you use the jsp:include page="joe.jsp" / form of include? Have you tried it? Can you use the

Re: New article: The Problems with JSP

2000-01-25 Thread Duffey Kevin
Hi Jason, Well, I dont much agree with your article, at least in the way of a template engine being a better alternative to JSP. I can see how in some cases it may make sense for those either too lazy or too unwiling to understand the JSP syntax. To me, a template engines syntax means learning a

Re: New article: The Problems with JSP

2000-01-25 Thread David Wall
I just posted a new article to Servlets.com titled "The Problems with JSP" that will be of particular interest to the people on this list. From the first paragraph: I can't believe there's no comment on this (yet)! As usual, you have a lot of good thoughts there, but it's definitely riskly

Re: forward

2000-01-25 Thread Craig R. McClanahan
"P'Simer, Dana" wrote: Does content that has already been written to the out stream affect forwards? For example the following JSP: As long as the response has not been "committed" yet (in other words, you have not written more bytes than the size of the page buffer you have declared), you