Re: JSP - Java Mail - NAS - Initialization Parameters

2000-08-02 Thread Fernando Ribeiro
Hi All, I wrote a JSP which will send a mail using Java Mail API. I tested this JSP on Weblogic 5.1. My doubts are 1. Can I configure Netscape Enterprise Server 4.0 / iPlanet Web Server 4.0 so that I can make the same JSP working?? Probably yes. Just check how the Weblogic features and services

Re: JavaOne presentations from the Java Platform Group...

2000-06-16 Thread Fernando Ribeiro
It was a great conference. Amazing sessions and astounding BOFs. fribeiro - Original Message - From: "Jari Worsley" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 16, 2000 12:13 PM Subject: Re: JavaOne presentations from the Java Platform Group... see below Eduardo

Re: JSP/HTML to Word/Excel

2000-06-15 Thread Fernando Ribeiro
If you want to create a true Word or Excel file you will need to use a Java-COM bridge. fribeiro - Original Message - From: "LEBARON Christian FTRD/DMI/SOP" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 15, 2000 4:30 AM Subject: Re: JSP/HTML to Word/Excel You can set

Re: JSP/HTML to Word/Excel

2000-06-15 Thread Fernando Ribeiro
--Original Message----- From: Fernando Ribeiro [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 15, 2000 12:51 To: [EMAIL PROTECTED] Subject: Re: JSP/HTML to Word/Excel If you want to create a true Word or Excel file you will need to use a Java-COM bridge.

Re: Query String problem with Netscape

2000-06-02 Thread Fernando Ribeiro
Try http://localhost/t.jsp?name=pranav%20kumar The value should always be URLEncoded. fribeiro - Original Message - From: "pranav kumar" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 02, 2000 3:04 AM Subject: Query String problem with Netscape Hi EveryOne,

Re: Creation of MS Word Object.

2000-06-01 Thread Fernando Ribeiro
JIntegra is really great. fribeiro - Original Message - From: "Khem Chand Sachdeva" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 01, 2000 4:02 AM Subject: Re: Creation of MS Word Object. u can try jintegra from www.linar.com it is an excellent com2java bridge u can

Re: Problem accessing a java file from a jsp file.

2000-05-31 Thread Fernando Ribeiro
I could not understand your question, I think. But maybe you should check the location of the Java file which contains the MsgBox class. You should then try to invoke it not as a bean to check if it is working. fribeiro - Original Message - From: "ganesh" [EMAIL PROTECTED] To: [EMAIL

No Subject

2000-05-31 Thread Fernando Ribeiro
I think Sun itself features a mailing-list about JDBC. fribeiro - Original Message - From: "Tarun Dewan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 31, 2000 1:12 AM Hi, Is there is any mailing list for JDBC? PLs. inform. Thanks, Tarun Dewan.

Re: How to call a servlet in an htm page ?

2000-05-31 Thread Fernando Ribeiro
Oops.. lets pretend this question has never been made. ITIL prefers we do that way :-) fribeiro - Original Message - From: "Puri Aman" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 31, 2000 4:28 AM Subject: Re: How to call a servlet in an htm page ? hello what is

Re: How to Generate Reports in JSP?.Help needed

2000-05-31 Thread Fernando Ribeiro
Is not a report generator implemented as a bean enough for you? fribeiro - Original Message - From: "Biren Patnaik" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 31, 2000 7:04 AM Subject: Re: How to Generate Reports in JSP?.Help needed Hi Dennis, Thanx for ur reply.Do

Re: JSP-Servler Question 2

2000-05-31 Thread Fernando Ribeiro
You have another alternative if this include thing does not work. You can read yourself the servlet output and print it. Putting this functionality into a bean would be a good idea but it is not required at all. fribeiro - Original Message - From: "Vinay K.V. Menon" [EMAIL PROTECTED]

Re: How to call a servlet in an htm page ?

2000-05-31 Thread Fernando Ribeiro
t: Re: How to call a servlet in an htm page ? CAlling a servlet in HTML page??? I guess ssi is for that? or is ITIL doing it the wrong way? ;-) Ritesh Fernando Ribeiro [EMAIL PROTECTED] on 05/31/2000 05:24:05 PM Please respond to A mailing list about Java Server Pages spe

Re: Accessing server

2000-05-31 Thread Fernando Ribeiro
They are different products. You can run both in the development stage. Tomcat is also adequate for small low-traffic websites based on servlets and JSP not only in the development stage. fribeiro - Original Message - From: "Ritesh Sinha" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: PL/SQL Stored Procedure that returns a reference to a cursor

