RE: Tomcat + apache + mod_jk

2011-03-24 Thread Martin Gainty
can we see the connector configuration you are implementting in server.xml? Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so

RE: Session timeouts: ignore periodic polling URL?

2011-03-20 Thread Martin Gainty
!-- Default Session Configuration = -- !-- You can set the default session timeout (in minutes) for all newly created sessions by modifying the value in web.xml -- session-config session-timeout30/session-timeout /session-config regards,

RE: [OT] Tomcat 7: manager application takes forever to deploy - or not

2011-03-19 Thread Martin Gainty
MG des réponses sont mises en tête par le MG __ Note de déni et de confidentialité Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le destinataire prévu, nous te demandons avec bonté que pour satisfaire informez l'expéditeur.

RE: How to detect down of tomcat.

2011-03-19 Thread Martin Gainty
with windoze under cygwin you may want to sub ps -ef with netstat assuming TC port is 8080 if [ `netstat -ab|grep 8080|grep -v grep|wc -l` -lt 1 ] Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese

RE: Issue with tomcat 6 connector

2011-03-19 Thread Martin Gainty
you're routing jsp to jk-service what is jk-service Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Ez az üzenet bizalmas. Ha nem ön az akinek szánva volt, akkor

RE: Error overview in catalina.out

2011-03-16 Thread Martin Gainty
running Tomcat on unixes, the console output is usually redirected to a file named catalina.out. The name is configurable using an environment variable. (See the startup scripts). Whatever is written to System.err/out will be logged in that file. That may include:

RE: Solr on new Tomcat 7.0.11

2011-03-16 Thread Martin Gainty
process. use either META-INF/context.xml or specify docBase in Context but you should not have docBase defined in both places http://tomcat.apache.org/tomcat-5.5-doc/config/context.html hth Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de

RE: Read JSR 045 SMAP Files Produced by Jasper

