Online syntax card

1999-09-08 Thread DAVE TOWNSEND
There used to be an online syntax card on the jsp site. I can't seem to find it anymore, can anyone point me in the right direction? Dave === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST"

Re: Online syntax card

1999-09-08 Thread Daniel Lopez
How about that? http://java.sun.com/products/jsp/tags/tags.html Dan --- Daniel Lopez Janariz ([EMAIL PROTECTED]) Web Services Computer Center Balearic Islands University --- DAVE TOWNSEND wrote: > > There use

Re: WebSphere 3.0 Release Date

1999-09-08 Thread Colin Wilson-Salt
We're talking about the App Server, right - not WebSphere Studio? Where can we get the beta? I can't find it anywhere on IBM's site. "Esposito, Francis (Exchange)" wrote: > WebSphere 3.0 beta supports JSP 1.0 and Servlet API 2.1. > > > -Original Message- > > From: Hai-Bang Pham [SMTP:[EM

A quick question about

1999-09-08 Thread DAVE TOWNSEND
Just out of interest, why did sun choose not to allow URL's in the spec of the tag? You can only specify a pathname, so restricting this to your own server. Dave === To unsubscribe: mailto [EMAIL PROTECTED] with bod

Jsp sintax

1999-09-08 Thread Sergio Queijo Diaz
Hello:     I'm an Spanish developer, and now I'm working with JSPs. I have downloaded the JSWDK 1.0, and the Sintax Card, from the Sun Web Page. I saw that, to call a Bean, I use the tag, while in all web pages that talk abaut JSP uses the tab. Can I use the tag? What is the diference?  

Re: cannot create bean error

1999-09-08 Thread Carsten Heyl
>Hi , Ho! >I am using jswdk1.0. I am trying a simple database connection inside the >jsp. >Please help! Did you make sure that the class files your using can be found by the server? Check the CLASSPATH ! Instead of instantiating a bean you may try for testing: 1. to import your class

Re: Jsp sintax

1999-09-08 Thread Carsten Heyl
>This is a multi-part message in MIME format. > >--=_NextPart_000_006F_01BEFA05.2B1C7BA0 >Content-Type: text/plain; >charset="iso-8859-1" >Content-Transfer-Encoding: quoted-printable > >Hello: >I'm an Spanish developer, and now I'm working with JSPs. I have = >downloaded the JSWDK

Cookies For Session Management, Is It JRun?

1999-09-08 Thread Ball, Stephen
Hello All, I don't know if this has already been discussed, but I am constantly running into a "situation". I am maintaining a base url throughout my session. (hostname.domainname.com:8000) I rely on this url for all types of navigation. On occasion, myself or another user will use an

Re: Cookies For Session Management, Is It JRun?

1999-09-08 Thread DAVE TOWNSEND
From what I understand of how cookies work, they are specified for a particular site. I would assume that a browser would see hostname.domainname.com:8000 and hostname.domainname.com as being two separate sites, and so cookies it recieves from one will not be sent to the other. Whatever, I

Re: Cookies For Session Management, Is It JRun?

1999-09-08 Thread Lance Lavandowska
As I understand it, this is part of the "spec" for cookies. When they are set, there is a "domain" portion, that if not specified defaults to the root of the http request. So, by calling the page by different addresses you will get a seperate cookie for each one, unless you specifically set the

Re: Cookies For Session Management, Is It JRun?

1999-09-08 Thread Christopher BROWN
It is a browser issue. You'll need to look at the URL that was used to invoke the page (best done on the start page to access your site, if there is one), and if it's not the standard preferred one, then re-direct the browser to the standard URL. This implies that the browser will call the same

Re: WebSphere 3.0 Release Date

1999-09-08 Thread Esposito, Francis (Exchange)
Yes..The Appserver. We are part of the beta program, so we actually got the download information from IBM. You probably need to speak to someone at IBM to get your hands on it as the download site is secured. > -Original Message- > From: Colin Wilson-Salt [SMTP:[EMAIL PROTECTED]] > Sent

Re: WebSphere 3.0 Release Date

1999-09-08 Thread Esposito, Francis (Exchange)
Correction... It looks like you might be able to register online at http://www.software.ibm.com/webservers/appserv/v3beta/ > -Original Message- > From: Esposito, Francis (Exchange) [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, September 08, 1999 9:30 AM > To: [EMAIL PROTECTED] > Subject:

