saving url problem in drill down from summary to detailed and back to summary

2001-06-12 Thread Niraj Soni
hi all i have a page year.jsp having summary details in months based on some parameters( * request) in this page 12 months are displayed now all month has a link related details of that specific month which go to month.jsp in month.jsp page daily reports are displayed with related url when go t

Form processing

2001-06-12 Thread Sanjib Biswas
Hi, in my form generated by my JSP page I want to have some validation added on the submit event of a button and on sucessful validation I want to forward it to a servlet. How do I do it? Sanjeev === To unsubscribe: mailto

I met "No suitable driver" problerm in JBuilder 4, how could I do.

2001-06-12 Thread lancelot
Excuse me, I use JBuilder 4, and met the problerm below java.sql.SQLException: No suitable driver at java.sql.DriverManager.getConnection(DriverManager.java:537) at java.sql.DriverManager.getConnection(DriverManager.java:177) at src._0002fsrc_0002ftestDBWithoutBean_0002ejsptestDBWit

Re: Jsp + Beans...

2001-06-12 Thread Kevin Duffey
You'll be happy to know that SUN has just created a JCP to standardize a process that is from what I was told, identical to what your talking about. While it will be some time before its ready, the framework SUN is putting forth will allow tool vendors to all us developers to create SWING applicat

Re: JSP vs Servlets: sample servlet project

