[ANN] JOT Servlets web component framework - version 3.0

2008-08-28 Thread Paul Copeland
JOT Object Technologies has released version 3.0 of the JOT Servlets Java web components framework. Jot Servlets use Java objects (Java Beans and POJO's - plain old java objects) to render dynamic content into standard HTML web pages. http://www.jotobjects.com JOT Servlets Framework:

Re: Problem with Struts FormFile object.

2006-04-28 Thread Paul Copeland
will return application/octet-stream as the default if it does not know the content type. You have to include the J2EE activation.jar in your classpath for this to work. Here is the API doc - http://java.sun.com/javaee/5/docs/api/javax/activation/MimetypesFileTypeMap.html Paul Copeland http

Re: JSP-INTEREST Digest - 1 Mar 2006 to 17 Mar 2006 (#2006-8)

2006-03-18 Thread Paul Copeland
It is really hard to get this kind of design to work correctly. The response will come back to the frame that submitted the request to the jsp page (servlet). You could try returning a 204 status code (no change) to the first frame and then run some javascript to tell the second frame to update

[ANN] JOT Servlets web component framework - version 2.3

2005-10-26 Thread Paul Copeland
JOT Object Technologies has released version 2.3 of the JOT Servlets J2EE web component framework: http://www.jotobjects.com - JOT Servlets is a dynamic content rendering engine for Java Servlets and JSP pages. - JOT Servlets connect plain Java objects (POJOs) to standard web pages

[ANN] JOT Servlets web component framework - version 2.2

2005-09-28 Thread Paul Copeland
JOT Object Technologies has released JOT Servlets version 2.2 JOT Servlets is a J2EE web component framework for rapid development of dynamic content web applications. The 100% Java framework connects POJO plain Java objects to standard web pages without complex XML tags and requires no

[ANN] JOT Servlets Framework version 2.0

2005-05-10 Thread Paul Copeland
JOT Object Technologies has released JOT Servlets version 2.0 http://www.jotobjects.com JOT Servlets is a J2EE web component framework for rapid development of dynamic content web applications. Version 2.0 features: - Renderable JOT Web Components can be embedded on web pages to any nesting depth.

Re: Weblogic and Stuck Thread Detection

2004-10-08 Thread Paul Bonfanti
The java.lang.Thread object allows you to see all the thread groups and the active threads in each thread group. You can monitor this info to see if an active thread stays around for a very long time. Paul -Original Message- From: A mailing list about Java Server Pages specification

Re: JasperException wraps ServletException wraps JspException

2004-09-12 Thread Paul Copeland
on. - Paul } catch (JasperException ex) { throw ex; } catch (Exception ex) { throw new JasperException(ex); } Jan Luehe wrote: Hi Paul, When I throw a JspException from a custom tag the PageContext handlePageException() method wraps it in a ServletException

JasperException wraps ServletException wraps JspException?

2004-08-27 Thread Paul Copeland
When I throw a JspException from a custom tag the PageContext handlePageException() method wraps it in a ServletException and then Tomcat JspServletWrapper.service() wraps that in a JasperException (which is also a ServletException). So the original exception is 3 deep and the stack trace of the

[ANN] JOT Servlets Demonstration

2004-08-10 Thread Paul Copeland
JOT Object Technologies has installed a live demonstration of JOT Servlets at http://www.jotobjects.net - The demonstration is a simple web application with source code that renders dynamic web content with JOT Servlets. JOT Servlets is an application development framework for web applications.

Re: Window pop-up problem!....

2004-07-30 Thread Paul Copeland
layers are probably a better design for human usability. None of this is truly modal in the stateless web client world. The amount of time you will invest in trying to get this half way working may not be worth it in the end. - Paul Copeland - JOT Servlets - http://www.jotobjects.com Date:Thu, 29 Jul

Re: [ANN] JOT Servlets Framework version 1.12

2004-06-24 Thread Paul Copeland
Kumar [EMAIL PROTECTED] Subject: Re: [ANN] JOT Servlets Framework version 1.12 HI, Is it free for commercial use. Regards deepak Kumar --- Paul Copeland [EMAIL PROTECTED] wrote: JOT Object Technologies has released JOT Servlets version 1.12. JOT Servlets is a rapid application development framework

[ANN] JOT Servlets Framework version 1.12

2004-06-22 Thread Paul Copeland
JOT Object Technologies has released JOT Servlets version 1.12. JOT Servlets is a rapid application development framework for web applications. Thus version includes JOT Views, a web page rendering component for MVC architectures. The JOT Servlets framework can now be used both as a complete web

[ANN] JOT Servlets Framework version 1.10 released

2004-04-30 Thread Paul Copeland
JOT Object Technologies has released JOT Servlets version 1.10. JOT Servlets is a J2EE framework for developing dynamic content web applications. This version provides new forms processing examples and also features JOT Views, a rendering engine that can be used by ANY Servlet or JSP page. See

Re: JSP 2 / fn:replace Question

2004-04-13 Thread DIGEST Paul Knox
Eric, problem is that you are not using the escape character, in java this is the \. so your line should be c:set var=test value=${fn:replace(test,'\'','')} / Try that. It should work. -Original Message- From: A mailing list about Java Server Pages specification and reference

Re: how does servlet and applet communicate

2004-04-01 Thread DIGEST Paul Knox
hear hear, well said that man -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED] On Behalf Of Troy Brown Sent: 01 April 2004 17:18 To: [EMAIL PROTECTED] Subject: Re: how does servlet and applet communicate I don't mean

