JDBC-ODBC bridge

2002-04-23 Thread Cédric Favier

Hello,

From a Linux server I want to read an exel file on a Windows NT server
(200.8.97.21)

  Class.forName( sun.jdbc.odbc.JdbcOdbcDriver );
  Connection conn =
DriverManager.getConnection(jdbc:odbc://200.8.97.21/test,,);

But I got this message : SQL Exception : No suitable driver

--
Cédric Favier
_
Groupe Duverney
282, Avenue de Chambery
73230 Saint Alban Leysse
[EMAIL PROTECTED]
Tél  : 04 79 72 99 08Fax : 04 79 72 99 20
_

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



Testing JSPs

2002-04-23 Thread Balaji Nagarajan

Hi,
Can anyone point me to resources that talk about testing JSPs, say in a model 2 
architecture.
thanks in advance,
balaji.

==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 and excel

2002-04-23 Thread Kesav, Ramesh

Hi all,

 This may be out of topic but i need itvery urgently.
i have an excel file with 4 sheets containing many data.
is it possible to read a particular sheet's contents (column wise)


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



TEI classes for custom tags

2002-04-23 Thread cbarnes

I am writing a number of custom tags, all of which return a list of string
values to the JSP by using a TEI class.
I want to write a generic TEI class that can be used by all the custom tags.
This TEI class needs to be supplied with a list of attribute names that it
has to create VariableInfo objects for. The tag classes have this list of
attribute names as a tag attribute, so I thought that I could get this list
from the TagData object in the TEI class by doing something like:
Vector listOfAttributes = (Vector)data.getAttribute(attributeNames);

However, this doesn't appear to work. I get a ClassCastException trying to
cast the object to a Vector.

Can anyone tell me if its possible to get this to work?

Is there a better way of supplying a list of attribute names to the TEI
class.

Am I going to have to give in and write a different TEI class for each of
the custom tags?

Thanks,
Catharine

===
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: java and excel

2002-04-23 Thread Balaji Nagarajan

Hi,
I hope this solves the problem.  you can use
the microsoft's ODBC driver for Excel sheet and read individual columns as
if they are contained in a database table.Alternately, you can save the
excel sheet as a csv(comma separated values) format and use Microsoft's text
driver(ODBC).
regards,
balaji.
- Original Message -
From: Kesav, Ramesh [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 23, 2002 3:20 PM
Subject: java and excel


 Hi all,

  This may be out of topic but i need itvery urgently.
 i have an excel file with 4 sheets containing many data.
 is it possible to read a particular sheet's contents (column wise)


 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



Re: java and excel

2002-04-23 Thread Cédric Favier

Hi,
From a Linux server I want to read an exel file on a Windows NT server
(200.8.97.21) :

 Class.forName( sun.jdbc.odbc.JdbcOdbcDriver );
 Connection conn =
DriverManager.getConnection(jdbc:odbc://200.8.97.21/test,,);

But I got this message : SQL Exception : No suitable driver
What can I do. Did I need a Data Source (DSN) like unixODBC.
But I have some problems to install GUI interface (XFree86)

Thanks,
--
Cédric Favier
_
Groupe Duverney
282, Avenue de Chambery
73230 Saint Alban Leysse
[EMAIL PROTECTED]
Tél  : 04 79 72 99 08Fax : 04 79 72 99 20
_

===
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: java and excel

2002-04-23 Thread subbu

Balaji has given good solution.Iam adding a sample code ...

import java.io.*;
import java.sql.*;


public class ExcelReadTest{


public static void main(String[] args){
Connection connection = null;


try{
Class.forName(sun.jdbc.odbc.JdbcOdbcDriver);
Connection con =
riverManager.getConnection( jdbc:odbc:exceltest );
Statement st = con.createStatement();
ResultSet rs = st.executeQuery( Select * from 
[Sheet1$] );
//  To select columnwise data : (Select
column_name1,column_name2 from [Sheet1$] )

ResultSetMetaData rsmd = rs.getMetaData();
int numberOfColumns = rsmd.getColumnCount();




while (rs.next()) {


for (int i = 1; i = numberOfColumns; 
i++) {
if (i  1) System.out.print(, 
);
String columnValue = 
rs.getString(i);
System.out.print(columnValue);
}
System.out.println();
}

st.close();
con.close();


} catch(Exception ex) {
System.err.print(Exception: );
System.err.println(ex.getMessage());
}
}
}






- Original Message -
From: Balaji Nagarajan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 23, 2002 4:04 PM
Subject: Re: java and excel


 Hi,
 I hope this solves the problem.  you can use
 the microsoft's ODBC driver for Excel sheet and read individual columns as
 if they are contained in a database table.Alternately, you can save the
 excel sheet as a csv(comma separated values) format and use Microsoft's
text
 driver(ODBC).
 regards,
 balaji.
 - Original Message -
 From: Kesav, Ramesh [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, April 23, 2002 3:20 PM
 Subject: java and excel


  Hi all,
 
   This may be out of topic but i need itvery urgently.
  i have an excel file with 4 sheets containing many data.
  is it possible to read a particular sheet's contents (column wise)
 
 
  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

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



Getting server paths

2002-04-23 Thread Fredrik Lindner

Hello all.

Does anyone know which servlet API method is used to extract the server
part of a request URL?

Example:

I have a jsp based app running in a servlet container. One dynamically
generated output pages contains a link to a web page within the same
container, e.g. http:/[host]/myapp/somepage.jsp. The part I would like to
extract is the http:/[host] part.

Thanks
Fredrik

===
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: java and excel

2002-04-23 Thread Arthur Alexander

Quick search of GOOGLE returned this link:

http://www.javaworld.com/javaworld/javaqa/2001-08/02-qa-0824-excel2.html

- Original Message -
From: Balaji Nagarajan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 23, 2002 6:34 AM
Subject: Re: java and excel


 Hi,
 I hope this solves the problem.  you can use
 the microsoft's ODBC driver for Excel sheet and read individual columns as
 if they are contained in a database table.Alternately, you can save the
 excel sheet as a csv(comma separated values) format and use Microsoft's
text
 driver(ODBC).
 regards,
 balaji.
 - Original Message -
 From: Kesav, Ramesh [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, April 23, 2002 3:20 PM
 Subject: java and excel


  Hi all,
 
   This may be out of topic but i need itvery urgently.
  i have an excel file with 4 sheets containing many data.
  is it possible to read a particular sheet's contents (column wise)
 
 
  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


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



Using the BodyTagSupport class for custom tags

2002-04-23 Thread cbarnes

I have written a custom tag that extends the BodyTagSupport class. The
reason I have extended this class is because I want the body of the tag to
be evaluated a number of times, and this can only be done by using the
doAfterBody method in BodyTagSupport.

I don't want the custom tag to change the body content in anyway, I just
want it to be evaluated as normal JSP code, therefore in the tld file for
the custom tag I have specified the body content as JSP.

However, although the Java code in the body of the tag is evaluated, the
HTML content is not written out.

Can anyone tell me what I am doing wrong?

Thanks,
Catharine

===
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: Using the BodyTagSupport class for custom tags

2002-04-23 Thread Fredrik Lindner

It's difficult to pinpoint the problem exactly. One possibility though, is
that you return the constant EVAL_PAGE from the BodyTagSupport.doEndTag()
method (which is the default return value), rather than EVAL_BODY_AGAIN.

Returning EVAL_PAGE means that the body iteration should end and the rest of
the page processed, while returning EVAL_BODY_AGAIN causes the servlet
container to reevaluate the body of the tag.


- Original Message -
From: cbarnes [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 23, 2002 3:26 PM
Subject: Using the BodyTagSupport class for custom tags


 I have written a custom tag that extends the BodyTagSupport class. The
 reason I have extended this class is because I want the body of the tag to
 be evaluated a number of times, and this can only be done by using the
 doAfterBody method in BodyTagSupport.

 I don't want the custom tag to change the body content in anyway, I just
 want it to be evaluated as normal JSP code, therefore in the tld file for
 the custom tag I have specified the body content as JSP.

 However, although the Java code in the body of the tag is evaluated, the
 HTML content is not written out.

 Can anyone tell me what I am doing wrong?

 Thanks,
 Catharine


===
 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: Using the BodyTagSupport class for custom tags

2002-04-23 Thread cbarnes

- Original Message -
From: Fredrik Lindner [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 23, 2002 3:04 PM
Subject: Re: Using the BodyTagSupport class for custom tags


 It's difficult to pinpoint the problem exactly. One possibility though, is
 that you return the constant EVAL_PAGE from the BodyTagSupport.doEndTag()
 method (which is the default return value), rather than EVAL_BODY_AGAIN.

 Returning EVAL_PAGE means that the body iteration should end and the rest
of
 the page processed, while returning EVAL_BODY_AGAIN causes the servlet
 container to reevaluate the body of the tag.



I'm not familiar with EVAL_BODY_AGAIN - I am returning EVAL_BODY_TAG from
the doAfterBody method.
I've got it working now though.

Thanks anyway,

Catharine

===
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: TEI classes for custom tags

2002-04-23 Thread cbarnes

Fixed it.
Apparently I needed to add the following code to the doEndTag method:

try
{
// get  the current bodyContent for this tag and write it to the
original JSP writer
pageContext.getOut().print(bodyContent.getString());
 }
 catch(IOException e)
 {
  throw new JspException(e.getMessage());
 }

Catharine

- Original Message -
From: cbarnes [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 23, 2002 11:27 AM
Subject: TEI classes for custom tags


 I am writing a number of custom tags, all of which return a list of string
 values to the JSP by using a TEI class.
 I want to write a generic TEI class that can be used by all the custom
tags.
 This TEI class needs to be supplied with a list of attribute names that it
 has to create VariableInfo objects for. The tag classes have this list of
 attribute names as a tag attribute, so I thought that I could get this
list
 from the TagData object in the TEI class by doing something like:
 Vector listOfAttributes = (Vector)data.getAttribute(attributeNames);

 However, this doesn't appear to work. I get a ClassCastException trying to
 cast the object to a Vector.

 Can anyone tell me if its possible to get this to work?

 Is there a better way of supplying a list of attribute names to the TEI
 class.

 Am I going to have to give in and write a different TEI class for each of
 the custom tags?

 Thanks,
 Catharine


===
 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: java and excel

2002-04-23 Thread Smita Kotnis

Hi,
There is a utility called, jxl, you can download that and put in your classpath. 
Then following code will get the data from excel file. Importing this jar will do, and 
I am not sure new version of weblogic do have this in built. This works fine and 
efficient... simple to code too..Hope this helps...

Smita...

Workbook workbook = Workbook.getWorkbook(new java.io.File(fileName));
Sheet sheet = workbook.getSheet(0);

int rows= sheet.getRows();
int columns = sheet.getColumns();

for(int i=0; irows; i++)
{
Cell cell = sheet.getCell(0,i);
String type =cell.getContents();
cell = sheet.getCell(1,i);
String name =cell.getContents();
cell = sheet.getCell(2,i);
String revision =cell.getContents();
System.out.println(type +  :  + name +  :  + revision);
}











Arthur Alexander [EMAIL PROTECTED]:

 Quick search of GOOGLE returned this link:


 http://www.javaworld.com/javaworld/javaqa/2001-08/02-qa-0824-excel2.html

 - Original Message -
 From: Balaji Nagarajan [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, April 23, 2002 6:34 AM
 Subject: Re: java and excel


  Hi,
  I hope this solves the problem.  you can use
  the microsoft's ODBC driver for Excel sheet and read individual
 columns as
  if they are contained in a database table.Alternately, you can save
 the
  excel sheet as a csv(comma separated values) format and use
 Microsoft's
 text
  driver(ODBC).
  regards,
  balaji.
  - Original Message -
  From: Kesav, Ramesh [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Tuesday, April 23, 2002 3:20 PM
  Subject: java and excel
 
 
   Hi all,
  
This may be out of topic but i need itvery urgently.
   i have an excel file with 4 sheets containing many data.
   is it possible to read a particular sheet's contents (column wise)
  
  
   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
 

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



Re: java and excel

2002-04-23 Thread Chris Pratt

Any idea where to download this?  I can't find it with Google.
(*Chris*)

- Original Message -
From: Smita Kotnis [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 23, 2002 7:06 AM
Subject: Re: [JSP-INTEREST] java and excel


 Hi,
 There is a utility called, jxl, you can download that and put in your
classpath. Then following code will get the data from excel file. Importing
this jar will do, and I am not sure new version of weblogic do have this in
built. This works fine and efficient... simple to code too..Hope this
helps...

 Smita...

 Workbook workbook = Workbook.getWorkbook(new java.io.File(fileName));
 Sheet sheet = workbook.getSheet(0);

 int rows= sheet.getRows();
 int columns = sheet.getColumns();

 for(int i=0; irows; i++)
 {
 Cell cell = sheet.getCell(0,i);
 String type =cell.getContents();
 cell = sheet.getCell(1,i);
 String name =cell.getContents();
 cell = sheet.getCell(2,i);
 String revision =cell.getContents();
 System.out.println(type +  :  + name +  :  + revision);
 }











 Arthur Alexander [EMAIL PROTECTED]:

  Quick search of GOOGLE returned this link:
 
 
  http://www.javaworld.com/javaworld/javaqa/2001-08/02-qa-0824-excel2.html
 
  - Original Message -
  From: Balaji Nagarajan [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Tuesday, April 23, 2002 6:34 AM
  Subject: Re: java and excel
 
 
   Hi,
   I hope this solves the problem.  you can use
   the microsoft's ODBC driver for Excel sheet and read individual
  columns as
   if they are contained in a database table.Alternately, you can save
  the
   excel sheet as a csv(comma separated values) format and use
  Microsoft's
  text
   driver(ODBC).
   regards,
   balaji.
   - Original Message -
   From: Kesav, Ramesh [EMAIL PROTECTED]
   To: [EMAIL PROTECTED]
   Sent: Tuesday, April 23, 2002 3:20 PM
   Subject: java and excel
  
  
Hi all,
   
 This may be out of topic but i need itvery urgently.
i have an excel file with 4 sheets containing many data.
is it possible to read a particular sheet's contents (column wise)
   
   
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
  
 
 
===
  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


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


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

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 

Re: TEI classes for custom tags

2002-04-23 Thread Hans Bergsten

cbarnes wrote:
 I am writing a number of custom tags, all of which return a list of string
 values to the JSP by using a TEI class.
 I want to write a generic TEI class that can be used by all the custom tags.
 This TEI class needs to be supplied with a list of attribute names that it
 has to create VariableInfo objects for. The tag classes have this list of
 attribute names as a tag attribute, so I thought that I could get this list
 from the TagData object in the TEI class by doing something like:
 Vector listOfAttributes = (Vector)data.getAttribute(attributeNames);

 However, this doesn't appear to work. I get a ClassCastException trying to
 cast the object to a Vector.

The Object returned by getAttribute() is either a String or the special
Object instance named REQUEST_TIME_VALUE, to tell the TEI that the
attribute is defined by a request-time attribute expression and can
not be evaluated at translation time. So if you specify a list of names
as a tag attribute, you have to use getAttributeString(), or cast the
returned value from getAttribute() to a String, and then parse the
list yourself. Something like this:

   String varNames = data.getAttributeString(varNames);
   StringTokenizer st = new StringTokenizer(varNames, ,);

 Can anyone tell me if its possible to get this to work?

 Is there a better way of supplying a list of attribute names to the TEI
 class.

 Am I going to have to give in and write a different TEI class for each of
 the custom tags?

If you use a web container that supports JSP 1.2 (most of the recent
ones do), you can avoid writing TEI classes altogether and declare
the variables to create in the TLD instead:

   tag
 namemyTag/name
 tag-classcom.mycompany.MyTag/tag-class
 variable
   name-from-attributeid/name-from-attribute
   variable-classjava.lang.String/variable-class
   declaretrue/declare
   scopeAT_END/scope
 /variable
 ...
   /tag

JSP 1.2 has many other nice features, for instance a new IterationTag
interface for tag handlers that loop over their bodies but do not
need to read the body content (like you asked about in another mail).
Here's a couple of articles that describes the new features:

   http://www.onjava.com/pub/a/onjava/2001/10/10/jsp.html
   http://www.onjava.com/pub/a/onjava/2001/11/07/jsp12.html

Hans
--
Hans Bergsten   [EMAIL PROTECTED]
Gefion Software http://www.gefionsoftware.com
JavaServer Pageshttp://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: Getting server paths

2002-04-23 Thread Hans Bergsten

Fredrik Lindner wrote:
 Hello all.

 Does anyone know which servlet API method is used to extract the server
 part of a request URL?

 Example:

 I have a jsp based app running in a servlet container. One dynamically
 generated output pages contains a link to a web page within the same
 container, e.g. http:/[host]/myapp/somepage.jsp. The part I would like to
 extract is the http:/[host] part.

%
   String scheme = request.getScheme();  // e.g. http
   String serverName = request.getServerName(); // e.g. com.myserver
%

But unless I miss something, you could just use a relative path in the
link instead of going through all this:

   a href=pageInSameDir.jsp
   a href=../pageInParentDir.jsp

If you need to generate a context-relative path (starting with a slash,
interpreted as relative to the application's context-path), you can
do it this way:

   a href=%= request.getContextPath() %/pageAtTheRoot.jsp

Even better, use the new JSP Standard Tag Library (JSTL, currently in beta):

   a href=c:url value=/pageAtTheRoot.jsp

For more about JSTL, see:

   http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html

Hans
--
Hans Bergsten   [EMAIL PROTECTED]
Gefion Software http://www.gefionsoftware.com
JavaServer Pageshttp://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



Tomcat and error page display

2002-04-23 Thread Bommakanti, Vamsee

hello
I have an error page in my application that displays any/all the errors.
i have a problem here, when a page throws an error before it writes any
content to the output, it shows the error page ok,
but if there is any error after it writes the content to the page then it
doesnot show it at all.
In the second case it sometimes writes the entire error on to the browser or
sometimes it has a blank page loading.
When i check source for the blank page,it has the code for my errorpage with
all the error description but appended to the previous page which it was
loading.
Can somebody help me out.
Hope i am clear and did not confuse any one.
Thanks
Vamsee

===
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: JDBC-ODBC bridge

2002-04-23 Thread Piotr Korzybski

The driver .class or .jar file(s) you should place in
TOMCAT_HOME/webapps/your_app/WEB-INF/lib directory

Piotr K.

 From a Linux server I want to read an exel file on a Windows NT server
 (200.8.97.21)

   Class.forName( sun.jdbc.odbc.JdbcOdbcDriver );
   Connection conn =
 DriverManager.getConnection(jdbc:odbc://200.8.97.21/test,,);

 But I got this message : SQL Exception : No suitable driver

 --
 Cédric Favier

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



Deploying in a Lotus Domino Server.

2002-04-23 Thread Sami J.Casab

Hi EveryBody:

I have used JBuilder with tomcat serveral times and everithing work fine. My
company buyed  Lotus Domino as JSP/Servlet Engine and i cant find how to
deploy an  application.

Any tip, will be appreciated.

Thanks in advance.

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



using 2 bean with same id in jsps

2002-04-23 Thread Elangovan,Bhuvane

Could any one tell is there any way to use 2 beans with the same id in
the jsp under usebean tag.

The thing is I want to use the second bean if the first bean is
null.
IMPORTANT THING  is I want to use SAME ID under usebean tag for
both beans.



Thanks in advance,
(Bhuvane)

===
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: java and excel

2002-04-23 Thread Rick Fincher

Go to jakarta.apache.org and look up the POI project.  They have stuff for
reading and writing Microsoft files.

Rick

 Hi all,

  This may be out of topic but i need itvery urgently.
 i have an excel file with 4 sheets containing many data.
 is it possible to read a particular sheet's contents (column wise)


 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: using 2 bean with same id in jsps

2002-04-23 Thread atodburns

i'm not sure if this is what you were asking...

lt;%
Object objectName=new Object();
if(objectName==null) {
Object2 objectName=new Object2();
}
%gt;

you can then call lt;jsp:setProperty... and getProperty
- Original Message -
From: Elangovan,Bhuvane [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 23, 2002 2:49 PM
Subject: using 2 bean with same id in jsps


 Could any one tell is there any way to use 2 beans with the same id in
 the jsp under usebean tag.

 The thing is I want to use the second bean if the first bean
is
 null.
 IMPORTANT THING  is I want to use SAME ID under usebean tag
for
 both beans.



 Thanks in advance,
 (Bhuvane)


===
 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: using 2 bean with same id in jsps

2002-04-23 Thread Elangovan,Bhuvane

The thing here is how could we declare both the beans initially using
usebean tag with the same id.

(Bhuvane)

-Original Message-
From: atodburns [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 23, 2002 5:43 PM
To: [EMAIL PROTECTED]
Subject: Re: using 2 bean with same id in jsps


i'm not sure if this is what you were asking...

lt;%
Object objectName=new Object();
if(objectName==null) {
Object2 objectName=new Object2();
}
%gt;

you can then call lt;jsp:setProperty... and getProperty
- Original Message -
From: Elangovan,Bhuvane [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 23, 2002 2:49 PM
Subject: using 2 bean with same id in jsps


 Could any one tell is there any way to use 2 beans with the same id in
 the jsp under usebean tag.

 The thing is I want to use the second bean if the first bean
is
 null.
 IMPORTANT THING  is I want to use SAME ID under usebean tag
for
 both beans.



 Thanks in advance,
 (Bhuvane)


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



Java Web Services Development Tools

2002-04-23 Thread Burdick Robert

Hello All:

What is the best free development toolkit / environment for building Java based web 
services?  The JWSDP looked more like a simple bundle of the needed code libraries 
(XML parser, SOAP server, etc.) plus a very simple deployment tools.  I'm wondering if 
there is an IDE style toolkit that helps you build templates and the boilerplate code 
similar to how (heaven help me for mentioning it here) Visual Studio .NET does.

Any suggestions?

Robert


---
Robert Burdick
Author, Essential Windows CE Application Programming, John Wiley  Sons
Co-author, Professional JSP, 2nd Edition, Wrox Press
Microsoft eMVP

[EMAIL PROTECTED]
(650)-917-8446 (Office)
(650)-906-3707 (Cell)

===
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: Java Web Services Development Tools

2002-04-23 Thread Ivan de Araujo Saraiva

 look at Borland.com.
 I guess you'll find what you're looking for.

hope this help.
Ivan Saraiva

-Original Message-
From: Burdick Robert
To: [EMAIL PROTECTED]
Sent: 23/4/2002 21:01
Subject: Java Web Services Development Tools

Hello All:

What is the best free development toolkit / environment for building
Java based web services?  The JWSDP looked more like a simple bundle of
the needed code libraries (XML parser, SOAP server, etc.) plus a very
simple deployment tools.  I'm wondering if there is an IDE style toolkit
that helps you build templates and the boilerplate code similar to how
(heaven help me for mentioning it here) Visual Studio .NET does.

Any suggestions?

Robert


---
Robert Burdick
Author, Essential Windows CE Application Programming, John Wiley 
Sons
Co-author, Professional JSP, 2nd Edition, Wrox Press
Microsoft eMVP

[EMAIL PROTECTED]
(650)-917-8446 (Office)
(650)-906-3707 (Cell)


===
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: Java Web Services Development Tools

2002-04-23 Thread Sudhakar Kurumella

Try Iona's Orbix E2A Web Services Integration
Platform,
it is good to play around with webservices.
 http://www.iona.com/products/
I think it might help you.

thanks
Sudhakar Kurumella.

--- Ivan de Araujo Saraiva [EMAIL PROTECTED]
wrote:
  look at Borland.com.
  I guess you'll find what you're looking for.

 hope this help.
 Ivan Saraiva

 -Original Message-
 From: Burdick Robert
 To: [EMAIL PROTECTED]
 Sent: 23/4/2002 21:01
 Subject: Java Web Services Development Tools

 Hello All:

 What is the best free development toolkit /
 environment for building
 Java based web services?  The JWSDP looked more like
 a simple bundle of
 the needed code libraries (XML parser, SOAP server,
 etc.) plus a very
 simple deployment tools.  I'm wondering if there is
 an IDE style toolkit
 that helps you build templates and the boilerplate
 code similar to how
 (heaven help me for mentioning it here) Visual
 Studio .NET does.

 Any suggestions?

 Robert



---
 Robert Burdick
 Author, Essential Windows CE Application
 Programming, John Wiley 
 Sons
 Co-author, Professional JSP, 2nd Edition, Wrox
 Press
 Microsoft eMVP

 [EMAIL PROTECTED]
 (650)-917-8446 (Office)
 (650)-906-3707 (Cell)



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


__
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.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: Java Web Services Development Tools

2002-04-23 Thread Gare, Trefor

I started looking at SilverStream's eXtend WorkBench app which seemed to do
the stuff you're after quite nicely, however I didn't get very far down the
path before getting distracted away so I can't really comment in any detail.


I'm also not sure it's still a freebie.

Worth a look though.

cheers

 -Original Message-
 From: Burdick Robert [SMTP:[EMAIL PROTECTED]]
 Sent: Wednesday,24 April 2002 10:02
 To:   [EMAIL PROTECTED]
 Subject:  Java Web Services Development Tools

 Hello All:

 What is the best free development toolkit / environment for building
 Java based web services?  The JWSDP looked more like a simple bundle of
 the needed code libraries (XML parser, SOAP server, etc.) plus a very
 simple deployment tools.  I'm wondering if there is an IDE style toolkit
 that helps you build templates and the boilerplate code similar to how
 (heaven help me for mentioning it here) Visual Studio .NET does.

 Any suggestions?

 Robert


 ---
 Robert Burdick
 Author, Essential Windows CE Application Programming, John Wiley  Sons
 Co-author, Professional JSP, 2nd Edition, Wrox Press
 Microsoft eMVP

 [EMAIL PROTECTED]
 (650)-917-8446 (Office)
 (650)-906-3707 (Cell)

 ==
 =
 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: using 2 bean with same id in jsps

2002-04-23 Thread eric pan

I think the id is a reference to the bean, the jsp
compile the code
... id=xx class=XX ... to

XX xx = ...;

So I don't think you can put the same id in the same
name space.



--- Elangovan,Bhuvane
[EMAIL PROTECTED] wrote:
 Could any one tell is there any way to use 2
 beans with the same id in
 the jsp under usebean tag.

 The thing is I want to use the second
 bean if the first bean is
 null.
 IMPORTANT THING  is I want to use SAME
 ID under usebean tag for
 both beans.



 Thanks in advance,
 (Bhuvane)


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


__
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.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



Jakarta Samples

2002-04-23 Thread Prabodh Goel

Hi experts

Can anybody tell me the site to download Jakarta
samples so that I can test the webcontainer.


Thanks in Advance

Prabodh

__
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.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