2011-03-14 Thread Martin Gainty
/* org.apache.jasper.JspCompilationContext implements either of 2 JSP Compilers in TC7 */ if (options.getCompiler() == null) { jspCompiler = createCompiler(org.apache.jasper.compiler.JDTCompiler); if (jspCompiler == null) {

RE: Populating Oracle v$session.program from Tomcat Context.xml

2011-03-14 Thread Martin Gainty
Subject: Re: Populating Oracle v$session.program from Tomcat Context.xml From: dfis...@jmlafferty.com Date: Mon, 14 Mar 2011 18:08:53 -0700 To: users@tomcat.apache.org We have some working tomcat 6 instances that we'd like to identify Can you use the combination of machine and

RE: [OT] Migrated from 6.0.29 to 7.0.10, Now I get INFO: TLD skipped. URI: http://struts.apache.org/tags-bean is already defined

2011-03-11 Thread Martin Gainty
TC6 AnnotationProcessor has been replaced completely by Marks new InstanceManager class for TC7 without the refactor your struts embedded-jsp-plugin will gack in TC7 I've refactored struts2 embedded-plugin src to work with marks code..collecting annotations from Fields from the servlet

AnnotationProcessor to InstanceManager Refactor

2011-03-07 Thread Martin Gainty
Good Afternoon All Could the author detail the reason for refactoring AnnotationProcessor to InstanceManager for TC7? Any explanation for effecting the need for this refactor would be greatly appreciated. thanks! Martin Gainty __ Verzicht und

RE: How to setup webapp specific parameter for virtual host in Tomcat?

2011-03-02 Thread Martin Gainty
docBase The value of this field must NOT be set when the Context is configured using a META-INF/context.xml file as it will be inferred by the automatic deployment process. Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni

RE: programming question

2011-02-25 Thread Martin Gainty
michael is correct..if your db goes down there is nowhere to persist your data objects to and there is nowhere to query the data from Have you considered writing to a database cluster? MySQL Clustering: http://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-replication.html Oracle RAC:

RE: 400 Errors while trying to deploy manager app.

2011-02-22 Thread Martin Gainty
this shared-build war sounds like you *might* want a base servlet webapp (portal) servicing n number of portals checkout liferay, hippo and jetspeed (portal management systems) for those specific implementations... follow konstantins advice to successfully deploy this webapp under tomcat

RE: connecting jsp with mysql

2011-02-21 Thread Martin Gainty
=localhost --user=whatever_user --password=whatever_password --host=localhost Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Ez az üzenet bizalmas. Ha nem ön az akinek

RE: cannot see examples

2011-02-21 Thread Martin Gainty
if you want a webapp to be deployed then you will need to deploy that webapp ..options for deploying webapps for tomcat are available at: http://tomcat.apache.org/tomcat-5.5-doc/deployer-howto.html Martin __ Verzicht und

RE: Tomcat 6.0.18 on V6R1

2011-02-19 Thread Martin Gainty
Paul is it true that V5R4 is EOL as of 7 jan 2011? http://www-01.ibm.com/common/ssi/cgi-bin/ssialias?infotype=ansubtype=caappname=gpateamsupplier=897letternum=ENUS909-003 ? Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de

RE: 500 Internal Server Error after 5 minutes

2011-02-17 Thread Martin Gainty
we need more information to assist with your problem: clients name: clients billing address Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene

RE: Monitoring production tomcat

2011-02-03 Thread Martin Gainty
/dbcp/ ping offline for details, Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflich um eine Mitteilung

RE: Missing something with custom tags.

2011-02-02 Thread Martin Gainty
need to see the tld declaration for your tags and the Java class declared for the tag pls ping me offline Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der

RE: Can JSP code be served from a DB instead of files?

2010-12-27 Thread Martin Gainty
determine the template for your form for each individual field encountered populate the value attribute with content extracted from each Database Table.Column Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und

RE: Change of email address

2010-12-26 Thread Martin Gainty
contact info is now updated Hope you had a good christmas! Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir

RE: troubleshooting getPathInfo in jsp files

2010-12-15 Thread Martin Gainty
snip Copyright © 1993, 2010, Oracle Corporation. All rights reserved. DRAFT ea-b121 my question is: are you seeing implementations (in TC) of a Hierarchical URI which is NOT Absolute URI or Relative URI ? Martin Gainty __ Verzicht und

RE: [Mostly OT] Sweeping the permgen space: is that a good thing?

2010-12-13 Thread Martin Gainty
read this article http://blogs.sun.com/fkieviet/entry/how_to_fix_the_dreaded afterwards post your code and we can make suggestions Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich.

RE: deploy log4j

2010-12-09 Thread Martin Gainty
://www.captain.at/programming/java/ Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflich um eine Mitteilung. Jede

RE: war file question

2010-12-06 Thread Martin Gainty
most containers will not look for jsp in WEB-INF but in webapp base folder e.g. $TOMCAT_HOME/webapps/WebAppFolderName to remedy mv/rename the html files from WEB-INF over to WebAppFolderName and be sure to mv/rename *.html to *.jsp Shalom, Martin Hi Everyone, I have an html file with java

RE: [ANN] New Tomcat committer: Sylvain Laurent (slaurent)

2010-12-02 Thread Martin Gainty
Bonjour Monsieur Laurent Bon Chance! Martin __ Note de déni et de confidentialité Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le destinataire prévu, nous te demandons avec bonté que pour satisfaire informez

RE: [OT] RE: Tomcat Consultant

2010-11-18 Thread Martin Gainty
amazing that all of the language battles lead to a Pyrrhic victory speaking of languages ..which languages does IBM currently support? thanks, Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht

RE: Tomcat Consultant

2010-11-18 Thread Martin Gainty
can we get someone from the vatican to translate? Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflich

RE: Malicious host is crashing my server

2010-11-08 Thread Martin Gainty
=Configuring_Tomcat_to_Support_SSL Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung

RE: Malicious host is crashing my server

2010-11-07 Thread Martin Gainty
the culprit will change IPs are you implementing SSL? are you encrypting your data before putting on the wire? Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der

RE: Tomcat Maven and Axis 1.5.1 problem

2010-10-30 Thread Martin Gainty
to solve will need web.xml all .jsp *.wsdl all java files Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir

RE: Login page timeout

2010-10-22 Thread Martin Gainty
can you verify this error is corrected with TC 7.0.5? thanks, Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir

RE: Connecting Tomcat 6.0.26 to MySQL 5.1

2010-10-16 Thread Martin Gainty
how did misconfiguration for IE browser cause these problems? Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir

RE: Inconsistent output of Java 5 enums

2010-10-14 Thread Martin Gainty
as of J2SE5 enum is a J2SE keyword http://en.wikibooks.org/wiki/Java_Programming/Keywords/enum hth Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der

RE: OT: Re: Ya gotta love it...

2010-10-02 Thread Martin Gainty
file a JIRA . .submit the patch and become a contributor to the tomcat group congrats dave! Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der

RE: [OT] RE: Tomcat Consultant

2010-09-30 Thread Martin Gainty
this is way O/T so lets take this offline what is meant by near-english query? M __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so

RE: [OT] RE: Tomcat Consultant

2010-09-30 Thread Martin Gainty
and or adverbs with exception of BBN's dictionary i havent seen any products which address the need an interesting digression! Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie

RE: [OT] RE: Tomcat Consultant

2010-09-30 Thread Martin Gainty
: SHA1 Martin, On 9/30/2010 10:50 AM, Martin Gainty wrote: i would be interested in what administration overhead with this translate_entry table Probably about the same as doing a CREATE VIEW. Actually more like a JOIN. The run-time loaded in and cached the necessary rows

RE: [OT] RE: Tomcat Consultant

2010-09-29 Thread Martin Gainty
i always wondered by the big 5 billable rate started at 100 /hr BTW: dont forgot your armani suit and the lamberghini! Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich

RE: Tomcat Consultant

2010-09-24 Thread Martin Gainty
desde EEUU Martin Gainty __ No altere ni interrumpa por favor esta transmisión. Gracias Date: Fri, 24 Sep 2010 15:55:28 -0400 Subject: Re: Tomcat Consultant From: cerebrotecnolog...@gmail.com To: users@tomcat.apache.org I should have

RE: JSP:includes parameter passing vulnerability

2010-09-15 Thread Martin Gainty
Mike- check to make sure your jsp:param has an end tag e.g.jsp:include page=mycommon.jsp jsp:param name=extraparam value=myvalue / /jsp:include if the browser doesnt see it the end tag the browser throws away the whole tag and uses the default assignment (which comes from the jsp:include

RE: Host Manager.

2010-09-12 Thread Martin Gainty
(as detailed in the JAR specification), if available, to determine the classname. The Services API will look for a classname in the file META-INF/services/javax.xml.transform.TransformerFactory in jars available to the runtime. Platform default TransformerFactory instance. ? Martin Gainty

RE: interaction between .forward() and security-constraint

2010-09-04 Thread Martin Gainty
far easier to implement than HTTPS what can MIM access with just the session-id? is this comparison DIGEST vs HTTPS documented Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten

RE: JNDI: LDAPv3 with StartTLS

2010-08-15 Thread Martin Gainty
the encryption algo the provider supports Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflich um eine Mitteilung

RE: Mike Wilde is out of the office

2010-08-04 Thread Martin Gainty
a couple of days is nothing to worry about Anna Chapman was subscribed to a email support list for an Apache build project (think yiddish for acculumator of knowledge) her autoresponder sent Anna is Out of Office messages to everyone on the that email list for Anna from June 29 until July 10

RE: UTF-8 encoding in Tomcat 6.0

2010-08-03 Thread Martin Gainty
works in Tomcat 6.0.20 http://localhost:8007/sampleweb/params?test=%D8 log output Servlet init IN doFilterUTF-8 Ø U+00D8 Ø c3 98 LATIN CAPITAL LETTER O WITH STROKE http://www.utf8-chartable.de/unicode-utf8-table.pl ? Martin __ do not alter

RE: JNDI not available from ServletContextListener

2010-07-30 Thread Martin Gainty
that is JNDI configurable i did'nt see any mention of JNDI in sysdeo plugin should'nt be too difficult to refactor the plugin to accept JNDI communication http://www.eclipsetotale.com/tomcatPlugin.html hth Martin Gainty __ Verzicht und Vertraulichkeitanmerkung

RE: Fire off asynch task in Tomcat.

2010-07-22 Thread Martin Gainty
Miki/Andre //i wasnt able to determine JMX ability to schedule a specific task for a specific time? //could you reply with an example demonstrating that capability? //in the meanwhile you *could* implement Axis2 SchedulerTimerTask //granted java.util.Timer is weak on specific time but if

RE: Please remove me from the users emailing list

2010-07-20 Thread Martin Gainty
the unsubscribe emaill address is users-unsubscr...@tomcat.apache.org follow directions at http://tomcat.apache.org/lists.html#tomcat-users Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese

RE: Too verbose log

2010-07-14 Thread Martin Gainty
http://commons.apache.org/logging/commons-logging-1.1.1/apidocs/index.html hth Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger

RE: java.lang.NoSuchMethodError: method java.util.Collections.emptyMap with signature ()Ljava.util.Map; was not found.

2010-07-14 Thread Martin Gainty
try Collection.isEmpty()==true OR Collection.size()==0 take your pick Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein

RE: spring-webmvc-portlet annotations: File quot;/WEB-INF/servlet/viewquot; not found

2010-06-30 Thread Martin Gainty
please include ./WEB-INF/portlet.xml please include all the files that portlet.xml includes also..please include the tomcat logs Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich.

RE: PDF to acrobat

2010-06-29 Thread Martin Gainty
you'll want to acquire and configure the acrobat plugin for your browser Firefox: http://kb2.adobe.com/cps/333/333563.html Internet Explorer http://kb2.adobe.com/cps/331/331025.html Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note

RE: Unable to start Tomcat 6 on Windows Server 2003

2010-06-26 Thread Martin Gainty
#define ESRCH 3 /* No such process */ it appears you are attempting to run a binary which is 1)not in the location you are supposedly running from 2)perms issue what happens when you specifically install TC to an existing folder which tomcat-user has read,execute and write access to and

RE: How to get session scop ?

2010-06-23 Thread Martin Gainty
className, debug, digest, pathname are valid attributes for MemoryRealm http://tomcat.apache.org/tomcat-4.1-doc/realm-howto.html#MemoryRealm we can provide greater assistance to you.. if you can you explain what you're trying to accomplish Martin Gainty

RE: Still having problem retrieving user value from ISAPI Filter for authentication

2010-06-22 Thread Martin Gainty
From: melindasa...@texashealth.org To: users@tomcat.apache.org; p...@pidster.com Date: Tue, 22 Jun 2010 08:45:18 -0500 Subject: RE: Still having problem retrieving user value from ISAPI Filter for authentication We had been working with JCIFS and chose the Tomcat Connector for IIS

RE: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null' AGAIN!

2010-06-21 Thread Martin Gainty
stacktraces of exceptions w/o edits except to protect usernames and passwords. --David /DS Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene

RE: Cleartrust RSA integration

2010-06-21 Thread Martin Gainty
could you briefly explain the need for 2 apache webservers? thanks, Martin _ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein,

RE: adding servlet to existing website through iis7 and tomcat6

2010-06-15 Thread Martin Gainty
suppressing username/passowrds can you display contents of conf/auto/iis_redirect.reg conf/auto/uriworkermap.properties conf/auto/isapi_redirect.properties. ? Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de

RE: J2EE (Spring) + Flex + Tomcat 6.0.18 problem

2010-06-14 Thread Martin Gainty
look at catalina.bat -X attributes (stack,minHeap and maxHeap) catalina will use parameters from JAVA_OPTS environment variable also..you could be experiencing some issues with permgen not being collected http://wiki.apache.org/tomcat/FAQ/Memory Martin Gainty

RE: HTTP Status 408!

2010-06-11 Thread Martin Gainty
can you post all of the code (including the html that houses the flex components), display the full stacktrace and display environmental variables from SET Martin __ standard caveats apply Date: Fri, 11 Jun 2010 12:32:44 -0700 From:

RE: J2EE (Spring) + Flex + Tomcat 6.0.18 problem

2010-06-10 Thread Martin Gainty
assistance Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte

RE: HTTP Status 408!

2010-06-10 Thread Martin Gainty
the form-login-page login.html *should* contain the j_security parameters for your login form e.g.: form method=POST action=j_security_check input type=text name=j_username input type=text name=j_password input type=submit value=Log in /form is this the case? Martin Gainty

RE: HyperLink Office connection

2010-06-09 Thread Martin Gainty
Another pure java based altearnative would be if you all you need is a servlet that reads/writes Microsoft Compound Documents write a POI based servlet? http://poi.apache.org/casestudies.html Martin __ Verzicht und Vertraulichkeitanmerkung/Note de

RE: Best enterprise-class 24x7 professional support for Tomcat

2010-06-04 Thread Martin Gainty
Hi Konstantin ..is your company listed as a TC vendor? looks like someone forgot Unisys! Martin-- __ standard caveats apply Date: Fri, 4 Jun 2010 17:13:47 +0400 Subject: Re: Best enterprise-class 24x7 professional support for Tomcat From:

RE: Adding memory to Tomcat 6.0 as a service?

2010-06-03 Thread Martin Gainty
if you want to start tomcat with catalinabat/sh set JAVA_OPTS -Xms for min memory -Xmx for max memory e.g. JAVA_OPTS=-Xms256m -Xmx512m anything else.. follow Konstantin's advice Martin Gainty __ Verzicht und

RE: HTTP Status 400 - Invalid direct reference to form login page!

2010-06-03 Thread Martin Gainty
the reference is to URLEncoder class URLEncoder Utility class is used for HTML form encoding. This class contains static methods for converting a String to the application/x-www-form-urlencoded MIME format javadoc for encode methods of the URLEncoder are illustrated at

RE: tomcat and log4j version - any dependency issues?

2010-06-01 Thread Martin Gainty
dependency groupIdsun.jdk/groupId artifactIdtools/artifactId version1.4.2/version scopesystem/scope systemPath${tools.jar}/systemPath /dependency /dependencies does that help? Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de

RE: sneaky JDBC connection (was: THANK YOU ALL for help)

2010-05-28 Thread Martin Gainty
anyone who lands on WebappName/home/* will invoke package.Servlet (other than political)..is there any reason you want to use a JDBC driver on a Microsoft Database? Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de

RE: Clustering, De-Serialization and Order of Operations

2010-05-27 Thread Martin Gainty
session=hrequest.getSession(true); //obtain the session } // Pass control on to the next filter chain.doFilter(request, response); } ? Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und Vertraulichkeitanmerkung/Note de

RE: stuck confused an need help please

2010-05-24 Thread Martin Gainty
if you have any problems with these operations my...@lists.mysql.com Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so

RE: set-cookie

2010-05-22 Thread Martin Gainty
//if we reached here, no exception, cookie is valid the header name is Set-Cookie for both old and v.1 ( RFC2109 ) //RFC2965 is not supported by browsers and the Servlet spec asks for 2109. //in any case the cookie is added to the response header with Set-Cookie keyword as seen here

RE: Tomat monitoring

2010-05-20 Thread Martin Gainty
you might want to consider an API for java based SNMP agents http://www.snmp4j.org/index.html does this help? Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie

RE: MaxPermSize / Threads

2010-05-17 Thread Martin Gainty
could you describe compressed object pointers and how implementation will reduce allocations from JVM heap?thx, Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie

RE: Misunderstanding deployOnStartup actions

2010-05-17 Thread Martin Gainty
give it to transocean..they need a disk to record their BOP safety feature operational checklist procedures log then use that disk to plug a very large leak Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese

RE: java servlets, jsp and python

2010-05-11 Thread Martin Gainty
org.python.util.PythonInterpreter.class is located in jython.jar http://www.jython.org/Project/download.html ping offline if you need further assistance, Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité

RE: set up tomcat for biopython

2010-05-11 Thread Martin Gainty
i would start here http://sourceforge.net/projects/jython/files/ feel free to ask any questions hth Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie

RE: Running PHP 5.2.X on Tomcat 5.5?

2010-05-10 Thread Martin Gainty
as tc is already multi-threaded i dont have to build tc as multithreaded http://tomcat.apache.org/tomcat-5.5-doc/config/http.html i downloaded the latest tar and i didnt see instructions for multi-threaded library build of mod-PHP http://www.php.net ? Martin Gainty

RE: Configured JDBCRealm, but is not used

2010-05-09 Thread Martin Gainty
Context docBase=game path=/game debug=0 reloadable=true The above is wrong. Remove docBase and path, they are illegal in context.xml. mg what do you mean by the term illegal..please be more descriptive in your terminology docBase The Document Base (also known as the Context Root)

RE: Isapi_redirect.dll

2010-05-08 Thread Martin Gainty
this a great solution for serving static content tim and rafe said they both had a need for handling .NET client traffic and was wondering if isapi_redirect would either handle the .net requests (mostly aspx) or is there a tc plugin which will handle aspx traffic? thanks! Martin Gainty

RE: Re : Re : Re : Tomcat 5.5.29 does not accept connections from outside

2010-05-08 Thread Martin Gainty
if we can determine the gating relationship(AND/OR/NOR/XOR/NOT) between these entities we might want to create a Karnaugh Map http://en.wikipedia.org/wiki/Karnaugh_map#Karnaugh_map Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni

RE: Isapi_redirect.dll

2010-05-07 Thread Martin Gainty
no problem..you're the 3rd person on the list (in as many weeks) that has requested operational details for IIS-Tomcat configuration would appreciate hearing how these 2 technology stacks work together, Martin __ Please do not modify or alter this

RE: Isapi_redirect.dll

2010-05-07 Thread Martin Gainty
the windows.. got some fans blowing..downed all the servers and the apps returned to operational I see alot of GIS apps going ESRI these days..(mostly Postgres/PostGIS or Oracle Spatial) would like to hear your esri preference (offline) when you get the chance good stuff! Martin Gainty

RE: Isapi_redirect.dll

2010-05-07 Thread Martin Gainty
i always keep a fan in the back of the truck...just in case! good stuff! Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein

RE: not able to use two oracle resources/

2010-05-06 Thread Martin Gainty
and then reference the desired resource in context.xml with ResourceLink Context ResourceLink global=jdbc/TRGDS name=jdbc/TRGDS type=oracle.jdbc.pool.OracleDataSource/ /Context explained here at http://www.microdeveloper.com/html/JNDI_Orcl_Tomcat1p.html Martin Gainty

RE: Tomcat can't find Java Beans

2010-05-06 Thread Martin Gainty
keep it honest pidster.. the question is ownership of the resource NOT the folder name or location Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der

RE: Tomcat, Windows, And Deployment

2010-05-06 Thread Martin Gainty
11:52 AM, Martin Gainty wrote: |antiJARLocking||| If true, the Tomcat classloader will take extra measures to avoid JAR file locking when resources are accessed inside JARs through URLs. This will impact startup time of applications, but could prove to be useful on platforms

RE: java servlets, jsp and python

2010-05-05 Thread Martin Gainty
you can implement a Jython (Python for Java) solution http://www.jython.org/ Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger

RE: Hibernate validator in webapp?

2010-05-04 Thread Martin Gainty
post one code sample with one validation also post version number of annotated jars and hibernate you are using and where you put them contents of hibernate.cfg.xml which container are you using..ARE you SURE you are using Tomcat..if so which version of Tomcat? Martin Gainty

RE: Problem with downloading file over servlet

2010-05-03 Thread Martin Gainty
Petr Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Ez az üzenet bizalmas. Ha nem ön az akinek szánva volt, akkor kérjük, hogy jelentse azt nekünk vissza. Semmiféle

RE: Problem with downloading file over servlet

2010-05-03 Thread Martin Gainty
Petr Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Ez az üzenet bizalmas. Ha nem ön az akinek szánva volt, akkor kérjük, hogy jelentse azt nekünk vissza. Semmiféle

RE: General / Special cause under which TOMCAT Crash been noticed

2010-04-29 Thread Martin Gainty
it appears an unknown entity has distorted the space-time continuim Martin Gainty __ standard caveats apply Date: Thu, 29 Apr 2010 17:57:42 +0100 From: p...@pidster.com To: users@tomcat.apache.org Subject: Re: General / Special cause under

RE: Debugging PermGen problems

2010-04-28 Thread Martin Gainty
Hi, My co-worker and I decided to try to debug PermGen problems after detailed reading of mailing list archives and Tomcat wiki. We followed the procedure described at the wiki [1], and got one inactive WebappClassLoader (started = false), with 18 GC root paths. They are attached

RE: Enabling HTTP Put

2010-04-02 Thread Martin Gainty
since doPut disallows request processing if readOnly is true as seen here protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { if (readOnly) { resp.sendError(HttpServletResponse.SC_FORBIDDEN);

RE: unable to start Tomcat in Windows 7 prof - 64 bit

2010-04-02 Thread Martin Gainty
also the dlls located in %JRE_HOME%\bin\server need to be 64bit determine if %JRE_HOME%\bin\server\jvm.dll is a 64bit dll hth Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist

RE: Would like to extract every request to servelt except index.html

2010-04-02 Thread Martin Gainty
there allowing reg expressions in url-pattern is a much needed upgrade request for the next TC version https://issues.apache.org/bugzilla/enter_bug.cgi?product=Tomcat%207 (expect blowback if this feature is not specifically addressed in Servlet 3.0 spec) Martin Gainty

RE: Why HttpSessionEvent comes prior to ServletRequestEvent

2010-04-01 Thread Martin Gainty
as chuck mentioned there is nothing we can to help unless you have full logging enabled Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger

RE: Connecting to a Database

2010-03-24 Thread Martin Gainty
Good Evening Leo- i would suggest using the Digest class (over command line calculation of Password) http://tomcat.apache.org/tomcat-6.0-doc/realm-howto.html#Digested%20Passwords HTH Martin Gainty __ Relayers are requested to not disrupt

RE: need help

2010-03-24 Thread Martin Gainty
i would look at tuning permgen (specifically for handling anonymous classes) and perhaps using DBCP for connection pooling..resource handles ARE expensive (and anything else pete suggests) Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note

<    1   2   3   4   5   6   7   8   9   10   >