Re: Help needed

2004-03-19 Thread Paul Copeland
You should be able to do this with a combination of onClick and onChange events, but it is likely to be messy, especially if you have to support very old versions of browsers. I think using Frames will make it even more complicated... - Paul Copeland JOT Servlets - A Framework for Servlet

Re: JDBC no suitable driver

2003-11-28 Thread Paul Copeland
on integration with the Servlet container. Paul Copeland JOT Servlets - A Framework for Servlet Applications http://www.jotobjects.com Date:Wed, 26 Nov 2003 17:01:15 +0800 From:Mikil [EMAIL PROTECTED] Subject: Re: [Shameless Plug] Servlets and JavaServer Pages; the J2EE Web Tier Hi to everyone

Re: Google Tag Library 1.0

2003-10-11 Thread Paul Copeland
Very nice functionality. I'm surprised that Google is not on your back about use of their trademark name... Date:Fri, 10 Oct 2003 03:54:05 -0700 From:Erik C. Thauvin [EMAIL PROTECTED] Subject: Google Tag Library 1.0 I've just released version 1.0 of the Google Tag Library:

[ANN] JOT Servlets Framework version 1.0 released

2003-03-31 Thread Paul Copeland
JOT Servlets version 1.0 has been released by JOT Object Technologies. The all new JOT website has more information: http://www.jotobjects.com JOT Servlets is a Java Servlet framework for rapid application development using standard web pages and Java Beans for dynamic content. Web

Re: Request For Architecture Suggestions

2003-03-28 Thread Paul Copeland
/jsp layer directly to the database with JDBC if you employ a Database Connection Pool correctly. Links to the Blueprints and some JDBC code examples are on the JOT Servlets site - http://www.jotobjects.com Paul Copeland, JOT Object Technologies Date:Thu, 27 Mar 2003 23:45:08 -0500

Re: Need some useful web site for JSP and Servlet

2003-03-25 Thread Paul Copeland
Hello Ha Duy - You could take a look at the step-by-step guide that comes with JOT Servlets: http://www.jotobjects.com Paul Copeland, JOT Object Technologies Date:Tue, 25 Mar 2003 13:24:38 +0900 From:Ha Duy Thien [EMAIL PROTECTED] Subject: Need some useful web site for JSP

Re: Strange error

2003-01-29 Thread Paul Copeland
The usual cache-control example is not complete. Try this: // Cache-Control for HTTP 1.1, Expires and Pragma for older browsers response.setHeader(Cache-Control, no-cache; no-store; must-revalidate; proxy-revalidate); response.setHeader(Expires, 0); response.setHeader(Pragma, no-cache); Paul

Re: Urgent, Making taglib available to JSPs without those being in a WAR

2002-11-30 Thread Paul Copeland
David - OK, I'm game. This just went WAY over my head. Why can't he have a web.xml without a WAR? ;-) -- Paul Copeland, JOT Object Technologies - http://www.jotobjects.com -- Date:Fri, 29 Nov 2002 12:06:40 -0800 From:Karr, David [EMAIL PROTECTED] Subject