Using a specific bean instance in request scope

1999-09-08 Thread Ola Sandström (QDT)
Is it possible to change a bean reference after the tag? i.e. ... ... <% request.setAttribute("account", account = myBeanGetterMethod()); %> ... The last tag does not seem to affect the instance referenced by account, but the instance operating on when later using I am using JRun 2.

Does anyone have a working servlet, able to debug, in Visual Cafe Pro Edition 3.0c?

1999-09-08 Thread Helton Richard
If so, please send me the steps of getting it working. Thanks, Rich H. <[EMAIL PROTECTED]> EAI Rhythms App Arch. ext 2913 === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on JSP can be fo

General Security Error

1999-09-08 Thread Chandrasekhar Naidu
Hi,   I am working on "Java On AS/400".  If you know "Java on AS/400" then only read this mail, otherwise ignore it.   I am getting an error   "General Security Error" while connecting to database.  I have installed the product in atleast 20 client places.  I am getting the error for one

Q: How to embed JSP into an SHTML?

1999-09-08 Thread Nitin Patil
Hi,   We are using SHTML and JSPs for our web-site. Has anybody tried embedding/invoking a JSP into an SHTML?   Regards, - Nitin

JSWDK question

1999-09-08 Thread Nelson, Laird
Could someone please tell me what the difference between a Service and a WebApplication is? Both have docbases, which is confusing me. A docbase says to me that that's where the HTTP daemon goes on the file system to find something when a URL of a particular type is sent. So I understand that a

Re: JSWDK question

1999-09-08 Thread James Todd
hi laird - the service has an internal mapping of "/" effectively is the default web application that will handle the inbound request should none of the peer web appliations mappings intervene. a service is also bound to a host/port tuple where as

How to set target attribute when redirecting to another JSP

1999-09-08 Thread Ronak Shah
I want to know if there is a way to set HTML "TARGET" attribute (want to set TARGET="_top") when I redirect to another JSP page. I understand that this mechanism is not a standard UI practice. This is needed when a user logs in and enters a framed version of HTML UI. A session is created as part

Re: How to set target attribute when redirecting to another JSP

1999-09-08 Thread Taylor Gautier
Return a page with Javascript in it to do it for you. -tg - Original Message - From: Ronak Shah <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 08, 1999 3:03 PM Subject: How to set target attribute when redirecting to another JSP > I want to know if there is a way

Re: How to set target attribute when redirecting to another JSP

1999-09-08 Thread Kirkdorffer, Daniel
Ronak, This is a very common problem. Unfortunately, once you've sent your request to the server with your intended target you're stuck with it. There are a few solutions. You could display a special "you have timed out page" in the target frame, but if the frame is too small or otherwise not

JRUN JSP Program Error

1999-09-08 Thread ssuriyaarachchi
Hi When I try to small program with <%@ method = "doPost" %> variable it gives following error. 500 Internal Server Error com.livesoftware.jsp.JSPServlet: javax.servlet.ServletException: JSP Parse error /myjsp/MyJsp2.jsp:Lexical error at line 1, column 5. Encountered: "m" (109), after : "" Ho

End of JHTML?

1999-09-08 Thread Jon Wilmoth
My first experience with JSP's actually came under the earlier JHTML during a project using (then Weblogic's) Tengah.  Almost one year later, I'm on another project with a very similar architecture as the first jhtml engagement.  As we'rI'm curious

End of JHTML?

1999-09-08 Thread Jon Wilmoth
My first experience with JSP's actually came under the earlier JHTML during a project using (then Weblogic's) Tengah.  Almost one year later, I'm on another project with a very similar architecture as the first jhtml engagement.  As we're leaning toward Bea's Weblogic server on th

Book rating

1999-09-08 Thread Jeff Rodenburg
Does anyone have an opinion on the following books: Java Server Programming, Wrox Press Server-based Java Programming, Manning Pub. __ Do You Yahoo!? Bid and sell for free at http://auctions.yahoo.com ==

Re: Book rating

1999-09-08 Thread Ted Neward
Jeff, while I can't speak to the Wrox Press book, I can say that you're not going to get much opinion on the Manning book, because it's not out yet; I know this, because I'm the author of it. :) Seriously, Server-Side Java (the actual title, though the website hasn't been appropriately updated) i