how to compile struts using ant

2006-03-30 Thread A. Lotfi
Hi, could you please show me how to compile a struts application using ant. thank you. - New Yahoo! Messenger with Voice. Call regular phones from your PC and save big. === To

[announce] Integrating Relational Data and XML using Java

2006-01-23 Thread Stylus Studio
[ANNOUNCE]Dear JSP-Interest, A new interview with Jonathan Robie, an editor of the W3C XQuery specification discusses how to integrate relational and XML data using Java. Read it online for free at: http://www.stylusstudio.com/interviews/jonathan_robie.html The interview covers the following

Re: Function call using variables

2005-04-12 Thread Dmitry Namiot
Check out Eval taglib in Coldtags suite: http://www.servletsuite.com/jsp.htm you evaluate JSP code in the string variable -- Coldbeans Software - server-side Java (tm) components http://www.servletsuite.com __ Switch to Netscape In

Re: Function call using variables

2005-04-10 Thread Golda, Maria Mike(Cognizant)
ct: Re: Function call using variables No, thats not what I wanted to do. I have to call the function in the bean but using a string variable that contains the function name. For instance, <% String temp = "function" + "name" + "()"; // This is a simple example of

Re: Function call using variables

2005-04-08 Thread Prathibha Deshikachar
No, thats not what I wanted to do. I have to call the function in the bean but using a string variable that contains the function name. For instance, <% String temp = "function" + "name" + "()"; // This is a simple example of what I need to do. %> <%=te

Re: Function call using variables

2005-04-08 Thread Jörg Wiesmann
What are you planing to do ? maybe this helps you out: myID.myFunctionName() //returns a string sorry if i missunderstood :-) hope it helps greets Jörg === To unsubscribe: mailto [EMAIL PROTECTED] with body: "si

Re: Function call using variables

2005-04-08 Thread Prathibha Deshikachar
I was hoping that there would be an eval/exec type command in JSP. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Som

Re: Function call using variables

2005-04-08 Thread Arasu, Sabari
: JSP-INTEREST@JAVA.SUN.COM Subject: Function call using variables I am trying to call a Java Bean function from my JSP. I need to call this dynamically. Would appreciate any inputs. Here is what I am trying to do : <% String temp = "FunctionName()"; // Ofcourse what I am doin

Re: Spam: Function call using variables

2005-04-07 Thread Golda, Maria Mike(Cognizant)
You can write a Method in JSP as below if you don't have any concern of using scriptlets. <%! String toPrint; public string function() { return "Hello World"; } %> ... . <% toPrint = function(); %> <%=toPrin

Function call using variables

2005-04-07 Thread Prat
I am trying to call a Java Bean function from my JSP. I need to call this dynamically. Would appreciate any inputs. Here is what I am trying to do : <% String temp = "FunctionName()"; // Ofcourse what I am doing is not this straight forward but I would eventually have a string that is a functi

using JWebUnit and Model 2

2005-02-10 Thread Dean, Michael
..in our target application, these pages are not exposed to the user (return 404). I guess you could write a long, sequential test case which beginsAt("servlet_url") and then processes the returns until you got (robot style) where you want to begin the test but this hardly seems viable.

Re: Error while using RequestDispatcher.forward(req.res)

2005-01-10 Thread Richard Yee
te to handle this situation. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED] On Behalf Of Martin Gainty Sent: Monday, January 10, 2005 8:38 PM To: JSP-INTEREST@JAVA.SUN.COM Subject: Re: Error while using RequestDispatcher.fo

Re: Error while using RequestDispatcher.forward(req.res)

2005-01-10 Thread Amar Dhole
e web container is not update to handle this situation. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED] On Behalf Of Martin Gainty Sent: Monday, January 10, 2005 8:38 PM To: JSP-INTEREST@JAVA.SUN.COM Subject: Re: Error while

Re: Error while using RequestDispatcher.forward(req.res)