Re: Off-topic: JSP and MySQL

2002-11-27 Thread Paul Copeland
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

Re: Use of Vectors in JSP

2002-11-24 Thread Paul Copeland
the values to another Collection like a Vector. -- Paul Copeland, JOT Object Technologies - http://www.jotobjects.com -- Date:Tue, 19 Nov 2002 03:50:31 -0600 From:Amit Wadhwa [EMAIL PROTECTED] Subject: Re: Use of Vectors in JSP i use a 2-dimensional array. i

Cached Row Set

2002-11-13 Thread Paul Toyn
The following snippet of code continues to get the error below... what am I doing wrong? Environment: JDK 1.4 Tomcat 4.0.6 Thanks for any help in advance! -Paul JSP Code: %@ page import=java.sql.*,javax.sql.*,sun.jdbc.rowset.* % jsp:useBean id=crs class=CachedRowSet scope=session

Re: [ANN] Part 3 of my JSTL article at ONJava.com

2002-11-03 Thread Paul Copeland
JOT.EachDay.formatDate(EE dd, MMM ) /td /tr JOT.End /table Paul Copeland, JOT Object Technologies - http://www.jotobjects.com On Thu, Oct 31, 2002 at 12:15:08PM -0800, Hans Bergsten wrote: Dror Matalon wrote: Hans, I just read the article

Re: Question on documentation...

2002-10-21 Thread Paul Copeland
on the security hole created by the /servlet mapping... -- Paul Copeland, JOT Object Technologies - http://www.jotobjects.com - Original Message - Date:Fri, 18 Oct 2002 17:49:22 -0700 From:Hans Bergsten [EMAIL PROTECTED] Subject: Re: Question on documentation... Luis A wrote

Jar files

2002-10-18 Thread Paul Toyn
\classes;c:\jakarta-tomcat-4.0.6\webapps\root\timeslip\web-inf\classes What am I doing wrong? Thanks in advance Paul === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL

Question on documentation...

2002-10-17 Thread Paul Toyn
The following is a snippet from the Jakarta-Tomcat configuration and testing documentation: Once you compile HelloServlet.java, put HelloServlet.class in install_dir/webapps/ROOT/WEB-INF/classes. After compiling the code, access the servlet with the URL http://localhost/servlet/HelloServlet ...

Re: Bean not found

2002-10-11 Thread Paul Toyn
Thanks for the info... it worked. [EMAIL PROTECTED] 10/11/02 03:49PM Hi, After two days of trying to get my classpath to point to a simple bean that I have created, I am finally calling uncle and seeking advice. I have tried every suggestion ever made and posted on the internet about how to

Bean not found

2002-10-11 Thread Paul Toyn
Hi, After two days of trying to get my classpath to point to a simple bean that I have created, I am finally calling uncle and seeking advice. I have tried every suggestion ever made and posted on the internet about how to set the classpath. What am I doing wrong? Do I need a class path if the

Re: JDBC driver for SQL server on windows-ME.

2002-10-01 Thread Paul Foxton
you'll be wanting this: http://jtds.sourceforge.net/ dunno about it working on me tho -Original Message- From: Anand Desai [mailto:[EMAIL PROTECTED]] Sent: 30 September 2002 18:32 To: [EMAIL PROTECTED] Subject: JDBC driver for SQL server on windows-ME. Can you please suggest a good

Re: jsp javascript

2002-08-27 Thread Paul Copeland
Or just return a 204 HTTP Status Code and you don't have to go into the Hidden Frame stuff perhaps. Paul Copeland, JOT Object Technologies -- http://www.jotobjects.com Date:Fri, 23 Aug 2002 22:46:48 -0600 From:Walter Meyer [EMAIL PROTECTED] Subject: Re: jsp javascript

Re: javamail confusion...

2002-08-01 Thread Paul Foxton
I'm guessing that your Mail Transfer Agent (don't know what you're using - sendmail?) is only allowing relaying on your machine if the from address is localhost. This is in order to stop email spammers from hijacking your mailserver and using it for mailshots. I'd talk to your sysadmin if you

Re: HTML Form submit action and JSP interaction...

