ConnectionPool question

2009-10-29 Thread Josh Gooding
I wrote some code on top of the Tomcat's ConnectionPool class. In regular Java based programming if I close a ResultSet with connection.close(), this frees up both the statement and resultset's memory associated with the connection if it was still open. If I close a connection with Tomcat's Conne

Re: ConnectionPool question

2009-10-30 Thread Josh Gooding
ct, just long enough to run gc() and continue on. It took me about a day to figure out, but I did. On Fri, Oct 30, 2009 at 12:58 AM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Josh, > > On 10/29/200

Re: ConnectionPool question

2009-10-30 Thread Josh Gooding
r you can configure called StatementFinalizer that > does exactly that during the close call. > > Filip > > > > On 10/29/2009 07:17 PM, Josh Gooding wrote: > >> I wrote some code on top of the Tomcat's ConnectionPool class. In regular >> Java based progra

Re: ConnectionPool question

2009-10-30 Thread Josh Gooding
Hey what API holds the statementFinalizer? On Fri, Oct 30, 2009 at 9:57 AM, Josh Gooding wrote: > AHH, I will read the API for the StatementFinalizer. I was looking at > something to do that. Thank you Filip! > > > On Fri, Oct 30, 2009 at 9:53 AM, Filip Hanik - Dev

Re: ConnectionPool question

2009-10-30 Thread Josh Gooding
On Fri, Oct 30, 2009 at 11:33 AM, Christopher Schultz < ch...@christopherschultz.net> wrote: > > Heh. Obviously, someone hasn't worked in the real world. Did he realize > that writing to the contract in this case could potentially bring-down > the database server? > > Eh, I just let it go. I'm be

Re: ConnectionPool question

2009-10-30 Thread Josh Gooding
* from user"); > int cnt = 1; > while (rs.next()) { > System.out.println((cnt++)+". Host:" > +rs.getString("Host")+ >" User:"+rs.getString("User")+" > Pas

Re: ConnectionPool question

