Re: RE: question about jsp:element and jsp:attribute

2004-04-08 Thread Giuseppe Briotti
the page... Another way (more complicated) is to use a bean and a tag :-) Bye G -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et celas aliusque et idem nasceris, possis nihil urbe Roma visere maius."

Re: jsp-examples problem.....

2004-04-25 Thread Giuseppe Briotti
on the screen. >   > Thanks > -Narahari > > > > > __ > Do you Yahoo!? > Yahoo! Photos: High-quality 4x6 digital prints for 25¢ > http://photos.yahoo.com/ph/print_splash > > - > To uns

Re: RE: Is there any way to check # of Records in RecordSet

2004-05-21 Thread Giuseppe Briotti
rised because I've never run into that behaviour > before and I've never changed the defaults. I'm sure you're right > though, I probably set some global variable somewhere and forgot > about it! Mmmhhh... global variable? What is global variable? ;-))) G -- Gi

Re: TOMCAT and JNI problem...

2004-01-26 Thread Giuseppe Briotti
Did you try to startup Tomcat with the same script, without using your library, in order to check if the script works right? Sometimes I had such error when I forgot to set JAVA_HOME or CATALINA_HOME properly :-))) G -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido di

Re: RE: $JAVA_HOME error

2004-02-05 Thread Giuseppe Briotti
:-) By Giuseppe -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et celas aliusque et idem nasceris, possis nihil urbe Roma visere maius." (Orazio) - To unsu

Re: RE: Tomcat 3.3.1 vs Tomcat 4.1.29

2004-02-18 Thread Giuseppe Briotti
s rigth. Any idea where I can get the good one? > Thanks > Check the jakarta web site: there are several jar file with different servlet releases. Moreover, there is a corrispondence between the Tomcat and servlet releases! (i.e. you must install the correct servlet release for each

Re: Startup scripts not executable?

2004-02-18 Thread Giuseppe Briotti
I had to do "chmod +x *.sh" to > get things > to work. > > Is this a bug? > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > -- G

Re: RE: OracleConnectionPoolDataSource creates too many connections

2004-03-03 Thread Giuseppe Briotti
on(); > > Be sure to close all your connection when you are done so they > are returned > to the pool. > > Ryan. -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et celas aliusque et idem nasceris, p

Re: RE: Java IDE for Tomcat

2004-03-25 Thread Giuseppe Briotti
> You can also try Netbeans 3.6 RC1 I had this with Java SDK 1.4.2 (and Tomcat 4.1.?? was in the package too) and it works fine :- G -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et celas aliusque et idem nasceris, possis nihil urbe Roma vise

Re: connexion tomcat/mysql: IP vs localhost

2004-03-29 Thread Giuseppe Briotti
se you are working on a box (i.e. client and server on the same PC) this behaviour is related to your net configuration... check your hosts file. G -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et celas aliusque et idem nasceris,

File retrieving

2004-10-08 Thread Giuseppe Briotti
Hi all! I need to retrieve a file from inside a servlet. If I try: Url myURL = servletcontext.getResource("/WEB-INF/myFile.xml"); File myFile = myURL.getFile(); If I try this, I obtain a different behaviour depending on the web container: on Tomcat 4 myURL contains \localhost\myapp\WEB-INF\myF

Re: RE: File retrieving

2004-10-08 Thread Giuseppe Briotti
> Hi, > There's no requirement that the URL you get back from the > getResource call be identical across implementations. Such a > requirement would be impossible to implement in a portable manner > anyways. What IS required, and what you can rely on, is that the > URL is resolvable to a resour

Re: File retrieving

2004-10-08 Thread Giuseppe Briotti
Thanks to Tim, QM and, last but not least, Yoav! G - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: which Linux Platform is best for Tomcat?

2004-10-26 Thread Giuseppe Briotti
I use both Suse 9.1 and Mandrake 10 and all works great! :-) G - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: OT 32/64 bit classes

2004-10-27 Thread Giuseppe Briotti
> Every JVM on this planet uses the same Java ByteCode, which means > that there are no "32-bit" or "64-bit" Java Classes, just Java > Classes. This is not really true ;-) The java byte code depends on "target" option for javac ;-) G

PureTLSImplementation