2005-01-10 Thread Martin Gainty
t; <[EMAIL PROTECTED]> To: Sent: Monday, January 10, 2005 9:49 AM Subject: Error while using RequestDispatcher.forward(req.res) > Hi all, > > I am getting following error while using requestdispatcher my code is like > > RequestDispatcher dispatcher = > getServletContext

Error while using RequestDispatcher.forward(req.res)

2005-01-10 Thread Amar Dhole
Hi all, I am getting following error while using requestdispatcher my code is like RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(encodedURL); dispatcher.forward(req, res); I am using was4.0.6 with jdk1.3. I know that there is no support for StringBuffer.append

Re: Newbie question about using the JAR file

2004-12-14 Thread Thomas Tsang
Dear Ravi Kumar & Imran Anwar, Thank you for your help, it is work now. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".

Re: Newbie question about using the JAR file

2004-12-14 Thread Ravi Kumar.
try this: ***copied from another mail*** Dear if u just copy activation.jar and mail.jar to your SDK jre\lib\ext folder (like C:\j2sdk1.4.1_02\jre\lib\ext) you can get the requierd results regards, Imran ***copied from another mail*** On M

Re: Newbie question about using the JAR file

2004-12-13 Thread Thomas Tsang
Can I know how to reference the jar file in my system classpath? I have copy the activation.jar to C:\Program Files\Apache Software Foundation\Tomcat 5.5\common\lib\, and add this path to the value of Classpath (My Computer-> Property-> Advanced-> Environment), then restart the server. But the re

Re: Newbie question about using the JAR file

2004-12-13 Thread Imran Anwar
Dear if u just copy activation.jar and mail.jar to your SDK jre\lib\ext folder (like C:\j2sdk1.4.1_02\jre\lib\ext) you can get the requierd results regards, Imran On Mon, 13 Dec 2004 23:26:34 -0700, Thomas Tsang <[EMAIL PROTECTED]> wrote: > Add full path with activation.jar to the variable

Re: Newbie question about using the JAR file

2004-12-13 Thread Thomas Tsang
Add full path with activation.jar to the variable and restart the server, but still failure... My testing environment is WinXP + Apache + tomcat 5.5, I think it may be setting problem, any more suggestion? === To unsubscribe:

Re: Newbie question about using the JAR file

2004-12-13 Thread Ravi Kumar.
hi, try adding the full path and the jar file name to the classpath variable. regards. ravi. On Mon, 13 Dec 2004 19:21:15 -0700, Thomas Tsang <[EMAIL PROTECTED]> wrote: > Can I know how to reference the jar file in my system classpath? > > I have copy the activation.jar to C:\Program Files\Apa

Re: Newbie question about using the JAR file

2004-12-13 Thread Ken Robinson
AM To: [EMAIL PROTECTED] Subject: Re: Newbie question about using the JAR file Thank for your information, but I think the main case is I don;t know how to install the jar in the server, the same error is retuen when I add the code you provide, and even I remark the line 'Session mailSession =

Re: Newbie question about using the JAR file

2004-12-10 Thread Christian Bollmeyer
On Friday 10 December 2004 13:56, Thomas Tsang wrote: Make sure you've put the *,jar files in a directory where the classloader can find them. If unsure, put them in your application's /WEB-INF/lib directory, not one of the Tomcat server's directories. Then, I'm not sure about the Session thing. A

Re: Newbie question about using the JAR file

2004-12-10 Thread Thomas Tsang
Thank for your information, but I think the main case is I don;t know how to install the jar in the server, the same error is retuen when I add the code you provide, and even I remark the line 'Session mailSession = ...', the similar error is returm for the next line == InternetAddress cann

Re: Newbie question about using the JAR file

