Off-Topic: Terminating hidden threads.

2003-07-29 Thread kim
I have the following code in my main method:

 public static void main(String[] args)
 {
  Image inImage = new ImageIcon("C:\\logo.gif").getImage();
  System.out.println("inImage.getWidth()="+inImage.getWidth(null));
  System.out.println("inImage.getHeight()="+inImage.getHeight(null));
}
I get the correct output but how come the program never exits? How to make
the program exit?

kim.

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".

Some relevant archives, FAQs and Forums on JSPs can be found at:

 http://java.sun.com/products/jsp
 http://archives.java.sun.com/jsp-interest.html
 http://forums.java.sun.com
 http://www.jspinsider.com


SSI in TOMCAT - A bit off-topic!

2003-02-07 Thread Bob Prah
Has anyone activated Server Side Include(SSI) in Tomcat 4.1 ?

I have followed the normal instruction under Apache's Tomcat website,
including :
1. Renaming servlets-ssi.renametojar to servlets-ssi.jar in directory
CATALINA_HOME/server/lib/ ;

2. Uncommented ssi... and

ssi
*.shtml

in web.xml in directory CATALINA_HOME/conf/ ;

3.Created a *.shtml file with the necessary  tags.

The problem is : when I call this *.shtml file under Tomcat, it does seems to
recognise my servlet - it only output its text content - although when I
directly call the servlet, it has no problem rendering its output.

Any help will be much appreciated.

Bob.

p.s.: I have googled, but can't find any solution. Sorry for the slight
off-topic once again.

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".

Some relevant archives, FAQs and Forums on JSPs can be found at:

 http://java.sun.com/products/jsp
 http://archives.java.sun.com/jsp-interest.html
 http://forums.java.sun.com
 http://www.jspinsider.com



Off Topic VAJ 4.0 or WSAD 4.0

2003-02-03 Thread DBlocker
This is off topic for JSP's but I'll ask it anyway.

I'm trying to run VAJ4.0 on a W2K machine. The problem is that I continue
to get memory protection fault errors. All other apps run acceptable. It's
only when I try to run VAJ (using high memory addresses) that I have
problems. Has anyone successfully used VAJ 4.0 running on W2K?  For that
matter, has anyone used WSAD 4.0 on W2K successfully ?  I just want to
determine if its my system or a software bug.  I've been successful running
both on NT4.0.
Any feedback would be appreciated.

TIA

Darrin

===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".

Some relevant archives, FAQs and Forums on JSPs can be found at:

 http://java.sun.com/products/jsp
 http://archives.java.sun.com/jsp-interest.html
 http://forums.java.sun.com
 http://www.jspinsider.com



Re: Off-topic: JSP and MySQL

2002-11-27 Thread Paul Copeland
Your example with multiple "begins" indicates a desire to have nested
transactions. AFAIK, SQL does not support that and JDBC drivers will
throw exceptions if you try it.  Some database engines support
"savepoints" or "checkpoints" providing a roughly equivalent functionality.

Your last statement that "it solves only mistakes durring queries" is
incorrect.  A single rollback statement will undo all the updates back
to the beginning of the transaction. Experiment with a database that
supports Transactions and this will become clear.

Paul Copeland, JOT Object Technologies - http://www.jotobjects.com


--

Date:Tue, 26 Nov 2002 09:06:50 +0100
From:Jiri Chaloupka <[EMAIL PROTECTED]>
Subject: Re: Off-topic: JSP and MySQL

It solves only mistakes durring queries, not automatic rollabks from
concurrently transactions ...

Jiri Chaloupka




Why not try this approach:

try
(
   conn.setAutoCommit(false);
   stmt.execute(.);
   stmt.execute(.);
   stmt.exexute();
   conn.commit();
)
catch (SQLException slqe)
{
   conn.rollback();
}

finally
{
   conn.setAutoCommit(true);
   stmt.close;
   conn.close();
}

Emma

-Original Message-
From: Jiri Chaloupka [mailto:[EMAIL PROTECTED]]
Sent: Monday, November 25, 2002 9:35 AM
To: [EMAIL PROTECTED]
Subject: Re: Off-topic: JSP and MySQL


I do not know mySQL well, see manual page, looking for transactions.
(begin - commit - rollback - if it is supported ...)

boolean doit = true;
stm.execute("begin");
stm2.execute("begin");
stm3.exexute("begin");
if(!stm.execute("insert into ...")){
doit = false;
}
if(!stm2.execute("insert into ...")){
doit = false;
}
if(!stm3.execute("insert into ...")){
doit = false;
}
if(doit){
stm.execute("commit");
stm2.execute("commit");
stm3.execute("commit");
}else{
stm.execute("rollback");
stm2.execute("rollback");
stm3.execute("rollback");
}

Jiri Chaloupka





--
Jiri Chaloupka
B2BExpander.com
[EMAIL PROTECTED]
**
http://www.b2bexpander.com/
http://www,chalu.cz


===
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://archives.java.sun.com/jsp-interest.html
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.jsp
http://www.jguru.com/faq/index.jsp
http://www.jspinsider.com



Re: Off-topic: JSP and MySQL

2002-11-26 Thread Jiri Chaloupka
It solves only mistakes durring queries, not automatic rollabks from
concurrently transactions ...

Jiri Chaloupka


> Why not try this approach:
>
> try
> (
> conn.setAutoCommit(false);
> stmt.execute(.);
> stmt.execute(.);
> stmt.exexute();
> conn.commit();
> )
> catch (SQLException slqe)
> {
> conn.rollback();
> }
>
> finally
> {
> conn.setAutoCommit(true);
> stmt.close;
> conn.close();
> }
>
> Emma
>
> -Original Message-
> From: Jiri Chaloupka [mailto:[EMAIL PROTECTED]]
> Sent: Monday, November 25, 2002 9:35 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Off-topic: JSP and MySQL
>
>
> I do not know mySQL well, see manual page, looking for transactions.
> (begin - commit - rollback - if it is supported ...)
>
> boolean doit = true;
> stm.execute("begin");
> stm2.execute("begin");
> stm3.exexute("begin");
> if(!stm.execute("insert into ...")){
>  doit = false;
> }
> if(!stm2.execute("insert into ...")){
>  doit = false;
> }
> if(!stm3.execute("insert into ...")){
>  doit = false;
> }
> if(doit){
>  stm.execute("commit");
>  stm2.execute("commit");
>  stm3.execute("commit");
> }else{
>  stm.execute("rollback");
>  stm2.execute("rollback");
>  stm3.execute("rollback");
> }
>
> Jiri Chaloupka
>


--
Jiri Chaloupka
B2BExpander.com
[EMAIL PROTECTED]
**
http://www.b2bexpander.com/
http://www,chalu.cz

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off-topic: JSP and MySQL

2002-11-25 Thread Emmanuel Eze
Why not try this approach:

try
(
conn.setAutoCommit(false);
stmt.execute(.);
stmt.execute(.);
stmt.exexute();
conn.commit();
)
catch (SQLException slqe)
{
conn.rollback();
}

finally
{
conn.setAutoCommit(true);
stmt.close;
conn.close();
}

Emma

-Original Message-
From: Jiri Chaloupka [mailto:[EMAIL PROTECTED]]
Sent: Monday, November 25, 2002 9:35 AM
To: [EMAIL PROTECTED]
Subject: Re: Off-topic: JSP and MySQL


I do not know mySQL well, see manual page, looking for transactions.
(begin - commit - rollback - if it is supported ...)

boolean doit = true;
stm.execute("begin");
stm2.execute("begin");
stm3.exexute("begin");
if(!stm.execute("insert into ...")){
 doit = false;
}
if(!stm2.execute("insert into ...")){
 doit = false;
}
if(!stm3.execute("insert into ...")){
 doit = false;
}
if(doit){
 stm.execute("commit");
 stm2.execute("commit");
 stm3.execute("commit");
}else{
 stm.execute("rollback");
 stm2.execute("rollback");
 stm3.execute("rollback");
}

Jiri Chaloupka


> Hi folks
>
> I guess this is off-topic. am sorry for that.
>
> Is it possible to execute a set of SQL statements in a batch using
JSP.
> The db is MySQL.
>
> I have 3 SQL statements. I want all of them to execute correctly.
> If one fails the others should be rolled back.
> its all or none.
>
> Is it possible?
>
> Thank you
> Deepak
>



--
Jiri Chaloupka
B2BExpander.com
[EMAIL PROTECTED]
**
http://www.b2bexpander.com/
http://www.chalu.cz - intranet groupware system


===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off-topic: JSP and MySQL

2002-11-25 Thread Hans Bergsten
Deepak wrote:

Hi folks

I guess this is off-topic. am sorry for that.

Is it possible to execute a set of SQL statements in a batch using JSP.
The db is MySQL.

I have 3 SQL statements. I want all of them to execute correctly.
If one fails the others should be rolled back.
its all or none.

Is it possible?


Yes, it's possible, even though it may be better to move complex code
like this to a servlet or other pure Java class. If you want to do it
in a JSP page, I suggest that you use the JSTL SQL actions. It has a
transaction action that wraps other SQL actions to provide the "all
or nothing" behavior you want:

  


  

The database and driver musy of course support transactions for this
to work. For MySQL, make sure you have a recent version, since older
versions of MySQL do not support transactions.

For more on JSTL, see <http://java.sun.com/products/jsp/jstl/>

Hans
--
Hans Bergsten<[EMAIL PROTECTED]>
Gefion Software   <http://www.gefionsoftware.com/>
Author of O'Reilly's "JavaServer Pages", covering JSP 1.2 and JSTL 1.0
Details at<http://TheJSPBook.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://archives.java.sun.com/jsp-interest.html
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.jsp
http://www.jguru.com/faq/index.jsp
http://www.jspinsider.com



Re: Off-topic: JSP and MySQL

2002-11-25 Thread Jiri Chaloupka
I do not know mySQL well, see manual page, looking for transactions.
(begin - commit - rollback - if it is supported ...)

boolean doit = true;
stm.execute("begin");
stm2.execute("begin");
stm3.exexute("begin");
if(!stm.execute("insert into ...")){
 doit = false;
}
if(!stm2.execute("insert into ...")){
 doit = false;
}
if(!stm3.execute("insert into ...")){
 doit = false;
}
if(doit){
 stm.execute("commit");
 stm2.execute("commit");
 stm3.execute("commit");
}else{
 stm.execute("rollback");
 stm2.execute("rollback");
 stm3.execute("rollback");
}

Jiri Chaloupka


> Hi folks
>
> I guess this is off-topic. am sorry for that.
>
> Is it possible to execute a set of SQL statements in a batch using JSP.
> The db is MySQL.
>
> I have 3 SQL statements. I want all of them to execute correctly.
> If one fails the others should be rolled back.
> its all or none.
>
> Is it possible?
>
> Thank you
> Deepak
>



--
Jiri Chaloupka
B2BExpander.com
[EMAIL PROTECTED]
**
http://www.b2bexpander.com/
http://www.chalu.cz - intranet groupware system

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Off-topic: JSP and MySQL

2002-11-25 Thread Deepak
Hi folks

I guess this is off-topic. am sorry for that.

Is it possible to execute a set of SQL statements in a batch using JSP.
The db is MySQL.

I have 3 SQL statements. I want all of them to execute correctly.
If one fails the others should be rolled back.
its all or none.

Is it possible?

Thank you
Deepak

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



off topic: Please recommend me a good IIS forum

2002-11-04 Thread Lorena Carlo
Hello, 

Can anybody recommend me a good IIS forum.

Thanks in advance for your help.

bye

Lorena

==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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off Topic(database tool)

2002-10-19 Thread techhead4life
I want to know what is the best way to handling quotes

Somehow my query string that contain quotes seems not to work~


- Original Message -
From: "Manoj Nahar" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, May 27, 2002 6:48 AM
Subject: Re: Off Topic(database tool)


> Hi there,
>
> Try DBvisualiser
>
> http://www.minq.se/products/dbvis/ it has a free version too.
>
> Manoj
>
> At 02:58 PM 8/27/2002 +0700, you wrote:
> >Hi,
> >
> >Is there any tool to give the structure of the existing database with
> >data inside and with the relationships? Something like a visio diagrams
> >or the data dictionary .
> >
> >Tkx
> >Daniel.E
> >
>
>===
> >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://archives.java.sun.com/jsp-interest.html
> >  http://java.sun.com/products/jsp/faq.html
> >  http://www.esperanto.org.nz/jsp/jspfaq.jsp
> >  http://www.jguru.com/faq/index.jsp
> >  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off Topic - forum for DHTML/ JavaScript

2002-09-17 Thread Kesavanarayanan, Ramesh (Cognizant)

check for the website javascript.internet.com or google


Regards

Ramesh Kesavanarayanan
 *   [EMAIL PROTECTED]