2004-11-03 Thread Giuseppe Briotti
I have JBoss 3.2.3 + Tomcat 4.1.29 embedded + SSL Everthing seems working properly, but when I check the JBoss server log I found this exception, that occours at JBoss start up. Error loading SSL Implementation org.apache.tomcat.util.net.puretls.PureTLSImplementation java.lang.ClassNotFoundExcep

Error getting client certs

2004-11-05 Thread Giuseppe Briotti
JBoss 3.2.3 + Tomcat 4.1.29 embedded + SSL At each page called, I have this exception: 2004-11-03 16:53:12,294 DEBUG [org.apache.tomcat.util.net.jsse.JSSE14Support] Error getting client certs javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated at com.sun.net.ssl.internal.ssl.SSLSes

Re: Tomcat 5.0.24 won't start

2004-06-15 Thread Giuseppe Briotti
5]: > java.net.BindException: Cannot assign requested > address > > There is nothing else running on 8005 or 8080; I don't > have another Tomcat running. (Checked netstat -an) > Appreciate any thoughts. > > Thanks. > > jim -- Giuseppe Briotti [EMAIL PROTECTED]

Re: Please introduce a good Tomcat debug tool

2004-06-16 Thread Giuseppe Briotti
I currently run Tomcat 4.1.9 (without apache) to run JSP and > ervlet. How to debug JSP and Servelt in TOMCAT? > Thanks. NetBeans. It is available with a Tomcat embedded too. G -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et cel

Re: question

2004-06-16 Thread Giuseppe Briotti
I put my extern class, CreaServizio.class in WEB-INF/classes/ > is it right? > do i have to create a package for that class? > > It returns me an error > cannot resolve symbol symbol : variable CreaServizio > > CreaServizio is a class > > Angelo > A l

Re: question

2004-06-17 Thread Giuseppe Briotti
apter 4 of Pascal's book is exactly what you need... Check the howto about deploying (and running) application at http://jakarta.apache.org/tomcat/tomcat-5.0-doc/appdev/index.html G -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et celas alius

Re: startup error

2004-06-28 Thread Giuseppe Briotti
> But where am I suppost to point? > my install is: > c:\tomcat > Thus for you %CATALINA_HOME% = C:\tomcat G -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et celas aliusque et idem nasceris, possis nihil urbe R

Re: RE: startup error

2004-06-28 Thread Giuseppe Briotti
> greetz > Hans Of course Hans, you're right :- The problem is that the guy didn't tell us wich SO he's running :-))) Thus my post means: "put C:\tomcat in CATALINA_HOME" :-D G -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui

Re: target release conflicts with default source?

2004-06-29 Thread Giuseppe Briotti
lity (due to the changing of byte code since java 1.3, if I remember correctly). G -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et celas aliusque et idem nasceris, possis nihil urbe Roma visere maius." (Orazio) -

Re: Currency Problem with Tomcat on Windows

2004-12-15 Thread Giuseppe Briotti
What about the settings on the clients? This "randomly" means randomly on the same client at different time? Did you check this? G. > == > Date: Wed, 15 Dec 2004 14:57:34 + > From: John Gardner <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Currency Problem

Re: [OT] Request an app test (free beer!)

2004-12-23 Thread Giuseppe Briotti
Well, these are the results: Suse 9.1 = Linux Windows 98 = Windows 98 Windows XP SP1 = Windows XP Mandrake 10.0 = Linux Mandrake 10.1 = Linux All tests made with J2SDK 1.4.2 G. - Original Message - From: "Peter Maas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "Commons User" ; "Str

Re: EJB

2005-03-02 Thread Giuseppe Briotti
> == > Date: Wed, 2 Mar 2005 19:23:19 +0300 > From: "Bogomolov Sergey" <[EMAIL PROTECTED]> > To: > Subject: EJB > == > > Dear Friends, > please tell me, whether server TomCat with EJB is able to work > > Thank you for answer. > > Best regards, > S

Re: Session listener

2005-03-15 Thread Giuseppe Briotti
> == > Date: Mon, 14 Mar 2005 17:09:35 -0600 (CST) > From: Christian Rebollar <[EMAIL PROTECTED]> > To: Tomcat Users List , [EMAIL PROTECTED] > Subject: Re: Session listener > == > > I don't know, but when I closed the browser the > listener class ca

Re: Trouble w/ remote debugging w/ Tomcat 5.5 and JDK 5.0