2002-07-08 Thread Paul Copeland
onSubmit=return validate_form() Paul Copeland, JOT Object Technologies, http://www.jotobjects.com -- Date:Sat, 6 Jul 2002 14:04:45 -0500 From:John Vanderbrook [EMAIL PROTECTED] Subject: Re: HTML Form submit action and JSP interaction

Configuring Running JSP application

2002-07-03 Thread Paul Abrilla
Hi, I'm trying to learn JSP. I have Windows 2000 Professional I have installed the following: Apache Server JSDK Tomcat Attached is the environmental variables I had setup. I usually start Apache then Tomcat. I then see the website that I'm supposed to see when I go to http://localhost. The

Re: session

2002-06-30 Thread Paul Copeland
Vaishali - You have perhaps made a giant leap of faith that utype is Class String. Do you get a ClassCastException if you do this instead? String utype = (String)session.getValue(utype); Paul Copeland, JOT Object Technologies -- http://www.jotobjects.com Date:Sat, 29 Jun 2002 14:37

Re: Need Help w/ MVC and Database

2002-04-08 Thread Paul Copeland
The JOT Servlets framework supports MVC design approaches and includes a JDBC ResultSet Iterator class. The JOT documentation includes sample source code for a JDBC database query Java Bean. Let me know if you need help with that. Paul Copeland, JOT Object Technologies, http

Re: SQL syntax

2002-03-31 Thread Paul Copeland
Try single quotes around the string. SELECT * FROM tickets WHERE name='fr.Airline' Paul Copeland, JOT Object Technologies - http://www.jotobjects.com -- Date:Sat, 30 Mar 2002 11:57:22 - From:Nic Jackson [EMAIL PROTECTED] Subject: Re: SQL syntax

Re: exception from database

2002-03-12 Thread Paul Balanoiu
that code can catch every known java exeption you can find the list in the JDK javadoc. Paul 12.03.2002 08:22:58, Maurice Munoz [EMAIL PROTECTED] wrote: Does anyone know where I can find a list of possible error this exception can list. catch (Exception e) { e.printStackTrace

Re: Tomcat Log File customzation

2002-03-11 Thread Paul Balanoiu
) are implementations of the 2.3 specifications. I suggest you use this if you need any kind of event listeners. Good luck, Paul 11.03.2002 11:11:54, sreehari sai [EMAIL PROTECTED] wrote: Hi all Pl Give Suggestions I am using a Log Servlet to Log the Requests of the Application here i am using

Re: Jsp Parameters [Urgent!]

2002-03-11 Thread Paul Balanoiu
in pages like you described. Paul 11.03.2002 18:29:39, Nancy Crisostomo Martinez [EMAIL PROTECTED] wrote: Thank you very much for your answers! But Gary : , Do you mean the URL parameters is the only way to pass parameters from a jsp (script code) to another jsp? This is because I need to pass

cookie retrieval

2002-03-06 Thread Paul Wallace
/files that are in the same directory? Thanks for all input Paul. === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST. Some

class execution from JSP

2002-02-28 Thread Paul Wallace
but with error. Once more, from the command prompt I type 'javac msgsendsample [EMAIL PROTECTED] [EMAIL PROTECTED] mail.my_smtp_ad.com false', and it works fine. How is this executed from a .JSP page? All input (preferably syntax!) gratefully received . Regards Paul. P.S My JSP is being executed using

Best Approach for Database Access?

2002-02-12 Thread Paul Idusogie
Could you kindly provide guidance on the best approach to implement database access.? I have encountered various schools of thought in my reading, that suggest extracting the business logic and database code from the jsp into a jsp bean or ejb or servlet. Thanks, Paul Idusogie Technical

[ANN] JOT Servlets Upgrade version 0.98