-Original Message-
From: Aruniima Chakrabarti
[mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 17, 2002 6:20 PM
To: [EMAIL PROTECTED]
Subject: Off Topic - forum for DHTML/ JavaScript


Hi all,
I am stuck on some JavaScript, DHTML - Behavior problems... Is there any
email forums where I could write to...
Thanks In advance

Regards,
aruniima




This message contains privileged and confidential information and is
intended only for the individual named. If you are not the intended
recepient you should not disseminate, distribute, store, print, copy or
deliver this message. Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and immediately delete this e-mail from
your system.


E-mail transmission cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed, arrive late or
incomplete, or contain viruses. The sender therefore does not accept
liability for any errors or omissions in the contents of this message which
arise as a result of e-mail transmission.  If verification is required
please request a hard-copy version.


--

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com


This e-mail and any files transmitted with it are for the sole use of the intended 
recipient(s) and may contain confidential and privileged information.
If you are not the intended recipient, please contact the sender by reply e-mail and 
destroy all copies of the original message.
Any unauthorised review, use, disclosure, dissemination, forwarding, printing or 
copying of this email or any action taken in reliance on this e-mail is strictly
prohibited and may be unlawful.

Visit us at http://www.cognizant.com



Off Topic - forum for DHTML/ JavaScript

2002-09-17 Thread Aruniima Chakrabarti

Hi all,
I am stuck on some JavaScript, DHTML - Behavior problems... Is there any
email forums where I could write to...
Thanks In advance

Regards,
aruniima




This message contains privileged and confidential information and is
intended only for the individual named. If you are not the intended
recepient you should not disseminate, distribute, store, print, copy or
deliver this message. Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and immediately delete this e-mail from
your system.


E-mail transmission cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed, arrive late or
incomplete, or contain viruses. The sender therefore does not accept
liability for any errors or omissions in the contents of this message which
arise as a result of e-mail transmission.  If verification is required
please request a hard-copy version.


--

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Sort of Off Topic - publishing tools

2002-09-17 Thread Eric Cho

Hi all,

I was wondering if I could get any suggestions as to either a java-based or
MS based tool that could publish a bulletin from MS Word to a site using
LDAP privileges.

Also, users of this site will be limited in accessibility according to their
profile on LDAP.

AND. this tool has to be fairly cheap to boot so a full blown out
content management tool wouldn't be the exact option we're looking for.  But
any suggestions would be nice.

Thanks,
Eric



**
The contents of this email and any attachments are confidential.
It is intended for the named recipient(s) only.
If you have received this email in error please notify the system manager or  the
sender immediately and do not disclose the contents to any one or make copies.

** eSafe scanned this email for viruses, vandals and malicious content **
**

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off Topic(database tool)

2002-08-27 Thread Manoj Nahar

Hi there,

Try DBvisualiser

http://www.minq.se/products/dbvis/ it has a free version too.

Manoj

At 02:58 PM 8/27/2002 +0700, you wrote:
>Hi,
>
>Is there any tool to give the structure of the existing database with
>data inside and with the relationships? Something like a visio diagrams
>or the data dictionary .
>
>Tkx
>Daniel.E
>
>===
>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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off Topic(database tool)

2002-08-27 Thread Lakshmeenarayana G G

I think ERWin is another one which serves your interest.
For oracle you can use TOAD.

Cheers
L G Goundalkar
-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Daniel
Sent: Tuesday, August 27, 2002 1:29 PM
To: [EMAIL PROTECTED]
Subject: Off Topic(database tool)


Hi,

Is there any tool to give the structure of the existing database with
data inside and with the relationships? Something like a visio diagrams
or the data dictionary .

Tkx
Daniel.E

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Off Topic(database tool)

2002-08-27 Thread Daniel

Hi,

Is there any tool to give the structure of the existing database with
data inside and with the relationships? Something like a visio diagrams
or the data dictionary .

Tkx
Daniel.E

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off topic: Apache Problem!

2002-08-21 Thread Dayanand

Hi,

Over-writing files should be possible. I have not faced a similar situation,
and
sorry I don't have an answer to this issue.

But, if your requirement is urgent. I just want to suggest another solution
/
alternative.

I am assuming the crystal reports scheduler will be running only once daily.

So, instead of overwriting the same html file, can you make crystal reports
generate different files - filenames can have ".html".

This is a temporary solution and would certainly make more files get
accumulated
in the directory. (An advantage of this method is that it allows us to have
a record
of all the reports generated. So, time need not be spent again to generate
again
unless a report is required from date1 to date2 in a single report !)

Hope the above temporary solution helps.

Regards,
Dayanand.

-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of It, Cockpit (CAP,
Contractor)
Sent: Thursday, August 22, 2002 11:09 AM
To: [EMAIL PROTECTED]
Subject: Off topic: Apache Problem!


Dear Friends,
I have a problem in my IBM HTTP server which has been built on top of Apache
web server.
My problem is like this

I have a virtual folder which has been mapped to Crystal Report's sechduler.
This scheduler will generate files and put them in to this folder...
Then our users will go and access those files over web...these files are
basically HTML files.

Now the problem is If the files are accessed over web one time...then the
webserver is not allowing me to
delete or over write these files until I bring down the webserver. But this
is not required.
Because the refreshed files will have to be overridden on these files
daily...

So please help me someone who knows where do I have to modify and what..?
I checked out "Cache Accelerator" functionality of Apache which says the
static files
will be cached for access acceleration...but it says the accelerator will
automatically load the
changed files...but my problem is, the web server is not at all allowing me
to change the existing files..

Pls help...
Thank you verymuch in Advance...


Yogaraj


"THIS E-MAIL MESSAGE ALONG WITH ANY ATTACHMENTS IS INTENDED ONLY FOR THE
ADDRESSEE and may contain confidential and privileged information.
If the reader of this message is not the intended recipient,
you are notified that any dissemination, distribution or copy of this
communication is strictly Prohibited.
If you have received this message by error, please notify us
immediately, return the original mail to the sender and delete the
message from your system."

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Off topic: Apache Problem!

2002-08-21 Thread It, Cockpit (CAP, Contractor)

Dear Friends,
I have a problem in my IBM HTTP server which has been built on top of Apache
web server.
My problem is like this

I have a virtual folder which has been mapped to Crystal Report's sechduler.
This scheduler will generate files and put them in to this folder...
Then our users will go and access those files over web...these files are
basically HTML files.

Now the problem is If the files are accessed over web one time...then the
webserver is not allowing me to
delete or over write these files until I bring down the webserver. But this
is not required.
Because the refreshed files will have to be overridden on these files
daily...

So please help me someone who knows where do I have to modify and what..?
I checked out "Cache Accelerator" functionality of Apache which says the
static files
will be cached for access acceleration...but it says the accelerator will
automatically load the
changed files...but my problem is, the web server is not at all allowing me
to change the existing files..

Pls help...
Thank you verymuch in Advance...


Yogaraj


"THIS E-MAIL MESSAGE ALONG WITH ANY ATTACHMENTS IS INTENDED ONLY FOR THE
ADDRESSEE and may contain confidential and privileged information.
If the reader of this message is not the intended recipient,
you are notified that any dissemination, distribution or copy of this
communication is strictly Prohibited.
If you have received this message by error, please notify us
immediately, return the original mail to the sender and delete the
message from your system."

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic: An UML tool that can reverse engineer a java code

2002-08-03 Thread Tiago Nodari

 The best tool I have seen to reverse engineer code is Together,
its really nice you can alter code in another software, alt-tab back to
together and it will make the changes necessary in the model.  Its not free
:(  Hopefully someday they will release a community version :)

 tiago

At 03:07 AM 8/3/2002 -0500, you wrote:
>Hello,
>
>I now this is a little of topic, sorry.
>
>Can somebody tell me which modeling tool besides the ones offered by
>Rational Rose are good for modeling o-o systems using UML.  This tool should
>allow reverse engineer and if posible be free.
>
>Thanks in advance.
>
>bye
>
>Lorena
>
>===
>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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com

cya,

Tiago Nodari
Need a JSP Developer? I am looking for a job in the US...
www.nodari.org

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic: An UML tool that can reverse engineer a java code

2002-08-03 Thread Robert S. Sfeir

Poseidon, it's written in java too.  You have to get the pro version
though since the free version doesn't reverse engineer anything.
http://www.gentleware.com/

R
On Saturday, August 3, 2002, at 04:07 AM, Lorena Carlo wrote:

> Hello,
>
> I now this is a little of topic, sorry.
>
> Can somebody tell me which modeling tool besides the ones offered by
> Rational Rose are good for modeling o-o systems using UML.  This tool
> should
> allow reverse engineer and if posible be free.
>
> Thanks in advance.
>
> bye
>
> Lorena
>
> ===
> 
> 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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



off topic: An UML tool that can reverse engineer a java code

2002-08-03 Thread Lorena Carlo

Hello,

I now this is a little of topic, sorry.

Can somebody tell me which modeling tool besides the ones offered by
Rational Rose are good for modeling o-o systems using UML.  This tool should
allow reverse engineer and if posible be free.

Thanks in advance.

bye

Lorena

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off Topic

2002-07-31 Thread Kevin Gutch

This is a good list.

http://mulberrytech.com/

[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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off Topic

2002-07-31 Thread Bhangale, Bhushan

You can post on [EMAIL PROTECTED] also.

-Original Message-
From: Aruniima Chakrabarti [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 31, 2002 2:32 AM
To: [EMAIL PROTECTED]
Subject: Off Topic


Can some one direct me to any group in which I could post xslt-xml
questionsHelp needed urgently Thanks in Advance

Regards,
aruniima




This message contains privileged and confidential information and is
intended only for the individual named. If you are not the intended
recepient you should not disseminate, distribute, store, print, copy or
deliver this message. Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and immediately delete this e-mail from
your system.


E-mail transmission cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed, arrive late or
incomplete, or contain viruses. The sender therefore does not accept
liability for any errors or omissions in the contents of this message which
arise as a result of e-mail transmission.  If verification is required
please request a hard-copy version.


--

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com


"The information in this e-mail, and any attachment therein, is
confidential and for use by the addressee only. If you are not the
intended recipient, please return the e-mail to the sender and delete
it from your computer. Although The Bank of New York attempts to
sweep e-mail and attachments for viruses, it does not guarantee that
either are virus-free and accepts no liability for any damage sustained
as a result of viruses."

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off Topic

2002-07-30 Thread Gavin Lang

http://www.google.com/search?q=xml+xslt+mailing+list

please don't tell them who told you how to use a search engine

> -Original Message-
> From: Aruniima Chakrabarti
> [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 31 July 2002 4:32 PM
> To: [EMAIL PROTECTED]
> Subject: Off Topic
>
>
> Can some one direct me to any group in which I could post
> xslt-xml questionsHelp needed urgently Thanks in Advance
>
> Regards,
> aruniima
>
>
> --
> --
>
> This message contains privileged and confidential information
> and is intended only for the individual named. If you are not
> the intended recepient you should not disseminate,
> distribute, store, print, copy or deliver this message.
> Please notify the sender immediately by e-mail if you have
> received this e-mail by mistake and immediately delete this
> e-mail from your system.
>
>
> E-mail transmission cannot be guaranteed to be secure or
> error-free as information could be intercepted, corrupted,
> lost, destroyed, arrive late or incomplete, or contain
> viruses. The sender therefore does not accept liability for
> any errors or omissions in the contents of this message which
> arise as a result of e-mail transmission.  If verification is
> required please request a hard-copy version.
>
>
> --
> 
>
> ==
> =
> 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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Off Topic

2002-07-30 Thread Aruniima Chakrabarti

Can some one direct me to any group in which I could post xslt-xml
questionsHelp needed urgently
Thanks in Advance

Regards,
aruniima




This message contains privileged and confidential information and is
intended only for the individual named. If you are not the intended
recepient you should not disseminate, distribute, store, print, copy or
deliver this message. Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and immediately delete this e-mail from
your system.


E-mail transmission cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed, arrive late or
incomplete, or contain viruses. The sender therefore does not accept
liability for any errors or omissions in the contents of this message which
arise as a result of e-mail transmission.  If verification is required
please request a hard-copy version.


--

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



off topic: For your eyes only.

2002-07-09 Thread Vaishali S. Pandya

For your eyes only.safety and healthy vision.
Take good care of your EYES
During a recent visit to an optician, one of my friends was told of an
exercise for the eyes by a specialist doctor in the US that he termed as
"20-20-20." It is apt for all of us, who spend long hours at our desks,
looking at the computer screen. Thought I'd share it with you.
 20-20-20
Step I : After every 20 minutes of looking into the computer screen, turn
your head and try to look at any object placed at least 20 feet away. This
changes the focal length of your eyes, a must-do for the tired eyes.
Step II : Try and blink your eyes for 20 times in succession, to moisten
them.
Step III : Time permitting of course, one should walk 20 paces after every
20 minutes of sitting in one particular posture. Helps blood circulation
for
the entire body.
Please circulate among your friends for their benefit.

Regards
Vaishali Pandya

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off-Topic Post: US IT Letter Writing Campaign to Members of C ongr ess/House on Sept 2, 2002

2002-07-09 Thread Haseltine, Celeste

Garann,

I don't know if labor rights is included, but it's a good issue to add to
the big picture.  If you are able to view the MonsterBoard discussion
thread, then you've probably gathered, as I have, that the responses to an
earlier thread were overwhelming and emotional, hence the idea of a letter
writing campaign.  Many of the responders on Monster are unemployed, and two
appear to have lost their jobs to cheaper H1-B replacements (or they claim
they have).  I sent a separate message to the moderator/initiator of the
idea of the letter writing campaign, via Yahoo, giving him my 2 cents worth
on not letting this move into an H1-B bashing affair.  As a former gov't
worker (like yourself), and a former protestor and activist, I wanted to
warn him that his good intentions could get subverted by people who are
looking for someone to blame for their current job/jobless situation.  If he
lets that happen, then he will have a hard time obtaining media support, and
support by respected groups like IEEE, whom he is hoping to solicit to join
his letter writing campaign.  None of these groups, and myself included,
want to be associated with any "radical" group that appears, or is perceived
to be, prejudiced against foreigners coming over to the US or working in the
US.  The focus should be maintained on the fact that there is NOT an IT
shortage in the US, and that there are plenty of US workers to fill the
jobs.

If you have a home PC, feel free to join via your home email address.  Or if
you are concerned about your identity being found out, sign up for a
hotmail/yahoo email account, and then join the yahoo group.  Either way, as
a former federal worker, I know that you are not required to recuse yourself
from political activities, as long as they do not directly contradict the
mission statement of the agency you are employed with.  Many of my activist
activities date back to when I was a federal worker in the 1980's.  Check
with whomever handles employee ethics in your agency to get guidance if you
have any concerns before joining the letter writing campaign.

Celeste


-Original Message-
From: Means, Garann R. [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 09, 2002 3:05 PM
To: [EMAIL PROTECTED]
Subject: Re: Off-Topic Post: US IT Letter Writing Campaign to Members of
C ongr ess/House on Sept 2, 2002


Celeste,

That's an interesting thread. As a government employee, it's best that I not
get involved with political issues from my desk, so I didn't feel it was
appropriate for me to sign up for the Yahoo group, and thus can't see the
messages. Perhaps you could tell me, is the campaign at all trying to
address the labor rights (or lack thereof) of H1B workers? I notice you have
at least one former H1B worker responding to the thread in Monster - are you
trying to get other current and former H1B's involved to detail the extent
of what some perceive as abuses allowed to exist under that system? It seems
like an integral part of your argument - the possibility that the program is
good for neither citizens NOR foreign workers.

Just my two cents. Nice to see programmers thinking about the world outside
their boxes!
g.

-Original Message-
From: Haseltine, Celeste [mailto:[EMAIL PROTECTED]]
Sent: July 09, 2002 - Tuesday 11:50a
To: [EMAIL PROTECTED]
Subject: Off-Topic Post: US IT Letter Writing Campaign to Members of
Congr ess/House on Sept 2, 2002


This is an off-topic post, for those of you who wish to delete this item
prior to reading.

A couple of people who were corresponding on one of the Monster Board
forums, garnered enough feedback/support, that they have decided to start a
nationwide letter writing campaign to members of the US House and Senate on
Sept 2 (Labor day).  It is my understanding that the IEEE, and other various
IT related organizations in the US are considering participation in this
effort (see thread
http://forums.technology.monster.com/viewmessage.asp?messageid=2347554 on
MonsterBoard).  The intent of the campaign is to let our respective
representatives know that there is NOT a shortage of IT personnel in the US,
contrary to what recent studies/reports and the lobby groups for the Fortune
100's would like our representatives to believe.  A group has been formed on
Yahoo for this purpose, and you can go to http://groups.yahoo.com/ and
search for the group "htwprotest".  If you do not have a Yahoo memberID, you
will first need to sign up for one (it's free).  You can then sign up to a
participating member of this effort if you are interested.

Celeste Haseltine, PE

===
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://archives.java.sun.com/jsp-intere

Re: Off-Topic Post: US IT Letter Writing Campaign to Members of C ongr ess/House on Sept 2, 2002

2002-07-09 Thread Means, Garann R.

Celeste,

That's an interesting thread. As a government employee, it's best that I not
get involved with political issues from my desk, so I didn't feel it was
appropriate for me to sign up for the Yahoo group, and thus can't see the
messages. Perhaps you could tell me, is the campaign at all trying to
address the labor rights (or lack thereof) of H1B workers? I notice you have
at least one former H1B worker responding to the thread in Monster - are you
trying to get other current and former H1B's involved to detail the extent
of what some perceive as abuses allowed to exist under that system? It seems
like an integral part of your argument - the possibility that the program is
good for neither citizens NOR foreign workers.

Just my two cents. Nice to see programmers thinking about the world outside
their boxes!
g.

-Original Message-
From: Haseltine, Celeste [mailto:[EMAIL PROTECTED]]
Sent: July 09, 2002 - Tuesday 11:50a
To: [EMAIL PROTECTED]
Subject: Off-Topic Post: US IT Letter Writing Campaign to Members of
Congr ess/House on Sept 2, 2002


This is an off-topic post, for those of you who wish to delete this item
prior to reading.

A couple of people who were corresponding on one of the Monster Board
forums, garnered enough feedback/support, that they have decided to start a
nationwide letter writing campaign to members of the US House and Senate on
Sept 2 (Labor day).  It is my understanding that the IEEE, and other various
IT related organizations in the US are considering participation in this
effort (see thread
http://forums.technology.monster.com/viewmessage.asp?messageid=2347554 on
MonsterBoard).  The intent of the campaign is to let our respective
representatives know that there is NOT a shortage of IT personnel in the US,
contrary to what recent studies/reports and the lobby groups for the Fortune
100's would like our representatives to believe.  A group has been formed on
Yahoo for this purpose, and you can go to http://groups.yahoo.com/ and
search for the group "htwprotest".  If you do not have a Yahoo memberID, you
will first need to sign up for one (it's free).  You can then sign up to a
participating member of this effort if you are interested.

Celeste Haseltine, PE

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Off-Topic Post: US IT Letter Writing Campaign to Members of Congress/House on Se

2002-07-09 Thread JSP COP

Right, but there are a lot of lazy yahoosss out there (like you, for
instance)that are spending company time on Yahoo and Monster website instead
of really doing any work.


_
Send and receive Hotmail on your mobile device: http://mobile.msn.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Off-Topic Post: US IT Letter Writing Campaign to Members of Congr ess/House on Sept 2, 2002

2002-07-09 Thread Haseltine, Celeste

This is an off-topic post, for those of you who wish to delete this item
prior to reading.

A couple of people who were corresponding on one of the Monster Board
forums, garnered enough feedback/support, that they have decided to start a
nationwide letter writing campaign to members of the US House and Senate on
Sept 2 (Labor day).  It is my understanding that the IEEE, and other various
IT related organizations in the US are considering participation in this
effort (see thread
http://forums.technology.monster.com/viewmessage.asp?messageid=2347554 on
MonsterBoard).  The intent of the campaign is to let our respective
representatives know that there is NOT a shortage of IT personnel in the US,
contrary to what recent studies/reports and the lobby groups for the Fortune
100's would like our representatives to believe.  A group has been formed on
Yahoo for this purpose, and you can go to http://groups.yahoo.com/ and
search for the group "htwprotest".  If you do not have a Yahoo memberID, you
will first need to sign up for one (it's free).  You can then sign up to a
participating member of this effort if you are interested.

Celeste Haseltine, PE

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic - que from java script

2002-07-01 Thread Vaishali S. Pandya

Thank you very much Adrian
it's working fine

Regards
Vaishali
Reliance Ind Ltd
Ahmedabad




  Adrian Janssen
  cc:
  Sent by: A   Subject:  Re: off topic - que from java 
script
  mailing list
  about Java Server
  Pages
  specification and
  reference
  


  07/01/02 01:43 PM
  Please respond to
  A mailing list
  about Java Server
  Pages
  specification and
  reference






res = window.confirm ( "your text here..." );

opens up a modal dialog box with the specified text on it and OK and Cancel
buttons on it. It returns true if OK button is pressed, false if the Cancel
button is pressed.

> -Original Message-
> From: Vaishali S. Pandya [SMTP:[EMAIL PROTECTED]]
> Sent: 01 July 2002 09:09
> To:   [EMAIL PROTECTED]
> Subject:  off topic - que from java script
>
> Hi all
> how to ask user a que like "Have u saved the changes"
> with yes/no/calcel buttons?
> just like window.promp, is there any thing provided?
>
> Thanks
> Vaishali
> Reliance Ind Ltd
> A'bad
>
>
==
> =
> 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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com
--

It is the strict policy of Truworths that its e-mail facility and all
e-mail communications emanating therefrom, should be utilised for
business purposes only and should conform to high professional and
business standards.   Truworths has stipulated certain regulations in
terms whereof strict guidelines relating to the use and content of
e-mail communications are laid down. The use of the Truworths e-mail
facility is not permitted for the distribution of chain letters or
offensive mail of any nature whatsoever.   Truworths hereby distances
itself from and accepts no liability in respect of the unauthorised
use of its e-mail facility or the sending of e-mail communications
for other than strictly business purposes.   Truworths furthermore
disclaims liability for any  unauthorised instruction for  which
permission was not granted.Truworths Limited accepts no liability
for any consequences arising from or as a result of reliance on this
message unless it is in respect of bona fide Truworths business for
which proper authorisation has been granted.

Any recipient of an unacceptable communication, a chain letter or
offensive material of any nature is requested to notify the Truworths
e-mail administrator ([EMAIL PROTECTED]) immediately in order that
appropriate action can be taken against the individual concerned.

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic - que from java script

2002-07-01 Thread Adrian Janssen

res = window.confirm ( "your text here..." );

opens up a modal dialog box with the specified text on it and OK and Cancel
buttons on it. It returns true if OK button is pressed, false if the Cancel
button is pressed.

> -Original Message-
> From: Vaishali S. Pandya [SMTP:[EMAIL PROTECTED]]
> Sent: 01 July 2002 09:09
> To:   [EMAIL PROTECTED]
> Subject:  off topic - que from java script
>
> Hi all
> how to ask user a que like "Have u saved the changes"
> with yes/no/calcel buttons?
> just like window.promp, is there any thing provided?
>
> Thanks
> Vaishali
> Reliance Ind Ltd
> A'bad
>
> ==
> =
> 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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com
--

It is the strict policy of Truworths that its e-mail facility and all
e-mail communications emanating therefrom, should be utilised for
business purposes only and should conform to high professional and
business standards.   Truworths has stipulated certain regulations in
terms whereof strict guidelines relating to the use and content of
e-mail communications are laid down. The use of the Truworths e-mail
facility is not permitted for the distribution of chain letters or
offensive mail of any nature whatsoever.   Truworths hereby distances
itself from and accepts no liability in respect of the unauthorised
use of its e-mail facility or the sending of e-mail communications
for other than strictly business purposes.   Truworths furthermore
disclaims liability for any  unauthorised instruction for  which
permission was not granted.Truworths Limited accepts no liability
for any consequences arising from or as a result of reliance on this
message unless it is in respect of bona fide Truworths business for
which proper authorisation has been granted.

Any recipient of an unacceptable communication, a chain letter or
offensive material of any nature is requested to notify the Truworths
e-mail administrator ([EMAIL PROTECTED]) immediately in order that
appropriate action can be taken against the individual concerned.

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



off topic - que from java script

2002-07-01 Thread Vaishali S. Pandya

Hi all
how to ask user a que like "Have u saved the changes"
with yes/no/calcel buttons?
just like window.promp, is there any thing provided?

Thanks
Vaishali
Reliance Ind Ltd
A'bad

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic: Download Microsoft's ODBC Driver

2002-06-27 Thread Conyers, Dwayne

Try the Technet site at Microsoft

Dwacon
www.dwacon.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



SV: off topic: Download Microsoft's ODBC Driver

2002-06-27 Thread Mathias Hoggren

Hi!

You could try this one, http://www.freetds.org/

/Mathias


-Ursprungligt meddelande-
Fran: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]For Emmanuel Eze
Skickat: den 27 juni 2002 11:12
Till: [EMAIL PROTECTED]
Amne: off topic: Download Microsoft's ODBC Driver


Hi all,

Does anyone know where I can download Microsoft's ODBC Driver?

Emma

-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Peter Dolukhanov
Sent: Wednesday, June 26, 2002 10:08 AM
To: [EMAIL PROTECTED]
Subject: Re: can i get IP-address and computer name of the client?


I believe the method you are looking for is request.getRemoteHost(), how
you choose to store this is up to you. A BufferedWriter or a Database
may prove to be a useful choice.

Best Regards,
Peter Dolukhanov

-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]] On Behalf Of Vaishali S. Pandya
Sent: 26 June 2002 07:47
To: [EMAIL PROTECTED]
Subject: can i get IP-address and computer name of the client?

hi all
i want to know that from which IP-add and computer name my program has
been
used.
how can i do this?
here we have intranet
my jsp will be run from any where
but i want to keep the track of users and computers.

Thanks in advance
Vaishali
Reliance Ind Ltd
A'bad


===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



off topic: Download Microsoft's ODBC Driver

2002-06-27 Thread Emmanuel Eze

Hi all,

Does anyone know where I can download Microsoft's ODBC Driver?

Emma

-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Peter Dolukhanov
Sent: Wednesday, June 26, 2002 10:08 AM
To: [EMAIL PROTECTED]
Subject: Re: can i get IP-address and computer name of the client?


I believe the method you are looking for is request.getRemoteHost(), how
you choose to store this is up to you. A BufferedWriter or a Database
may prove to be a useful choice.

Best Regards,
Peter Dolukhanov

-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]] On Behalf Of Vaishali S. Pandya
Sent: 26 June 2002 07:47
To: [EMAIL PROTECTED]
Subject: can i get IP-address and computer name of the client?

hi all
i want to know that from which IP-add and computer name my program has
been
used.
how can i do this?
here we have intranet
my jsp will be run from any where
but i want to keep the track of users and computers.

Thanks in advance
Vaishali
Reliance Ind Ltd
A'bad


===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: tomcat4.0 conf.(off topic)

2002-06-23 Thread subbu

Edit your startup.bat (which is inside bin directory.)

type the following

ex.

set tomcat_home=c:\tomcat4.0.1(tomcat installtion folder)

set java_home=c:\jdk1.4(jdk installtion )


Also check any other  services are running  in the same port as tomcat.

if it is so  stop that service or change tomcat's port number

regadrs

s.subramanian
IonIdea Enterprise Solutions
Bangalore.











- Original Message -
From: "Vaishali S. Pandya" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, June 22, 2002 1:56 PM
Subject: tomcat4.0 conf.(off topic)


> hi all
> actually i asked this on tomcat-interest and servlet-interest too but
could
> not find the answer to start my tomcat working
> i found lot's of sites and links of lots of sides and tried a lot AND
> follow all the statements given there
> but yet my tomcat -4 is not working
> in fact it has not been configured properly
> it is tomcat 4.0
> i did download the zip verson and extract it
> found all the folders
> is it the right way?
> or i have to download a setup file something and install on my pc?
> i created a mytomcat folder in my E drive and my all extracted files and
> folders are there
> what is catalina_home?
> well it is an off topic and if u don't mind pls help me
> 3.1 is working fine
> it is windows XP
> thanks in advance
>
> Vaishali
> Reliance Ind Ltd
> A'bad
>
>
===
> 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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: tomcat4.0 conf.(off topic)

2002-06-22 Thread Sitaram_chatti

Hi Vaishali,
catalina Home is what you should define in the environment variables.
Goto Control Panel, Systems, Advanced Tab, Click on the Environment Variables.
Create a new System Variable of name CATALINA_HOME and its corresponding value as the 
folder where you have extrated the tomcat.. (e.g. E:\tomcat\jakarta-tomcat-4.0.3)

Also create a new one for Java home (if it does not exist) name - JAVA_HOME and value 
(the path where you have installed the Jdk e.g. c:\jdk1.4)

You create the above system variables and then start the webserver..

Lets hope it will start then.

Rgds
Sitaram

(If the variables are already defined, I am very sorry i cant help you)


-Original Message-
From: Vaishali S. Pandya [mailto:[EMAIL PROTECTED]]
Sent: Saturday, June 22, 2002 1:56 PM
To: [EMAIL PROTECTED]
Subject: tomcat4.0 conf.(off topic)


hi all
actually i asked this on tomcat-interest and servlet-interest too but could
not find the answer to start my tomcat working
i found lot's of sites and links of lots of sides and tried a lot AND
follow all the statements given there
but yet my tomcat -4 is not working
in fact it has not been configured properly
it is tomcat 4.0
i did download the zip verson and extract it
found all the folders
is it the right way?
or i have to download a setup file something and install on my pc?
i created a mytomcat folder in my E drive and my all extracted files and
folders are there
what is catalina_home?
well it is an off topic and if u don't mind pls help me
3.1 is working fine
it is windows XP
thanks in advance

Vaishali
Reliance Ind Ltd
A'bad

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



tomcat4.0 conf.(off topic)

2002-06-22 Thread Vaishali S. Pandya

hi all
actually i asked this on tomcat-interest and servlet-interest too but could
not find the answer to start my tomcat working
i found lot's of sites and links of lots of sides and tried a lot AND
follow all the statements given there
but yet my tomcat -4 is not working
in fact it has not been configured properly
it is tomcat 4.0
i did download the zip verson and extract it
found all the folders
is it the right way?
or i have to download a setup file something and install on my pc?
i created a mytomcat folder in my E drive and my all extracted files and
folders are there
what is catalina_home?
well it is an off topic and if u don't mind pls help me
3.1 is working fine
it is windows XP
thanks in advance

Vaishali
Reliance Ind Ltd
A'bad

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Somewhat off-topic: Should I learn WebSphere?

2002-06-13 Thread Haseltine, Celeste

John,

I agree with your advice.  Getting the depth of understanding of how to
design AND build a web site using JSP/servlets, JDBC, Java class beans (as
opposed to applets), tag libraries (Jakarta libraries or even JRUN's), XML,
and Model-View-Controller (MVC) architecture is MUCH more important at the
outset than the breadth of experience.  We are production shop that uses
JRUN, and although JRUN does not have the market share that IBM Websphere or
BEA Weblogic has, it is still one of the cheapest third party servers you
can purchase, unless you go open source (JBoss, Tomcat).

Once you have worked with one Sun certified compliant JDBC driver and
server, than you can easily pick up on the others.  The same is true in
regards to MVC architecture and to serlvet/EJB servers, in my opinion.
Struts is one of the most popular MVC architecture's around, but it is not
the only MVC open source architecture out there.  Another is Maverick, which
has some feature that Struts doesn't have.  But again, once you understand
MVC architecture, and how to design and build a MVC web site, which open
source architecture you choose to use, or even if you decide to write is
your own, is moot.

Interestingly enough, though I have always maintained this viewpoint in
regards to hiring people, this is the first time I seen anyone else express
this viewpoint.  Most other managers still believe if the individual "hasn't
worked in product A, then he's no use to me".  It's the basic understanding
of the concepts regarding what's involved in designing and building a site
or product, and the technology you are using, that is most important.  The
programming language and the software packages you choose to use to meet
that goal are second in my opinion.

Celeste

-Original Message-
From: John Slaman [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 13, 2002 8:06 AM
To: [EMAIL PROTECTED]
Subject: Re: Somewhat off-topic: Should I learn WebSphere?


As I guy who conducts interviews.

Having the technology of the products used by the hiring company will help
get you the interviews.
However, unless you've used them in an industrial setting - the interviewer
will quickly see through your thin layer of skills.

The best use of your time (assuming you don't have a sheet of paper proving
you've learned this stuff) is to pick a group of technologies that work
together - and build an appropriate application & put it into production.

For example;  Java, Servlet, Struts, JSP, EJB.

This gives you something to put on your resume that looks like industry
experience, and you've done some learning in the process.  As well, it gives
you a story to tell during the interview.  What you did, what worked, what
didn't, what you learned, how you'd do things differently.

The other important thing to spend time is learning and understanding good
"design".  This is something harder to teach, harder to learn, but just as
important.

Some of the scariest things I see in the industry are guys from other
industries who've read a book, built an application, and then sell
themselves like professional IT guys; where their skills are no where near
the same level as the guy who's spent 4 years in university and many more
years practicing the trade.  I've worked with some very smart cookies who
were self taught; but these guys tend to be far and few between.  Make sure
you focus on UNDERSTANDING how everything works together.  Getting depth in
JRUN is more important then getting breath across JRUN, WebSphere, Weblogic,
etc - especially if you are entering the market as a junior guy!

Best of luck.



-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Andy Engle
Sent: Tuesday, June 11, 2002 9:11 PM
To: [EMAIL PROTECTED]
Subject: Somewhat off-topic: Should I learn WebSphere?

Hi all,

I'm a web hack who enjoys doing some web application programming.  While
this isn't my "day job", I wouldn't mind for it to be.  In the past, the web
applications I have written (for school assignments and other stuff like
that) have all be hosted on Jrun or Tomcat.  In thinking about any future
career moves, would I be well served to take the time to learn WebSphere?
Does WebSphere offer a large advantage over the other application servers,
or is it more the case of "you know one, you know them all"?  And if you
think I should learn WebSphere, what is the best way to do so?

Thanks for your advice -- I'm looking forward to reading what you have to
say.


Best Regards,
Andy

===
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/Ser

Re: Somewhat off-topic: Should I learn WebSphere?

2002-06-13 Thread John Slaman

As I guy who conducts interviews.

Having the technology of the products used by the hiring company will help
get you the interviews.
However, unless you've used them in an industrial setting - the interviewer
will quickly see through your thin layer of skills.

The best use of your time (assuming you don't have a sheet of paper proving
you've learned this stuff) is to pick a group of technologies that work
together - and build an appropriate application & put it into production.

For example;  Java, Servlet, Struts, JSP, EJB.

This gives you something to put on your resume that looks like industry
experience, and you've done some learning in the process.  As well, it gives
you a story to tell during the interview.  What you did, what worked, what
didn't, what you learned, how you'd do things differently.

The other important thing to spend time is learning and understanding good
"design".  This is something harder to teach, harder to learn, but just as
important.

Some of the scariest things I see in the industry are guys from other
industries who've read a book, built an application, and then sell
themselves like professional IT guys; where their skills are no where near
the same level as the guy who's spent 4 years in university and many more
years practicing the trade.  I've worked with some very smart cookies who
were self taught; but these guys tend to be far and few between.  Make sure
you focus on UNDERSTANDING how everything works together.  Getting depth in
JRUN is more important then getting breath across JRUN, WebSphere, Weblogic,
etc - especially if you are entering the market as a junior guy!

Best of luck.



-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Andy Engle
Sent: Tuesday, June 11, 2002 9:11 PM
To: [EMAIL PROTECTED]
Subject: Somewhat off-topic: Should I learn WebSphere?

Hi all,

I'm a web hack who enjoys doing some web application programming.  While
this isn't my "day job", I wouldn't mind for it to be.  In the past, the web
applications I have written (for school assignments and other stuff like
that) have all be hosted on Jrun or Tomcat.  In thinking about any future
career moves, would I be well served to take the time to learn WebSphere?
Does WebSphere offer a large advantage over the other application servers,
or is it more the case of "you know one, you know them all"?  And if you
think I should learn WebSphere, what is the best way to do so?

Thanks for your advice -- I'm looking forward to reading what you have to
say.


Best Regards,
Andy

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Somewhat off-topic: Should I learn WebSphere?

2002-06-12 Thread Andy Engle

You wrote:

> Is IBM Websphere all that cheap compared to JRUN Server?  JRUN Server
> also comes with a development IDE, JRUN Studio, for an additional
> $400.00.  The cost for the server is now under $1000.00.

I'm really not too sure on the cost of the JRun server.  When we used
it (about a year and a half ago) it was for our senior project, and so
we basically just used the trial version.  It was obviously limited in
functionality, but good enough for what we were using it for.  And of
course we didn't pay anything for it, since it was the demo version.  I
am not sure they still have the demo version available or not.


> I thought IBM Websphere was still in the 20K-30K range (for the
> entire package including the development Studio), which is a lot more
> money for a small business than JRUN Server.

I ain't gonna be the one payin' for it!  I'll let any future employer
do that. :)   I just want to know if I should take the time to learn
more about it.  So far, it sounds like it would be helpful to know more
about WebSphere, but not absolutely essential.


Thanks,
Andy



__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Somewhat off-topic: Should I learn WebSphere?

2002-06-12 Thread Haseltine, Celeste

Is IBM Websphere all that cheap compared to JRUN Server?  JRUN Server also
comes with a development IDE, JRUN Studio, for an additional $400.00.  The
cost for the server is now under $1000.00.  I thought IBM Websphere was
still in the 20K-30K range (for the entire package including the development
Studio), which is a lot more money for a small business than JRUN Server.

Celeste

-Original Message-
From: Darrin Blocker [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 9:23 PM
To: [EMAIL PROTECTED]
Subject: Re: Somewhat off-topic: Should I learn WebSphere?


Andy -

As you probably already know, IBM markets their product Websphere, in a
total package for developers, designers and Web Admins. As a programmer, I
wouldn't be too concerned about the App Server as much as I would be
concerned about the Application Development tool.  IBM's WSAD (WebSphere
Application Developer Studio) is designed in such a fashion as to compliment
the App Server and Vice Versa.

If you're looking towards a career in web design for small to mid size
corporations, then you might consider following IBM's road to Java. The nice
thing about WebSphere is that it has been ported to many platforms including
but not limited to  Linux, W2K and IBM's proprietary AS400/OS400( More
commonly known as I-Series 400).

On the other hand, if you're looking at a smaller entrepreneur approach to
tap into the market, then you might consider keeping with the open source
community.

To simply answer your question "Should I learn Websphere?".  I wouldn't
waste precious time learning WebSphere, however, you might want learn WSAD
or even VAJ (Visual Age for Java).  I've seen many job postings on dice.com
indicating a demand for programmers with knowledge of both.   HTH..

- Original Message -
From: Andy Engle <[EMAIL PROTECTED]>
Date: Tue, 11 Jun 2002 20:10:30 -0500
To: [EMAIL PROTECTED]
Subject:  Somewhat off-topic: Should I learn WebSphere?


> Hi all,
>
> I'm a web hack who enjoys doing some web application programming.  While
> this isn't my "day job", I wouldn't mind for it to be.  In the past, the
web
> applications I have written (for school assignments and other stuff like
> that) have all be hosted on Jrun or Tomcat.  In thinking about any future
> career moves, would I be well served to take the time to learn WebSphere?
> Does WebSphere offer a large advantage over the other application servers,
> or is it more the case of "you know one, you know them all"?  And if you
> think I should learn WebSphere, what is the best way to do so?
>
> Thanks for your advice -- I'm looking forward to reading what you have to
> say.
>
>
> Best Regards,
> Andy
>
>
===
> 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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com
>
>

--
___
Sign-up for your own FREE Personalized E-mail at Mail.com
http://www.mail.com/?sr=signup

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Somewhat off-topic: Should I learn WebSphere?

2002-06-12 Thread Bob Prah

Hi Andy,

I'm not yet a guru (or an expert) in this area, but do take a look at this link : 
http://www.togethercommunity.com/download.jsp?type=templates


I suppose it might help you in your decision making !

Best Regards,

Bob

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Somewhat off-topic: Should I learn WebSphere?

2002-06-11 Thread Darrin Blocker

Andy –

As you probably already know, IBM markets their product Websphere, in a total package 
for developers, designers and Web Admins. As a programmer, I wouldn’t be too concerned 
about the App Server as much as I would be concerned about the Application Development 
tool.  IBM’s WSAD (WebSphere Application Developer Studio) is designed in such a 
fashion as to compliment the App Server and Vice Versa.

If you’re looking towards a career in web design for small to mid size corporations, 
then you might consider following IBM’s road to Java. The nice thing about WebSphere 
is that it has been ported to many platforms including but not limited to  Linux, W2K 
and IBM’s proprietary AS400/OS400( More commonly known as I-Series 400).

On the other hand, if you’re looking at a smaller entrepreneur approach to tap into 
the market, then you might consider keeping with the open source community.

To simply answer your question “Should I learn Websphere?”.  I wouldn’t waste precious 
time learning WebSphere, however, you might want learn WSAD or even VAJ (Visual Age 
for Java).  I’ve seen many job postings on dice.com indicating a demand for 
programmers with knowledge of both.   HTH……

- Original Message -
From: Andy Engle <[EMAIL PROTECTED]>
Date: Tue, 11 Jun 2002 20:10:30 -0500
To: [EMAIL PROTECTED]
Subject:  Somewhat off-topic: Should I learn WebSphere?


> Hi all,
>
> I'm a web hack who enjoys doing some web application programming.  While
> this isn't my "day job", I wouldn't mind for it to be.  In the past, the web
> applications I have written (for school assignments and other stuff like
> that) have all be hosted on Jrun or Tomcat.  In thinking about any future
> career moves, would I be well served to take the time to learn WebSphere?
> Does WebSphere offer a large advantage over the other application servers,
> or is it more the case of "you know one, you know them all"?  And if you
> think I should learn WebSphere, what is the best way to do so?
>
> Thanks for your advice -- I'm looking forward to reading what you have to
> say.
>
>
> Best Regards,
> Andy
>
> ===
> 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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com
>
>

--
___
Sign-up for your own FREE Personalized E-mail at Mail.com
http://www.mail.com/?sr=signup

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Somewhat off-topic: Should I learn WebSphere?

2002-06-11 Thread Andy Engle

Hi all,

I'm a web hack who enjoys doing some web application programming.  While
this isn't my "day job", I wouldn't mind for it to be.  In the past, the web
applications I have written (for school assignments and other stuff like
that) have all be hosted on Jrun or Tomcat.  In thinking about any future
career moves, would I be well served to take the time to learn WebSphere?
Does WebSphere offer a large advantage over the other application servers,
or is it more the case of "you know one, you know them all"?  And if you
think I should learn WebSphere, what is the best way to do so?

Thanks for your advice -- I'm looking forward to reading what you have to
say.


Best Regards,
Andy

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Benchmark Tools - off topic

2002-06-10 Thread John Slaman

A good site for research is www.tpc.org.


-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Walter Meyer
Sent: Monday, June 10, 2002 1:16 AM
To: [EMAIL PROTECTED]
Subject: Re: Benchmark Tools

You might try JMeter.

http://jakarta.apache.org/jmeter/index.html

--
Walter Meyer
http://www.ThatWaltGuy.com - web
[EMAIL PROTECTED] - email
(303) 949-8369 - cell



 techhead4life <[EMAIL PROTECTED]> wrote:
> Does anyone know any good benchmark tools to test your applications
> + system
>
> M~
>
>
==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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic (form, javascript question)

2002-06-04 Thread sufi malak

very nice idea using the server side, I will start working on it, please you
have something previously similar done let me know.
thanks


>From: Andy Engle <[EMAIL PROTECTED]>
>Reply-To: A mailing list about Java Server Pages specification and
>reference <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: Re: off topic (form, javascript question)
>Date: Tue, 4 Jun 2002 14:35:04 -0700
>
>sufi malak <[EMAIL PROTECTED]> wrote:
>
> > I'm working on a form , they would like to provide an incentive to
> > users to get them to fill out these forms.  Can anyone suggest a way
> > that a random user could get a message letting them know that they
> > have won something (prize to be determined at a later time) this
> > would probably occur monthly.
>
>If I were designing this, I would have the JSP/servlet that is serving
>the page with the form on it to include some Javascript in the code
>that would alert the user of their winning when they complete the form.
>  This way, you would be able to more closely control just how many
>"winning pages" were served.  Perhaps only a small percentage of the
>pages would have some extra Javascript included that would alert folks
>of their winnings.
>
>Another person wrote something similar previously, but their suggestion
>was to use client-side Javascript.  This would be fine if you didn't
>want as much control over the winnings.  But, since you are most likely
>giving stuff away that hopefully has some degree of value, I would go
>with the server-side route to be able to more strictly control just how
>many winning pages are served.
>
>The other option I would say is to have users alerted by the server
>when they submit the form.  Maybe when you return your "Thank you for
>sending your info", you could also say "by the way, we would like to
>thank you for your time by mailing you a $1 million check."  That way
>you wouldn't have to horse around with writing Javascript, which I
>would think to be a good thing.
>
>
>Andy
>
>
>__
>Do You Yahoo!?
>Yahoo! - Official partner of 2002 FIFA World Cup
>http://fifaworldcup.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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com




_
Join the world’s largest e-mail service with MSN Hotmail.
http://www.hotmail.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic (form, javascript question)

2002-06-04 Thread Andy Engle

sufi malak <[EMAIL PROTECTED]> wrote:

> I'm working on a form , they would like to provide an incentive to
> users to get them to fill out these forms.  Can anyone suggest a way
> that a random user could get a message letting them know that they
> have won something (prize to be determined at a later time) this
> would probably occur monthly.

If I were designing this, I would have the JSP/servlet that is serving
the page with the form on it to include some Javascript in the code
that would alert the user of their winning when they complete the form.
 This way, you would be able to more closely control just how many
"winning pages" were served.  Perhaps only a small percentage of the
pages would have some extra Javascript included that would alert folks
of their winnings.

Another person wrote something similar previously, but their suggestion
was to use client-side Javascript.  This would be fine if you didn't
want as much control over the winnings.  But, since you are most likely
giving stuff away that hopefully has some degree of value, I would go
with the server-side route to be able to more strictly control just how
many winning pages are served.

The other option I would say is to have users alerted by the server
when they submit the form.  Maybe when you return your "Thank you for
sending your info", you could also say "by the way, we would like to
thank you for your time by mailing you a $1 million check."  That way
you wouldn't have to horse around with writing Javascript, which I
would think to be a good thing.


Andy


__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic (form, javascript question)

2002-06-04 Thread Joseph Ottinger

Lie and tell every user they've won.

It seems to work for some sites...


>From: sufi malak <[EMAIL PROTECTED]>
>I'm working on a form , they would like to provide an incentive to users to
>get them to fill out these forms.  Can anyone suggest a way that a random
>user could get a message letting them know that they have won something
>(prize to be determined at a later time) this would probably occur monthly.
>
>Thanks



_
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic (form, javascript question)

2002-06-04 Thread Chen, Gin

javascript in a page.
have a Math.random() into a percentage (from 1-100%) call that is checked
against a range of percentages (maybe say the 10% of people win a prize?)
and if it falls in that range.. do a window popup.
-Tim

-Original Message-
From: sufi malak [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 04, 2002 4:25 PM
To: [EMAIL PROTECTED]
Subject: off topic (form, javascript question)


I'm working on a form , they would like to provide an incentive to users to
get them to fill out these forms.  Can anyone suggest a way that a random
user could get a message letting them know that they have won something
(prize to be determined at a later time) this would probably occur monthly.

Thanks


_
Chat with friends online, try MSN Messenger: http://messenger.msn.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



off topic (form, javascript question)

2002-06-04 Thread sufi malak

I'm working on a form , they would like to provide an incentive to users to
get them to fill out these forms.  Can anyone suggest a way that a random
user could get a message letting them know that they have won something
(prize to be determined at a later time) this would probably occur monthly.

Thanks


_
Chat with friends online, try MSN Messenger: http://messenger.msn.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic ( How to refresh opener window ) ??

2002-05-23 Thread Peter Claesson (EUS)

I'm not 100% sure of the syntax but you can at any
time refresh the opener page by

top.opener.top.location.reload;

This refers to the top of the child window (in case you have
a frameset), the opener of that top window, then the top
window in the opener, and then the regular location.reload.

Hope this helps.

/Peter

-Original Message-
From: sufi malak [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 23, 2002 7:54 AM
To: [EMAIL PROTECTED]
Subject: off topic ( How to refresh opener window ) ??


I have a main window main.jsp and when I click in a link child.jsp popup, in
child.jsp I am doing some database transactions, how after closing child.jsp
(or after an action finishs in child.jsp) refresh the main.jsp page.

thanks



_
Chat with friends online, try MSN Messenger: http://messenger.msn.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic ( How to refresh opener window ) ??

2002-05-23 Thread Brian P Bohnet

After your child.jsp finishes its transactions and the user closes the window, by
using "onUnload=opener.document.location='main.jsp' " in the body of child.jsp,
it should make a new call to retrieve the updated version of the jsp. (The syntax
may not be exactly right but very close for 'opener.document.location' because I
was using frames with "parent.main.location=example.jsp", do a google search if
necesarry)


sufi malak wrote:

> I have a main window main.jsp and when I click in a link child.jsp popup, in
> child.jsp I am doing some database transactions, how after closing child.jsp
> (or after an action finishs in child.jsp) refresh the main.jsp page.
>
> thanks
>
> _
> Chat with friends online, try MSN Messenger: http://messenger.msn.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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic ( How to refresh opener window ) ??

2002-05-23 Thread Sajag Patel

You can use this in your jsp code after your db transactions insert the
following javascript


  self.opener.(your form name).submit();


this will refresh your back page after each successful transaction.

sajag

-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of sufi malak
Sent: Thursday, May 23, 2002 10:54 AM
To: [EMAIL PROTECTED]
Subject: off topic ( How to refresh opener window ) ??


I have a main window main.jsp and when I click in a link child.jsp popup, in
child.jsp I am doing some database transactions, how after closing child.jsp
(or after an action finishs in child.jsp) refresh the main.jsp page.

thanks



_
Chat with friends online, try MSN Messenger: http://messenger.msn.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic ( How to refresh opener window ) ??

2002-05-23 Thread Ranjith Kumar

I don't know your actual requirement. This might help.
You can call a Javascript function and say
opener.document.forms(0).submit();

Thus you can access the parent window's document and refresh it.



- Original Message -
From: sufi malak <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, May 23, 2002 8:24 PM
Subject: off topic ( How to refresh opener window ) ??


> I have a main window main.jsp and when I click in a link child.jsp popup,
in
> child.jsp I am doing some database transactions, how after closing
child.jsp
> (or after an action finishs in child.jsp) refresh the main.jsp page.
>
> thanks
>
>
>
> _
> Chat with friends online, try MSN Messenger: http://messenger.msn.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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



off topic ( How to refresh opener window ) ??

2002-05-23 Thread sufi malak

I have a main window main.jsp and when I click in a link child.jsp popup, in
child.jsp I am doing some database transactions, how after closing child.jsp
(or after an action finishs in child.jsp) refresh the main.jsp page.

thanks



_
Chat with friends online, try MSN Messenger: http://messenger.msn.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Off Topic But Interesting - MS Lobbing Pentagon to stop Using Ope n Source Software

2002-05-23 Thread Haseltine, Celeste

This is somewhat off-topic, but I thought some of you on this listserver
might be interested in an article that is being emailed around various gov't
agencies this morning.  I just received this from a friend who works for
Lockheed-Martin Ft. Worth, TX division, who received it from someone else
with DOD.  This tidbit is supposedly from an article in the 5/23 Washington
Post.


--
OPEN SOURCE FIGHT FLARES AT PENTAGON: Microsoft Corp. is aggressively
lobbying the Pentagon to squelch its growing use of freely distributed
computer software and switch to proprietary systems such as those sold by
the software giant, according to officials familiar with the campaign. In
what one military source called a "barrage" of contacts with officials at
the Defense Information Systems Agency and the office of Defense Secretary
Donald H. Rumsfeld over the past few months, the company said "open source"
software threatens security and its intellectual property. But the effort
may have backfired. A May 10 report prepared for the Defense Department
concluded that open source often results in more secure, less expensive
applications and that, if anything, its use should be expanded. "Banning
open source would have immediate, broad, and strongly negative impacts on
the ability of many sensitive and security-focused DoD groups to protect
themselves against cyberattacks," said the report, by Mitre Corp. A
Microsoft Corp. spokesman acknowledged discussions between the company and
the Pentagon but denied urging a ban on open-source software. He also said
Microsoft did not focus on potential security flaws. John Stenbit, an
assistant secretary of defense and the Defense Department's chief
information officer, said that Microsoft has said using free software with
commercial software might violate companies' intellectual-property rights.
Stenbit said the issue is legally "murky." The company also complained that
the Pentagon is funding research on making free software more secure, which
in effect subsidizes Microsoft's open-source competitors, Stenbit said.
Software is designated open source when its underlying computer code is
available for anyone to license, enhance or customize, often at no cost. The
theory is that by putting source code in the public domain, programmers
worldwide can improve software by sharing one another's work. Vendors of the
proprietary systems, such as Microsoft and Oracle Corp., keep their source
codes secret, control changes to programs and collect all licensing fees for
their use. Government agencies use a patchwork of systems and software, and
proprietary software is still the most widely used. But open source has
become more popular with businesses and government. The Mitre report said
open-source software "plays a more critical role in the DoD than has been
generally recognized." The report said banning open-source software would
drive up costs, though it offered no specifics. Stenbit said that the debate
is academic and that what matters is how secure a given piece of software
is. To that end, the Defense Department is now prohibited from purchasing
any software that has not undergone security testing by the NSA. Stenbit
said he is unaware of any open-source software that has been tested.
(Washington Post - 5/23)

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic ( javascript question ??

2002-05-20 Thread Emmanuel Eze

Rewrite the faction function as follows:
function faction(target)
{
  if(target == 0)
document.form.action="insertOutdate.jsp?" + gotoFunction();
  if(target == 1)
document.form.action="insertIndate.jsp?" + gotoFunction()";
}

OR

function faction(target)
{
  var employee=gotoFunction();
  if(target == 0)
document.form.action="insertOutdate.jsp?" + employee;
  if(target == 1)
document.form.action="insertIndate.jsp?" + employee;
}

Hope this helps.

Emma
-Original Message-
From: sufi malak [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 20, 2002 3:54 PM
To: [EMAIL PROTECTED]
Subject: off topic ( javascript question ??


How to call a function in a function in javascripts :
Here is what I did, but it does not work :


function gotoFunction() {
var parameter =
form.emplyee.options[form.employee.selectedIndex].value;
return parameter;
}
function faction(target)
{
  if(target == 0)
document.form.action="insertOutdate.jsp?employee=gotoFunction()";
  if(target == 1)
document.form.action="insertIndate.jsp?employee=gotoFunction()";
}


_
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



off topic ( javascript question ??

2002-05-20 Thread sufi malak

How to call a function in a function in javascripts :
Here is what I did, but it does not work :


function gotoFunction() {
var parameter = form.emplyee.options[form.employee.selectedIndex].value;
return parameter;
}
function faction(target)
{
  if(target == 0)
document.form.action="insertOutdate.jsp?employee=gotoFunction()";
  if(target == 1)
document.form.action="insertIndate.jsp?employee=gotoFunction()";
}


_
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic - java script

2002-05-16 Thread Vikramjit Singh

yeah that script works only in ie. try this one.











<!-- Begin
team = new Array(
new Array(
new Array("Saku Koivu", 39482304),
new Array("Martin Rucinsky", 34802389),
new Array("Jeff Hackett", 39823498),
new Array("Sheldon Sourray", 87587343),
new Array("Richard Zednik", 68798735),
new Array("Brian Savage", 98098509),
new Array("Stephane Robidas", 49490583),
new Array("Patrice Brisebois", 32898334),
new Array("Oleg Petrov", 92340934),
new Array("Chad Kilger", 34923409),
new Array("Benoit Brunet", 59384093),
new Array("Jan Bulis", 83948023),
new Array("Patrick Traverse", 41239812),
new Array("Jose Theodore", 98402398),
new Array("Craig Darby", 82393434),
new Array("Patric Poulin", 34290348),
new Array("Karl Dykhuis", 89092834)
),
new Array(
new Array("Mario Lemieux", 23840238),
new Array("Jaromir Jagr", 92390484),
new Array("Robert Lang", 29048203),
new Array("Alexei Kovalev", 94098230),
new Array("Jean-Sebastien Aubin", 39234923),
new Array("Kevin Stevens", 29345423)
),
null,
new Array(
new Array("Alexei Yashin", 20394802),
new Array("Daniel Alfredson", 34982039),
new Array("Marian Hossa", 92348902),
new Array("Patrick Lalime", 98203894),
new Array("Radek Bonk", 98234902)
)
);
function fillSelectFromArray(selectCtrl, itemArray, goodPrompt, badPrompt,
defaultItem) {
var i, j;
var prompt;
// empty existing items
for (i = selectCtrl.options.length; i >= 0; i--) {
selectCtrl.options[i] = null;
}
prompt = (itemArray != null) ? goodPrompt : badPrompt;
if (prompt == null) {
j = 0;
}
else {
selectCtrl.options[0] = new Option(prompt);
j = 1;
}
if (itemArray != null) {
// add new items
for (i = 0; i < itemArray.length; i++) {
selectCtrl.options[j] = new Option(itemArray[i][0]);
if (itemArray[i][1] != null) {
selectCtrl.options[j].value = itemArray[i][1];
}
j++;
}
// select first item (prompt) for sub list
selectCtrl.options[0].selected = true;
   }
}
//  End -->










Select Team
Montreal Canadiens
Pittsburg Penguins
Toronto Maple Leafs
Ottawa Senators



  
  
  
      
  



Regards,
Vikramjit Singh,
Systems Engineer,
GTL Ltd.
Ph. 7612929-1031


-Original Message-
From: Sabari Arasu (CTC) [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 16, 2002 11:12 PM
To: [EMAIL PROTECTED]
Subject: Re: off topic - java script


"createElement" is not supported by Netscape!

Rgds,
Sabari Arasu
AIG - TCS CTC
Ambattur,
Chennai
India

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic - java script

2002-05-16 Thread Sabari Arasu (CTC)

"createElement" is not supported by Netscape!

Rgds,
Sabari Arasu
AIG - TCS CTC
Ambattur,
Chennai
India

> -Original Message-
> From: Vikramjit Singh [SMTP:[EMAIL PROTECTED]]
> Sent: Friday, May 17, 2002 11:22 AM
> To:   [EMAIL PROTECTED]
> Subject:  Re: off topic - java script
>
> check this
>
>
> 
>
> 
>
> 
>
> 
>
> <!-- Begin
> var arrItems1 = new Array();
> var arrItemsGrp1 = new Array();
>
> arrItems1[3] = "Truck";
> arrItemsGrp1[3] = 1;
> arrItems1[4] = "Train";
> arrItemsGrp1[4] = 1;
> arrItems1[5] = "Car";
> arrItemsGrp1[5] = 1;
>
> arrItems1[6] = "Boat";
> arrItemsGrp1[6] = 2;
> arrItems1[7] = "Submarine";
> arrItemsGrp1[7] = 2;
>
> arrItems1[0] = "Planes";
> arrItemsGrp1[0] = 3;
> arrItems1[1] = "Ultralight";
> arrItemsGrp1[1] = 3;
> arrItems1[2] = "Glider";
> arrItemsGrp1[2] = 3;
>
> var arrItems2 = new Array();
> var arrItemsGrp2 = new Array();
>
> arrItems2[21] = "747";
> arrItemsGrp2[21] = 0
> arrItems2[22] = "Cessna";
> arrItemsGrp2[22] = 0
>
> arrItems2[31] = "Kolb Flyer";
> arrItemsGrp2[31] = 1
> arrItems2[34] = "Kitfox";
> arrItemsGrp2[34] = 1
>
> arrItems2[35] = "Schwietzer Glider";
> arrItemsGrp2[35] = 2
>
> arrItems2[99] = "Chevy Malibu";
> arrItemsGrp2[99] = 5
> arrItems2[100] = "Lincoln LS";
> arrItemsGrp2[100] = 5
> arrItems2[57] = "BMW Z3";
> arrItemsGrp2[57] = 5
>
> arrItems2[101] = "F-150";
> arrItemsGrp2[101] = 3
> arrItems2[102] = "Tahoe";
> arrItemsGrp2[102] = 3
>
> arrItems2[103] = "Freight Train";
> arrItemsGrp2[103] = 4
> arrItems2[104] = "Passenger Train";
> arrItemsGrp2[104] = 4
>
> arrItems2[105] = "Oil Tanker";
> arrItemsGrp2[105] = 6
> arrItems2[106] = "Fishing Boat";
> arrItemsGrp2[106] = 6
>
> arrItems2[200] = "Los Angelas Class";
> arrItemsGrp2[200] = 7
> arrItems2[201] = "Kilo Class";
> arrItemsGrp2[201] = 7
> arrItems2[203] = "Seawolf Class";
> arrItemsGrp2[203] = 7
>
> function selectChange(control, controlToPopulate, ItemArray, GroupArray)
> {
>   var myEle ;
>   var x ;
>   // Empty the second drop down box of any choices
>   for (var q=controlToPopulate.options.length;q>=0;q--)
> controlToPopulate.options[q]=null;
>   if (control.name == "firstChoice") {
> // Empty the third drop down box of any choices
> for (var q=myChoices.thirdChoice.options.length;q>=0;q--)
> myChoices.thirdChoice.options[q] = null;
>  }
>   // ADD Default Choice - in case there are no values
>   myEle = document.createElement("option") ;
>   myEle.value = 0 ;
>   myEle.text = "[SELECT]" ;
>   controlToPopulate.add(myEle) ;
>   // Now loop through the array of individual items
>   // Any containing the same child id are added to
>   // the second dropdown box
>   for ( x = 0 ; x < ItemArray.length  ; x++ )
> {
>   if ( GroupArray[x] == control.value )
> {
>   myEle = document.createElement("option") ;
>   myEle.value = x ;
>   myEle.text = ItemArray[x] ;
>   controlToPopulate.add(myEle) ;
> }
> }
> }
> //  End -->
> 
>
> 
>
> 
>
> 
>
> 
> 
> 
> 
> 
> [SELECT]
> Land
> Sea
> Air
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
>
>
> Regards,
> Vikramjit Singh,
> Systems Engineer,
> GTL Ltd.
> Ph. 7612929-1031
>
>
> -Original Message-
> From: Kesav, Ramesh [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, May 16, 2002 10:39 PM
> To: [EMAIL PROTECTED]
> Subject: off topic - java script
>
>
> Hi all,
>
>  i have 2 select boxes.
> If i choose a value from the first select box the second select box should
> have appropriate values.
>
> eg: first one has science/ IT etc.,
>
>  if i choose science the second should show
> say
> maths/ history/ physics/ chemistry
>
> if i choose IT from the first , the second box should show
> say
> hardware/ software /networking / etc.,
>
> if anybody has a piece of code for this i would really appreciate it.
>
>
>
>
> Regards
>
> Ramesh Kesavanarayanan
> [EMAIL PROTECTED]
>
> ==
> =
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: 

Re: off topic - java script

2002-05-16 Thread Vikramjit Singh

check this










<!-- Begin
var arrItems1 = new Array();
var arrItemsGrp1 = new Array();

arrItems1[3] = "Truck";
arrItemsGrp1[3] = 1;
arrItems1[4] = "Train";
arrItemsGrp1[4] = 1;
arrItems1[5] = "Car";
arrItemsGrp1[5] = 1;

arrItems1[6] = "Boat";
arrItemsGrp1[6] = 2;
arrItems1[7] = "Submarine";
arrItemsGrp1[7] = 2;

arrItems1[0] = "Planes";
arrItemsGrp1[0] = 3;
arrItems1[1] = "Ultralight";
arrItemsGrp1[1] = 3;
arrItems1[2] = "Glider";
arrItemsGrp1[2] = 3;

var arrItems2 = new Array();
var arrItemsGrp2 = new Array();

arrItems2[21] = "747";
arrItemsGrp2[21] = 0
arrItems2[22] = "Cessna";
arrItemsGrp2[22] = 0

arrItems2[31] = "Kolb Flyer";
arrItemsGrp2[31] = 1
arrItems2[34] = "Kitfox";
arrItemsGrp2[34] = 1

arrItems2[35] = "Schwietzer Glider";
arrItemsGrp2[35] = 2

arrItems2[99] = "Chevy Malibu";
arrItemsGrp2[99] = 5
arrItems2[100] = "Lincoln LS";
arrItemsGrp2[100] = 5
arrItems2[57] = "BMW Z3";
arrItemsGrp2[57] = 5

arrItems2[101] = "F-150";
arrItemsGrp2[101] = 3
arrItems2[102] = "Tahoe";
arrItemsGrp2[102] = 3

arrItems2[103] = "Freight Train";
arrItemsGrp2[103] = 4
arrItems2[104] = "Passenger Train";
arrItemsGrp2[104] = 4

arrItems2[105] = "Oil Tanker";
arrItemsGrp2[105] = 6
arrItems2[106] = "Fishing Boat";
arrItemsGrp2[106] = 6

arrItems2[200] = "Los Angelas Class";
arrItemsGrp2[200] = 7
arrItems2[201] = "Kilo Class";
arrItemsGrp2[201] = 7
arrItems2[203] = "Seawolf Class";
arrItemsGrp2[203] = 7

function selectChange(control, controlToPopulate, ItemArray, GroupArray)
{
  var myEle ;
  var x ;
  // Empty the second drop down box of any choices
  for (var q=controlToPopulate.options.length;q>=0;q--)
controlToPopulate.options[q]=null;
  if (control.name == "firstChoice") {
// Empty the third drop down box of any choices
for (var q=myChoices.thirdChoice.options.length;q>=0;q--)
myChoices.thirdChoice.options[q] = null;
 }
  // ADD Default Choice - in case there are no values
  myEle = document.createElement("option") ;
  myEle.value = 0 ;
  myEle.text = "[SELECT]" ;
  controlToPopulate.add(myEle) ;
  // Now loop through the array of individual items
  // Any containing the same child id are added to
  // the second dropdown box
  for ( x = 0 ; x < ItemArray.length  ; x++ )
{
  if ( GroupArray[x] == control.value )
{
  myEle = document.createElement("option") ;
  myEle.value = x ;
  myEle.text = ItemArray[x] ;
  controlToPopulate.add(myEle) ;
}
}
}
//  End -->













[SELECT]
Land
Sea
Air












Regards,
Vikramjit Singh,
Systems Engineer,
GTL Ltd.
Ph. 7612929-1031


-Original Message-
From: Kesav, Ramesh [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 16, 2002 10:39 PM
To: [EMAIL PROTECTED]
Subject: off topic - java script


Hi all,

 i have 2 select boxes.
If i choose a value from the first select box the second select box should
have appropriate values.

eg: first one has science/ IT etc.,

 if i choose science the second should show
say
maths/ history/ physics/ chemistry

if i choose IT from the first , the second box should show
say
hardware/ software /networking / etc.,

if anybody has a piece of code for this i would really appreciate it.




Regards

Ramesh Kesavanarayanan
[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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



off topic - java script

2002-05-16 Thread Kesav, Ramesh

Hi all,

 i have 2 select boxes.
If i choose a value from the first select box the second select box should
have appropriate values.

eg: first one has science/ IT etc.,

 if i choose science the second should show
say
maths/ history/ physics/ chemistry

if i choose IT from the first , the second box should show
say
hardware/ software /networking / etc.,

if anybody has a piece of code for this i would really appreciate it.




Regards

Ramesh Kesavanarayanan
[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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic 9two submit buttons in a form) ??

2002-05-16 Thread Gare, Tref

alternative method

use button inputs to simulate the submit buttons and dynamically submit the
form to separate actions depending on which button is pressed.

ie:





cheers

Tref
> -Original Message-
> From: sufi malak [SMTP:[EMAIL PROTECTED]]
> Sent: Friday,17 May 2002 4:49
> To:   [EMAIL PROTECTED]
> Subject:  off topic 9two submit buttons in a form) ??
>
> Hi,
>
> I have a form in a jsp file that has :
>
> 1)Drop down list (for names)
> 2)textarea  ( for comment)
>
>
> I want to have two submit buttons (chekin, checkout), who to do it please
> ?
> thanks
>
>
> _
> 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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic 9two submit buttons in a form) ??

2002-05-16 Thread Smita Kotnis

hi,

  
  
  funtion first()
  {
checkinhere
document.form.action=checkin.jsp
   }
  funtion second()
  {
checkout here
document.form.action=checkout.jsp

   }
  
  
  
  


is this going to work? or your requirement is some thing else?

Smita



 sufi malak <[EMAIL PROTECTED]>:

> Hi,
>
> I have a form in a jsp file that has :
>
> 1)Drop down list (for names)
> 2)textarea  ( for comment)
>
>
> I want to have two submit buttons (chekin, checkout), who to do it
> please ?
> thanks
>
>
> _
> 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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com
>

-
Sify Mail - now with Anti-virus protection powered by Trend Micro, USA.
Know more at http://mail.sify.com

Take the shortest route to success!
Click here to know how http://education.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



off topic 9two submit buttons in a form) ??

2002-05-16 Thread sufi malak

Hi,

I have a form in a jsp file that has :

1)Drop down list (for names)
2)textarea  ( for comment)


I want to have two submit buttons (chekin, checkout), who to do it please ?
thanks


_
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: off topic (javascript :var from main to popup window)

2002-05-15 Thread Bhushan_Bhangale

The most simple way is by defining a target in the href tag like this:-

history

Other way is by using javascript window.open method:

history

-Original Message-
From: sufi malak [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 16, 2002 1:05 AM
To: [EMAIL PROTECTED]
Subject: off topic (javascript :var from main to popup window)


I have main.jsp window that has a link :

history

And I want to popup a window history.jsp when clicking in the link.

How to do it ?
How to pass the variable name to history.jsp.

thanks, your help is appreciated.


_
Join the world's largest e-mail service with MSN Hotmail.
http://www.hotmail.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



off topic (javascript :var from main to popup window)

2002-05-15 Thread sufi malak

I have main.jsp window that has a link :

history

And I want to popup a window history.jsp when clicking in the link.

How to do it ?
How to pass the variable name to history.jsp.

thanks, your help is appreciated.


_
Join the world’s largest e-mail service with MSN Hotmail.
http://www.hotmail.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Question about deploying jsp pages as war files. Maybe Off Topic.

2002-05-14 Thread Joseph Ottinger

Typically images are attached to a WAR file, and are distributed with it.
However, if you're working on an app that's customizable by a final
deployer, that's not always desirable; in this case, I'd just use Orion's
virtual dir capability and store them externally.


>From: Mike Shoemaker <[EMAIL PROTECTED]>
>Reply-To: A mailing list about Java Server Pages specification and
>reference <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: Re: Question about deploying jsp pages as war files. Maybe Off
>  Topic.
>Date: Mon, 13 May 2002 17:05:36 -0500
>
>Okay, so its possible to not jar them up in a war file(or would that be
>war them up ;)
>
>What is the norm?  Do you typically just keep source in war files?
>
>Im actually using Orion so you nice job reading my mind :)
>
>-Original Message-
>From: A mailing list about Java Server Pages specification and reference
>[mailto:[EMAIL PROTECTED]] On Behalf Of Joseph Ottinger
>Sent: Monday, May 13, 2002 3:14 PM
>To: [EMAIL PROTECTED]
>Subject: Re: Question about deploying jsp pages as war files. Maybe Off
>Topic.
>
>
>It depends on your server. In many cases, you can set up contexts that
>are virtual directories; in Orion/Oracle9iAS you'd do this in
>orion-web.xml.
>
>
> >From: Mike Shoemaker <[EMAIL PROTECTED]>
> >Reply-To: A mailing list about Java Server Pages specification and
> >reference <[EMAIL PROTECTED]>
> >To: [EMAIL PROTECTED]
> >Subject: Question about deploying jsp pages as war files.  Maybe Off
> >Topic.
> >Date: Mon, 13 May 2002 10:11:50 -0500
> >
> >Is it common practice to bundle all images in a war file along with jsp
>
> >pages?  Should they be stored separately?  The reason I ask is that I
> >could not figure out how to get the jsp page to locate images that were
>
> >not bundled in the war.  Other than using an absolute path, which is a
> >bad thing, I didn't see how to make it work.  Please forgive the rather
>
> >newbie question, I have lots of experience writing back end stuff and
> >Im trying to learn more about UI portion.  Thanks in advance.
> >
> >Mike
> >
> >===
> >
> >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://archives.java.sun.com/jsp-interest.html
> >  http://java.sun.com/products/jsp/faq.html
> >  http://www.esperanto.org.nz/jsp/jspfaq.jsp
> >  http://www.jguru.com/faq/index.jsp
> >  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com




---
Joseph B. Ottinger   [EMAIL PROTECTED]
http://enigmastation.com  IT Consultant


_
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Question about deploying jsp pages as war files. Maybe Off Topic.

2002-05-13 Thread Mike Shoemaker

Okay, so its possible to not jar them up in a war file(or would that be
war them up ;)

What is the norm?  Do you typically just keep source in war files?

Im actually using Orion so you nice job reading my mind :)

-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]] On Behalf Of Joseph Ottinger
Sent: Monday, May 13, 2002 3:14 PM
To: [EMAIL PROTECTED]
Subject: Re: Question about deploying jsp pages as war files. Maybe Off
Topic.


It depends on your server. In many cases, you can set up contexts that
are virtual directories; in Orion/Oracle9iAS you'd do this in
orion-web.xml.


>From: Mike Shoemaker <[EMAIL PROTECTED]>
>Reply-To: A mailing list about Java Server Pages specification and
>reference <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: Question about deploying jsp pages as war files.  Maybe Off
>Topic.
>Date: Mon, 13 May 2002 10:11:50 -0500
>
>Is it common practice to bundle all images in a war file along with jsp

>pages?  Should they be stored separately?  The reason I ask is that I
>could not figure out how to get the jsp page to locate images that were

>not bundled in the war.  Other than using an absolute path, which is a
>bad thing, I didn't see how to make it work.  Please forgive the rather

>newbie question, I have lots of experience writing back end stuff and
>Im trying to learn more about UI portion.  Thanks in advance.
>
>Mike
>
>===
>
>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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Question about deploying jsp pages as war files. Maybe Off Topic.

2002-05-13 Thread Joseph Ottinger

It depends on your server. In many cases, you can set up contexts that are
virtual directories; in Orion/Oracle9iAS you'd do this in orion-web.xml.


>From: Mike Shoemaker <[EMAIL PROTECTED]>
>Reply-To: A mailing list about Java Server Pages specification and
>reference <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: Question about deploying jsp pages as war files.  Maybe Off Topic.
>Date: Mon, 13 May 2002 10:11:50 -0500
>
>Is it common practice to bundle all images in a war file along with jsp
>pages?  Should they be stored separately?  The reason I ask is that I could
>not figure out how to get the jsp page to locate images that were not
>bundled in the war.  Other than using an absolute path, which is a bad
>thing, I didn't see how to make it work.  Please forgive the rather newbie
>question, I have lots of experience writing back end stuff and Im trying to
>learn more about UI portion.  Thanks in advance.
>
>Mike
>
>===
>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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Question about deploying jsp pages as war files. Maybe Off Topic.

2002-05-13 Thread Mike Shoemaker

Is it common practice to bundle all images in a war file along with jsp
pages?  Should they be stored separately?  The reason I ask is that I could
not figure out how to get the jsp page to locate images that were not
bundled in the war.  Other than using an absolute path, which is a bad
thing, I didn't see how to make it work.  Please forgive the rather newbie
question, I have lots of experience writing back end stuff and Im trying to
learn more about UI portion.  Thanks in advance.

Mike

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off-topic!!!!How to set an attribute tabIndex dynamically inIE5.0

2002-03-25 Thread ShriKant Vashishtha

Hi,

I am sorry that by mistake I wrote document.frames... instead of parent.frames[..].
But I am using parent.frames[..] only..

But then also when I try to alert parent.frames["NewBar"].tabindex, it gives me
undefined, but I had set it to -1 in the frameset jsp.

Any suggestion.??

-ShriKant

"LaPlante, Bryan" wrote:

> the frame is synonymous with window so scripting from another frame would
> call parent.frames['name'].whatever
>
> Bryan LaPlante
>
> -Original Message-
> From: Sharan, Dharmendra [mailto:[EMAIL PROTECTED]]
> Sent: Monday, March 25, 2002 2:04 PM
> To: [EMAIL PROTECTED]
> Subject: Re: Off-topicHow to set an attribute tabIndex dynamically
> in IE5.0
>
> Hi Shrikant,
>
>I thought the tab Indexes were all positive numbers, try using 10, 20, ..
> and so on
>
>hth,
>
>Dharmendra
>
> -Original Message-
> From: ShriKant Vashishtha [mailto:[EMAIL PROTECTED]]
> Sent: Friday, October 25, 2002 4:56 AM
> To: [EMAIL PROTECTED]
> Subject: Off-topicHow to set an attribute tabIndex dynamically in
> IE5.0
>
> Hi,
>
> I am sorry if it's not a correct forum to ask HTML related questions.
>
>  tabindex="1">
>
> I want to modify the attribute tabindex dynamically using Javascript in
> IE5.0. I am using the following syntex to modify it, but without any
> outcome.
>
> document.frames["NewBar"].tabindex = "-2";
>
> Is there any way to do it. Please help!!!
>
> Thanks all..
> -ShriKant
>
> ===
> 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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off-topic!!!!How to set an attribute tabIndex dynamically in IE5.0

2002-03-25 Thread LaPlante, Bryan

the frame is synonymous with window so scripting from another frame would
call parent.frames['name'].whatever

Bryan LaPlante

-Original Message-
From: Sharan, Dharmendra [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 25, 2002 2:04 PM
To: [EMAIL PROTECTED]
Subject: Re: Off-topicHow to set an attribute tabIndex dynamically
in IE5.0


Hi Shrikant,

   I thought the tab Indexes were all positive numbers, try using 10, 20, ..
and so on

   hth,

   Dharmendra

-Original Message-
From: ShriKant Vashishtha [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 25, 2002 4:56 AM
To: [EMAIL PROTECTED]
Subject: Off-topicHow to set an attribute tabIndex dynamically in
IE5.0


Hi,

I am sorry if it's not a correct forum to ask HTML related questions.



I want to modify the attribute tabindex dynamically using Javascript in
IE5.0. I am using the following syntex to modify it, but without any
outcome.

document.frames["NewBar"].tabindex = "-2";

Is there any way to do it. Please help!!!

Thanks all..
-ShriKant

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off-topic!!!!How to set an attribute tabIndex dynamically in IE5.0

2002-03-25 Thread Sharan, Dharmendra

Hi Shrikant,

   I thought the tab Indexes were all positive numbers, try using 10, 20, ..
and so on

   hth,

   Dharmendra

-Original Message-
From: ShriKant Vashishtha [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 25, 2002 4:56 AM
To: [EMAIL PROTECTED]
Subject: Off-topicHow to set an attribute tabIndex dynamically in
IE5.0


Hi,

I am sorry if it's not a correct forum to ask HTML related questions.



I want to modify the attribute tabindex dynamically using Javascript in
IE5.0. I am using the following syntex to modify it, but without any
outcome.

document.frames["NewBar"].tabindex = "-2";

Is there any way to do it. Please help!!!

Thanks all..
-ShriKant

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Off-topic!!!!How to set an attribute tabIndex dynamically in IE5.0

2002-03-25 Thread ShriKant Vashishtha

Hi,

I am sorry if it's not a correct forum to ask HTML related questions.



I want to modify the attribute tabindex dynamically using Javascript in
IE5.0. I am using the following syntex to modify it, but without any
outcome.

document.frames["NewBar"].tabindex = "-2";

Is there any way to do it. Please help!!!

Thanks all..
-ShriKant

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Off-topic : Problem with getBlob in PdxJdbc driver (sorry but I' m desperate)

2002-03-21 Thread Segador Corraliza, Jose Abel [EES/ES]

Hello everybody!

I'm sorry, I know this is not the appropiate forum to make this kind 
of question, but I've been searching the web for 3 days and there is
no information about this matter. Perhaps someone could help. I'd appreciate
it
very much!!

I'm using the driver PdxJdbc.jar to connect to a Paradox 9 DB. The
problem is that I have a BYTES field in the db but when using the
getBlob method of ResultSet, it appears an error like that:

Lang Exception in CentralesSeleccionadas.cargar - Not supported
currently!

And when using another similar methods like getBinaryStream, it
appears:

Lang Exception in CentralesSeleccionadas.cargar - In
Resultset.getBytes, while setting byte blob to be retrieved, Exception
message: In Resultset.getBytes, while setting byte blob to be
retrieved, there was an Unexpected exception on the server - Internal
Error:Invalid operation [Error Code:5004]

Is there another jdbc driver that has implemented a function to read
Paradox BYTES fields?


Thanks a lot.

Abel S.

PS: Using JDBC-ODBC driver cause the same proble with getBlob()


 <<...OLE_Obj...>> 
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]

==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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Cross-platform database needed (off-topic)

2002-03-17 Thread Rick Snide

Can anyone recommend a cross-platform (preferrably open source) database?  I assume 
this would be a java based database, and would have some services that would run as a 
servlet to handle the calls to the database.

If you could point me towards some information that compares features etc.  I would 
greatly appreciate it.

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off Topic: About Networking

2002-03-14 Thread Branden Root

Debopam,

There is no easy 100% sure way of doing this. You could download a tool
such as nmap, and then tell it to ping scan a range of IPs. However, this
will probably be blocked by company firewalls, routers, NAT, etc.

Branden Root
Web Developer
Portent Interactive
[EMAIL PROTECTED]


-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Debopam Ghoshal
Sent: Wednesday, March 13, 2002 9:24 PM
To: [EMAIL PROTECTED]
Subject: Off Topic: About Networking


Dear All,
Can anyone pls tell me whether there is any means by which I can get all the
IP addresses running in a specified domain. I can only specify the name of
the domain or the name of the workgroup, as the case may be.

Thanx in advance,
Debopam.

--
GMX - Die Kommunikationsplattform im Internet.
http://www.gmx.net

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Off Topic: About Networking

2002-03-13 Thread Debopam Ghoshal

Dear All,
Can anyone pls tell me whether there is any means by which I can get all the
IP addresses running in a specified domain. I can only specify the name of
the domain or the name of the workgroup, as the case may be.

Thanx in advance,
Debopam.

--
GMX - Die Kommunikationsplattform im Internet.
http://www.gmx.net

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off topic !

2002-03-13 Thread Tom Kochanowicz

Daniel, follow the following steps,

1) go to google
2) find a DB2 site
3) ask the question there.

Hope this helps



-Original Message-
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Daniel Bergenhus
Sent: Wednesday, March 13, 2002 2:19 AM
To: [EMAIL PROTECTED]
Subject: Off topic !


I need to know how to invoke a stored procedure from a trigger in  IBM DB2
v7.1
Like to se a syntax example !

Daniel

=
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off topic !

2002-03-13 Thread Tiago Nodari

 I worked with DB2 on linux, and that wasnt possible...

At 09:19 AM 3/13/2002 +0100, you wrote:
>I need to know how to invoke a stored procedure from a trigger in  IBM DB2
>v7.1
>Like to se a syntax example !
>
>Daniel
>
>
>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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Off topic !

2002-03-13 Thread Daniel Bergenhus

I need to know how to invoke a stored procedure from a trigger in  IBM DB2 v7.1
Like to se a syntax example !

Daniel

==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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Off topic : Tomcat Custom Log files

2002-03-10 Thread sreehari sai

Hi there

I am using tomcat 3.2

i have a servlet for loging my JSp application

now i need my Log Servlet to log the entire Requests to the tomcat server

Note I am generating log files for every day in a custom format

how can i include this servlet/code in the tomcat so that it logs all the requests to 
the tomcat server



Thanks in advance

Hari





-
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Class File Length - [Off-Topic]

2002-03-05 Thread I Wayan Saryada

Dear All,

Are there any limitation in file length of a class, because I have a problem
when i am signing my jar file that contain a file (class) with a length more
that 130
characters. After signing the .jar file, and running jarsigner -verify
myjar.jar it
will says that my manifest file is broken.

Thanks,
Wayan

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Java -XML query: Excuse me if off topic

2002-03-01 Thread Mahesh Kumar Punjabi

Dear All,
I am trying to create xmlreader object, by using the statement below.

XMLReader xmlR = 
XMLReaderFactory.createXMLReader("org.apache.xerces.parsers.SAXParser");

This statement( and the program HelloWorld.java) works very well with jdk1.2 but with 
jdk 1.4 it gives the following exception

java.lang.ClassNotFoundException: org/apache/xerces/parsers/SAXParser
at org.xml.sax.helpers.XMLReaderFactory.createXMLReader(XMLReaderFactory
.java:118)
at HelloWorld.doAllThings(HelloWorld.java:45)
at HelloWorld.main(HelloWorld.java:17)

Can any one tell me the possible reason for this exception.
It is to be noted that I do have org/apache/xerces/parsers/SAXParser in my system 
class path in both cases and my program 
HelloWorld.java is exactly same in both cases.

Please excuse me if this question is not directly related to JSPs.

Thanks
Mahesh

==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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



(Off Topic )How to get rid of \n from a string ??

2002-02-12 Thread sufi malak

I am getting responsees from differents servers by requesting GET , and
because the response has several lines of information, I took only one line
from them, but when I try to print it out to a file, I got in the file lot
of empty lines before the line that I want to print out in the file, I am
using FileWriter.
thanks

_
Chat with friends online, try MSN Messenger: http://messenger.msn.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off topic: Javascript list and debugger

2002-01-29 Thread E. Michael Akerman

> This is an off topic issue, but I'm getting desperate. Sorry to inconvenience most 
>of you.
> I'm started lately getting exceptions thrown in my javascript. The javascript 
>complements
> the server side java/jsp. I've exhausted my ideas. Where can I find a good 
>javascript list and
> a good debugger. The javascript use quite a bit of objects and internal message 
>queues.
> Difficult to debug. Any ideas.thanks.

http://download.microsoft.com/download/winscript56/Install/1.0a/NT45XP/EN-US/scd10en.exe

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Off topic: Javascript list and debugger

2002-01-29 Thread Peter Claesson (EUS)
Title: Off topic: Javascript list and debugger





This is an off topic issue, but I'm getting desperate. Sorry to inconvenience most of you.
I'm started lately getting exceptions thrown in my javascript. The javascript complements
the server side java/jsp. I've exhausted my ideas. Where can I find a good javascript list and
a good debugger. The javascript use quite a bit of objects and internal message queues.
Difficult to debug. Any ideas.thanks.


/Peter





Re: Off Topic: Unicode

2001-12-18 Thread Mike Akerman

> This is an abstract from the HTML 4.0 spec, http://www.w3.org/TR/REC-html40

Thanks, I had been using an Orielly book for my research and there was
much omitted.  The HTML spec is definitely a better source of info.

> MA> So it looks like 'System.out.println("&8801;");' is the solution as you
> MA> said.
>
> Why System.out ;-) ?

Because, if you follow the thread back to the beginning that was what the
original question was about.  This was also why I was thrown for a loop
when you used "ࣕ" as I wasn't expecting HTML/JSP output.  He was
wanting to "System.out" and redirect it to a file if I recall.

Michael Akerman

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off Topic: Unicode

2001-12-18 Thread Anthony Tagunov

Hello Mike and everybody!

>> >>> Maybe doing ࣕ would be better in a general setting?

>> Well, i was speaking about doing out.write("ࣕ") in a _servlet_.
> Bringing up the "�" representation is a good idea, but html character
> entities should be decimal numbers and "\u2261"  converted from hex to
> decimal is 8801.
Thanks! And we also could do "≡" to avoid conversion to
decimal. This way we enlarge our html page by 1 byte, of course.

MA> Originally, I highly doubted that something as high as 8801 was doable as
MA> an HTML character entity.  According to "Webmaster in a Nutshell", these
MA> HTML character entities must be ISO-8859-1 characters, and not even the
MA> full 256 ISO-8859-1 character set is supported.
This is an abstract from the HTML 4.0 spec, http://www.w3.org/TR/REC-html40

'3.2.3 Character references

Character references are numeric or symbolic names for characters that
may be included in an HTML document. They are useful for referring to
rarely used characters, or those that authoring tools make it difficult
or impossible to enter. You will see character references throughout
this document; they begin with a "&" sign and end with a semi-colon (;).
Some common examples include:

 "<" represents the < sign.
 ">" represents the > sign.
 """ represents the " mark.
 "å" (in decimal) represents the letter "a" with a small circle above it.
 "И" (in decimal) represents the Cyrillic capital letter "I".
 "水" (in hexadecimal) represents the Chinese character for water.'

So these look pretty much like Unicode character codes.
This way we embed, say cyrillics into ISO-8859-1 coded pages, but it
is quite wastefull as instead of two bytes per char as we would need
with utf-8 or 1 byte per char as with windows-1251 we need at least 7.

But if this are just some chars in the doc it is quite affordable!

MA> However I checked anyway and "≡" works great --just to show how
MA> accurate a book from June 99 is.  I ran:
MA> for(int i=0x2200; i<=0x22ff; i++)
MA> {
MA> if ( i % 16 == 0 ) out.println("");
MA> out.print("&#"+i+";");
MA> }
MA> To print the entire "Unicode Mathematical Operators" set.  About 1/4
MA> displayed in Internet Explorer 6.0, and the full set displayed in Netscape
MA> 6.1 and Opera 6.0.
Thanks for investigating this, it's an interesting result!

MA> So it looks like 'System.out.println("&8801;");' is the solution as you
MA> said.

Why System.out ;-) ?
Sure it is just 'out' if we're in a jsp or whatever you have named it
if it is your own servlet!
So, 'out.write("≡");' is the solution!
(Please excuse me for being over-pedantic!)
Best regards,
 Antonmailto:[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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off Topic: Unicode

2001-12-18 Thread Mike Akerman

> >>> Maybe doing ࣕ would be better in a general setting?

> Well, i was speaking about doing out.write("ࣕ") in a _servlet_.
> I beleive that if we do it, we'll get the ࣕ sequence output
> directly to the html page and the browser may recognize this as
> a HTML encoding of a unicode character. This is a reasonable
> option even if we have ISO-8859-1 as our page encoding.
>
> MA> If you do this through a "System.out.write(ࣕ)", it might be
> MA> interpretted as a byte instead of a character...
>
> Well, i beleive that if we really do 'System.out.write("ࣕ");'
> we'll get "ࣕ" on our system console, but this quite useless,
> isn't it? Sure it won't "be interpreted as a byte".
>
> Best regards, Anton

Well I had temporarily confused ࣕ with legal java hex, 0x2261.  I
meant to say "System.out.write(0x2261)"

Bringing up the "�" representation is a good idea, but html character
entities should be decimal numbers and "\u2261"  converted from hex to
decimal is 8801.

Originally, I highly doubted that something as high as 8801 was doable as
an HTML character entity.  According to "Webmaster in a Nutshell", these
HTML character entities must be ISO-8859-1 characters, and not even the
full 256 ISO-8859-1 character set is supported.

However I checked anyway and "≡" works great --just to show how
accurate a book from June 99 is.  I ran:

for(int i=0x2200; i<=0x22ff; i++)
{
if ( i % 16 == 0 ) out.println("");
out.print("&#"+i+";");
}

To print the entire "Unicode Mathematical Operators" set.  About 1/4
displayed in Internet Explorer 6.0, and the full set displayed in Netscape
6.1 and Opera 6.0.

So it looks like 'System.out.println("&8801;");' is the solution as you
said.

Michael Akerman

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



off topic

2001-12-18 Thread Sasi Bhushan



Hi all,
may be this question is offtopic question but i 
want to know.can anybody tell me why there is tag called icon in application.xml 
for j2ee application.
regards 
Sasi.
 


Re: Off Topic: Unicode

2001-12-18 Thread Anthony Tagunov

Hello Mike and everybody!

>> MA> "System.out.println("\u2261");"
>>
>> Hmmm.. Looks the System.out writer is set up to smth like ISO-8859-1,
>> so will this work?

MA> "System.out" is a PrintStream so it depends on the default encoding.
MA> ...
MA> If your platform default encoding is ISO-8859-1, than indeed
MA> "System.out.println("\u2261");" isn't going to output, as its not in the
MA> Unicode to ISO mappings -- 
http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-1.TXT
Thanks for clearing this out!

>>> Maybe doing ࣕ would be better in a general setting?
Well, i was speaking about doing out.write("ࣕ") in a _servlet_.
I beleive that if we do it, we'll get the ࣕ sequence output
directly to the html page and the browser may recognize this as
a HTML encoding of a unicode character. This is a reasonable
option even if we have ISO-8859-1 as our page encoding.

MA> If you do this through a "System.out.write(ࣕ)", it might be
MA> interpretted as a byte instead of a character...
Well, i beleive that if we really do 'System.out.write("ࣕ");'
we'll get "ࣕ" on our system console, but this quite useless,
isn't it? Sure it won't "be interpreted as a byte".

Best regards, Anton

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off Topic: Unicode

2001-12-17 Thread Mike Akerman

> MA> "System.out.println("\u2261");"
>
> Hmmm.. Looks the System.out writer is set up to smth like ISO-8859-1,
> so will this work?

"System.out" is a PrintStream so it depends on the default encoding. From
the JavaDocs:

All characters printed by a PrintStream are converted into bytes using the
platform's default character encoding. The PrintWriter class should be
used in situations that require writing characters rather than bytes.

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

If your platform default encoding is ISO-8859-1, than indeed
"System.out.println("\u2261");" isn't going to output, as its not in the
Unicode to ISO mappings -- http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-1.TXT

>> Maybe doing ࣕ would be better in a general setting?

If you do this through a "System.out.write(ࣕ)", it might be
interpretted as a byte instead of a character, which might actually make
it though the filters, though I think it would be best to try to tweak the
platform default encoding to UTF-8 instead.  If anyone has any emperical
evidence one way or another let me know.

Michael Akerman

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off Topic: Unicode

2001-12-14 Thread Anthony Tagunov

Hello Mike!

MA> "System.out.println("\u2261");"
Hmmm.. Looks the System.out writer is set up to smth like ISO-8859-1,
so will this work?
MA> Incidentally, your question
MA> got me wondering if I could do Unicode from servlets, and view the results
MA> in normal browsers.
Again the 'out' writer is set up to the charset you declared in the
<%@ page%>, so probably this char won't get though and turn into
a ? unless you have contentType="text/html;charset=utf-8"

Maybe doing ࣕ would be better in a general setting?

Best regards, Anton

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: Off Topic: Unicode

2001-12-13 Thread Mike Akerman

On Thu, 13 Dec 2001, Jagan K Samuel wrote:

> Dear All,
>   I want to output a particular mathematical operator to a
> file. This operator looks like the '=' sign but has one more '-',
> underneath the other two. The unicode number seems to be 2261. How can
> I
> 1. show this character as it is using system.out.println()
> 2. output this to a file.
>
> regards
> Jagan
>

"System.out.println("\u2261");"  Should work.  Incidentally, your question
got me wondering if I could do Unicode from servlets, and view the results
in normal browsers.  I have a test servlet for Unicode now.  You have to
install the language packs for Greek, Hebrew, Japanese etc.  This is
easily done from Internet Explorer->View->Encoding->More->Hebrew.  It will
then prompt for the Windows 2000 disc and install the language fonts.
After the language packs are installed through Internet Explorer, the
servlet works in Opera 6 and Netscape 6 as well.

Clearly this could be translated to JSP easily.

Incidentally, you can do one extra language at a time if you set the
charset to ISO-8859-1 or ISO-8859-7, etc depending of course on which
language you want, and if the language fonts are on your computer.

Michael Akerman



import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

public class UnicodeServlet extends HttpServlet
{
public void doGet (HttpServletRequest req, HttpServletResponse res) throws 
ServletException, IOException
{
res.setContentType("text/html; charset=UTF-8");
PrintWriter out = res.getWriter();

out.println("");
out.println("");
out.println("");
out.println("");
for(int i=0x0030; i<=0x00ff; i++)
{
if ( i % 16 == 0 ) out.println("");
out.print(""); out.write(i);
}
for(int i=0x0370; i<=0x03ff; i++)
{
if ( i % 16 == 0 ) out.println("");
out.print(""); out.write(i);
}
for(int i=0x3040; i<=0x30ff; i++)
{
if ( i % 16 == 0 ) out.println("");
out.print(""); out.write(i);
}
for(int i=0x0590; i<=0x05ff; i++)
{
if ( i % 16 == 0 ) out.println("");
out.print(""); out.write(i);
}
out.println("");
out.println("");
out.println("");
}
}

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Off Topic: Unicode

2001-12-13 Thread Jagan K Samuel

Dear All,
  I want to output a particular mathematical operator to a
file. This operator looks like the '=' sign but has one more '-',
underneath the other two. The unicode number seems to be 2261. How can
I
1. show this character as it is using system.out.println()
2. output this to a file.

regards
Jagan

===
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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



  1   2   3   4   5   6   >