2005-03-15 Thread Giuseppe Briotti
> == > Date: Tue, 15 Mar 2005 08:12:07 -0500 > From: "Fenderbosch, Eric" <[EMAIL PROTECTED]> > To: > Subject: Trouble w/ remote debugging w/ Tomcat 5.5 and JDK 5.0 > == > Firewall of SP2 enabled? G. --

Re: Minimal server

2005-05-23 Thread Giuseppe Briotti
ly, I believe that (for many purposes) the > browser provides the easiest way to create a GUI. [cut] Are you sure about this? G. -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et celas aliusque et idem nasceris, possis nihil urbe Ro

Re: Minimal server

2005-05-25 Thread Giuseppe Briotti
o respond on a http request 4. you have enough "control" on such clients to install a servlet server such Tomcat and a jre compatible with your Tomcat version IMHO: 1. the easiest way for interfaces developing is Visual Basic ;-) 2. when I need features as 2 and 3 I'm oriented on s

Re: high cpu usage during xslt processing (resending)

2005-06-09 Thread Giuseppe Briotti
had bounced) Bounced? If you subscribe a mailing list, all the message you post will be resend to your email address... G. -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et celas aliusque et idem nasceris, possis nihil urbe Roma visere maiu

Re: RE: [Q] when to share jars

2005-06-14 Thread Giuseppe Briotti
eds to be in every webapp, but > its gets tricky when you consider all the jars struts > require, eg commons-related stuff. > mmmh, no, I don't think so. We have just one struts jar in shared/lib G. -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis

Re: RE: CATALINA_BASE

2005-07-13 Thread Giuseppe Briotti
ed a line: > -Dcatalina.base=G:/tomcatuser and that did the job. > > shame on me for developing under Win2K instead of FreeBSD. > h... this is always true, of course :-) But I think that it is worst how you setup an environment variable in W2K :-))) Check the control panel-&g

Re: [OT] photo album software for web site

2005-07-14 Thread Giuseppe Briotti
> I am using some Java applets but they are taking up too much > desktop's resources to open up. > > Any help will be very much appreciated. There is a simple program (in windows, but perhaps in Linux too) that is able to prepare some html pages with a little bit of javascript.

Re: web.xml, <url-pattern>

2005-09-09 Thread Giuseppe Briotti
> == > Date: Fri, 9 Sep 2005 01:07:37 +0200 > From: =?iso-8859-1?Q?Trond_Hersl=F8v?= <[EMAIL PROTECTED]> > To: "Tomcat Users List" > Subject: web.xml, > == > > > But, if I try using wildcards, eg. /*foxer*foxer

Re: What to put into JAVA_HOME on Windows xp

2005-09-28 Thread Giuseppe Briotti
e environment settings, THEN execute tomcat.exe... The startup is the first one of the chain... G. -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et celas aliusque et idem nasceris, possis nihil urbe Roma visere maius." (Oraz

Re: Capturing User Passwords

2005-09-28 Thread Giuseppe Briotti
;s password so that > I can have the user login to one of my web applications (which > acts as a client), and pass it to a second application (which > acts as the server). > > It sounds like you are trying to implement a Single sign on... -- Giuseppe Briotti [EMAIL PROTECTED]

PrivilegedActionException

2005-09-29 Thread Giuseppe Briotti
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:684) -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et celas aliusque et idem nasceris, possis nihil urbe Rom

Re: Sending mail with JavaMail

2005-10-07 Thread Giuseppe Briotti
common/lib and included in the CLASSPATH > and the servlet doesn't work (the same javax/activation/datasource > exception in the line which MimeMessage is initialized). > I think that another jar is required to send the mail. It is activation.jar, check for it... G. -- Giuseppe Briotti [EM

common\lib and shared\lib in tomcat embedded

2005-10-07 Thread Giuseppe Briotti
We are using tomcat 4.1.29 embedded in jboss 3.2.3. It is possible to know how common\lib and shared\lib of stand-alone tomcat are mapped in tomcat embedded? TIA G. -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et celas aliusque et idem nasceris, p

Re: Sending mail with JavaMail

2005-10-07 Thread Giuseppe Briotti
laced both in /common/lib, and > in > /WEB-INF/lib (and also in JAVA_HOME/lib) > > ¿Any other place? > ;) shared\lib? but all the jars must be placed in the same dir, I think... G. -- Giuseppe Briotti [EMAIL PROTECTED] "Alme Sol, curru nitido diem qui promis et celas aliusque