2002-02-04 Thread Paul Copeland
IN VERSION 0.98 --- Improved integration with Tomcat 4 and web servers supporting Java Servlet version 2.3 (compatible with Java Servlet 2.1 and later). -- Paul Copeland, JOT Object Technologies === To unsubscribe: mailto [EMAIL

FW: Re: Java 2 question

2002-01-30 Thread Paul Idusogie
Thanks,Paul IdusogieTechnical ArchitectConsulting ServicesStellent Inc. Golden Triangle DriveEden Prairie, MN 55104Desk: 952.656.2755Fax: 952.903.2115Email: [EMAIL PROTECTED]website: http://www.stellent.com -Original Message-From: Paul Idusogie Sent: Wednesday, January 30

Re: Java 2 question

2002-01-30 Thread Paul Idusogie
The correct answer is a. 4 4 8 6 Thanks, Paul Idusogie Technical Architect Consulting Services Stellent Inc. Golden Triangle Drive Eden Prairie, MN 55104 Desk: 952.656.2755 Fax: 952.903.2115 Email: [EMAIL PROTECTED] website: http://www.stellent.com -Original Message- From

Any ideas on how to configure forte for Java 3.0 Community Ed to run tomcat 4.0?

2002-01-18 Thread Paul Idusogie
Can any one kindly provide information on hoow to configure forte for Java 3.0 Community Ed to run tomcat 4.0? Thanks, Paul Idusogie Technical Architect Consulting Services Stellent Inc. Golden Triangle Drive Eden Prairie, MN 55104 Desk: 952.656.2755 Fax: 952.903.2115 Email: [EMAIL

Utilizing EVAL_BODY_AGAIN in A Tag class from Forte for JAVA 3.0 Community Ed.

2002-01-15 Thread Paul Idusogie
need to attach tomcat 4.0? to the IDE Howo do I acheive this.? Any clues? Thanks, Paul Idusogie Technical Architect Consulting Services Stellent Inc. Golden Triangle Drive Eden Prairie, MN 55104 Desk: 952.656.2755 Fax: 952.903.2115 Email: [EMAIL PROTECTED] website: http

Accessing an ActiveX control from a signed applet

2001-12-03 Thread Paul Idusogie
Could you kindly provide examples on how to access an ActiveX control from a signed applet. Thanks, Paul Idusogie Technical Architect Consulting Services Stellent Inc. (fka: IntraNet Solutions) Golden Triangle Drive Eden Prairie, MN 55104 Desk: 952.656.2755 Cell: 612.810.4174 Fax

Re: QUESTION ON APACHE / TOMCAT

2001-11-26 Thread Paul Foxton
apache _and_ Tomcat, Tomcat can do everyhting you need on its own. Hope this helps paul -Original Message-From: Raj Chanian [mailto:[EMAIL PROTECTED]]Sent: 26 November 2001 10:15To: [EMAIL PROTECTED]Subject: Re: QUESTION ON APACHE / TOMCAT

Re: Login Authentication against database...

2001-11-16 Thread Paul Foxton
a more selective query given that my string formatting bean would stop this exploit anyway? thanks, Paul -Original Message- From: Bob Vú [mailto:[EMAIL PROTECTED]] Sent: 16 November 2001 06:46 To: [EMAIL PROTECTED] Subject: Re: Login Authentication against database... Hi all, Wow

Error within JSP page

2001-11-13 Thread Paul Idusogie
) at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.j ava:1005) at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java: 1098) at java.lang.Thread.run(Unknown Source) Thanks, Paul Idusogie Technical Architect Consulting Services Stellent Inc. (fka: IntraNet Solutions

Re: JSP, JRun and PWS

2001-11-02 Thread Paul Foxton
yes. When you set up jrun to connect to a webserver theres a PWS option, it works fine. cheers Paul -Original Message- From: Theo Starr [mailto:[EMAIL PROTECTED]] Sent: 02 November 2001 11:40 To: [EMAIL PROTECTED] Subject: JSP, JRun and PWS Hello Everybody Is it possible

Re: Getting apache to run other application.

2001-10-26 Thread Paul Idusogie
could you provide source code snippets on how to configure apache, please. Thanks, Paul Idusogie Technical Architect Consulting Services Stellent Inc. (fka: IntraNet Solutions) Golden Triangle Drive Eden Prairie, MN 55104 Desk: 952.656.2755 Cell: 612.810.4174 Fax: 952.903.2115 Email

Getting apache to run other application.

2001-10-25 Thread Paul Idusogie
Could someone advice me on how to add additional applications. Adding another line such as: WebAppDeploy myApplication warpConnection drive:/mainfolder/subfolder to httppd.conf does not work. Thanks, Paul Idusogie Technical Architect Consulting Services Stellent Inc. (fka: IntraNet Solutions

Cookies not working!

2001-10-24 Thread Paul Stearman
I am using the following code as a jsp login page. On pressing the Login button the cookie should be created but its not. Any ideas? SCRIPT LANGUAGE=JavaScript!-- function go_search () { window.location.href = ../search/ph2Search.jsp; } function go_failed () { window.location.href =

Would like to know....

2001-10-23 Thread Paul Davies
-2.0.4 driver with little success. Thanks, Paul Nokia Game is on again. Go to http://uk.yahoo.com/nokiagame/ and join the new all media adventure before November 3rd

Followup detail (Tomcat Mysql execption)

2001-10-23 Thread Paul Davies
Recordset1_numRows = 0; // end I have completely run out of ideas as to why this exception is occuring, I would be very grateful for any suggestions as my manager is breathing down my back! Thanks again, Paul Nokia Game is on again. Go

jsp page downloading instead of executing

2001-10-22 Thread Paul Davies
that a connection has been made through 'mod_webapp', but when I try to access a .jsp page through a browser, instead of seeing the page, the source is downloaded and opened in notepad. If you have any idea why this may be happening I will be more than grateful if you can help. Cheers, Paul

Re: jsp page downloading instead of executing

2001-10-22 Thread Paul Davies
/webapps/live /IfModule ...where 'live' is the directory in 'webapps' where all my html and jsp files are held. With 'WebAppDeploy', the next argument is the 'name' of the application, but I don't know in which context this is. Cheers, Paul

Re: jsp page downloading instead of executing

2001-10-22 Thread Paul Davies
/webapps/live /IfModule ...where 'live' is the directory in 'webapps' where all my html and jsp files are held. With 'WebAppDeploy', the next argument is the 'name' of the application, but I don't know in which context this is. Cheers, Paul --- Hardeep Singh [EMAIL PROTECTED] wrote: The combo

Setting CLASSPATH in Linux

2001-10-22 Thread Paul Davies
driverName=org.gjt.mm.mysql.Driver connectionURL=jdbc:mysql://localhost/authority?user=dba;password=dba userTable=user userNameCol=User userCredCol=Password userRoleTable=user_roles roleNameCol=role_name / Thanks, Paul

Re: Setting CLASSPATH in Linux

2001-10-22 Thread Paul Davies
working, but not letting me read the database? Thanks again, Paul --- Troy Campano [EMAIL PROTECTED] wrote: is the catalina.sh file in $TOMCAT_HOME/bin, there is a the $CP variables that you need to add on to. For example I used this for a Oracle JDBC driver: CP=$CP:$TOMCAT_HOME/lib

Re: include html-file

2001-10-22 Thread Paul Idusogie
I'm considering learning Linux to deploy my website using apache as my web server and tomcat as the servlet container. Could any one provide suggestions on books, linux version and the pain threshold. I can not afford Windows 2000 server software. Thanks Paul Idusogie Technical Architect

Platform choice advice for deploying a website

2001-10-22 Thread Paul Idusogie
not afford Windows 2000 server software. Thanks Paul Idusogie Technical Architect Consulting Services Stellent Inc. (fka: IntraNet Solutions) Golden Triangle Drive Eden Prairie, MN 55104 Desk: 952.656.2755 Cell: 612.810.4174 Fax: 952.903.2115 Email: [EMAIL PROTECTED] website: http

JSP cookie problem

2001-10-19 Thread Paul Stearman
I am creating a site which almost entirely is made up of JSPs. On the loin page i want to write some information (use id, database connection id, etc) into a cookie. I am forwarding the page onto the next one using a javascript function which in turn calls window.location.href. (this is due

Re: mysql connect problem

2001-10-03 Thread Paul Foxton
of the jdbc:odbc driver. cheers, Paul -Original Message- From: Wo [mailto:[EMAIL PROTECTED]] Sent: 02 October 2001 19:37 To: [EMAIL PROTECTED] Subject: mysql connect problem Dear all, i am trying to connect to mysql server. Is it necessary to name the sql server as an odbc data source

Re: help!! for tomcat installation

2001-10-01 Thread Paul Idusogie
-d_jk.conf-auto file within localdrive:/tomcat/conf Paul Idusogie Technical Architect, Consulting Services Stellent Inc.(formerly IntraNet Solutions) Golden Triangle Drive Eden Prairie, MN 55104 Desk: 952.656.2755 Cell: 612.810.4174 Fax: 952.903.2115 Email: [EMAIL PROTECTED] website: http

Re: how to access servlet from the jsp page

2001-09-21 Thread Paul Foxton
different to the previous answer). cheers Paul -Original Message- From: David Gee (MAYA Design) [mailto:[EMAIL PROTECTED]] Sent: 21 September 2001 15:18 To: [EMAIL PROTECTED] Subject: Re: how to access servlet from the jsp page I've been trying to do something similar

Re: JSP PRO Chapter 12

2001-09-20 Thread Paul Foxton
And exactly why do you feel the need to tell this to EVERYONE on this list? Email the author(s) for gods sake. -Original Message- From: Zahid Rahman [mailto:[EMAIL PROTECTED]] Sent: 20 September 2001 09:39 To: [EMAIL PROTECTED] Subject: JSP PRO Chapter 12 To whom it may concern,

Re: string to char

2001-09-20 Thread Paul Foxton
: http://java.sun.com/j2se/1.3/docs/api/index.html cheers, Paul -Original Message- From: Ron Chan [mailto:[EMAIL PROTECTED]] Sent: 20 September 2001 12:26 To: [EMAIL PROTECTED] Subject: Re: string to char javadocs for String: toCharArray public char[] toCharArray() Converts

Re: Abuse of this list

2001-09-18 Thread Paul Foxton
I second that. Can the list admin please take some kind of stand on this? some subscribers are now using recent events to put their personal opinions accross. Apart from being annoying some posts are starting to become offensive. I would like to see the list admin unsubscribe people who

Re: OutputStream

2001-09-17 Thread Paul Foxton
you'll already have a PrintWriter object in your page, all jsp's come with one when they are compiled into a servlet by the app server. This is why you can directly use PrintWriter out in your jsp without having to declare it first. Could this be your problem? cheers, Paul -Original

Re: delete multiple table

2001-09-13 Thread Paul Foxton
DROP TABLE table_name_1, table_name_2, table_name_3, . I'd also recommend this book if you're doing lots of MySQL stuff: MySQL by Paul DuBois (New Riders) cheers, Paul -Original Message- From: chenghong [mailto:[EMAIL PROTECTED]] Sent: 15 July 2001 02:57 To: [EMAIL PROTECTED

Re: delete multiple table

2001-09-13 Thread Paul Foxton
Erm...sorry, could've sworn you mentioned MySQL in your post. trying to do too many things at once ;¬) cheers, Paul -Original Message- From: Paul Foxton [mailto:[EMAIL PROTECTED]] Sent: 13 September 2001 11:41 To: [EMAIL PROTECTED] Subject: Re: delete multiple table DROP

Re: OFF TOPIC: Terrorist attacks

2001-09-13 Thread Paul Foxton
Its a terrible thing thats happened, no-one can doubt that. But can we _please_ return to the normal topic of this list now? If you need to continue discussions about this why not email the poster directly? -Original Message- From: Joseph Ottinger [mailto:[EMAIL PROTECTED]] Sent: 13

Problem in response.sendRedirect

2001-09-10 Thread Paul Meshkovsky
)) { response.sendRedirect(./main.html); } if (prm.equals(SAS)) { response.sendRedirect(./sasdoc/sashtml/default.htm); } % /* end */ Thank you. Paul

WebLogic 6.0

2001-08-16 Thread Sharath Paul
Hi friends, I have just started working on WebLogic Server and am not able to find out where to place my JSP/Servlet files in the weblogic directory of the domain that I use. Please help me out! Regards, Sharath === To

Re: configuring tomcat

2001-07-17 Thread Paul Foxton
Just checking the syntax of your useBean tag: in your email you said you're using the 'Use:Bean' tag this should be jsp:useBean. / eg: jsp:useBean id=mybean scope=session class=MyClass / This could be why tomcat can't find your class. Hope this helps Paul -Original Message

bean creation and scope

2001-07-17 Thread Paul Meaney
Hi there. === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST. Some relevant FAQs on JSP/Servlets can be found at:

sorry if this gets here twice: JSP and bean creation

2001-07-17 Thread Paul Meaney
, Paul === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST. Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com

Re: Opensource app server with Servlet/JSP support

2001-07-04 Thread Paul Foxton
/site/mail2.html you can also search the tomcat list archives here: http://mikal.org/interests/java/tomcat/index.jsp cheers Paul -Original Message- From: Pantarotto, Sio [mailto:[EMAIL PROTECTED]] Sent: 04 July 2001 08:49 To: [EMAIL PROTECTED] Subject: Re: Opensource app server

java.sql.SQLException: [Microsoft][ODBC Driver Manager] Function sequence error

2001-06-20 Thread Sharath Paul
Hi All, java.sql.SQLException: [Microsoft][ODBC Driver Manager] Function sequence error I get this Function sequence error while I run my JSP page, I am using a jdbc-odbc SQL server driver. Does any body have any idea? please let me know. Sharath

Re: SQL server database insert

2001-06-19 Thread Sharath Paul
Hi, While inserting a record from my JSP page into SQL table, the same record gets inserted twice. I am using a prepared statement. Why is that second record inserting by itself autonomously, can anybody please advise me ASAP. Thanks Sharath

Re: Any Free JDBC Drivers

2001-06-15 Thread Paul Foxton
If you're just experimenting and arn't too bothered about speed why not use the jdbc:odbc driver that comes with JDBC? If your on a windows machine you just need to set up a DSN and you're up and running - or is that not an option? -Original Message- From: wasims@comsats

Accessing web.xml parameters via beans

2001-06-15 Thread Paul Long
in advance.paul === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST DIGEST. Some relevant FAQs on JSP/Servlets can be found

possible concurrent access to data

2001-06-14 Thread Paul Foxton
by making the second request wait? secondly - any ideas on how I can test this? I mean, the requests will have to happen at exactly the same so I can't be sure if check it manually. thanks, Paul === To unsubscribe: mailto [EMAIL

Re: Form processing

2001-06-13 Thread Paul Foxton
yeah, if you just want basic form validation javascript is a better solutoin since it takes some processing load off the webserver and shifts it to the client's machine. -Original Message- From: Mayuresh Kadu [mailto:[EMAIL PROTECTED]] Sent: 13 June 2001 11:56 To: [EMAIL PROTECTED]

Re: Form processing

2001-06-13 Thread Paul Foxton
Your concerns may be justified from that point of view, but I don't think its necessary to throw the baby out with the bathwater. I generally use a combination of client side and server side validation. Being new to this list I have to say I hope the majority of traffic here isn't conducted with

Re: Form processing

2001-06-13 Thread Paul Meshkovsky
performance of your application and less strain on the server. But if somebody wants to HACK into you application and modify from the browser my guess move everything to SERVLETS -APPLETS bytecode is more difficult to HACK :)). Paul Meshkovsky -Original Message- From: Brad Cox [SMTP

JSP and JavaScript and Beans

2001-06-13 Thread Sharath Paul
Hi Friends, I have tried to use JSP with JavaScript its working, but can anybody tell me the limitations of JSP with JavaScript. Also I have problems in using Beans in JSP while using jsp:useBean ... / tag though I am trying to run sample codes available from the books. Can anybody enlighten

just checking I'm signed up

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

No Subject

2001-05-14 Thread Paul Meshkovsky
Hi, I am interested in seeing the code you wrote for sorting using result set converting it to hash array and sorting it. Thanx. Paul. Hi, I am interested in seeing the code you wrote for sorting using xmlxsl. I have done the similar thing by using hash array. But, it was pain. I

Re: Sorting table columns

2001-05-07 Thread Paul Meshkovsky
It is probably resolved but I just want do add th a href=yourjsp.jsp?filed=COLUMN_NAME1COLUMN NAME/a/th you just have to add in your sql an order or group by clause where value of filed will go Paul. -Original Message- From: Zeltser, Mark [SMTP:[EMAIL PROTECTED]] Sent: Thursday

No Subject

2001-05-07 Thread Paul Meshkovsky
I hope your problem is solved but just incase yor best bet is to reinstall JSDK x.x Pasha -Original Message- From: Igor Zerbesi DIGEST [SMTP:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 3:44 AM To: [EMAIL PROTECTED] Subject: No before i have installed some trials Java IDE'S

Problems Setting up Tomcat to run Servlets

2001-05-02 Thread Paul Meshkovsky
Hi , I have installed tomcat and set it up I am only able to run JSP pages but not the Servlet part for some reason. Can anybody tell me what I need to do. Thank you Paul === To unsubscribe: mailto [EMAIL PROTECTED

  1   2   3   >