2009-10-30 Thread Josh Gooding
I also found this tid bit lying around. It get's a connection, but doesn't close the statement. public static void closeResources(ResultSet rs) throws AardvarkResourceException { try { Statement s = rs.getStatement(); if (s != null) { // ResultSets produced by

Re: ConnectionPool question

2009-10-30 Thread Josh Gooding
ot;); > int cnt = 1; > while (rs.next()) { > System.out.println((cnt++)+". Host:" > +rs.getString("Host")+ > " User:"+rs.getString("User")+" > Password:"+rs

Re: ConnectionPool question

2009-10-30 Thread Josh Gooding
on gets recycled. > Theoretically. > > Seems like you put a finally block down there to try catching/closing the > wayward connection. > > > -----Original Message- > From: Josh Gooding [mailto:josh.good...@gmail.com] > Sent: Friday, October 30, 2009 1:43 PM > To: T

Re: ConnectionPool question

2009-10-30 Thread Josh Gooding
a previously designated DB datasource class, > written by the previous developer? > > > > -Original Message- > From: Josh Gooding [mailto:josh.good...@gmail.com] > Sent: Friday, October 30, 2009 3:32 PM > To: Tomcat Users List > Subject: Re: ConnectionPo

Re: ConnectionPool question

2009-10-30 Thread Josh Gooding
Filip I grabbed the tomcat-jdbc.jar file and included it under the /lib folder in my tomcat installation. I modified my context.xml's resource tag to the following: and I am getting a tomcat startup exception: WARNING: Unexpected exception resolving reference java.lang.IllegalArgumentExceptio

Re: ConnectionPool question

2009-10-30 Thread Josh Gooding
> -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Josh, > > On 10/30/2009 4:31 PM, Josh Gooding wrote: > > public static void closeResources(ResultSet rs) throws > > AardvarkResourceException { > > Statement s = null; > > Co

Will tomcat allow me to configur access to a single folder?

2009-11-01 Thread Josh Gooding
Unlike Apache HTTPD, can Tomcat be configured to allow access to a single directory? I am looking at writing a bit of code to be able to upload spare files to a section on the webserver, and then be able to view them and d/l them. Writing the code for the upload is not hard, but just wondering si

Re: ConnectionPool question

2009-11-02 Thread Josh Gooding
It seems as though you cannot set the maxActive to "-1" as you can in the javax.sql.ConnectionPool for unlimited. On Mon, Nov 2, 2009 at 4:36 AM, Konstantin Kolinko wrote: > 2009/10/31 Josh Gooding : > >(...) > > and I am getting a tomcat startup exception: > > &g

Re: Will tomcat allow me to configur access to a single folder?

2009-11-02 Thread Josh Gooding
omain. That's all. On Mon, Nov 2, 2009 at 4:03 AM, André Warnier wrote: > Josh Gooding wrote: > >> Unlike Apache HTTPD, can Tomcat be configured to allow access to a single >> directory? >> > Huh ? > > Which Apache http documentation have you been reading ? >

Re: Will tomcat allow me to configur access to a single folder?

2009-11-02 Thread Josh Gooding
ad of having to have a JDBC connection to a database. On Mon, Nov 2, 2009 at 10:51 AM, André Warnier wrote: > Josh Gooding wrote: > >> What I was saying is that in httpd, you can configure httpd to do what I >> want, but I was unsure if you could in tomcat. Since I'm not using h

Re: Tomcat 6.0.20 on 64bit Window2003 - 64bit Service CAN'T start

2009-11-02 Thread Josh Gooding
Did you copy over the 64 bit tomcat files to the tomcat directory? Not the 64 bit java files. On Mon, Nov 2, 2009 at 5:05 PM, tiffany.d...@inovis.com < tiffany.d...@inovis.com> wrote: > I installed Tomcat 6.0.20 on 64bit Window2003. I installed 64 bit tomcat > service (64 bit tomcat6.exe and 64b

Re: Tomcat 6.0.20 on 64bit Window2003 - 64bit Service CAN'T start

2009-11-02 Thread Josh Gooding
EDIT: Don't install tomcat as a service. I've always had trouble running the 64 bit service. On Mon, Nov 2, 2009 at 5:19 PM, Josh Gooding wrote: > Did you copy over the 64 bit tomcat files to the tomcat directory? Not the > 64 bit java files. > > > On Mon, Nov 2, 2

Re: Tomcat 6.0.20 on 64bit Window2003 - 64bit Service CAN'T start

2009-11-03 Thread Josh Gooding
wrote: > > From: Josh Gooding [mailto:josh.good...@gmail.com] > > Subject: Re: Tomcat 6.0.20 on 64bit Window2003 - 64bit Service CAN'T > > start > > > > EDIT: Don't install tomcat as a service. I've always had trouble > > running the 64 bit ser

Re: ConnectionPool question

2009-11-03 Thread Josh Gooding
If I close the RS, can I still use the MD? On Tue, Nov 3, 2009 at 3:13 PM, Elli Albek wrote: > No, you do not need to close the XXXMetaData classes. > > E > > On Tue, Nov 3, 2009 at 12:02 PM, Josh Gooding >wrote: > > > One more question on bleeding resources.

Re: ConnectionPool question

2009-11-03 Thread Josh Gooding
Elle, I am going to dig into this code and check it out. I want to know more about how to use threadlocal and filters. (Sorry I'm not as experienced in Tomcat as some for you gurus here). The code looks promising and I like the 2nd option due to the fact that each HTTP req. only has one connect

Re: ConnectionPool question

2009-11-03 Thread Josh Gooding
nevermind. I get: javax.servlet.ServletException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. Guess that answers my question. On Tue, Nov 3, 2009 at 3:24 PM, Josh Gooding wrote: > If I close the RS, can I still use

Re: ConnectionPool question

2009-11-03 Thread Josh Gooding
One more question on bleeding resources. When closing RS / statement / connections. Do I have to do anything with the MetaData if I got that as well? (I.E Do I explicitly have to close the metadata as well?) Josh On Tue, Nov 3, 2009 at 2:01 PM, Josh Gooding wrote: > Elle, > > I am

Re: ConnectionPool question

2009-11-04 Thread Josh Gooding
t what the abandoned connection messages are for letting me know they were abandoned and put back into the pool? On Tue, Nov 3, 2009 at 4:06 PM, Josh Gooding wrote: > nevermind. I get: > > javax.servlet.ServletException: > com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionExceptio

Re: ConnectionPool question

2009-11-04 Thread Josh Gooding
jdbc/RealmDB Container Do I need to change the to the tomcat's DataSource? On Wed, Nov 4, 2009 at 11:47 AM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Josh, > > On 11/3/2009 3:24 PM, Josh

Re: ConnectionPool question

2009-11-05 Thread Josh Gooding
Barry, that's a normal console message when using the DataSource. :) Alright. I have a question. I've finished up the ConnectionPool wrapper class that I found and is being used. I don't need it to run, but I figured it's there why not modify it to handle EVERYTHING dealing with connections. W

Re: [OT] ConnectionPool question

2009-11-10 Thread Josh Gooding
I'm glad I amuse all of you :P Chris, the reason there are multiple recycleConnection methods is because if a RS is passed to the front presentation layer, I have to have a way to close it, I have to be able to get the statement and connection somehow, and I don't want that in my code. >From

Re: [OT] ConnectionPool question

2009-11-11 Thread Josh Gooding
- > Hash: SHA1 > > Josh, > > On 11/10/2009 9:18 AM, Josh Gooding wrote: > > the reason there are multiple recycleConnection methods is because if a > RS > > is passed to the front presentation layer, I have to have a way to close > it, > > I have to be able to

Re: [OT] ConnectionPool question

2009-11-11 Thread Josh Gooding
rale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Josh Gooding [mailto:josh.good...@gmail.com] > > Subject: Re: [OT] ConnectionPool question > > > > Not only did I get yelled at for having the audacity to write up > > procedures for the developers on my tea

Re: Just a few questions on my Tomcat Configuration

2009-06-16 Thread Josh Gooding
an xyz company as well with complete separate schemas for each of the companies using a custom context.xml in the META-INF directory to test and it works. Now I just need to create a script or admin panel that I can go in and set one up automatically. On Wed, Jun 3, 2009 at 2:58 PM, Josh Good

Re: Just a few questions on my Tomcat Configuration

2009-06-16 Thread Josh Gooding
As for the transcription error? it is just that, I fat fingered some keystrokes and it sent it in the middle of an edit. I was going to take out the second abc and edit it to say xyz and have the 2nd reflect that. Not sure if I follow how you can have more than one webapp for any given . Would

Re: Just a few questions on my Tomcat Configuration

2009-06-17 Thread Josh Gooding
On Wed, Jun 17, 2009 at 12:02 AM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Josh Gooding [mailto:josh.good...@gmail.com] > > Subject: Re: Just a few questions on my Tomcat Configuration > > No, the appBase attribute defines where *all* of the w

Re: Just a few questions on my Tomcat Configuration

2009-06-17 Thread Josh Gooding
aybe? That is something that I am willing to work on looking into though as a different phase of the current project. Are those API's part of teh standard Tomcat docs? - Josh On Wed, Jun 17, 2009 at 11:28 AM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Jos

Re: Tomcat window appears briefly, does not startup - Windows XP

2009-06-22 Thread Josh Gooding
Don't know if this was already answered, but make sure you have your logging set for "debug" logging. I know by default, it is not set to that. That may help get you something in the logs. - Josh 2009/6/16 Martin Gainty > > Tim- > > what do the logs say? > > Martin Gainty > __

Re: Just a few questions on my Tomcat Configuration

2009-06-22 Thread Josh Gooding
lue as to how would I go about starting something like that? I'm going to check the docs more closely, however, I am not confident that I will find anything like that in there. - Josh On Wed, Jun 17, 2009 at 10:10 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > Fr

Re: Just a few questions on my Tomcat Configuration

2009-06-22 Thread Josh Gooding
lying HTML is the same. All subdomains would need to run on > the default host, but that would save you the effort of hard coding > Hosts each time. > > You could also extend this to look up a more complex client object, > (still based on server host name), with config info, perha

Re: Just a few questions on my Tomcat Configuration

2009-06-23 Thread Josh Gooding
ml file already for the servlets that already exist for this. If it's more mappings that I need, it shouldn't be an issue. I'll need to read closely then on how filters work. Thanks again for everything again. On Mon, Jun 22, 2009 at 4:40 PM, Pid wrote: > Josh Gooding wrote: >

Trying to run Tomcat on Win Server 2K3 returns error

2009-07-10 Thread Josh Gooding
I am installing Tomcat 6.0.18 on a Windows 2K3 x64 box. The service will not start. I am only getting the jakarta_service log and it says the following: [2009-07-10 19:25:32] [info] Procrun (2.0.4.0) started [2009-07-10 19:25:32] [info] Service Tomcat6 name Apache Tomcat 6 [2009-07-10 19:25:32]

Re: Trying to run Tomcat on Win Server 2K3 returns error

2009-07-10 Thread Josh Gooding
t/y seemed to work :) you the man! On Fri, Jul 10, 2009 at 2:38 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Josh Gooding [mailto:josh.good...@gmail.com] > > Subject: Trying to run Tomcat on Win Server 2K3 returns error > > > > I am

Need some SSL Config help.

2009-07-24 Thread Josh Gooding
Hello again. Now that I have deployed my project on Tomcat 6.0.18 with a MySQL 5.1 db, I need to clamp the server down tight using SSL. I've already created my keystore file and I am able to get the server to serve on port 443 (by going to http://localhost:443). I can get it to Subsequent attemp

Re: Need some SSL Config help.

2009-07-24 Thread Josh Gooding
One more thing. Here is my server.xml information that is relative: On Fri, Jul 24, 2009 at 10:25 PM, Josh Gooding wrote: > Hello again. > > Now that I have deployed my project on Tomcat 6.0.18 with a MySQL 5.1 db, I > need to clamp the server down tight using SSL. I've a

Re: Need some SSL Config help.

2009-07-26 Thread Josh Gooding
Thanks all, I appreciate the input. I used http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto.html to attempt to configure SSL. I'll read up on APR. On Sat, Jul 25, 2009 at 6:14 AM, Mark Thomas wrote: > Josh Gooding wrote: > > One more thing. Here is my server.xml information th

Re: Need some SSL Config help.

2009-07-27 Thread Josh Gooding
:08 AM, Josh Gooding wrote: > Thanks all, I appreciate the input. I used > http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto.html to attempt to > configure SSL. I'll read up on APR. > > On Sat, Jul 25, 2009 at 6:14 AM, Mark Thomas wrote: > >> Josh Gooding wrote: >

Re: Need some SSL Config help.

2009-08-04 Thread Josh Gooding
wait a sec here. I'm a little confused. Let me ask it this way. I have a Login.jsp file that takes uname / pwd and uses j_security_check for authentication. That is the only thing that I want HTTPS on. Everything else is not important. I have setup Apache (httpd) and am forwarding the 1 html

Re: Need some SSL Config help.

2009-08-04 Thread Josh Gooding
Update: So after re-re-reading the docs, since TC is not my standalone webserver, I should configure Apache (httpd) for SSL. That seems to be what I am reading. On Tue, Aug 4, 2009 at 3:43 PM, Josh Gooding wrote: > wait a sec here. I'm a little confused. Let me ask it this way.

Re: Need some SSL Config help.

2009-08-05 Thread Josh Gooding
and nothing more? On Tue, Aug 4, 2009 at 4:18 PM, André Warnier wrote: > Josh Gooding wrote: > >> Update: >> >> So after re-re-reading the docs, since TC is not my standalone webserver, >> I >> should configure Apache (httpd) for SSL. That seems to

Re: Need some SSL Config help.

2009-08-05 Thread Josh Gooding
nevermind, I think I made some headway on this and will ask this over on the httpd list. Thank you for getting me this far, I really appreciate it. On Wed, Aug 5, 2009 at 8:50 AM, Josh Gooding wrote: > *Andre wrote: > > The above is assuming that you would want all accesses which e

moving webapps directory to another location

2009-08-06 Thread Josh Gooding
Hello folks, I am running Tomcat 6.0.18 on a dedicated server at a hosting company. I have ported Apache HTTPD and Tomcat to talk to each other quite nicely. I have ran into a small dilemma. I noticed that I have a 20GB windows / program partition and a 500GB data partition. Am I able to create

slight problem with Tomcat and Httpd working together.

2009-08-07 Thread Josh Gooding
Interesting situation I have going on here When running Tomcat 6.0.18 as the webserver I have 2 hosts configured one as the .com and it is serving from the webapps folder just fine, the other is serving to a subdomain perfectly. I couldn't be happier in how it is running. Here is where it ge

Re: slight problem with Tomcat and Httpd working together.

2009-08-11 Thread Josh Gooding
Chris, My thanks to you and Chuck for clarifying that. The reason that I set up httpd on the machine is for PHP and other possible languages. I was trying to be a little more future thinking, however, since PHP is no longer an option for these guys, I'll just nix the httpd server and move back i

Re: slight problem with Tomcat and Httpd working together.

2009-08-11 Thread Josh Gooding
Even better, I got what I was looking for. Where do I put the DLL that I want to use? in wondows or in what tomcat directory? On Tue, Aug 11, 2009 at 10:27 AM, Josh Gooding wrote: > Chris, > > My thanks to you and Chuck for clarifying that. The reason that I set up > httpd on th

Re: slight problem with Tomcat and Httpd working together.

2009-08-11 Thread Josh Gooding
NVM chuck, I believe it's in the native docs. I looked at the link right after you posted. I couldn't find the native link on apaches site. T/Y sir On Tue, Aug 11, 2009 at 10:46 AM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Josh Goo

Re: slight problem with Tomcat and Httpd working together.

2009-08-11 Thread Josh Gooding
much. I really appreciate all of your help. On Tue, Aug 11, 2009 at 10:51 AM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Josh Gooding [mailto:josh.good...@gmail.com] > > Subject: Re: slight problem with Tomcat and Httpd working together. > > > &

Re: slight problem with Tomcat and Httpd working together.

2009-08-11 Thread Josh Gooding
r reading up on what the docBase is? On Tue, Aug 11, 2009 at 11:28 AM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Josh Gooding [mailto:josh.good...@gmail.com] > > Subject: Re: slight problem with Tomcat and Httpd working together. > > > > HEY!!! I

Re: Need some SSL Config help.

2009-08-11 Thread Josh Gooding
ok back to the topic at hand here. I have removed httpd from my server, installed APR, and have gotten my cert file from my hosting company. it is in pfx format. Now I found some information on the net: http://tp.its.yale.edu/pipermail/cas/2005-July/001337.html It was saying that I can just us

Re: Need some SSL Config help.

2009-08-13 Thread Josh Gooding
s://(domain).com/company1/ it drops the HTTPS. I don't want that. Any pointers? Thanks again - Josh On Tue, Aug 11, 2009 at 10:35 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Josh, > > On 8/11/

Re: slight problem with Tomcat and Httpd working together.

2009-08-13 Thread Josh Gooding
> I understand what the appBase is > > Perhaps you don't; the appBase attribute of a is the /default/ > deployment directory for its webapps; individual webapps are typically > located *under* the appBase directory. > > > I don't understand why the docBase and appBase cannot be the > > same declar

Re: Need some SSL Config help.

2009-08-14 Thread Josh Gooding
Thanks Chris, I appreciate it! On Fri, Aug 14, 2009 at 10:30 AM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Josh, > > On 8/13/2009 2:38 PM, Josh Gooding wrote: > > So I navigated to https://(dom

Re: slight problem with Tomcat and Httpd working together.

2009-08-26 Thread Josh Gooding
hen I used the webapps folder in $CATALINA_HOME I could add and remove folders in the webapps folder and I didn't have to restart tomcat each time. - J On Thu, Aug 13, 2009 at 5:33 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Josh Gooding [mailto:j

Re: slight problem with Tomcat and Httpd working together.

2009-08-26 Thread Josh Gooding
, Aug 26, 2009 at 10:29 AM, Josh Gooding wrote: > Chuck, > > On this: > > > each of those has their own context.xml defined in the META-INF > > directory of the project. > > > And those will be ignored, since you have them in server.xml. > > Something that I am

Re: slight problem with Tomcat and Httpd working together.

2009-08-26 Thread Josh Gooding
You know Chuck, it would probably work if I put Auto-deploy to "true" instead of false. (tried and it works). On Wed, Aug 26, 2009 at 10:32 AM, Josh Gooding wrote: > Wait a sec. The only element I have defined in my server.xml &

php 5 and tomcat 6

2009-09-24 Thread Josh Gooding
Hey gang, Does anyone know where the last release of PECL was that had the tomcat files in it for getting PHP to run with Tomcat? Looks like the version of PHP I have (5.2.11) doesn't include the PECL libraries and from what I have read, the PECL are currently not released. I seem to be coming u

Re: php 5 and tomcat 6

2009-09-25 Thread Josh Gooding
Chris, I think you're right about it being a PHP question, I was just inquiring if someone here had the PECL dll files that I need. Here is what I was looking at: http://tojackwu.blogspot.com/2008/10/php-5-on-tomcat-6-installation.html Ziggy - I'm aware of liferay. Off the top of your head do

Re: Apache Tomcat, IIS, ISAPI

2009-09-25 Thread Josh Gooding
Joerg, If you want your JSP's protected you can configure that in your web.xml file. I can't fully remember (someone jump in here) but I used role's in tomcat and put the jsp files in a seperate directory, then I added declarations in my web.xml file for it. Here is the snippets from my web.xml:

configuring multiple domain's and forwarding on Tomcat 6 questions.

2009-09-26 Thread Josh Gooding
My Tomcat configuration as of right now is set to serve on a .com domain. I recently bought 2 more domains and want to host a different .com but use the same installation of tomcat that I am using currently. Is this just another declaration or would I need another declaration? Also what about f

Re: configuring multiple domain's and forwarding on Tomcat 6 questions.

2009-09-26 Thread Josh Gooding
t;, > "www..net" and ".net". The downside is that your > site will look and behave exactly the same for any of these host names. > There may be SEO issues associated with having 4 host names look exactly > the same though I'll admit I'm not positive of this.

Re: configuring multiple domain's and forwarding on Tomcat 6 questions.

2009-09-26 Thread Josh Gooding
something then, I think I might have to call the company I got the domain from to get it pointing to the right server IP. On Sat, Sep 26, 2009 at 11:50 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Josh Gooding [mailto:josh.good...@gmail.com] > > Subject: Re: co

Questions on "Single Sign On"?

2009-10-12 Thread Josh Gooding
To my knowledge the Single Sign on in Tomcat is a way for all of your back end applications in your VH to recognize that you have logged in to one place, and all of the apps belonging to that VH will be logged into. What I am trying to do is restrict the login from users to one single session. (i

Re: Questions on "Single Sign On"?

2009-10-12 Thread Josh Gooding
On 12/10/2009 14:37, Peter Crowther wrote: > >> 2009/10/12 Josh Gooding: >> >>> To my knowledge the Single Sign on in Tomcat is a way for all of your >>> back >>> end applications in your VH to recognize that you have logged in to one >>> place, and

Re: Questions on "Single Sign On"?

2009-10-12 Thread Josh Gooding
n. How would I invalidate the session upon closing the browser window? On Mon, Oct 12, 2009 at 11:02 AM, Andre-John Mas wrote: > > On 12-Oct-2009, at 10:51, Christopher Schultz wrote: > > -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >> Perter, >> >

Re: Questions on "Single Sign On"?

2009-10-12 Thread Josh Gooding
On Mon, Oct 12, 2009 at 11:03 AM, André Warnier wrote: > Josh Gooding wrote: > ... > >> >> Andre, your talking about something like Active Directory for Windows >> Domain's to use with say Communicator, Outlook, etc, across windows >> environments with dom

Re: Questions on "Single Sign On"?

2009-10-12 Thread Josh Gooding
Ugh... tabs said it all. I didn't take into consideration about them. On Mon, Oct 12, 2009 at 11:41 AM, Andre-John Mas wrote: > > On 12-Oct-2009, at 11:24, Josh Gooding wrote: > > Well upon clicking "logout" the following occurs: >> >> session.removeA

Re: Questions on "Single Sign On"?

2009-10-20 Thread Josh Gooding
owever not clue one on how to do this. What is put in the session upon authentication that I could have my code look for to invalidate the "other" live session? - Josh On Mon, Oct 12, 2009 at 10:01 AM, André Warnier wrote: > Josh Gooding wrote: > >> To my knowledge the Singl

Re: doubts about tomcat form based authentication

2009-10-20 Thread Josh Gooding
The way I solved the issue was removing he user from the tomcat role table. Tomcat itself will then not allow you to login. I am using a Realm authentication as well. In the user table I specified what "role" the user had (either plain user, manager, admin, or a trainer), then based off of that,

Just a few questions on my Tomcat Configuration

2009-06-02 Thread Josh Gooding
I have tomcat running on a dedicated Windows server (this is a web server). I have been reading apache's site on Virtual Hosts for tomcat and I have a few questions. Here is how I need to get the software up and running. 1 instance of tomcat to serve on port 80 across all sub-domains (not an issu

Re: Just a few questions on my Tomcat Configuration

2009-06-03 Thread Josh Gooding
k.caldar...@unisys.com> wrote: > > From: Josh Gooding [mailto:josh.good...@gmail.com] > > Subject: Just a few questions on my Tomcat Configuration > > > > I have tomcat running on a dedicated Windows server (this > > is a web server). > > Tomcat version? Always tell u

Re: Just a few questions on my Tomcat Configuration

2009-06-03 Thread Josh Gooding
On Wed, Jun 3, 2009 at 10:36 AM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] > > Subject: RE: Just a few questions on my Tomcat Configuration > > > > Tomcat will create the subdirectories as needed, such as when you >

Re: Just a few questions on my Tomcat Configuration

2009-06-03 Thread Josh Gooding
l, but can I do the same thing in the server.xml file since it is a core file that tomcat relies on for it's configuration? Thanks again! On Wed, Jun 3, 2009 at 11:25 AM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Josh Gooding [mailto:josh.good...@gmail.

Re: Just a few questions on my Tomcat Configuration

2009-06-03 Thread Josh Gooding
. Hopefully I'll be able to get this and the MySQL tweak running in under a day or so. Again thank you so much. If I have any more questions, I'll toss them up here. - Josh On Wed, Jun 3, 2009 at 12:59 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > &

Re: server to client notification

2009-06-04 Thread Josh Gooding
Hello Jackson, Can you give us an example on a situation you are looking to have notification for please. It might help better answer your question. Warm regards, - Josh On Thu, Jun 4, 2009 at 3:21 AM, Jackose wrote: > > Hi All, > I want to know whether there is any way to invoke a pag

Grabbing the user's info

2011-11-14 Thread Josh Gooding
Hey guys, Question. I'm developing an application that resides on a network. I wondered if (and how) there was a way to use the users network authentication as a valid authentication into this application? - Josh

Upgrading Tomcat need some info

2012-01-25 Thread Josh Gooding
Hey group, I've been tasked here at work to upgrade Tomcat from 5.5 to 6.0 since I'm the Tomcat guru here. Does anyone know, if I take the 5.5 configuration (server and context.xml) and drop them into 6.0, will the 6.0 server start or are there things that have to be changed over? Also were ther

Re: Upgrading Tomcat need some info

2012-01-26 Thread Josh Gooding
Konstantin - > > > 1. Have you seen the following page? > > > http://tomcat.apache.org/migration.html > > I'm getting there, I'm still perusing the change logs to see what the > major differences in between 5.5 and 6 are and from 6 to 7. The > application

Glassfish overriding Tomcat 6.0.24 installation?

2010-05-27 Thread Josh Gooding
Hey guys (and gals). Interesting enough, I installed the Jave EE 5 JDK for windows. I then installed Tomcat 6.0.24, when I navigate to htp://localhost:8080 (which should be the default of Tomcat) I am getting the glassfish junk. How can I remove the glassfish? I don't believe that there is an o

Re: Glassfish overriding Tomcat 6.0.24 installation?

2010-06-15 Thread Josh Gooding
Thanks David, I did that and it seemed to work. :: thumbs up :: - Josh On Thu, May 27, 2010 at 2:02 PM, David Smith wrote: > On 5/27/2010 1:44 PM, Josh Gooding wrote: > > Hey guys (and gals). > > > > Interesting enough, I installed the Jave EE 5 JDK for windows. I then

unable to set MaxPermSize past 128MB

2012-02-05 Thread Josh Gooding
Hey one more wild question for this sunday evening (I hope) I just upgraded to 6.0.35 running on Win2K3 32 bit platform. I used the Win installer. I tried setting the Initial Pool to 512MB and the MaxPool to 1536MB of ram, however when I pass in the -XX:MaxPermSize:256m in the config -> Java ->

Re: unable to set MaxPermSize past 128MB

2012-02-05 Thread Josh Gooding
your kidding me right? Why is tweaking the JVM for this so hard? On Sun, Feb 5, 2012 at 11:19 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: David Dabbs [mailto:dmda...@gmail.com] > > Subject: RE: unable to set MaxPermSize past 128MB > > > > I just upgraded to 6.0.35 run

Re: unable to set MaxPermSize past 128MB

2012-02-05 Thread Josh Gooding
TC Server. No biggie. Thanks again Charles! - Josh On Sun, Feb 5, 2012 at 11:37 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Josh Gooding [mailto:josh.good...@gmail.com] > > Subject: Re: unable to set MaxPermSize past 128MB > > > your ki

JMX enabled - not able to monitor connection pooling

2012-02-09 Thread Josh Gooding
Using: Toncat 6.0.35 AND 7.0. in a Win32 Environment. My JMX params are as follows: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=6969 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false This is only on my dev box, so I am no so much wo

Tomcat 5.5 context.xml question.

2012-08-24 Thread Josh Gooding
Wow, has it really been that long since I've asked questions here? On to the meat and potatoes... I have a tomcat 5.5.23 installation here that I am trying to do some changes too and I am a bit lost.. Let me try to explain what I want to do. The application has both a context defined in the ser

Re: Tomcat 5.5 context.xml question.

2012-08-24 Thread Josh Gooding
ch involves unpacking it into >$CATALINA_HOME/webapps/1.0.4). > >Best regards, >Konstantin Kolinko On Fri, Aug 24, 2012 at 2:58 PM, Konstantin Kolinko wrote: > 2012/8/24 Josh Gooding : > > > > > > > > All those debug="" attributes... - Tomcat 5.5 d

Re: Tomcat 5.5 context.xml question.

2012-08-24 Thread Josh Gooding
Mark, Konstantin, thank you very much. As usual I highly appreciate it. On Fri, Aug 24, 2012 at 4:05 PM, Mark Thomas wrote: > On 24/08/2012 20:53, Josh Gooding wrote: > > Yeah you see what I'm given to work with. The sever.xml will be cleaned > > up, but i'm tr

Question on realm configuration in TC 6 / 7

2012-09-29 Thread Josh Gooding
It seems that I have run into something that seems a bit strange. I have configured 4 separate web applications to each have their own context.xml files. I have also configured one of the web applications to have a realm. It seems to me, when you configure a realm, tomcat forces you to put what

Re: Question on realm configuration in TC 6 / 7

2012-10-02 Thread Josh Gooding
< ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Josh, > > On 9/29/12 5:41 PM, Josh Gooding wrote: > > It seems that I have run into something that seems a bit strange. > > I have configured 4 separate web applications to each

Re: Tomcat 7.0.30 CMA, clustering, and SSO

2012-10-26 Thread Josh Gooding
Haha, Scott you're here too? On Thu, Oct 25, 2012 at 2:06 PM, Scott Carlson wrote: > We've setup TC 7.0.32 with Clustering and Tomcat Container Managed > Authentication. HTTPSessions and SSOSessions are clustered across the > wire. With logging turned way up, I can see the synchronization and

Tomcat 7 manager quirk?

2012-10-26 Thread Josh Gooding
Hey group, I'm working with Tomcat 7's manager application for text deployments. I am having a bit of a quirky issue here. I am deploying a web application that is approx 75MB as a war file that uses Tomcat's ROOT context. Is there a way that I can get tomcat to NOT start auto-deploying immedia

Re: Tomcat 7 manager quirk?

2012-10-26 Thread Josh Gooding
shooting problems. Just my $.02. - Josh On Fri, Oct 26, 2012 at 6:37 PM, Igor Cicimov wrote: > On 27/10/2012 5:27 AM, "Josh Gooding" wrote: > > > > Hey group, > > > > I'm working with Tomcat 7's manager application for text deployments. I >

Re: Delete catalina.out

2012-11-17 Thread Josh Gooding
< ch...@christopherschultz.net> wrote: > Josh, > > On 11/15/12 2:45 PM, Josh Gooding wrote: > > That is the tomcat default log file. Nothing server wise will happen if > > you delete if that is your concern. It just removes that particular log > > file. I believ

Re: Delete catalina.out

2012-11-19 Thread Josh Gooding
BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Josh, > > On 11/17/12 11:37 PM, Josh Gooding wrote: > > Moved this to the user list instead of the dev group. Hmmm > > strangely enough, I tried this on a CentOS system, I believe it > > forced me to be root over th

tomcat7-maven-plugin

2012-12-12 Thread Josh Gooding
I didn't want to come here to ask as I always hate to bother anyone, but maybe I should have come here first. I'm coming up short on answers and ideas. I'm having an issue with using maven and the tomcat7 plugin. Maven version -3.0.4 Tomcat version - 7.0.29 .jdk version - 1.6 tomcat7-maven-plugi

  1   2   >