2001-06-12 Thread Kevin Duffey
JSP allows you to put mostly HTML (or all HTML if you don't want any java in it), then converts it to a servlet .java code, then compiles it. Thus, you get the same performance as if you did it as a servlet. However, because a servlet engine creates the .java source first, it can optimize the code

Weblogic 6 personalization

2001-06-12 Thread Deepak Raina
Is any body working on weblogic presenalization server? I want to deploy my own personalized application on it but i'm hampered by lack of documentation . Can any body tell my how to deploy our own application on it? thanks ®ards deepak

JSP Help Desk

2001-06-12 Thread John Wilson
Does anyone know of a free JSP Help Desk application? _ Get your FREE download of MSN Explorer at http://explorer.msn.com === To unsubscribe: mailto [EMAIL PROTE

Re: JSP vs Servlets: sample servlet project

2001-06-12 Thread King Maurice
The difference of writing this apps in servlets vs jsp is that jsp allows to use the power of serve pages dynamicly. Jsp are basicly use for presentation layer and servlets, class files, beans are used for business logic. This way you organize your apps. You can create your app using servlets but

Re: JSP vs Servlets: sample servlet project

2001-06-12 Thread Senaka Suriyaarachchi
Dear Angelo I believe JSP solution will be able to quickly develop. In developer point of view we can deliver such a project in short time period comparing this project in servlets. I don't think performance wise there are no issues. But haven't tested. Regards Senaka Suriyaarachchi Team Leader

JSP vs Servlets: sample servlet project

2001-06-12 Thread ANGELO HADJIS
Here is a sample Servlet project. http://www.cantel.ca/michelinehadjis/ The pictures are retieved from an SQL server. The pages are formatted according to entries in a couple of simple tables. What would be the pros and cons of writing this type of application using JSP instead of pure Servlets?

Basic Object Reference Question

2001-06-12 Thread Sushil Singh
Hi, I am having a basic object reference question. Consider the following code snippet: while (rootRs.next()) { categories.addElement(getCategory(rootRs.getString("cat_id"))); } Another code snippet: String catID = ""; while (rootRs.next()) { catID

c = (char) ((x >> 4) & 0xf);

2001-06-12 Thread Sharon Rose Orillaneda
Hi guys! What does this mean? What is 0xf? char c; c = (char) ((x >> 4) & 0xf); -Sharon === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set

Re: Session timeout

2001-06-12 Thread Salian, Santosh (GXS, TCS)
I get following error when I tried this. javax.servlet.ServletException: /clients/iweb/jrun/jsm-default/services/jse/servlets/jsp/pts/ptsNewProj.java :177: Method removeAttribute(java.lang.String) not found in interface javax.servlet.http.HttpSession. Santosh -Original Message- From: hor

Theseus MVC framework available

2001-06-12 Thread Kevin Duffey
Hi JSP enthusiasts, Theseus is a MVC framework some of you may be interested in using. It is very similar to Struts (Craig after all is my mentor!), but in some ways different. While Struts provides a full-featured package, Theseus is very small and not nearly as full of features. Its purpose is

How to save the generated JSP into the server as HTML

2001-06-12 Thread Sivaji Adurthy
Hi Friends, I am trying to save the generated jsp file into the Temp folder of server , it could be stored as any format ( html ect.. ) can any one give any suggestion , any type of hint , code samples etc. are mostly appreciated Thanks in Advance Sivaji ===

Re: Session timeout

2001-06-12 Thread horwat
<% session.removeAttribute("ptsUpdDesign"); %> I would recommend using the handy session tag library freely available from jakarta-taglibs to easily manipulate your session and avoid scriptlets: http://jakarta.apache.org/taglibs/doc/session-doc/ this tag does the same thing as the script

Re: jsp related

2001-06-12 Thread Meraj Beg
In most of the cases, it happens because of html tag. Try to remove position:absolute property from tag. If it doesn't help then try removing tag all together and see the results. Meraj Shawn Zhu <[EMAIL PROTECTED]> on 06/12/2001 04:45:37 PM Hi: anybody knows this question? j/k =) An

Re: Session timeout

2001-06-12 Thread Salian, Santosh (GXS, TCS)
I am using following tags in my JSP file. So how can I release memory occupied by bean id "ptsUpdDesign" ? Regards, Santosh -Original Message- From: horwat [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 12, 2001 3:27 PM To: [EMAIL PROTECTED] Subject: Re: Session timeout You can con

Re: jsp related

2001-06-12 Thread Shawn Zhu
Hi: anybody knows this question? j/k =) Anyway, this what you can do: break the text with tags. > -Original Message- > From: Carol Geng [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 12, 2001 1:18 PM > To: [EMAIL PROTECTED] > Subject: jsp related > > > Hi: > > anybody knows this prob

jsp related

2001-06-12 Thread Carol Geng
Hi: anybody knows this problem? I have a jsp page which some text loaded, but for some reason, the text looks garbled, some text overlayed onto other text. I think it maybe the cache problem from the browser, but it turns out not even we clear the cache memory or put the cache size 0 KBytes. A

Re: JavaMail problem

2001-06-12 Thread Meraj Beg
Set Content Type = "text/html" also use single quotes (') instead of double as follows String abc = "Hello! this is test msg. Click here" Meraj "Warty, Koustubh" <[EMAIL PROTECTED]> on 06/12/2001 03:35:10 PM Hello, I have a problem in using Java Mail thru JSP. I use the sample code

Re: JavaMail problem

2001-06-12 Thread King Maurice
TRY here - Original Message - From: "Warty, Koustubh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 12, 2001 3:35 PM Subject: JavaMail problem > Hello, >I have a problem in using Java Mail thru JSP. I use the sample code that the Sun has in the Java Mail softwar

JavaMail problem

2001-06-12 Thread Warty, Koustubh
Hello, I have a problem in using Java Mail thru JSP. I use the sample code that the Sun has in the Java Mail software. In that the TO, FROM, SUBJECT work fine. Also the Message works fine if I say on the JSP page like String message = "Thanks for placing an Order"; But if I want to pass

Re: Session timeout

2001-06-12 Thread Edward Foley
Santosh, If you are asking how can you remove an attribute from a session, see the removeAttribute(String attrName). The memory will be released the next time the garbage collector is run or you can call System.gc() (if memory serves me correctly). I'm not sure if there is any method like valueU

Re: Session timeout

2001-06-12 Thread horwat
You can control session timeout either in the application's deployment descriptor or call session.setMaxInactiveInterval(). You can call session.removeAttribute() to explicitly free up the bean object stored in the session. You can also use session.invalidate() to invalidate the session and free

Re: Jsp + Beans...

2001-06-12 Thread Shoemaker, Michael (N-MAXIM Group)
Great example David. FYI, I have used JavaBeans quite a bit as data classes for jsp's to render. It is a good separation of the model/view. Mike -> -Original Message- -> From: David Pinnington [mailto:[EMAIL PROTECTED]] -> Sent: Tuesday, June 12, 2001 1:16 PM -> To: [EMAIL PROTECTED] ->

Session timeout

2001-06-12 Thread Salian, Santosh (GXS, TCS)
Hi , Is it possible to explicitely release the memory held by a bean and also to handle Session timeout ? I have JSP running on Jrun 2.3.3. Thanks and Regards, Santosh === To unsubscribe: mailto [EMAIL PROTECTED] with body

Re: explanation please!

2001-06-12 Thread horwat
A "session" scoped bean will be instantated once for the duration of the session. I listed a couple of reasons when a new session would be created and thus a new instance of the bean. You can also define a bean in a "application" scope. The ServletContext would be used to store/retrieve the bean

Re: Tomcat multiple jvm configuration

2001-06-12 Thread horwat
Check out the virtual hosting section of the Tomcat-Apache How To: http://jakarta.apache.org/tomcat/tomcat-3.2-doc/tomcat-apache-howto.html#vir tual_hosting Justy - Original Message - > Hi, > > I have configured apache+tomcat on linux 6.0 > > Now i want to configure private jvm for eac

Re: Jsp + Beans...

2001-06-12 Thread David Pinnington
yes that is possible. you should note that JavaBeans used from JSPs would *NOT* normally have any GUI portion - i.e. you would simply be calling the get / set methods on properties (using the JavaBean 'pattern' - and i use the word pattern lightly!) and calling methods on the beans. For an AWT a

explanation please!

2001-06-12 Thread kaab kaoutar
Hi! So which scope scope should i use so as my bean won't be intantiated another time? in the jsp tutorial i found the following sentence: " The reason that the scope matters is that a jsp:useBean entry will only result in a new object being instantiated if there is no previous object with the sa

Jsp + Beans...

2001-06-12 Thread Bayu Nurcahyono
Hello All... I'm New in Jsp and this mailing List... First I want to Introduce my self, I'm bayu from Indonesia. I want to design beans so it can be used for = 1. jsp with : 2. awt app for win32 .. Is that possible ? Thanks Bayu

Re: JSP Manual

2001-06-12 Thread Chandini Paterson
Try one of these links for starters, http://developer.java.sun.com/developer/onlineTraining/JSPIntro/ http://java.sun.com/products/jsp/ http://www.jspin.com http://www.apl.jhu.edu/~hall/java/Servlet-Tutorial/ HTH, Chandini Paterson www.geocities.com/chandinib -Original Message- From: A

JSP Manual

2001-06-12 Thread Gemma Montero
I'm new with JSP and I need a good manual, where can I find one? Gemma === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGE

Re: Security question

2001-06-12 Thread Clayton Nash
Store the password as an MD5 (or SHA1) hash of the password -- when you get the password, simply hash it and compare the hashes -- this way you get not to care if anyone reads your password file since they cannot get the passwords from the Hash. Clayton -Original Message- From: A mailing

Tomcat multiple jvm configuration

2001-06-12 Thread EJB ForAll
Hi, I have configured apache+tomcat on linux 6.0 Now i want to configure private jvm for each context. Please tell me how i can do it. thanks in advance Regards deepak __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail - only $

Security question

2001-06-12 Thread Chandini Paterson
Hi, I am looking at various ways of creating secure web pages. What is the option you mostly use. How do you store username and password info, (in files or databases?). How do you ensure that the file is safe and cannot be read by one and all, if you opt for the file option that is. If anybo

Re: producing .gif files on the fly with JSP or with a BEAN

2001-06-12 Thread Segador Corraliza, Jose Abel [EES/ES]
Try jspchart. I'm using it and seems to be quite good. http://www.javaside.com/u_jspchart.html EMERSON ENERGY SYSTEMS IBERIA, S.A. José Abel Segador Corraliza Sistemas de Gestión de Energía Eduardo Torroja, 23 Leganés 28914 Madrid * 91-339 4140 * [EMAIL PROTECTED] -Original Message---