Re: How to set the PageSize in JSP ???

2001-09-20 Thread G.Nagarajan

Hi,
Unfortunately there is no such option in jsp. However using JDBC, you can
retrieve only a batch of rows instead of all the rows. The code is like this

int fetchSize = 10; // number of rows to take at a time
Statement st = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
ResultSet.CONCUR_READ_ONLY);
st.setFetchSize(fetchSize);
cat.debug("sql: "+sql);
ResultSet rsScroll = st.executeQuery(sql);


then to retrieve a particular row

int r = 5; //the row to retrieve

boolean scrollResult = rsScroll.absolute(r);
if(scrollResult){
takeValues(rsScroll, false);
return true;
}else
return false; //search has skipped eof

Regards,
Nagarajan.
-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Dick Wong
Sent: Friday, September 21, 2001 8:33 AM
To: [EMAIL PROTECTED]
Subject: How to set the PageSize in JSP ???


Dear all,

As I know that there is something like "PageSize" in asp to control how
many records to be retrieve in each page. How can I implement it on JSP ??
Any PageSize in JSP ?? As I want to do a result page with 10 records per
page.

Thanks for your help.

Regards,
   Dick Wong

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: regarding session maintenance in jsp

2001-09-20 Thread G.Nagarajan

just a guess.

maybe the session cookie is being shared between the two windows. In this
case using url encoding for session maintenance should result in two
sessions.

-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Radhika R
Sent: Friday, September 21, 2001 8:35 AM
To: [EMAIL PROTECTED]
Subject: regarding session maintanance in jsp


hi,
   When the user logins in internet explorer  with two browser windows,  ie
provides two different sessions.
   But in netscape, single session is maintained.

   This problem persists even when session object is maintained in jsp.

Can anybody help me out in solving.

bye,
radhika

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: question on tomcat

2001-09-20 Thread Carlos Vicente

I have the same issue in tomcat 3.2.3
it happens when i make the urls like

<%
String contextname=request.getContextPath();
%>


I use this code for make my links, context independent.
It works(and works in others Apps servers), but this error message worried
me.

Carlos.

-Mensaje original-
De: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]En nombre de Vikramjit Singh
Enviado el: viernes, 21 de septiembre de 2001 7:53
Para: [EMAIL PROTECTED]
Asunto: question on tomcat


hi all,
i have a question. when i am doing work on tomcat 3.2.1 i everytime get to
see a line like

2001-01-21 11:23:19 - Ctx( /TOPS ): IOException in: R( /TOPS +
/TOPS_Login_J4.jsp + null) Connection reset by peer: socket write error

i really cant figure it out the reason for this kind of error. i dont think
it is programmatic error since the functionality of my page does not  get
affected. But i want to know whats the cause of this error.
If anyone could throw some light.



Vikramjit singh,
Global Tele-systems Ltd.
Ph. 7612929-3140

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: regarding session maintanance in jsp

2001-09-20 Thread Kevin Duffey

We don't have this problem. Are you sure your not opening a NEW window from
an existing window? If you do that in any browser it should maintain the
same session id. I think you are saying you start two different instances
of browsers and in IE your getting different sessions but in NS your
getting the same. I would perhaps check the various settings of NS. Maybe
reinstall it to set it back to default settings and try it again. We have
not seen this probelm from Netscape users. Then again, we force 6.0 or later.

At 12:05 PM 9/21/2001 +0530, you wrote:
>hi,
>When the user logins in internet explorer  with two browser windows,  ie
>provides two different sessions.
>But in netscape, single session is maintained.
>
>This problem persists even when session object is maintained in jsp.
>
> Can anybody help me out in solving.
>
>bye,
>radhika
>
>===
>To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
>JSP-INTEREST".
>For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
>Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



How to set the PageSize in JSP ???

2001-09-20 Thread Dick Wong

Dear all,

As I know that there is something like "PageSize" in asp to control how
many records to be retrieve in each page. How can I implement it on JSP ??
Any PageSize in JSP ?? As I want to do a result page with 10 records per
page.

Thanks for your help.

Regards,
   Dick Wong

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



regarding session maintanance in jsp

2001-09-20 Thread Radhika R

hi,
   When the user logins in internet explorer  with two browser windows,  ie
provides two different sessions.
   But in netscape, single session is maintained.

   This problem persists even when session object is maintained in jsp.

Can anybody help me out in solving.

bye,
radhika

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Worm

2001-09-20 Thread Madhusudan Pantula

Where can i dowload Fixit 2000.Plz give me the URL .

-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Larry Steinberg
Sent: Thursday, September 20, 2001 1:03 PM
To: [EMAIL PROTECTED]
Subject: Re: Worm


On Wed, 19 Sep 2001 11:59:43 -0500, Gregory Price <[EMAIL PROTECTED]>
wrote:

>Has anyone successfully fixed a computer infected with Nimda?
>
>greg
>
> ==
>To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
>For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
>Some relevant FAQs on JSP/Servlets can be found at:
>
> http://java.sun.com/products/jsp/faq.html
> http://www.esperanto.org.nz/jsp/jspfaq.html
> http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
> http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Yes. I used Fixit 2000. I downloaded the latest definitions and ran the
scanner. It fixed most of the files and listed those it could not fix. I
took care of those manually. I used this successfully on two infected
computers on a home network.

-Larry

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



question on tomcat

2001-09-20 Thread Vikramjit Singh

hi all,
i have a question. when i am doing work on tomcat 3.2.1 i everytime get to
see a line like

2001-01-21 11:23:19 - Ctx( /TOPS ): IOException in: R( /TOPS +
/TOPS_Login_J4.jsp + null) Connection reset by peer: socket write error

i really cant figure it out the reason for this kind of error. i dont think
it is programmatic error since the functionality of my page does not  get
affected. But i want to know whats the cause of this error.
If anyone could throw some light.



Vikramjit singh,
Global Tele-systems Ltd.
Ph. 7612929-3140

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Turbin connection pool

2001-09-20 Thread Milind

Hi Guys,
Has anybody implemented Coonection pooling in Baan?I am accessing Baan from
my java front end.Baan provides BOI classes to do that but is it possible to
use a connection pool in Baan?
Thanx,
Milind
- Original Message -
From: horwat <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, September 21, 2001 1:03 AM
Subject: Re: Turbin connection pool


> Look at the documentation available off of the xml apache website:
>
> http://xml.apache.org/cocoon/connection-pool.html
>
> Justy
>
>
> - Original Message -
> From: "Isak Rickyanto" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, September 18, 2001 3:07 AM
> Subject: Turbin connection pool
>
>
> Hello All..
>
> I am newbie ... I need help
>
> I want to use only connection pooling from Turbine
> So what I should do?
>
> I have downloaded Cocoon and I found turbine-pool.jar
> Is that the only file i need...to use connection pool with Turbine
>
> I use Tomcat 3.2.3 and MySQL...
>
> Thank's
>
>
===
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: newbie question