2000-05-31 Thread Fernando Ribeiro
All you need to know is to do so: Resultset resultSet = callableStatement.executeQuery( ); Remember to first create the CallableStatement class instance and pass the proper argument to the prepareCall method. fribeiro - Original Message - From: "LITT Vincent (Neuilly Gestion)" [EMAIL

Re: Urgent : how to replace multiple occurances of a character in a string

2000-05-31 Thread Fernando Ribeiro
Use a regular expression package like the good one available from GNU (www.cacas.org/~wes), OROMatch or Stevesoft`s com.stevesoft.pat. fribeiro - Original Message - From: "srinivasa rao yeramati" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 01, 2000 1:03 AM Subject:

Re: File download problem with JSP

2000-05-30 Thread Fernando Ribeiro
ys and then optimize your implementation to take advantage of the java.io package. Hope it helps. Fernando Ribeiro Project Engineer Organic, Inc Eric Butler (VP Product Development Founder) MDinTouch, Inc. 786.268.1161 ht

Re: JSPs and XML.

2000-05-30 Thread Fernando Ribeiro
You can send HTML and WML to the browser after processing the JSP tags in JSP documents. WML seems to be a common MIME type and it will be understood by the browser in your cell phone. fribeiro - Original Message - From: "Marco M" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday,

Re: JSPs and XML.

2000-05-30 Thread Fernando Ribeiro
PM Subject: Re: JSPs and XML. Hi Fernando, yeah but i am planning to write the JSPs in XML.. thanx regards marco -Original Message- From: EXT Fernando Ribeiro [mailto:[EMAIL PROTECTED]] Sent: 30. May 2000 18:21 To: [EMAIL PROTECTED] Subject: Re: JSPs and XML.

Re: Add string to array

2000-05-30 Thread Fernando Ribeiro
How can I create an array of strings and assign a new string to the array in a loop? String[] sArray ; for (int i = 0; i 10;i++) { sArray[i] = "apple" ; } The code fragment above does not work. But this is what I need to do. Add strings to a string array at runtime. thanks in

Re: High points about Jason Hunters Servlet book?

2000-05-26 Thread Fernando Ribeiro
None, from my point-of-view. Take a look at the JavaSoft documentation and books from Sun Press. fribeiro - Original Message - From: "Robert Nicholson" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 26, 2000 5:43 PM Subject: High points about Jason Hunters Servlet book?

Re: Versions of JSP

2000-05-24 Thread Fernando Ribeiro
I am not sure there is such a application yet. fribeiro - Original Message - From: "Marcelo Mayworm" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 24, 2000 11:25 AM Subject: Versions of JSP Does Anybody know a software that manage versions of JSP files? []'s Marcelo de

Re: jswdk1_0_1 performance

2000-05-24 Thread Fernando Ribeiro
JSWDK is not a good idea to serve content outside the development environment. It is a reference implementation. fribeiro - Original Message - From: "Michaelm" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 24, 2000 10:04 AM Subject: jswdk1_0_1 performance Hi After

Re: Query about JAVA SERVER SIDE pgmming book

2000-05-22 Thread Fernando Ribeiro
I would recommend Java Enterprise in a Nutshell, from OReilly. It covers the whole J2EE especification and contains lots of reference information. Fernando Ribeiro Organic inteligencia interativa [EMAIL PROTECTED] On Mon, 22 May 2000, LEBARON Christian FTRD/DMI/SOP wrote: Java Servlet

Re: Newline problem in JavaScript

2000-04-06 Thread Fernando Ribeiro
Newlines in a textarea form element are represented by +AFw-r+AFw-n. fribeiro - Original Message - From: +ACI-Venkata Krishna MV+ACI- +ADw-venkatmv+AEA-geodc.patni.com+AD4- To: +ADw-JSP-INTEREST+AEA-JAVA.SUN.COM+AD4- Sent: Thursday, April 06, 2000 4:44 AM Subject: Newline problem in

Re: Off topic: JServ problem?

2000-03-08 Thread Fernando Ribeiro
Take a look at some CGI documentation and check if you are not exceeding any limitation on GET or POST requests. fribeiro Richard Yee wrote: I am using Apache 1.3 and JServ 1-1 on Solaris. When POSTing 50-60 input fields (text edit, check boxes, and selects) some of the last input fields

Re: Browser detection in JSP ??

2000-03-08 Thread Fernando Ribeiro
You can reach a lot of functionality - maybe BrowserHawk4J is not required - just reading the HTTP_USER_AGENT header. fribeiro Richard Litofsky wrote: Yes. cyScape makes a product called BrowserHawk4J which provides exactly the same functionality found in ASP for browser detection. The

design

2000-03-01 Thread Fernando Ribeiro
I am now designing a method which takes a java.io.JspWriter or a java.io.BufferedWriter as a parameter. The method then writes to the parameter. public void test(JspWriter _out); These classes have a common superclass, java.io.Writer but, unhappily, that object does not feature the useful

Re: jsp tools [some new ones]

2000-02-16 Thread Fernando Ribeiro
. Scott Stirling West Newton, MA - Original Message - From: "Fernando Ribeiro" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 15, 2000 12:44 PM Subject: Re: jsp tools Take a look at the TextPad text editor. Just download the JSP syntax dictionary and

Re: jsp tools

2000-02-16 Thread Fernando Ribeiro
statements and classes. They will be, then, highlighted. fribeiro Felip Miralles wrote: Where is the JSP syntax dictionary to download? felip Fernando Ribeiro wrote: Take a look at the TextPad text editor. Just download the JSP syntax dictionary and you are ready to go. The best tool Ive

Re: Parameters to a servlet, How?

2000-02-16 Thread Fernando Ribeiro
It really depends on what you want to do. Most times you write some web form and pass that information to the servlet. When the parameters are configuration or installation-specific then .properties file are used. What do you want to do? Please send a full list of the features you need to

Re: Error while running JSP which calls a bean

2000-02-16 Thread Fernando Ribeiro
You should take a look at the values of your environment variables and JRun-specific configuration. It seems like a regular CLASSPATH problem. Please let me know if that works. fribeiro Ram Anantha wrote: Hi, The configuration I am running under is (JRUN pro 2.3.3) + (Apache 1.3.11) on

Re: SQL Server driver

2000-02-16 Thread Fernando Ribeiro
I am quite sure connection pooling has been already implemented as part of the JDBC API. That a look at the documentation or a reference book, just like Java Enterprise in a Nutshell, from OReilly. fribeiro alex amies wrote: Try the Free tds type 4 driver: http://www.freetds.org/ Alex

Re: Error 500?

2000-02-16 Thread Fernando Ribeiro
That is a problem with your environment variables - CLASSPATH, JAVA_HOME or something. Do not get surprised it is still serving static content since only the jsp files are processed. Take a look at it and let me know. fribeiro Corbin Hoenes wrote: Error: 500 sun/tools/javac/Main I get

Re: Detect the encryption level supported by the browser

2000-02-16 Thread Fernando Ribeiro
Two or three days ago I have faced the same problem. We should take a look at the HTTPS protocol reference and check it it does not expose that information as a environment variable, just like HTTP_REMOTE_USER. Who keeps the HTTPS protocol? Let me know if you find something. Post it to the list

Re: SQL Server driver

2000-02-15 Thread Fernando Ribeiro
Use that JDBC-ODBC bridge thing? Take a look at the documentation. fribeiro Daniel Rönnqvist wrote: Hello, I am in desperate need of a JDBC driver for SQL server 6.5 Please help me! Daniel Ronnqvist === To

Re: Session variables

2000-02-15 Thread Fernando Ribeiro
session.put("key", "value") Play around with that and find out what you will be able to do with what you can store there in these key-value pairs. fribeiro Ian Stacey wrote: Hi all, How do I create a session variable like those used in ASP? Ian --- Ian Stacey

Re: How to view compiled JSP .java source?

2000-02-15 Thread Fernando Ribeiro
JSWDK provides that property. Just look for any properties files or other with the same purpose. fribeiro Jon Wilmoth wrote: I assume that all servlet/jsp containers have an option to keep the generated source files. There is a property with weblogic "keepgenerated=true" that accomplishes

Re: jsp tools

2000-02-15 Thread Fernando Ribeiro
Take a look at the TextPad text editor. Just download the JSP syntax dictionary and you are ready to go. The best tool Ive ever used. If you want a IDE, Im not sure we have the right product for now. I use VJ++ sometimes to compose but thats all. fribeiro Lee Elenbaas wrote:

Re: Help! Does anyone work with JSP in Linux server??(Apache)

2000-02-15 Thread Fernando Ribeiro
I think Tomcat should be your first choice if you are starting on JSP now. fribeiro Scott Stirling wrote: To name a few: JRun 2.3 http://www.allaire.com JRun 3.0 beta http://beta.allaire.com/jrun30 Tomcat http://www.javasoft.com/products/jsp/tomcat/ Resin http://www.caucho.com GNUJSP

Re: JSWDK DOESN'T START

2000-02-14 Thread Fernando Ribeiro
Take a look at your CLASSPATH information. Thats is the problem. fribeiro Ritesh Sinha wrote: HI All, I am facing this peculiar problem. After Installing JSWDK on one of the machines I am not able to browse the URL http://localhost:8080/ to see the default readme. It shpows following