Re: Sudden missing javax/servlet/http/HttpServlet ?

2008-08-07 Thread Hassan Schroeder
to [indert something funny here], but for the life of me, I can't come up with anything actually funny. After the day it sounds like you had, I'd say you should just proceed straight to the beer. :-) -- Hassan Schroeder [EMAIL PROTECTED

Re: Virtual Host

2008-08-05 Thread Hassan Schroeder
think you're having an issue, it might be better to provide detailed information about that, as well as describing the environment: Tomcat version, Java version, etc. -- Hassan Schroeder [EMAIL PROTECTED

Re: Changing SSL Certificates

2008-08-01 Thread Hassan Schroeder
On Fri, Aug 1, 2008 at 9:09 AM, Ben Densmore [EMAIL PROTECTED] wrote: Does anyone have the steps involved in changing over to a new ssl certificate? http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto.html -- Hassan Schroeder [EMAIL PROTECTED

Re: enabling/disabling a servlet filter conditionally

2008-08-01 Thread Hassan Schroeder
what action to take. if ( ((String)request.getAttribute(askNicely)).equals(please) ) { ... HTH! -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe

Re: Changing SSL Certificates

2008-08-01 Thread Hassan Schroeder
SSL, but... I followed the instructions they have here: https://www.securetrust.com/support/sslcertificates/install/tomcat but when I do I get an error that the keystore isn't valid. ..what happens when you follow the Tomcat directions? :-) -- Hassan Schroeder

Re: HTTP 404 with a %22 at the end of the URL, what does it mean ?

2008-07-31 Thread Hassan Schroeder
generating this URL. HTH! -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Hot deployment Using Tomcat

2008-07-31 Thread Hassan Schroeder
On Thu, Jul 31, 2008 at 4:17 PM, hisameer [EMAIL PROTECTED] wrote: C:\workspace\tomcat\build.xml:23: Unable to delete file Ah, Windoze --- see the Context attributes antiJARLocking and antiResourceLocking. HTH, -- Hassan Schroeder [EMAIL PROTECTED

Re: [Same Behavior]Connections timing out even with validation query??

2008-07-16 Thread Hassan Schroeder
; makes a connection leak *very* obvious. (http://www.lambdaprobe.org/) Also, change that value above, restart, and tail -f your mysql query log and tomcat logs together, so you can confirm validation queries are being sent, and see when they stop showing up in the log. HTH, -- Hassan Schroeder

Re: websession variables

2008-07-16 Thread Hassan Schroeder
API for HttpSession. HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Wholesale HTTP parameter redirection

2008-07-16 Thread Hassan Schroeder
into sendRedirect(). Is there a reason it /has/ to be a redirect, rather than a forward? If not, you'd bypass the whole issue... -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users

Re: Wholesale HTTP parameter redirection

2008-07-16 Thread Hassan Schroeder
like MyTrafficManager.getDestination(target); HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Connections timing out even with validation query??

2008-07-15 Thread Hassan Schroeder
1/ http://commons.apache.org/dbcp/configuration.html You might try setting testWhileIdle to true (with a reasonable value for timeBetweenEvictionRunsMillis) and removeAbandoned to true. Just to see if that changes/eliminates the symptom... FWIW, -- Hassan Schroeder

Re: Saving file

2008-07-15 Thread Hassan Schroeder
-fileupload will probably be useful as well. HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: Problems with jsp include files in sub-directories

2008-07-09 Thread Hassan Schroeder
context. I suspect your hosting company installed the Tomcat admin app -- which *is* a separate context. Did you try your getContextPath() test within /segments? -- Hassan Schroeder [EMAIL PROTECTED

Re: Problem deploying JSPs in TOMCAT 6

2008-07-08 Thread Hassan Schroeder
On Tue, Jul 8, 2008 at 7:19 AM, vasu kanna [EMAIL PROTECTED] wrote: HTTP Status 404 - /Projects/ Apache Tomcat/6.0.16 I used this command jar -cvf projects.war Projects != projects -- Hassan Schroeder [EMAIL PROTECTED

Re: Configuring DataSources using jsp: reload context.xml?

2008-07-02 Thread Hassan Schroeder
was that the configuration servlet would modify the META-INF/context.xml file of my webapp, more precicely the Resource entries in this file. Are these data sources known in advance, or can the configuration tool user come up with an arbitrary new one at any time? -- Hassan Schroeder

Re: Multiple development sites using different ports

2008-06-27 Thread Hassan Schroeder
# all host aliases for a given address on same line ::1 localhost HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail

Re: Multiple development sites using different ports

2008-06-27 Thread Hassan Schroeder
it and try the other Service. When they're confirmed to work independently, try together. However, I'd give the Engine elements different names, and I'd get rid of the Cluster (unnecessary) and Logger (invalid) elements first... HTH, -- Hassan Schroeder [EMAIL PROTECTED

Re: Multiple development sites using different ports

2008-06-26 Thread Hassan Schroeder
(using a different directory) than http://localhost:9800/index.jsp It's easier to do name-based virtual hosts. But if extra work appeals to you :-) create multiple Service elements, each with appropriate Connector and Host entries. FWIW! -- Hassan Schroeder [EMAIL

Re: Multiple development sites using different ports

2008-06-26 Thread Hassan Schroeder
for your own use -- as I surmise from your examples of http://localhost:/ -- you don't need DNS. Just put the names in your /etc/hosts file (or equivalent). I always do multiple dev sites this way. It's dead simple. -- Hassan Schroeder [EMAIL PROTECTED

Re: problem with javac

2008-06-17 Thread Hassan Schroeder
On Tue, Jun 17, 2008 at 1:54 AM, Robert Welz [EMAIL PROTECTED] wrote: how do I give javac those paths? Time to learn Ant, I think :-)-- http://ant.apache.org/ A simple build.xml file uses wildcard paths to simplify compiling with multiple dependencies. FWIW, -- Hassan Schroeder

Re: Problems with deploying an application on Tomcat 5.5.28

2008-06-13 Thread Hassan Schroeder
. Any ideas? Look in your logs. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Hiding JSP Pages

2008-06-13 Thread Hassan Schroeder
servlet? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Servlet navigation

2008-06-12 Thread Hassan Schroeder
? Makes life (and debugging) a lot easier, too :-) FWIW, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Requests being processed at a certain moment

2008-06-03 Thread Hassan Schroeder
for an easier solution if it's available. Filters /are/ the easier solution here :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: jsp:include versus % include %

2008-06-03 Thread Hassan Schroeder
of what is being done under the hood when these 2 mechanisms are being invoked. error prone? Dunno about that, but you can read the differences between the two (and yes, they are different) in the JSP Spec -- it's section JSP1.10.3 in the 2.1 spec document. HTH, -- Hassan Schroeder

Re: Tomcat sessions in profiler

2008-06-02 Thread Hassan Schroeder
with the unexpected session creation? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Tomcat sessions in profiler

2008-06-02 Thread Hassan Schroeder
a session = between an HTTP client and an HTTP server. In the absence of a Request, it's hard to imagine where a Session would come from... -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail

Re: welcome file problem

2008-05-31 Thread Hassan Schroeder
Besides that, index.htm is already in the default web.xml (at least on 6.0.14). HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: jsp run on tomcat at godaddy.com

2008-05-28 Thread Hassan Schroeder
to me... Doesn't GoDaddy have some kind of documentation on deploying to their hosts? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail

Re: jsp run on tomcat at godaddy.com

2008-05-28 Thread Hassan Schroeder
' to the list of welcome pages? scriptdocument.location.href=%=request.getContextPath()%home.do;/script And this should be %=request.getContextPath()%/home.do. Regardless, have you looked in the logs? -- Hassan Schroeder [EMAIL PROTECTED

Re: jsp run on tomcat at godaddy.com

2008-05-28 Thread Hassan Schroeder
an actual 404, *look in the logs*. And put a plain old index.html page in the root of your WAR and see if that is displayed. Beyond that -- if tech support isn't helping, consider another hosting provider :-) -- Hassan Schroeder [EMAIL PROTECTED

Re: Redirect request to another Tomcat server

2008-05-14 Thread Hassan Schroeder
On Wed, May 14, 2008 at 4:35 PM, ubekhet [EMAIL PROTECTED] wrote: I am wondering, if there is some posibility to redirect the request from one Tomcat Server to another one. http://tuckey.org/urlrewrite/ is probably the easiest :-) -- Hassan Schroeder [EMAIL

Re: Few public ports w/many Tomcat instances

2008-05-13 Thread Hassan Schroeder
/ HTH! -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: prevent directory list

2008-05-11 Thread Hassan Schroeder
anything? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: response goes through load balancer?

2008-05-09 Thread Hassan Schroeder
On Fri, May 9, 2008 at 6:51 AM, Christopher Schultz [EMAIL PROTECTED] wrote: | there is only one IP for the domain in DNS. How to set up DNS for the | purpose? Google for round-robin DNS. That will only work if you have multiple IPs assigned... -- Hassan Schroeder

Re: trim-directive-whitespaces and .tag files

2008-05-09 Thread Hassan Schroeder
added this: jsp-config jsp-property-group url-pattern*.tag/url-pattern trim-directive-whitespacestrue/trim-directive-whitespaces /jsp-property-group /jsp-config Did it produce an error, or just no effect? -- Hassan Schroeder [EMAIL PROTECTED

Re: trim-directive-whitespaces and .tag files

2008-05-09 Thread Hassan Schroeder
) or during compiling time? No idea, but it you've got it working for JSP files, it should be pretty easy to compare the compiled files in /work with and without it. -- Hassan Schroeder [EMAIL PROTECTED

Re: trim-directive-whitespaces and .tag files

2008-05-09 Thread Hassan Schroeder
around the whole tag body. Just a first-cup-of-coffee thought... :-) HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: TOMCAT CLUSTERING HOWTO

2008-05-09 Thread Hassan Schroeder
as a balancer ... :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: trim-directive-whitespaces and .tag files

2008-05-09 Thread Hassan Schroeder
, Section JSP.8.5.1, The tag Directive). So looks like a little more experimentation is in order :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org

Re: TOMCAT CLUSTERING HOWTO

2008-05-09 Thread Hassan Schroeder
a while since I worked with clusters, but I don't recall that being the case. Could be wrong, though. Session replication was the whole point of clustering for installations I've been involved in. FWIW, -- Hassan Schroeder [EMAIL PROTECTED

Re: trim-directive-whitespaces and .tag files

2008-05-09 Thread Hassan Schroeder
issues you're referring to :-) I was just highlighting this: tag file directive attribute trimDirectiveWhitespaces :: meaning, you can put that in each tag file directly to achieve your original goal. -- Hassan Schroeder [EMAIL PROTECTED

Re: trim-directive-whitespaces and .tag files

2008-05-09 Thread Hassan Schroeder
, and both worked fine. Are you sure you're using a 2.5 deployment descriptor? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: [newbie] Unable to find a javac compiler;

2008-05-09 Thread Hassan Schroeder
/Install.jsp as suggested by the JSPWiki installation instructions, all I get is HTTP Status 404 - /JSPWiki/Install.jsp You need to look at your logs to see what's going on... What version of JSPWiki are you trying to install? -- Hassan Schroeder [EMAIL PROTECTED

Re: trim-directive-whitespaces and .tag files

2008-05-09 Thread Hassan Schroeder
On Fri, May 9, 2008 at 11:42 AM, Milanez, Marcus [EMAIL PROTECTED] wrote: Which is slightly different, but got the directive working... Thus, I believe this is the most appropriate web-app descriptor, right? sounds like :-) -- glad to hear it's working now! -- Hassan Schroeder

Re: TC6, SRV 2.5, annotations

2008-05-07 Thread Hassan Schroeder
On Wed, May 7, 2008 at 4:50 AM, Marcello Teodori [EMAIL PROTECTED] wrote: Hi, did you succeed since then in configuring a DataSource using annotations on Tomcat6? Not me; wasn't that high a priority item at the time, never went back to it. Perhaps someone else will chime in :-) -- Hassan

Re: name based virtual hosting on tomcat

2008-05-02 Thread Hassan Schroeder
over with a download of the genuine thing. :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: name based virtual hosting on tomcat

2008-05-02 Thread Hassan Schroeder
over with a download of the genuine thing. :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: how do I dynamically include files

2008-05-01 Thread Hassan Schroeder
that fileName is in a JSTL scope, of course) HTH --- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: how do I dynamically include files

2008-05-01 Thread Hassan Schroeder
and put the appropriate tag includes at the top of the relevant files. HTH! -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: simple JSP redirect to another page -- how to deal with relative URLs

2008-04-25 Thread Hassan Schroeder
others. If I were you I'd bite the bullet and fix 'em once and for all. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: simple JSP redirect to another page -- how to deal with relative URLs

2008-04-25 Thread Hassan Schroeder
and effort now to find a way to work around a standard JSP behavior. Fix 'em once, do it the right way from now on, you're golden :-) And the uses are not only when routed through a web server. Not sure what that means, but... FWIW! -- Hassan Schroeder [EMAIL PROTECTED

Re: simple way to rewrite simple URL portion

2008-04-24 Thread Hassan Schroeder
On Thu, Apr 24, 2008 at 9:53 AM, DIGLLOYD INC [EMAIL PROTECTED] wrote: I'm looking for a very very basic URL-rewriting filter http://tuckey.org/urlrewrite/ -- Hassan Schroeder [EMAIL PROTECTED

Re: SIlly bug creating havoc

2008-04-21 Thread Hassan Schroeder
not it sounds like your app has a problem; I would eliminate the front-end stuff and stress-test directly against Tomcat to resolve that first... FWIW, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new

Re: Bending Jasper to My Will

2008-04-21 Thread Hassan Schroeder
written (quite nicely, I might add) in straight JSPs. If it's already quite nicely written, why doesn't it do what you want? :-) Just askin' ... -- Hassan Schroeder [EMAIL PROTECTED] - To start a new

Re: Performace - long time to release connection

2008-04-16 Thread Hassan Schroeder
that? And can you create a small downloadable test case? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

Re: WAR created on tomcat 6.0 -Executed on Tomcat 5.5

2008-04-16 Thread Hassan Schroeder
On Wed, Apr 16, 2008 at 9:30 AM, Computerjuice [EMAIL PROTECTED] wrote: ...is there compatibility between tomcat 5.5 and tomcat 6.0? They support different versions of the servlet/jsp specs -- what are you specifying in your deployment descriptor? -- Hassan Schroeder

Re: WAR created on tomcat 6.0 -Executed on Tomcat 5.5

2008-04-16 Thread Hassan Schroeder
of the 2.5 servlet spec, or can run on 2.4. Which is another way of putting my previous, unanswered, question :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org

Re: Problem redeploying war in Tomcat , Unix environment

2008-04-14 Thread Hassan Schroeder
incompatible with otrack.med.acuity.MedicalAcuityLevelCode Second-cup-of-coffee guess: different JVMs FWIW, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org

Re: How to stop having to put :8080 in the url?

2008-04-11 Thread Hassan Schroeder
/not/ to replace the default (ROOT) context, that's exactly what happens. But you only mentioned 'arsys' as the application you care about, so what is the problem? I need to just route traffic that goes to http://localhost/arsys to http://localhost:8080/arsys ...which you're accomplished. -- Hassan

Re: Perl CGI setup

2008-04-11 Thread Hassan Schroeder
?qa-1 HTTP Status 404 - /WEB-INF/cgi/web_xml_mon.pl Yeah, you've specified a url-pattern of /cgi/* and then tried to access something different -- that's a good reason to not work :-) -- Hassan Schroeder [EMAIL PROTECTED

Re: tomcat cache wierd behaviour

2008-04-08 Thread Hassan Schroeder
this is a question for the winscp user list? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: 3 instance of Tomcat Server

2008-04-08 Thread Hassan Schroeder
(since those only respond to localhost). -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: tomcat cache wierd behaviour

2008-04-08 Thread Hassan Schroeder
see in 'winscp' -- what exactly is the problem you're trying to diagnose? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: How to change default port 8080 in TomCat ?

2008-04-08 Thread Hassan Schroeder
READING THE FINE MANUAL during months without 'Blue Oyster Cult' in the name, a `grep 8080 *.xml` in the appropriate directories would probably answer the question. Unless that, too, is prohibited. Regardless, good luck. And don't fear the reaper. Really. -- Hassan Schroeder

Re: web.xml pbm

2008-04-04 Thread Hassan Schroeder
in the webapps folder ! That suggests to me that your basic config is wrong -- like, you have an overlapped appBase/docBase somewhere. You might want to post your Host entries from server.xml and the context.xml of your app. -- Hassan Schroeder [EMAIL PROTECTED

Re: displaying an image from outside the webapps directory

2008-03-31 Thread Hassan Schroeder
/Desktop/teshtmlfile1.html/ HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Vista SP1 -- file.io always writes files as BUILTIN\Administrators

2008-03-27 Thread Hassan Schroeder
, I'll suggest getting a copy of VMware and running your web server in a VM under your choice of BSD/Linux/Unix. :-) Seriously. Lif'e's too short. FWIW, -- Hassan Schroeder [EMAIL PROTECTED] - To start

Re: replacement for symbolic links to files (Apache httpd to Tomcat)

2008-03-24 Thread Hassan Schroeder
-blog.html -- and forwards to it. Easy and flexible, a/k/a cheap 'n' cheerful' :-) HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail

Re: Please Need Help ...... :(

2008-03-24 Thread Hassan Schroeder
On Mon, Mar 24, 2008 at 6:30 AM, karthikn [EMAIL PROTECTED] wrote: Solution We need to bring in the Load Balancer with Multiple TOMCAT /APACHE2.x server. Is this possible ? Yes -- http://httpd.apache.org/docs/2.2/mod/mod_proxy_balancer.html HTH, -- Hassan Schroeder

Re: replacement for symbolic links to files (Apache httpd to Tomcat)

2008-03-24 Thread Hassan Schroeder
snippet handy--thanks. There's a bunch of Filters in the Tomcat examples directory; take a look there. If you have any questions specific to this particular use, let me know and I'll dig up some suitable sample code. /* gotta get ready for a meeting -- it's Monday, eh? :-) */ -- Hassan Schroeder

Re: how: this configuration for linux

2008-03-19 Thread Hassan Schroeder
something like /etc/init.d/tomcat (to make sure it's started at boot time). HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: Tomcat is confused between sites

2008-03-18 Thread Hassan Schroeder
the log files* with the relevant server.xml parts... HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Tomcat is confused between sites

2008-03-18 Thread Hassan Schroeder
for their application to work. So it looks like you have an application error, not a Tomcat problem. You should probably be asking the app's developers for help, then :-) -- Hassan Schroeder [EMAIL PROTECTED

Re: Tomcat is confused between sites

2008-03-18 Thread Hassan Schroeder
zero problems with virtual hosts conflicting with one another. If it were me, I'd try it with a real one before wasting any more time. And *if* it fails with a fresh install, then provide a reproducible test case. Because the error in the log is from your app, not Tomcat. -- Hassan Schroeder

Re: how: this configuration for linux

2008-03-18 Thread Hassan Schroeder
-- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to suppress error page for a response with only the status code set

2008-03-18 Thread Hassan Schroeder
on the request path, eh? -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Tomcat on Leopard

2008-03-15 Thread Hassan Schroeder
: {rtf1ansiansicpg1252cocoartf949cocoasubrtf270: command not found Use a real text editor, or make sure you save your file as text, not RTF or whatever the heck that is... -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e

Re: Configuring httpd and tomcat for individual user accounts

2008-03-06 Thread Hassan Schroeder
forwarded to the appropriate tomcat instance. I would appreciate if one can give me some pointers on how to do this. mod_rewrite and mod_proxy should take care of it, either way. HTH, -- Hassan Schroeder [EMAIL PROTECTED

Re: viewing servlets on Tomcat

2008-03-05 Thread Hassan Schroeder
to do with viewing the servlets examples. Being specific about what unable to view means would help -- are there errors in your log files? And it should go without saying that basic info on platform/Tomcat/Java versions would be useful... -- Hassan Schroeder [EMAIL

Re: viewing servlets on Tomcat

2008-03-05 Thread Hassan Schroeder
On Wed, Mar 5, 2008 at 11:42 AM, Richard Dunne [EMAIL PROTECTED] wrote: Of course, Tomcat 6, jre1.6.0_04, jdk1.6.0_04 installed on XP logs? actual error? -- Hassan Schroeder [EMAIL PROTECTED

Re: Request.getContextPath() after RequestDispatcher.forward()

2008-03-03 Thread Hassan Schroeder
On Mon, Mar 3, 2008 at 11:49 AM, ciAnd7 [EMAIL PROTECTED] wrote: No. I mean ' path=/ '. Then that's the problem -- it's wrong. The path of the default webapp is the empty string . :-) -- Hassan Schroeder [EMAIL PROTECTED

Re: multiple webapps on single tomcat?

2008-02-25 Thread Hassan Schroeder
with each other. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Help getting MySQL connected to Tomcat

2008-02-24 Thread Hassan Schroeder
On Sun, Feb 24, 2008 at 2:59 PM, [EMAIL PROTECTED] wrote: I implemented the resource as you suggested (short hand method as follows): WEB-INF\context.xml for the app now has Is that a typo or really what you did? Your webapp's context.xml goes in META-INF/ , not WEB-INF/ ... -- Hassan

Re: Apache2 adn/or Tomcat6?

2008-02-23 Thread Hassan Schroeder
On Fri, Feb 22, 2008 at 11:55 PM, elvberg [EMAIL PROTECTED] wrote: you can run something like jsvc and set the user to 'tomcat' which allows you to bind Howto? By following the directions in the Tomcat documentation? -- Hassan Schroeder [EMAIL PROTECTED

Re: Apache2 adn/or Tomcat6?

2008-02-22 Thread Hassan Schroeder
server Absolutely wrong -- you just need to change the Tomcat Connector to listen on port 80, rather than 8080. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users

Re: Apache2 adn/or Tomcat6?

2008-02-22 Thread Hassan Schroeder
? :-) There are definitely people on this list, including me, running Tomcat standalone in production. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail

Re: Apache2 and tomcat5.5

2008-02-20 Thread Hassan Schroeder
, if your server.xml file really has a Connector defined for port 80, you should look in your startup log to see if it's running, and if not, why not. -- Hassan Schroeder [EMAIL PROTECTED] - To start a new

Re: Difficulty with the latest Tomcat 6.x on Windows XP

2008-02-18 Thread Hassan Schroeder
, whether it's a fresh install or you've installed your own webapps, etc. etc. HTH, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: Can Tomcat support multiple SSL certificates for multiple domains?

2008-02-11 Thread Hassan Schroeder
are recommending to all of our customers. Have you actually seen this deployed? I ask because I've only seen Subject Alternative Name used as e.g. foo.example.com, bar.example.com -- never two *domain* names. If that really works, it'd be good to know :-) -- Hassan Schroeder

Re: IP Based Virtual Hosting

2008-02-10 Thread Hassan Schroeder
On Feb 10, 2008 11:05 AM, Alaska Winter [EMAIL PROTECTED] wrote: Is there a way to enable IP based hosting in tomcat directly Minimally, you just need a Connector element for each IP, and the proper DNS assignments. HTH, -- Hassan Schroeder [EMAIL PROTECTED

Re: SSL / Cheapest CA's

2008-02-10 Thread Hassan Schroeder
apparently relevant! /chorus: My mama told me, you better shop around :-) FWIW, -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail

Re: Tomcat SSL for multiple domains

2008-02-07 Thread Hassan Schroeder
domain only. Yep, you need two IPs, and a cert for each domain. That's just the way it works. :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org

Re: Null pointer in manager web app. Tomcat 6.0.14

2008-01-28 Thread Hassan Schroeder
some behavior constitutes a bug when you've deliberately misconfigured your server, but whatever. Best of luck :-) -- Hassan Schroeder [EMAIL PROTECTED] - To start a new topic, e-mail: users

Re: Null pointer in manager web app. Tomcat 6.0.14

2008-01-27 Thread Hassan Schroeder
discouraged, having a docBase == appBase is totally wrong, and /will/ cause ugly problems. Context path= docBase=/home/USER/web-root -- Hassan Schroeder [EMAIL PROTECTED

Re: web.xml problems outside tomcat webapp folder

2008-01-20 Thread Hassan Schroeder
problems. Tomcat is not using all values from the web.xml. Do you have any initialization errors in your logs? If not, can you create a reproducible test case (war)? -- Hassan Schroeder [EMAIL PROTECTED

Re: URL Redirects from Root?

2008-01-18 Thread Hassan Schroeder
On Jan 16, 2008 2:22 PM, Justin Stanczak [EMAIL PROTECTED] wrote: Anyone have suggestions on setting up redirect for the ROOT folder? http://tuckey.org/urlrewrite/ should take care of it :-) -- Hassan Schroeder [EMAIL PROTECTED

Re: JSP to HTML

2007-12-18 Thread Hassan Schroeder
On Dec 18, 2007 4:36 AM, Luo Yong [EMAIL PROTECTED] wrote: Is there any way to produce HTML from a JSP file? JSPs produce HTML by default :-) And usually a servlet is used to populate values for a JSP -- the View in MVC -- rather than the other way around. FWIW, -- Hassan Schroeder

Re: JSP to HTML

2007-12-18 Thread Hassan Schroeder
attribute(like the Tapestry way). Then why are you even calling your component a JSP? :-) If you're just parsing a text file with no taglibs or Java code using a servlet, that seems pretty far afield from JSP... -- Hassan Schroeder [EMAIL PROTECTED

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