2001-09-20 Thread Anupma Bakshi

Jext is a good editor, its free for keeps and has many in-built functions to
make coding simpler. Available at  http://www.zdnet.com/downloads/

Anupma
- Original Message -
From: Ashok Sehrawat <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, September 21, 2001 10:10 AM
Subject: newbie question


: Hi Everybody
: I`m new to this list & i need free JSP editer.
: Can any one suggest me from where can i download free JSP editer
:
: Thanks in Advance
:
: Ashok
: www.himline.com
:
: _
: Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
:
:
===
: To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
: For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
: Some relevant FAQs on JSP/Servlets can be found at:
:
:  http://java.sun.com/products/jsp/faq.html
:  http://www.esperanto.org.nz/jsp/jspfaq.html
:  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
:  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
:

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: newbie question

2001-09-20 Thread Kevin Duffey

Forte is one full Java IDE that is free, although I find it a tad hard to
use and confusing. I use UltraEdit for $30 reg fee, which works quite well
for most things. Its by no means a graphical editor for JSP though. I have
yet to see any "real" drag/drop JSP ide that supports full JavaBean and
tag-lib drag/drop to a JSP page. I still wonder why there hasn't been any
real push towards a fully HTML editor with full JSP support. Ideally, a
full Java Web Development IDE would be nice, one that supports all the
great features of products like JBuilder, Visual Cafe, Dream Weaver, JRun
Studio and IntelliJ IDEA all wrapped up into a single IDE.


At 10:10 AM 9/21/2001 +0530, you wrote:
>Hi Everybody
>I`m new to this list & i need free JSP editer.
>Can any one suggest me from where can i download free JSP editer
>
>Thanks in Advance
>
>Ashok
>www.himline.com
>
>_
>Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
>
>===
>To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
>JSP-INTEREST".
>For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
>Some relevant FAQs on JSP/Servlets can be found at:
>
>http://java.sun.com/products/jsp/faq.html
>http://www.esperanto.org.nz/jsp/jspfaq.html
>http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



newbie question

2001-09-20 Thread Ashok Sehrawat