2004-12-10 Thread Martin Gainty
ECTED] - Original Message - From: "Thomas Tsang" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, December 10, 2004 6:22 AM Subject: Newbie question about using the JAR file > I want to add a send email function in my JSP server (WinXP + Apache + > Tomc

Newbie question about using the JAR file

2004-12-10 Thread Thomas Tsang
ps = new java.util.Properties(); props.put("mail.smtp.host", [SMTP Server]); Session mailSession = Session.getDefaultInstance(props,null); InternetAddress fromAddress = new InternetAddress([Email Address]); %> === But the following error is return... === Session cannot

logout when using frames

2004-11-23 Thread Shahata, Ash
Hi all, I'm developing a jsp application using frames, and trying to do a logout, but everytime I logout it goes into the middle frame! Does anyone know of a way where I can get it to go the login jsp page, and not load it within the middle frame? T

Dynamic "jump down" menu using Servlet

2004-07-16 Thread S Senthil Raja
Sir/Madam, Display the Product Catalog page(servlet using XSL) Note: Product list is coming from DB (1) Add "jump down" menu(Alphabets A-Z) at the top of the page. (2) Based on the Product name(getting from DB) the corresponding letter should get link, and If we click that For ex

Re: how to display image from mysql using jsp

2004-07-03 Thread Emmanuel Eze
= response.getOutputStream(); I assume u know u must set response.setContentType() to the right mime type. Hope this helps? Cheers! Emmanuel Eze Quoting lee hwaying <[EMAIL PROTECTED]>: > hi. > > i have search on the net for 3 days for sample code of displaying a byte[] > from mysql

Re: how to display image from mysql using jsp

2004-07-01 Thread Christian Bollmeyer
Then, you have to hold two things apart: the HTML page itself which is a text document and can well be rendered by using JSPs. Note that images are not 'embedded' in the page, but only *referred* to by tags. Delivering the real content is where Servlets come in. For delivering images sto

how to display image from mysql using jsp

2004-07-01 Thread lee hwaying
hi. i have search on the net for 3 days for sample code of displaying a byte[] from mysql image field using jsp but without success. 1. I have found sample code for php in doing that http://www.onlamp.com/pub/a/onlamp/2002/05/09/webdb2.html?page=1 2. It can be done via servlet. But i am reluctant

using Tag

2004-03-26 Thread J Ou
Hi all, With the different html tag implementations available (jstl, Struts ), which one do you use and how do you decide ? thanks J. O. - Do you Yahoo!? Yahoo! Finance Tax Center - File online. File on time.

Re: Image using response.getOutputStream...

2004-02-25 Thread Christian Bollmeyer
On Wednesday 25 February 2004 06:26, Narayanan Ravi Chandran wrote: Hi, > Hi, > > I am finding a typical problem with the below JSP code. The problem No wonder. Never seen anything like that. > is when I use the response.getOutputStream() to display the image > generated @ server the text and

Image using response.getOutputStream...

2004-02-24 Thread Narayanan Ravi Chandran
Hi, (B (BI am finding a typical problem with the below JSP code. The problem is when (BI use the response.getOutputStream() to display the image generated @ server (Bthe text and text boxes are never shown in the page, I am getting only the (Bimage. (B (BCould some body help me on this. (B

Re: Prev/Next Using JSP

2003-10-24 Thread Dmitry Namiot
See for example Grid taglib in Coldtags suite: http://www.servletsuite.com/jsp.htm -- Coldbeans Software - server-side Java (tm) components http://www.servletsuite.com __ McAfee VirusScan Online from the Netscape Network. Comprehen

Re: Prev/Next Using JSP

2003-10-24 Thread Joel Carklin
ot;n" of records with the 5 columns from > > Database(Server side), all the values are stored in one StringBuffer, > > Now I want to display(Client Side) 10 records per page using > > link.How we will do in JSP anybody can suggest me, give >

Re: Prev/Next Using JSP

2003-10-23 Thread Christian Bollmeyer
x27;s open source and IMHO very cool. HTH, -- Chris (SCPJ2) > Dear sir, > I'm fetching some "n" of records with the 5 columns from > Database(Server side), all the values are stored in one StringBuffer, > Now I want to display(Client Side) 10 records per page usi

Re: Prev/Next Using JSP

2003-10-23 Thread James Klicman
er side), all the values are stored in one StringBuffer, Now I > want to display(Client Side) 10 records per page using link.How > we will do in JSP anybody can suggest me, give some code for this process. > Thanx and regards. >

Prev/Next Using JSP

2003-10-23 Thread S Senthil Raja
Dear sir, I'm fetching some "n" of records with the 5 columns from Database(Server side), all the values are stored in one StringBuffer, Now I want to display(Client Side) 10 records per page using link.How we will do in JSP anybody can suggest me, give some code for this pro

Re: using static properties vs. servletcontext for storing applic atio n scope objects

2003-09-16 Thread Lakshmeenarayana
PROTECTED] Subject: Re: using static properties vs. servletcontext for storing applic atio n scope objects Could any of you shed light on this? If somebody could give the fundamental differences of the two approaches, it is even better. Regards, Partha -Original Message- From: Partha

Re: using static properties vs. servletcontext for storing applic atio n scope objects

2003-09-16 Thread Partha Ranjan Das
: using static properties vs. servletcontext for storing applicatio n scope objects Hi all, I have to store a Java object into an application scope. I am to decide between two possible implementations viz.: 1. use a class with some static properties and some static accessor methods which can be

Re: using static properties vs. servletcontext for storing applicatio n scope objects

2003-09-16 Thread Pradeep Kumar
I prefer either option 1 or better have a singleton object. -Original Message- From: Partha Ranjan Das [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2003 6:46 PM To: [EMAIL PROTECTED] Subject:using static properties vs. servletcontext for storing applicatio n

using static properties vs. servletcontext for storing applicatio n scope objects

2003-09-16 Thread Partha Ranjan Das
Hi all, I have to store a Java object into an application scope. I am to decide between two possible implementations viz.: 1. use a class with some static properties and some static accessor methods which can be accessed by any JSP/servlet thread. The shared (application ) object will be there in

Using JSTL

2003-09-10 Thread Manoj Kansal
Hi All, I am using weblogic 7.0 on Windows NT 4.0 machine. I wish to use JSTL. From where I could get jar file for the same. Do I need JWSDP. Since I am restricted to install JWSDP. Then how could I get jar files. Somebody can mail me the jars(expected small size). What else I need. Do instruct

Re: Using constants with EL

2003-09-03 Thread Timo Neumann
Karr, David wrote: From: Timo Neumann [mailto:[EMAIL PROTECTED] I have a class Constants that contains entries like that public static final String YES = "yes"; I want to access these "constants" in my JSPs with EL, something like: This way it does not work. How would I do it right? I've got a

Re: Using constants with EL

2003-09-02 Thread Karr, David
> -Original Message- > From: Timo Neumann [mailto:[EMAIL PROTECTED] > > Hi all, > > I have a class Constants that contains entries like that > > public static final String YES = "yes"; > > I want to access these "constants" in my JSPs with EL, something like: > > > > This way it does not w

Using constants with EL

2003-09-02 Thread Timo Neumann
Hi all, I have a class Constants that contains entries like that public static final String YES = "yes"; I want to access these "constants" in my JSPs with EL, something like: This way it does not work. How would I do it right? I've got a workaround that is not very elegant and I would like

Re: How to cdynamically onvert XML to HTML using JSP?

2003-07-18 Thread Amit Ghaste
] Sent: Friday, July 18, 2003 3:32 AM To: [EMAIL PROTECTED] Subject: How to cdynamically onvert XML to HTML using JSP? Hi, I have a problem. I can search an account using a servlet and a jsp file, and show the results using XML. Now I need to minitor those output and show it using HTML. I run the

How to cdynamically onvert XML to HTML using JSP?

2003-07-18 Thread Faxin . Zhao
Hi, I have a problem. I can search an account using a servlet and a jsp file, and show the results using XML. Now I need to minitor those output and show it using HTML. I run the following jsp, but got error: <[EMAIL PROTECTED] uri="http://jakarta.apache.org/taglibs/xsl-1.0";

Anyone using RESIN now...

2003-07-06 Thread Mark Simms
that Tomcat 4 is stable and has shown decent performance. Just curious as to whether anyone can comment on RESIN vs. TOMCAT, especially under Linux ? I noticed there has not been a RESIN post on this list for a long, long time.h. ===

using EJB in jsp page

2003-05-27 Thread Maciek Zywno
hello How can I use EJB in jsp page? I guess I have to specify the application server where "my" EJB resides.. what is the syntax? is it a common practice to use EJB from jsp level? thanks === To unsubscribe: mailto [EMAIL P

Directly run SQL Script file using JDBC

2003-04-01 Thread Lakshmeenarayana G G
Hi All, Is there anyway I can run .sql script file ( which is present in my application directory ) directly using JDBC API on to Oracle Database without manually running the sql file in SQL * Plus tool. Cheers. Lakshmeenarayana G G ArisGlobal India Development Center, SysArris Software Pvt

anyone using weblogic5

2003-03-19 Thread Shivan
hi,anyone using weblogic 5 with mysql? === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some rel

Re: How to upload image file from client to server using servlet

2003-03-18 Thread Shahata, Ash
server using servlet Dear JSP gurus, Does anyone here have sample code for uploading a file from client to server using servlet or JSP scriptlet , please share with me or can you you give me some recommendation Thanks you so much Thien

How to upload image file from client to server using servlet

2003-03-17 Thread Ha Duy Thien
Dear JSP gurus, Does anyone here have sample code for uploading a file from client to server using servlet or JSP scriptlet , please share with me or can you you give me some recommendation Thanks you so much Thien

Re: file renaming using Multipart class.

2003-03-10 Thread Venkat
To: [EMAIL PROTECTED] Subject: Re: file renaming using Multipart class. Hi all, I am using this package and i need the help badly to rename the file.Can some one help me out http://www.servlets.com/cos/ my code snippet is below. <% MultipartRequest multi=new MultipartRequest(request,".

Re: file renaming using Multipart class.

2003-03-09 Thread Venkat
Hi all, I am using this package and i need the help badly to rename the file.Can some one help me out http://www.servlets.com/cos/ my code snippet is below. <% MultipartRequest multi=new MultipartRequest(request,".",5*1024*1024); %> How do i rename the file? Thanks i

Re: file renaming using Multipart class.

2003-03-09 Thread Narasimha Rao TNV
: [EMAIL PROTECTED] Subject:Re: file renaming using Multipart class. Hi Jayant, I want to do exacty what you said. But where to append this? The don't have constructor which takes filename as parameter. So how can i append this? Thanks in advance venkat -Original Message- Fr

Re: file renaming using Multipart class.

2003-03-09 Thread Venkat
ailto:[EMAIL PROTECTED] Behalf Of Jayant Kataria Sent: Monday, March 10, 2003 11:17 AM To: [EMAIL PROTECTED] Subject: Re: file renaming using Multipart class. Hi, How about prepending the userid with the name of the file specified by the user. regards Rahul -Original Message- From: Venkat [m

Re: file renaming using Multipart class.

2003-03-09 Thread Jayant Kataria
Hi, How about prepending the userid with the name of the file specified by the user. regards Rahul -Original Message- From: Venkat [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 11:07 AM To: [EMAIL PROTECTED] Subject: file renaming using Multipart class. Hi all, I am tying to

file renaming using Multipart class.

2003-03-09 Thread Venkat
Hi all, I am tying to upload a file frin jsp page using bean MultiPartRequest class that come with oreilly examples. I am using the constructor which takes three parameters 1.request 2. dir 3. file size Itz working and it is storing in the dir given by me. But the file name is default file name

Re: problem creating a PDF using https

2003-03-06 Thread Thai Thanh Ha
I guess that you're using JRun (or some web server) behind IIS to support servlets. 1. Check if SSL enabled or not: Assume that your web application name is "mywebapp". Create a normal HTML page *in you web application* (don't put it in other directories) and try to

Re: problem creating a PDF using https

2003-03-06 Thread Brian P Bohnet
You didn't mention if you are using frames in your site. I have seen this when a user clicks on one window in the frame which calls another window within the frameset. Just something to think about. I believe you must have all parts of your frameset defined in the server under ssl/https.

Re: problem creating a PDF using https

2003-03-06 Thread Murphy, Todd
Thanks for your suggestions. We are successfully using SSL in all other aspects of the site, we only run into the problem when trying to access the pdf. The web server used is IIS. Todd -Original Message- From: Thai Thanh Ha [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 9

Re: problem creating a PDF using https

2003-03-05 Thread Shivani
which web server are you using? does it support https? -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED] Behalf Of Murphy, Todd Sent: Wednesday, March 05, 2003 6:32 PM To: [EMAIL PROTECTED] Subject: problem creating a PDF

Re: problem creating a PDF using https

2003-03-05 Thread Thai Thanh Ha
ED] Sent: Thursday, March 06, 2003 9:32 AM To: [EMAIL PROTECTED] Subject: problem creating a PDF using https Greetings, I'm seeing an issue when using https that I'm hoping for some advice on. I have a servlet that returns content to the browser window (IE5.5) in PDF format. This wor

problem creating a PDF using https

2003-03-05 Thread Murphy, Todd
Greetings, I'm seeing an issue when using https that I'm hoping for some advice on. I have a servlet that returns content to the browser window (IE5.5) in PDF format. This works great using http, but fails with the following message when I switch to SSL: Internet Explorer cannot down

Re: Printing problem for a arraylist in A JSP PAGE in Struts framework using JBUILDER

2003-03-04 Thread Karr, David
We'd have to see your JSP page and and the action code which populates the bean your page is using. > -Original Message- > From: aRUN NANDY [mailto:[EMAIL PROTECTED] > > I am trying to print a combo box in Struts jsp which is array list and > I getting this excep

Re: problem using chart component

2003-03-04 Thread Josep R. Raurell
ther solucion is allow virtual machine connect with the xserver, you must found the information about in internet. Josep R. Raurell En/na Amit Gautam ha escrit: i m facing a problem while using a chart component in the Linux environment. it says "error connecting to X11 server, problem i

problem using chart component

2003-03-04 Thread Amit Gautam
i m facing a problem while using a chart component in the Linux environment. it says "error connecting to X11 server, problem in DISPLAY setting:locahost:0.0" any ideas? ==To unsubscribe: mailto [EMAIL PROTECTED]

Printing problem for a arraylist in A JSP PAGE in Struts framework using JBUILDER

2003-03-04 Thread aRUN NANDY
Hi Folks, I am trying to print a combo box in Struts jsp which is array list and I getting this exception. Pl anybody can throw any light here. My sincere thanks in ADVANCE. exception which I am getting Error 500--Internal Server Error From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1: 10.5.

ErrorPage behaviour using JSP Template

2003-02-28 Thread Jakab Gábor
Hello All, I'm working on an app. for a given API. I am using a template which includes the others (Login.jsp,ChangeData.jsp...) with the into a table. In some cases of exceptions the errorPage comes properly, but sometimes parts of the template appear twice just like if I use the ... I&#x

Re: Using JSP to display blob as video

2003-02-18 Thread Peter Dolukhanov
] Subject: Re: Using JSP to display blob as video Deepak- assuming you already have a DB connection- 1)you retrieve the image from the db into a file on the server and display the image in a servlet using hte tag, OR 2)Use a servlet for displaying the image by setting response.setContentType("imag

Re: Using JSP to display blob as video

2003-02-17 Thread Martin
Deepak- assuming you already have a DB connection- 1)you retrieve the image from the db into a file on the server and display the image in a servlet using hte tag, OR 2)Use a servlet for displaying the image by setting response.setContentType("image/gif") and then open the connection

Using JSP to display blob as video

2003-02-17 Thread Deepak D Uzagare
My BLOB object is a video file .Please suggest me a way to display this video file using jsp === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED]

Re: Using Tomcats built-in database pooling

2003-02-05 Thread Vikramjit Singh
EMAIL PROTECTED] Subject: Using Tomcats built-in database pooling HI, I have tried using the Tomcat's built-in db pooling mechanism. I am able to get reference to datasource, but I am getting the following error when I try to get connection from the datasource. java.sql.SQLException: Io

Re: Using Tomcats built-in database pooling

2003-02-05 Thread Srinu.Reddy
Hi, I also faced the ame error when using with the oracle. later I found that i was not using the proper connection string. Check out yours too .. regds, srinu... -Original Message- From: Abdul jeelani [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 05, 2003 7:25 PM To: [EMAIL

Using Tomcats built-in database pooling

2003-02-05 Thread Abdul jeelani
HI, I have tried using the Tomcat's built-in db pooling mechanism. I am able to get reference to datasource, but I am getting the following error when I try to get connection from the datasource. java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=150999040

Re: Using own classes from jsp

2003-02-03 Thread Martin Smith
tell us what the message below ''root cause" says Regards, -Martin - Original Message - From: "Martin Smith" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, February 02, 2003 9:19 PM Subject: Using own classes from jsp This is a very bas

Re: Using own classes from jsp

2003-02-02 Thread Peter Kleczka
a:536) > > > > > Apache Tomcat/4.1.18 > > > > Martin wrote: > > >Could you tell us what the message below ''root cause" says > >Regards, > >-Martin > >-

Re: Using own classes from jsp

2003-02-02 Thread Martin Smith
: Could you tell us what the message below ''root cause" says Regards, -Martin - Original Message - From: "Martin Smith" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, February 02, 2003 9:19 PM Subject: Using own classes from jsp This is a

Using own classes from jsp

2003-02-02 Thread Martin Smith
This is a very basic question, but : Why can't I access a java class (not bean) I made from a JSP? I'm running Catalina 4.1.18 standalone and j2sdk1.4.1_01. The class is in a package, under my webapps' WEB-INF/classes directory. I'm importing the package in the jsp. The class is definitely bei

Re: Security exception when using Prefences

2002-12-16 Thread Hugo Pragt
I assume you have sufficent rights (as a user) to write to the registry? Hugo > Hi everybody, > > I'm using the Sun ONE App Server 7 and I'm trying to use Preferences, to > write information to the Win2K Server registry, but I get a > java.security.AccessControlException

MySQL Restarted when database accessed using java program!!!!!!!! !!!!!!!!

2002-12-16 Thread Laxmikanth M.S.
Hi all, I have two Linux Machine Redhat7.3 one for webserver and other for Database first machine is loaded with apache1.3.27 with tomcat 4.1.12 and cummunicating using ajp13... my second machine is MySQL 3.23.43 DB Server... on my webserver I am using mm.mysql-2.0.9-bin.jar Driver Database is

Security exception when using Prefences

2002-12-13 Thread Luis Javier Beltrán
Hi everybody, I'm using the Sun ONE App Server 7 and I'm trying to use Preferences, to write information to the Win2K Server registry, but I get a java.security.AccessControlException, this is the stack trace java.security.AccessControlException: access denied (java.lang.Runtime

Re: ?? Using Taglib JARs Across Multiple Contexts ??

2002-12-10 Thread Justyna Horwat
o all, Although I'm using Tomcat v4.1.12 with Apache's JSTL Taglib, this issue really applies to *all* taglibs, not just JSTL: I'm finding that if I have several webapps (i.e., several Contexts), all using JSTL, I need to replicate the taglib JARs (jstl.jar and standard.jar) to the "WE

?? Using Taglib JARs Across Multiple Contexts ??

2002-12-09 Thread Tony LaPaso
Hello all, Although I'm using Tomcat v4.1.12 with Apache's JSTL Taglib, this issue really applies to *all* taglibs, not just JSTL: I'm finding that if I have several webapps (i.e., several Contexts), all using JSTL, I need to replicate the taglib JARs (jstl.jar and standard.jar)

Replace characters using java

2002-11-27 Thread Deepak
Hi folks I am sorry to ask such a simple question but am a newbie. Is there any way to replace a character in a string with '' ? I mean..suppose we have a phone number like this: 91-44-4220200 Is there any way to get it as 91444220200 ? I looked up the String replace method. But it will replace '

Re: How to Upload File Using JSP

2002-11-18 Thread Dmitry Namiot
>I have HTML FILE TAG from this I want to upload one file to server,How >I'll to do? See for example Upload taglib from Coldtags suite: http://www.servletsuite.com/jsp.htm -- Coldbeans Software - server-side Java (tm) components http://www.servletsuite.com _

Re: Array sort procedure using asp or jsp

2002-11-18 Thread f
Lunes, 18 de Noviembre de 2002 19:41 Para: [EMAIL PROTECTED] Asunto: Re: Array sort procedure using asp or jsp The data is in MS Access and we want to preview it in an array layout on a webpage which then can be sorted by one of the first 14 columes. Thank you, Keith E. Kosmicki Applications

Re: Array sort procedure using asp or jsp

2002-11-18 Thread KEITH KOSMICKI
ECTED] Asunto: Re: Array sort procedure using asp or jsp Data is in MS Access tables and yes we have the SELECT statement. Users want to be able to sort just as though their in Access but on a webpage. Thanx, Keith E. Kosmicki Applications Consultant State of IL Human Services STL Technology P

Re: Array sort procedure using asp or jsp

2002-11-18 Thread f
: Re: Array sort procedure using asp or jsp Data is in MS Access tables and yes we have the SELECT statement. Users want to be able to sort just as though their in Access but on a webpage. Thanx, Keith E. Kosmicki Applications Consultant State of IL Human Services STL Technology Partners

Re: Array sort procedure using asp or jsp

2002-11-18 Thread KEITH KOSMICKI
ne session? I want to give them the > capability of doing a different type of sort from any results page > that they may be on, as I am showing them only 25 results per page. How are you filling the array? If it's using SQL you could do something like: SELECT FROM table WHERE [ condition clau

Array sort procedure using asp or jsp

2002-11-18 Thread KEITH KOSMICKI
I have a two-dimensional array with 16 columns and 1 or more records based on the results of a search. I want to give the searchers the ability to sort on one of 14 of the columns. The 15th column opens the document and is used in the href to open the document. The 16th column contains a comp

Re: Using key to submit

2002-11-18 Thread Hai Nguyen
, November 15, 2002 10:19 PM To: [EMAIL PROTECTED] Subject: Re: Using key to submit but this problem only happen when we enter a Japanese characters into the textfield. Dror Matalon wrote: > Hi, > > I'm not sure this 100% related but we ran into something similar. > Different browsers do

How to Upload File Using JSP

2002-11-17 Thread S Senthil Raja
Respected sir/madam, I have HTML FILE TAG from this I want to upload one file to server,How I'll to do? -thanx _ The new MSN 8: advanced junk mail protection and 2 months FREE* http://join.msn.com/?page=features/junkmail

Re: Using key to submit

2002-11-15 Thread randie ursal
but this problem only happen when we enter a Japanese characters into the textfield. Dror Matalon wrote: Hi, I'm not sure this 100% related but we ran into something similar. Different browsers do different things when you hit ENTER. Checking the HTML spec, it looks like there's no definition of

Re: Using key to submit

2002-11-15 Thread Dror Matalon
Hi, I'm not sure this 100% related but we ran into something similar. Different browsers do different things when you hit ENTER. Checking the HTML spec, it looks like there's no definition of what should happen. Most browsers handle the ENTER as if you've clicked on the first button, but some do n

Using key to submit

2002-11-15 Thread randie ursal
hi list, i have a strange problem. i have a simple form that has a textfield and a submit button. when i enter a value which is in English into the textfield and presses key, everything works fine. but when i use JAPANESE characters my SERVLET wasn't able to get any value. also, when i

Re: Oracle LDAP Connectivity Using Java Stored Procedures

2002-11-11 Thread [Moisey Oysgelt]
You need to add J2ee.jar into your classpath -Original Message- From: VBommakanti [mailto:VBommakanti@;HOUSTON.DEEPWATER.COM] Sent: Monday, November 11, 2002 1:03 PM To: JSP-INTEREST Cc: VBommakanti Subject: Oracle LDAP Connectivity Using Java Stored Procedures Hi Iam using Oracle 8i

  1   2   3   4   5   6   7   8   9   10   >