Hi Everybody
I`m new to this list & i need free JSP editer.
Can any one suggest me from where can i download free JSP editer

Thanks in Advance

Ashok
www.himline.com

_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Problems to delete session with beans

2001-09-20 Thread Christian Hamann L

Hi all
i have problems in many applications.. well when one user access to my
intranet it ask him his user and pass.. all in a browser... but when he
finish of using and he use logoff the login page appearce in the same
browser.. but when use some applications inside many of them use the bean of
the last user.. and my logoff page use methods like removeValue to delete
beans and invalidate to remove the session..
what could be bad?
Help me please
atte
Christian Hamann L.
Pdta: Sorry if my english is not very well

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



From list administrator on "terrorist" mail thread...

2001-09-20 Thread Eduardo Pelegri-Llopart

The events of last week have been very traumatic for many people, both
in the US and abroad.  I have been blessed in that the impact has been
relatively limited, although we lost a fellow employee in one of the
planes (we had 4 floors in one of the towers but everybody got out
safe).  I am sure that other people in the JSP-interest community have
suffered much more.  My condolences to all of you; these events have
affected all of us, as members of the human family.

I believe it is appropriate to share in this list the grief of losing
somebody, or even helping coping with the impact of the events, but the
current mail threads have moved into a different direction, one more
appropriate to other forums.  So, although I personally believe that the
events in the US are part of a larger historical and global situation,
and that a full discussion of these events should include those points,
I also believe that, at this point, these exchanges should be conducted
outside of the JSP-interest mailing list.  The internet provides many
places where those conversations can be conducted; if you want to point
to one such forum, feel free to do so in a brief message.

I would appreciate your help in this topic,

Thanks,
- eduard/o pelegri-llopart

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Why java.lang.StackOverflowError? man?

2001-09-20 Thread [Your Full Name]

Could not access the URL.

-Original Message-
From: horwat [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 20, 2001 3:38 PM
To: [EMAIL PROTECTED]
Subject: Re: Why java.lang.StackOverflowError? man?


Check out the API docs and you'd learn a great deal about java and what the
cause of an exception may be.

http://java.sun.com/products/jdk/1.2/docs/api/java/lang/StackOverflowError.h
tml

- Original Message -
From: "Rock Luiss" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, September 20, 2001 12:49 AM
Subject: Why java.lang.StackOverflowError? man?


> java.lang.StackOverflowError
>  at ehr.BaseObject.readDB(BaseObject.java:880)
>  at ehr.FunctionTree.readDB(FunctionTree.java:189)
>  at ehr.BaseObject.readDB(BaseObject.java:941)
>  at ehr.FunctionTree.create(FunctionTree.java:123)
>  at ehr.BaseObject.readDB(BaseObject.java:918)
>  at ehr.FunctionTree.readDB(FunctionTree.java:189)
>  at ehr.BaseObject.readDB(BaseObject.java:941)
>  at ehr.FunctionTree.create(FunctionTree.java:123)
>  at ehr.BaseObject.readDB(BaseObject.java:918)
>  at ehr.FunctionTree.readDB(FunctionTree.java:189)
>  at ehr.BaseObject.readDB(BaseObject.java:941)v
>

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: session storing in tomcat 3.2

2001-09-20 Thread horwat

There are a couple of things you can do to avoid the out of memory errors.

These 2 will only postpone the inevitable:
- increase the amount of memory the VM can use
- decrease the session timeout value

I don't think there's a mechanism in Tomcat 3.2 that would allow you to
persist your sessions. You could write an interceptor to do so though.

Session persistence is available in Tomcat4.0. You need to configure the
PersistentManager in the server.xml file. It is turned off by default.

One way to get around the out of memory errors would be to store as little
information as possible in your sessions and keep everything in the db
backend. For instance you could store the sql query in the session and keep
all the data in a database. This way, if the server goes down for any reason
you would still have all of your information in the db.

Justy

- Original Message -
From: "Michał Trojanowski" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, September 20, 2001 3:21 AM
Subject: session storing in tomcat 3.2


> Hi. I've got a problem. I'm using Tomcat 3.2 where I run
> quite complex JSP application. When too many users open
> their sessions on Tomcat, the java VM gets out of memory and
> Tomcat stops. I'd like to know if there is a possibility in Tomcat
> to store active sessions to the hard drive when a memory runs
> out and retrieve them when needed. I know, that in Tomcat 4.0
> one of features is "persistent sessions", but does this mean, that
> in previous versions there is no possibility to store sessions at all?
>
> Thanks for help.
>
> Michal Trojanowski
>
>
===
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Why java.lang.StackOverflowError? man?

2001-09-20 Thread horwat

Check out the API docs and you'd learn a great deal about java and what the
cause of an exception may be.

http://java.sun.com/products/jdk/1.2/docs/api/java/lang/StackOverflowError.h
tml

- Original Message -
From: "Rock Luiss" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, September 20, 2001 12:49 AM
Subject: Why java.lang.StackOverflowError? man?


> java.lang.StackOverflowError
>  at ehr.BaseObject.readDB(BaseObject.java:880)
>  at ehr.FunctionTree.readDB(FunctionTree.java:189)
>  at ehr.BaseObject.readDB(BaseObject.java:941)
>  at ehr.FunctionTree.create(FunctionTree.java:123)
>  at ehr.BaseObject.readDB(BaseObject.java:918)
>  at ehr.FunctionTree.readDB(FunctionTree.java:189)
>  at ehr.BaseObject.readDB(BaseObject.java:941)
>  at ehr.FunctionTree.create(FunctionTree.java:123)
>  at ehr.BaseObject.readDB(BaseObject.java:918)
>  at ehr.FunctionTree.readDB(FunctionTree.java:189)
>  at ehr.BaseObject.readDB(BaseObject.java:941)v
>

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Turbin connection pool

2001-09-20 Thread horwat

Look at the documentation available off of the xml apache website:

http://xml.apache.org/cocoon/connection-pool.html

Justy


- Original Message -
From: "Isak Rickyanto" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, September 18, 2001 3:07 AM
Subject: Turbin connection pool


Hello All..

I am newbie ... I need help

I want to use only connection pooling from Turbine
So what I should do?

I have downloaded Cocoon and I found turbine-pool.jar
Is that the only file i need...to use connection pool with Turbine

I use Tomcat 3.2.3 and MySQL...

Thank's

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Gaining a Position

2001-09-20 Thread Haseltine, Celeste



Peter, 

 
For me 
it was two things:  1. Used my existing internal network from my previous 
engineering career to land a full time developer position.  2.  
Accepted jobs with small companies who could not afford to pay the big salaries, 
or all the benefits, but could give me valuable experience and exposure to the 
latest and greatest technology.
 
Celeste

  -Original Message-From: Peter Boivin 
  [mailto:[EMAIL PROTECTED]]Sent: Thursday, September 20, 2001 
  2:01 PMTo: [EMAIL PROTECTED]Subject: Gaining a 
  Position
  
  I am 
  trying to break into the field of programming as a Java developer.  I would like to ask the people who are 
  employed as Java Programmers how they got their break into the world of 
  programming and, more specifically, 
  java.


Gaining a Position

2001-09-20 Thread Peter Boivin








I am trying to break into the field of programming as a Java developer.  I would like to ask the people who are
employed as Java Programmers how they got their break into the world of
programming and, more specifically, java.








Re: Include JSP file to show form

2001-09-20 Thread Richard Yee

Isak,
You need to use a JavaBean to store the contents of the form.  You can use
the setProperties directive to automatically populate the member variables
in the bean and also use the bean accessor methods in scriptlets in you
form input tags.

ie.
Instead of:
 
you  would use
 

Check the archives too.  Its been described many times there.

-Richard

At 10:15 PM 9/18/01 +0700, you wrote:
>Hello all
>
>I have edit.jsp code to EDIT AND VIEW member DATA...
>In this code there are links to EDIT and VIEW member DATA
>I use jsp:forward to VIEW member data and it is run well
>
>but i use the same file(edit.jsp)  to view the form with  to
>include FORM to EDIT DATA...
>and I want to use  edit.jsp to be the action file to process the form...
>
>My code (edit.jsp) is running well.. but there is a problem..
>
>If I submit the form, the code like this (this code is in included file)
><%
>String nama="";
>String pass="";
>String email="";
>String alamat="";
>String kota="";
>String kodepos="";
>String propinsi="";
>String telepon="";
>%>
>
>
> 
>   Form Edit Anggota
> 
> 
>   1
>   Nama
>   
> 
>   
>  .. bla..bla..
>
>When I submit... my edit.jsp process this form well...
>but I want to show the form again... filled with the value which has been
>submitted...
>so the user do not need to fill all of the form again..
>but my program always show the blank form ...
>I had found that if i include the form... I must declare the variable
>first...
>so I declare it in the included file because if I declare it on edit.jsp it
>is useless...
>because it show error
>
>Anyone can help me?
>
>Than'ks for your attention
>
>===
>To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
>JSP-INTEREST".
>For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
>Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: how to access servlet from the jsp page

2001-09-20 Thread Richard Yee

Alexey,
Are you outputting anything in your JSP file?  If not, you could forward
the request to the servlet using the servlet context
getRequestDispatcher.forward() method.  Otherwise, you should redesign your
servlet / JSP page to do the calclulation in a JavaBean or some other
helper class.  You can't just call a servlet from the middle of a JSP page
if you have sent some output to the browser because the servlet response is
going to be a complete HTML page, not just the result of the calculation.

-Richard

At 01:45 PM 9/20/01 +0200, you wrote:
>Hey guys,
>
>how do I access the servlet from the jsp page? What's the syntax? My servlet
>performs the calculation and I need to show the results on the JSP page.
>Thank much
>
>A.
>
>===
>To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
>JSP-INTEREST".
>For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
>Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Null pointer problem

2001-09-20 Thread Jon Garry

Hello,

I have a problem with JSP.

I have developed a small piece of code using Visual Age, tested it and
everything works fine - I get output from my database.

However, when I try to create a JSP page to make use of the bean, it will
import the class and allow me to create an instance of the class using
useBean.

However, when I try call any get/set methods, I always get a null pointer
error - even though it works fine in Visual Age.

Can anyone suggest a few things I should check?

Thanks
Jon
--DISCLAIMER---
The information contained in this e-mail and any files
transmitted with it are confidential and intended for
the addressee only. No other person is authorised to
copy, forward, disclose, distribute or retain this
email in any form. If you have received this e-mail in
error please notify the originator or send an e-mail to
[EMAIL PROTECTED] This e-mail and any
associated attachments have been scanned for viruses
prior to dispatch, however Emap Performance and its
subsidiary companies accept no liability for any losses
resulting from infected e-mail transmissions.

Please note any views expressed may be those of the
originator and do not necessarily reflect those of this
organisation.


===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: [ANN] major new release of Coldjava taglib

2001-09-20 Thread M. Simms

HUGE CAVEAT: SOURCE CODE NOT AVAILABLE.
WARNING: DEPLOY AT YOUR OWN RISK.

> -Original Message-
> From: A mailing list about Java Server Pages specification and reference
> [mailto:[EMAIL PROTECTED]]On Behalf Of Dmitry Namiot
> Sent: Thursday, September 20, 2001 5:07 AM
> To: [EMAIL PROTECTED]
> Subject: [ANN] major new release of Coldjava taglib
>
>
> Coldjava announced the major new release of Coldjava taglib. This
> suite provides 50+ custom JSP tags for common programming tasks
> faced by JSP developers. Tags cover the most often used areas in
> web development:
>
> Database manipulations
> XML/XSL support
> SOAP
> printing formatted data
> authentication
> featured String manipulations
> conditional evaluation and flow-control.
> generating unique ID and random values
> generating a "standard" portal view as a set of columns from the
> given pages (portlets).
> page redirection
> dynamic JSP code evaluation
> dynamic caching of JSP content
> bar charts
> manipulations with files
> mail-reader and sendmail
> WAP/WML support
>
> Etc.
>
> At this moment Coldjava taglib is probably the largest collection
> of custom JSP tags over the Net and continues to grow. A
> “must see” resource for JSP developers: find out more
> here http://www.servletsuite.com
>
>
> --
> Coldjava - server-side Java components
> http://www.servletsuite.com
>
>
>
> __
> Your favorite stores, helpful shopping tools and great gift
> ideas. Experience the convenience of buying online with
> Shop@Netscape! http://shopnow.netscape.com/
>
> Get your own FREE, personal Netscape Mail account today at
http://webmail.netscape.com/

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: editor for jsp

2001-09-20 Thread Chris Pratt

I am using Visual SlickEdit v6.0 with JSP's and it seems to work fine.  What
problem are you having?
(*Chris*)

- Original Message -
From: "Robert Young" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, September 19, 2001 6:43 PM
Subject: [JSP-INTEREST] editor for jsp


> folks:
>
> i've been using Visual SlickEdit for years, but jsp has brought
> it's tagging powers to its knees.  has anyone been able to
> improve this capability?  failing that, is there an editor which
> manages to track html tags, jsp tags and java syntax?  need
> not be free.
>
> thanks,
> robert young
>
>
===
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Receiving a mail from SMTP server

2001-09-20 Thread Christopher K. St. John

Smita Kotnis wrote:
>
> I am using JavaMail
>

 Normally I'd say this was off-topic, but it's so much
more on-topic than 99% of what's been on the list
recently that my heart just isn't in it.

 You might try:

   http://archives.java.sun.com/archives/javamail-interest.html

 or perhaps the comprehensive tutorials that Sun has at:

   http://java.sun.com/products/javamail/

 Also:

   http://www.google.com

  is very good. Just type in the keywords from your
question and you'll probably getsome answers.

 Good luck.

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: passing variable success but...

2001-09-20 Thread Isak Rickyanto

Thanks for your answers :
G.Nagarajan  and Christian Roslawski

I had solve my problem...

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Session Cookie HELP!!!

2001-09-20 Thread Hans Liebenberg

Thanks,
I know that, but its not me setting the cookie , its the servlet engine


-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Karau, Joe
Sent: 20 September 2001 15:00
To: [EMAIL PROTECTED]
Subject: Re: Session Cookie HELP!!!

I believe all you have to do when you set your cookie is:

cookie.setPath("/");

Joseph Karau
Kingland Systems
[EMAIL PROTECTED]
507-536-3629
AIM: jkara3629


-Original Message-
From: Hans Liebenberg [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 20, 2001 8:53 AM
To: [EMAIL PROTECTED]
Subject: Session Cookie HELP!!!


Hi

I sniffed the http output from my servlet and the headers sent were:

HTTP/1.0 200
Date: Thu, 20 Sep 2001 13:38:27 GMT
Server: Apache/1.3.19 (Unix)  (Red-Hat/Linux) mod_ssl/2.8.1 OpenSSL/0.9.6
DAV/1.0.2 PHP/4.0.5 mod_perl/1.24_01 mod_gzip
Pragma: No-cache
Cache-Control: No-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie2: JSESSIONID=yhf5wydm11;Version=1;Discard;Path="/thh"
Set-Cookie: JSESSIONID=yhf5wydm11;Path=/thh
Content-Type: text/html;charset=ISO-8859-1

I have a problem which is being caused by the fact that the Set-Cookie
header is setting Path=/thh for the session IS
Is it possible to override this and force the servlet engine to set the path
to "/" without changing my context name 

Desperate
Hans

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Development environment structure

2001-09-20 Thread Mattias Jiderhamn

I’m wondering if any of you guys (and gals) would like to share your
thoughts on how to structure the development environment for a
Java-based web application.

Until now we have only been a few people at a time (1-3) working
initially on our lightweight (JSP/Servlet) application. We are using
Resin and have so far found Resins built in recompile very satisfactory.
We have all our Java source files under the WEB-INF/classes. This means
that when Resin looks for changes and recompiles the files, if there is
any error, this error will "stop the whole system", since the compile
error will show on every page. This is quite OK for now, since we can
tell the person in the next room to fix the error.

BUT, soon we will be more people developing at the same time, some 500
km apart. Plus some of us are not that very experienced with Java
(=possibly frequent errors).

We are therefore trying to create a new environment where only the
successfully compiled classes are copied to Resins WEB-INF/classes, and
the rest is ignored until the error is fixed (solved with some scripts).

Is there some commonly used solution to this problem?
Does everyone else use versioning systems?


We are also encountering some problems that may lead us to using EJBs.
How would we set things up then? I read that, for example JBoss has hot
redeployment where you can put an updated jar(/war/ear) in the
deployment dir. But what if I want to deploy one new class at a time (as
we try to do now)?


  Mattias Jiderhamn
  Expert Systems
  [EMAIL PROTECTED]
 

==To 
unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Session Cookie HELP!!!

2001-09-20 Thread Karau, Joe

I believe all you have to do when you set your cookie is:

cookie.setPath("/");

Joseph Karau
Kingland Systems
[EMAIL PROTECTED]
507-536-3629
AIM: jkara3629


-Original Message-
From: Hans Liebenberg [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 20, 2001 8:53 AM
To: [EMAIL PROTECTED]
Subject: Session Cookie HELP!!!


Hi

I sniffed the http output from my servlet and the headers sent were:

HTTP/1.0 200
Date: Thu, 20 Sep 2001 13:38:27 GMT
Server: Apache/1.3.19 (Unix)  (Red-Hat/Linux) mod_ssl/2.8.1 OpenSSL/0.9.6
DAV/1.0.2 PHP/4.0.5 mod_perl/1.24_01 mod_gzip
Pragma: No-cache
Cache-Control: No-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie2: JSESSIONID=yhf5wydm11;Version=1;Discard;Path="/thh"
Set-Cookie: JSESSIONID=yhf5wydm11;Path=/thh
Content-Type: text/html;charset=ISO-8859-1

I have a problem which is being caused by the fact that the Set-Cookie
header is setting Path=/thh for the session IS
Is it possible to override this and force the servlet engine to set the path
to "/" without changing my context name 

Desperate
Hans

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Session Cookie HELP!!!

2001-09-20 Thread Hans Liebenberg

Hi

I sniffed the http output from my servlet and the headers sent were:

HTTP/1.0 200
Date: Thu, 20 Sep 2001 13:38:27 GMT
Server: Apache/1.3.19 (Unix)  (Red-Hat/Linux) mod_ssl/2.8.1 OpenSSL/0.9.6
DAV/1.0.2 PHP/4.0.5 mod_perl/1.24_01 mod_gzip
Pragma: No-cache
Cache-Control: No-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie2: JSESSIONID=yhf5wydm11;Version=1;Discard;Path="/thh"
Set-Cookie: JSESSIONID=yhf5wydm11;Path=/thh
Content-Type: text/html;charset=ISO-8859-1

I have a problem which is being caused by the fact that the Set-Cookie
header is setting Path=/thh for the session IS
Is it possible to override this and force the servlet engine to set the path
to "/" without changing my context name 

Desperate
Hans

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



downloading gif/jpg or any file

2001-09-20 Thread Warty, Koustubh

  Hello,
What i need to do is -
 when I click on a link that contains a gif or jpg or mpg format file I do not 
want the browser to show me the content of the image files or start a windows media 
player or real player for the other files INSTEAD i want the --->  OPEN FROM LOCATION 
& SAVE TO DISK  box to pop up ?  Is it possible and how ?

 Thanks,
 - Koustubh


=
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: editor for jsp

2001-09-20 Thread Dumitru Sbenghe

Intellij is fully integrated with ANT; So use ANT for build step;

> -Original Message-
> From: A mailing list about Java Server Pages specification and reference
> [mailto:[EMAIL PROTECTED]]On Behalf Of Lemonte Squibb
> Sent: Thursday, September 20, 2001 4:01 PM
> To: [EMAIL PROTECTED]
> Subject: Re: editor for jsp
>
>
> Can you build EAR and WAR files with IntelliJ ???
>
> I just downloaded it and I can't seem to find that option.
>
> -Original Message-
> From: Kevin Duffey [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, September 19, 2001 11:53 PM
> To: [EMAIL PROTECTED]
> Subject: Re: editor for jsp
>
>
> The best Java IDE I have seen so far is IntelliJ IDEA (www.intellij.com).
> It simply kicks butt! It is an IDE that is built for developers. It has a
> ton of features developers would want. It even works on JSP pages,
> including package completion in useBean tags, scriplets, etc. It has
> begin/end block matching even across scriplets in JSP pages, and full code
> completion in JSP pages. It has a number of other features, too
> numerous to
> mention. It even has helpful aids like if you type in a package or class
> name, or method name that does NOT exist, it flags it before you
> compile or
> run the code, thus helping you identify various types of errors before you
> waste time compiling and running. It has full Ant built in (although I am
> not sure if there is a provision for adding the latest Ant). Its 100% java
> so it should run on any platform although they do say they support Windows
> and Linux only.
>
> Its not cheap, at $400 per user license, but the short evaulation
> period is
> enough to let you try it out for a bit.
>
>
> At 09:43 PM 9/19/2001 -0400, you wrote:
> >folks:
> >
> >i've been using Visual SlickEdit for years, but jsp has brought
> >it's tagging powers to its knees.  has anyone been able to
> >improve this capability?  failing that, is there an editor which
> >manages to track html tags, jsp tags and java syntax?  need
> >not be free.
> >
> >thanks,
> >robert young
> >
> >=
> ==
> >To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> >JSP-INTEREST".
> >For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
> DIGEST".
> >Some relevant FAQs on JSP/Servlets can be found at:
> >
> >  http://java.sun.com/products/jsp/faq.html
> >  http://www.esperanto.org.nz/jsp/jspfaq.html
> >  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
> >  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>
> ==
> =
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
> DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>
> ==
> =
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set
> JSP-INTEREST DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: editor for jsp

2001-09-20 Thread Lemonte Squibb

Can you build EAR and WAR files with IntelliJ ???

I just downloaded it and I can't seem to find that option.

-Original Message-
From: Kevin Duffey [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, September 19, 2001 11:53 PM
To: [EMAIL PROTECTED]
Subject: Re: editor for jsp


The best Java IDE I have seen so far is IntelliJ IDEA (www.intellij.com).
It simply kicks butt! It is an IDE that is built for developers. It has a
ton of features developers would want. It even works on JSP pages,
including package completion in useBean tags, scriplets, etc. It has
begin/end block matching even across scriplets in JSP pages, and full code
completion in JSP pages. It has a number of other features, too numerous to
mention. It even has helpful aids like if you type in a package or class
name, or method name that does NOT exist, it flags it before you compile or
run the code, thus helping you identify various types of errors before you
waste time compiling and running. It has full Ant built in (although I am
not sure if there is a provision for adding the latest Ant). Its 100% java
so it should run on any platform although they do say they support Windows
and Linux only.

Its not cheap, at $400 per user license, but the short evaulation period is
enough to let you try it out for a bit.


At 09:43 PM 9/19/2001 -0400, you wrote:
>folks:
>
>i've been using Visual SlickEdit for years, but jsp has brought
>it's tagging powers to its knees.  has anyone been able to
>improve this capability?  failing that, is there an editor which
>manages to track html tags, jsp tags and java syntax?  need
>not be free.
>
>thanks,
>robert young
>
>===
>To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
>JSP-INTEREST".
>For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
>Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: how to access servlet from the jsp page

2001-09-20 Thread Zahid Rahman

Answers to all your question can be found
in the getting started examples provided with tomcat.

H!!

-Original Message-
From: Alexey Romanov [mailto:[EMAIL PROTECTED]]
Sent: 20 September 2001 12:45
To: [EMAIL PROTECTED]
Subject: how to access servlet from the jsp page


Hey guys,

how do I access the servlet from the jsp page? What's the syntax? My servlet
performs the calculation and I need to show the results on the JSP page.
Thank much

A.

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



how to access servlet from the jsp page

2001-09-20 Thread Alexey Romanov

Hey guys,

how do I access the servlet from the jsp page? What's the syntax? My servlet
performs the calculation and I need to show the results on the JSP page.
Thank much

A.

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Receiving a mail from SMTP server

2001-09-20 Thread Smita Kotnis

Hi,
Thanks a lot for your help. Sending multiple attchments is not a problem. Let me 
check it up, how your code can be used  for receving the multiple files. thanks a lot 
any way.
Smita

Quoting  Vikramjit Singh <[EMAIL PROTECTED]>:

> hi smita,
> this code i have used for sending multiple attachments. i don tthink
> that
> there will be much code diff. for reading the mail
>
> for(int i=0;i {
> // This is for displaying the
> name
> of the attachment
> String attach =
> (String)attachmentArrayList.get(i);
>
> int start =
> attach.lastIndexOf("/");
> nameOfAttachment =
> attach.substring(start+1);
>
> System.out.println(nameOfAttachment);
> // This part of the code is for
> attaching the file to the message
> messageBodyPart = new
> MimeBodyPart();
> source = new
> FileDataSource(attach);
>
> messageBodyPart.setDataHandler(new
> DataHandler(source));
>
> /* This code within the try and
> catch block gives you the size of the individual attachment. This is
> done so
> that the size of the attachments dont exceed the individual mail limit
> of
> mailbox
> */
> try
> {
> fis = new
> FileInputStream(attach);
> int len1 =
> fis.available();
> System.out.println("The
> size
> of the file is = "+len1);
> }
> catch(FileNotFoundException
> fnfe)
> {
> fnfe.printStackTrace();
> }
> catch(Exception e)
> {
> e.printStackTrace();
> }
>
> Vikramjit singh,
> eAngel Team,
> Global Tele-systems Ltd.
> Ph. 7612929-3140
>
>
> -Original Message-
> From: Smita Kotnis [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, September 20, 2001 2:19 AM
> To: [EMAIL PROTECTED]
> Subject: Receiving a mail from SMTP server
>
>
> Hi all,
> I am using JavaMail in my JSP to receive the mails from SMTP
> server.
> How
> to receive a mail from SMTP server with attachments? Any piece of code
> will
> be
> appreciated. Thanks in advance.
> Smita
>
> -
> This mail sent through : http://mail.sify.com
>
> ===
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
> DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>
> ===
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
> DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>

-
This mail sent through : http://mail.sify.com

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: string to char

2001-09-20 Thread Paul Foxton

or, if you want a single char variable and know the String is only 1 char in
length before hand:

char myChar = myString.charAt(0);

I recommend you get used to checking the javadocs for stuff like this, it
will save you a lot of time. Just look up the class name and you'll find
what you need:

http://java.sun.com/j2se/1.3/docs/api/index.html

cheers,

Paul

> -Original Message-
> From: Ron Chan [mailto:[EMAIL PROTECTED]]
> Sent: 20 September 2001 12:26
> To: [EMAIL PROTECTED]
> Subject: Re: string to char
>
>
> javadocs for String:
>
> toCharArray
>
> public char[] toCharArray()
>
> Converts this string to a new character array.
>
> Returns:
> a newly allocated character array whose length is
> the length of this string and whose contents are
> initialized to contain the character sequence
> represented by this string.
>
>
>
>
> --- KL OOI <[EMAIL PROTECTED]> wrote:
> > Hi all,
> >
> > sorry for the off topic here, how to convert a
> > string to char ??
> >
> > thanks..
> >
> > regards,
> > kl
> >
> >
> >
> _
> > Do You Yahoo!?
> > Get your free @yahoo.com address at
> > http://mail.yahoo.com
> >
> >
> >
> ==
> =
> > To unsubscribe: mailto [EMAIL PROTECTED] with
> > body: "signoff JSP-INTEREST".
> > For digest: mailto [EMAIL PROTECTED] with body:
> > "set JSP-INTEREST DIGEST".
> > Some relevant FAQs on JSP/Servlets can be found at:
> >
> >  http://java.sun.com/products/jsp/faq.html
> >  http://www.esperanto.org.nz/jsp/jspfaq.html
> >  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
> >
> http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>
>
> __
> Terrorist Attacks on U.S. - How can you help?
> Donate cash, emergency relief information
> http://dailynews.yahoo.com/fc/US/Emergency_Information/
>
> ==
> =
> To unsubscribe: mailto [EMAIL PROTECTED] with body:
> "signoff JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set
> JSP-INTEREST DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: string to char

2001-09-20 Thread Ron Chan

javadocs for String:

toCharArray

public char[] toCharArray()

Converts this string to a new character array.

Returns:
a newly allocated character array whose length is
the length of this string and whose contents are
initialized to contain the character sequence
represented by this string.




--- KL OOI <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> sorry for the off topic here, how to convert a
> string to char ??
>
> thanks..
>
> regards,
> kl
>
>
>
_
> Do You Yahoo!?
> Get your free @yahoo.com address at
> http://mail.yahoo.com
>
>
>
===
> To unsubscribe: mailto [EMAIL PROTECTED] with
> body: "signoff JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body:
> "set JSP-INTEREST DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>
http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets


__
Terrorist Attacks on U.S. - How can you help?
Donate cash, emergency relief information
http://dailynews.yahoo.com/fc/US/Emergency_Information/

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Receiving a mail from SMTP server

2001-09-20 Thread Vikramjit Singh

hi smita,
this code i have used for sending multiple attachments. i don tthink that
there will be much code diff. for reading the mail

for(int i=0;imailto:[EMAIL PROTECTED]]
Sent: Thursday, September 20, 2001 2:19 AM
To: [EMAIL PROTECTED]
Subject: Receiving a mail from SMTP server


Hi all,
I am using JavaMail in my JSP to receive the mails from SMTP server.
How
to receive a mail from SMTP server with attachments? Any piece of code will
be
appreciated. Thanks in advance.
Smita

-
This mail sent through : http://mail.sify.com

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



session storing in tomcat 3.2

2001-09-20 Thread Michał Trojanowski

Hi. I've got a problem. I'm using Tomcat 3.2 where I run
quite complex JSP application. When too many users open
their sessions on Tomcat, the java VM gets out of memory and
Tomcat stops. I'd like to know if there is a possibility in Tomcat
to store active sessions to the hard drive when a memory runs
out and retrieve them when needed. I know, that in Tomcat 4.0
one of features is "persistent sessions", but does this mean, that
in previous versions there is no possibility to store sessions at all?

Thanks for help.

Michal Trojanowski

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Session Sharing

2001-09-20 Thread Hans Liebenberg

Hi

I have a hopefully small problem...

I am using a  reverse proxy in my live environment...  e.g

http://www.myurl.com/whatever.html

is sent to my applicartion

as http://www.myengine.com/whatever.html

But now my problem is that all session cookies are set with the path set to
/

So basically I am losing my session information...

Let me rephrase my question...

Is it possible to tell the servlet engine to set its session id cookies with
path attribute set to "/" instead of "/".

Thanks

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: JSP PRO Chapter 12

2001-09-20 Thread Zahid Rahman

Does any one where I can find
Dan Malks


-Original Message-
From: Zahid Rahman [mailto:[EMAIL PROTECTED]]
Sent: 20 September 2001 09:39
To: [EMAIL PROTECTED]
Subject: JSP PRO Chapter 12


To whom it may concern,

Yesterday I downloaded Chapter 12 from your JSP Pro book from the SUN site.
 I assume this article from the second edition.

I was very reluctantly in downloading and spending any time
on it having already seen JSP Pro edition 1.

I downloaded it because I personally prefer to read hard copy.
Anyway It was the most excellent piece of work I have ever read.
May I compliment you on your choice of terminology
and your of graphical presentation.  I could related to the whole article.
I am in agreement with your reasoning and cannot find fault.

My only question is keeping in mind that Business Applications
on server side is evolving technology does it work in field conditions ?

Best Regards,
Zahid

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



JSP PRO Chapter 12

2001-09-20 Thread Zahid Rahman

Justyna,

Do you who the author is of chapter 12 of JSP pro
and where can she/he be found  ?

I ask you because I found the article on your sun site.

Regards,
Zahid

-Original Message-
From: horwat [mailto:[EMAIL PROTECTED]]
Sent: 18 September 2001 18:57
To: [EMAIL PROTECTED]
Subject: Re: J2EE Roadmap Presentation


Here's a roadmap from the 2001 JavaOne conference:

http://java.sun.com/features/2001/06/golden.j2ee.html

Justy

- Original Message -
From: "Doug Willoughby - Area Technologist" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, September 18, 2001 7:40 AM
Subject: J2EE Roadmap Presentation


> All,
>
> Looking for a recent J2EE roadmap presentation
> that I can scarf...
>
> Thanks,
>
> Doug
>

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



how to access servlet from the jsp page

2001-09-20 Thread Alexey Romanov

Hey guys,

how do I access the servlet from the jsp page? What's the syntax? My servlet
performs the calculation and I need to show the results on the JSP page.
Thank you

A.

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: JBuilder on JDK1.4

2001-09-20 Thread Theo Starr

If it any consolation, I use KAWA and mine is looking for a few DLL's

You could be right

Theo Starr
Almityand-Mega Multimedia
WWW:  http://www.ozemail.com.au/~almity1
email:  [EMAIL PROTECTED]


-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of James Mou
Sent: Thursday, 20 September 2001 10:39 AM
To: [EMAIL PROTECTED]
Subject: JBuilder on JDK1.4


The installation craps out, I guess that's too cutting-edge :)

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: JSP PRO Chapter 12 FAO Paul Foxton

2001-09-20 Thread Zahid Rahman

Who is the author Then
and where can I find him ?

-Original Message-
From: Paul Foxton [mailto:[EMAIL PROTECTED]]
Sent: 20 September 2001 09:49
To: [EMAIL PROTECTED]
Subject: Re: JSP PRO Chapter 12


And exactly why do you feel the need to tell this to EVERYONE on this list?

Email the author(s) for gods sake.

> -Original Message-
> From: Zahid Rahman [mailto:[EMAIL PROTECTED]]
> Sent: 20 September 2001 09:39
> To: [EMAIL PROTECTED]
> Subject: JSP PRO Chapter 12
>
>
> To whom it may concern,
>
> Yesterday I downloaded Chapter 12 from your JSP Pro book from
> the SUN site.
>  I assume this article from the second edition.
>
> I was very reluctantly in downloading and spending any time
> on it having already seen JSP Pro edition 1.
>
> I downloaded it because I personally prefer to read hard copy.
> Anyway It was the most excellent piece of work I have ever read.
> May I compliment you on your choice of terminology
> and your of graphical presentation.  I could related to the
> whole article.
> I am in agreement with your reasoning and cannot find fault.
>
> My only question is keeping in mind that Business Applications
> on server side is evolving technology does it work in field
> conditions ?
>
> Best Regards,
> Zahid
>
> ==
> =
> To unsubscribe: mailto [EMAIL PROTECTED] with body:
> "signoff JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set
> JSP-INTEREST DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: passing variable success but...

2001-09-20 Thread G.Nagarajan

you must use
  if (action.equals("view"))

or to check for both upper case and lower case
action.equalsIgnoreCase("view")

sometimes if action is null, the above method might throw a null pointer
exception

so

if( action != null && action.equalsIgnoreCase("view")) would be fine

Regards,
Nagarajan.


-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Isak Rickyanto
Sent: Tuesday, September 18, 2001 11:59 AM
To: [EMAIL PROTECTED]
Subject: passing variable success but...


Hello All... I need help

I write this code in JSP
I had problem with this code below...
I want to do something if someone click in VIEW...
and it pass action variable action=view... and it will do something..

but I only found that the screen display action=view but
"YOU CAN ONLY SEE THIS IF ACTION = VIEW" not appear in the screen?

What's wrong with my code ?

I have created code to edit profile membership like below :

<%@ page language="java" import="java.util.*,java.sql.*" %>


My Account Profile




<%
String action=request.getParameter("action");
%>

VIEW OR EDIT

<%

if (request.getMethod().equals("GET"))
{
%>
THE ACTION <%=action%>
<%
   if (action=="view")
 {
 out.println("YOU CAN ONLY SEE THIS IF ACTION=VIEW");
 }
}
%>




===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: passing variable success but...

2001-09-20 Thread Christian Roslawski

>  if (action=="view")

if(action.equals("view"))

  Chris

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: JSP PRO Chapter 12 ----

2001-09-20 Thread Zahid Rahman

Dear All,

If some one can tell me who the author of the article
I am referring to is that would be helpful.
Chapter 12 JSP PRO second edition.

  --
To the author,

Can I stress that the results of this enquiry are every important
as I spent substantial amount of time trying to work out a strategy
myself for the same reasons you have outlined.

You can see the result of myself going through some of the scenarios
on EJBs.

Please reply to me directly.

Kindest Regards,
Zahid Rahman

-Original Message-
From: Zahid Rahman [mailto:[EMAIL PROTECTED]]
Sent: 20 September 2001 09:39
To: [EMAIL PROTECTED]
Subject: JSP PRO Chapter 12


To whom it may concern,

Yesterday I downloaded Chapter 12 from your JSP Pro book from the SUN site.
 I assume this article from the second edition.

I was very reluctantly in downloading and spending any time
on it having already seen JSP Pro edition 1.

I downloaded it because I personally prefer to read hard copy.
Anyway It was the most excellent piece of work I have ever read.
May I compliment you on your choice of terminology
and your of graphical presentation.  I could related to the whole article.
I am in agreement with your reasoning and cannot find fault.

My only question is keeping in mind that Business Applications
on server side is evolving technology does it work in field conditions ?

Best Regards,
Zahid

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Receiving a mail from SMTP server

2001-09-20 Thread Smita Kotnis

Hi all,
I am using JavaMail in my JSP to receive the mails from SMTP server. How
to receive a mail from SMTP server with attachments? Any piece of code will be
appreciated. Thanks in advance.
Smita

-
This mail sent through : http://mail.sify.com

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: JSP PRO Chapter 12

2001-09-20 Thread Zahid Rahman

1.  I have no idea who the author is. I only have chapter 12 here.

2. I am not telling anybody you flatter yourself
   I am concerned with myself.

3. You are very aggressive baby but keep to yourself.

-Original Message-
From: Paul Foxton [mailto:[EMAIL PROTECTED]]
Sent: 20 September 2001 09:49
To: [EMAIL PROTECTED]
Subject: Re: JSP PRO Chapter 12


And exactly why do you feel the need to tell this to EVERYONE on this list?

Email the author(s) for gods sake.

> -Original Message-
> From: Zahid Rahman [mailto:[EMAIL PROTECTED]]
> Sent: 20 September 2001 09:39
> To: [EMAIL PROTECTED]
> Subject: JSP PRO Chapter 12
>
>
> To whom it may concern,
>
> Yesterday I downloaded Chapter 12 from your JSP Pro book from
> the SUN site.
>  I assume this article from the second edition.
>
> I was very reluctantly in downloading and spending any time
> on it having already seen JSP Pro edition 1.
>
> I downloaded it because I personally prefer to read hard copy.
> Anyway It was the most excellent piece of work I have ever read.
> May I compliment you on your choice of terminology
> and your of graphical presentation.  I could related to the
> whole article.
> I am in agreement with your reasoning and cannot find fault.
>
> My only question is keeping in mind that Business Applications
> on server side is evolving technology does it work in field
> conditions ?
>
> Best Regards,
> Zahid
>
> ==
> =
> To unsubscribe: mailto [EMAIL PROTECTED] with body:
> "signoff JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set
> JSP-INTEREST DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



[ANN] major new release of Coldjava taglib

2001-09-20 Thread Dmitry Namiot

Coldjava announced the major new release of Coldjava taglib. This suite provides 50+ 
custom JSP tags for common programming tasks faced by JSP developers. Tags cover the 
most often used areas in web development:

Database manipulations
XML/XSL support
SOAP
printing formatted data
authentication
featured String manipulations
conditional evaluation and flow-control.
generating unique ID and random values
generating a "standard" portal view as a set of columns from the given pages 
(portlets).
page redirection
dynamic JSP code evaluation
dynamic caching of JSP content
bar charts
manipulations with files
mail-reader and sendmail
WAP/WML support

Etc.

At this moment Coldjava taglib is probably the largest collection of custom JSP tags 
over the Net and continues to grow. A “must see” resource for JSP 
developers: find out more here http://www.servletsuite.com


--
Coldjava - server-side Java components
http://www.servletsuite.com



__
Your favorite stores, helpful shopping tools and great gift ideas. Experience the 
convenience of buying online with Shop@Netscape! http://shopnow.netscape.com/

Get your own FREE, personal Netscape Mail account today at http://webmail.netscape.com/

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: JSP PRO Chapter 12

2001-09-20 Thread Paul Foxton

And exactly why do you feel the need to tell this to EVERYONE on this list?

Email the author(s) for gods sake.

> -Original Message-
> From: Zahid Rahman [mailto:[EMAIL PROTECTED]]
> Sent: 20 September 2001 09:39
> To: [EMAIL PROTECTED]
> Subject: JSP PRO Chapter 12
>
>
> To whom it may concern,
>
> Yesterday I downloaded Chapter 12 from your JSP Pro book from
> the SUN site.
>  I assume this article from the second edition.
>
> I was very reluctantly in downloading and spending any time
> on it having already seen JSP Pro edition 1.
>
> I downloaded it because I personally prefer to read hard copy.
> Anyway It was the most excellent piece of work I have ever read.
> May I compliment you on your choice of terminology
> and your of graphical presentation.  I could related to the
> whole article.
> I am in agreement with your reasoning and cannot find fault.
>
> My only question is keeping in mind that Business Applications
> on server side is evolving technology does it work in field
> conditions ?
>
> Best Regards,
> Zahid
>
> ==
> =
> To unsubscribe: mailto [EMAIL PROTECTED] with body:
> "signoff JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set
> JSP-INTEREST DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



JSP PRO Chapter 12

2001-09-20 Thread Zahid Rahman

To whom it may concern,

Yesterday I downloaded Chapter 12 from your JSP Pro book from the SUN site.
 I assume this article from the second edition.

I was very reluctantly in downloading and spending any time
on it having already seen JSP Pro edition 1.

I downloaded it because I personally prefer to read hard copy.
Anyway It was the most excellent piece of work I have ever read.
May I compliment you on your choice of terminology
and your of graphical presentation.  I could related to the whole article.
I am in agreement with your reasoning and cannot find fault.

My only question is keeping in mind that Business Applications
on server side is evolving technology does it work in field conditions ?

Best Regards,
Zahid

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Re: Antwort: Why java.lang.StackOverflowError? man?

2001-09-20 Thread Rock Luiss

Hi!Balle!Thank you for you help.I've just resolved the problem under your comment.

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Antwort: Why java.lang.StackOverflowError? man?

2001-09-20 Thread Balle Michael

Hi Rock,

please don't send only the error message. It is well known.

But also send your java code also but I think because there is a DB
involved that you don't close your ResultSet, Statement or Connection but
always open a new one for every statement.

Looking for your code


Michael

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets



Why java.lang.StackOverflowError? man?

2001-09-20 Thread Rock Luiss



java.lang.StackOverflowError at
ehr.BaseObject.readDB(BaseObject.java:880) at
ehr.FunctionTree.readDB(FunctionTree.java:189) at
ehr.BaseObject.readDB(BaseObject.java:941) at
ehr.FunctionTree.create(FunctionTree.java:123) at
ehr.BaseObject.readDB(BaseObject.java:918) at
ehr.FunctionTree.readDB(FunctionTree.java:189) at
ehr.BaseObject.readDB(BaseObject.java:941) at
ehr.FunctionTree.create(FunctionTree.java:123) at
ehr.BaseObject.readDB(BaseObject.java:918) at
ehr.FunctionTree.readDB(FunctionTree.java:189) at
ehr.BaseObject.readDB(BaseObject.java:941)v