Re: Hiding an ftp URL

2004-12-11 Thread Susan Hoddinott
Hi, I was attempting to use an http ftp command as in the former case. I thought there might be some way of mapping it to some sort of a synonym like used for servlets in the web.xml file? Regards, Susan Hoddinott http://www.hexworx.com - Original Message - From: "Peter Crowther" <[EMA

Re: Hiding an ftp URL

2004-12-11 Thread Laconia Data Systems
Might be helpful to take a look at the difference between protocols FTP and HTTP http://www.webopedia.com/DidYouKnow/Internet/2002/FTP_HTTP.asp The answer is no You don't need to visually display an ftp address in your address bar to initiate an FTP session if you follow the instructions from my pr

Re: JSP expressions are displayed as string

2004-12-11 Thread Tim Funk
A few possible reasons - Use a 2.3 DTD in your web.xml - web.xml says el is disabled for that page - the jsp has el ignored - you haven't included the fn tag lib (doubt this) -Tim haimra wrote: I am having this wired problem driving me crazy. I am using JSTL and Tomcat 5.0.30. Some times for unkn

Re: Versions of JVM to use with Tomcats 5.0.28 and 5.5.4

2004-12-11 Thread Tim Funk
(My opinion) - JDK1.4 is prefered. (With all the patches) I haven't tried JDK1.5. It is still "relatively young" so your comfort level with it will probably be inversely proportional to the size of the company where you need to deploy it. ;) -Tim Hari Mailvaganam wrote: Can anyone point me to wh

Re: Re: Chirag: Can Tomcat Server be surfed from the Machine where the Server it is running

2004-12-11 Thread Chirag
I checked as per your instructions Compare: http://203.192.197.197:8080 throws above exception http://127.0.0.1:8080 The page cannot be displayed(because it has been set to IP of 203.192.197.197) as per address attribute http://localhost:8080 The page cannot be displayed(because it has been se

Setting virtual path

2004-12-11 Thread Centaur zeus
HI All, I have a path like: http://www.foo.com/fooapp/testing.do?id=2 Is it possible to point http://www.foo.com/2 to this location ? of course I still have id=3, 4, 5... where this path should be dynamic. Thanks. Perseus _ Don't just

Re: Display of Static Resources

2004-12-11 Thread Ben Souther
Looks like you've edited the global web.xml file instead of creating your own under your app. Do you have a web.xml file under YOUR_APP/WEB-INF/? On Sat, 2004-12-11 at 11:02, Ram Sriram wrote: > Doug, > attached is the web.xml. This is the one from the conf directory. > I do not have (or not awar

Re: Display of Static Resources

2004-12-11 Thread Ram Sriram
I have edited the web.xml in conf directory. I have put my class directories under ROOT\WEB-INF and the image and params directories under ROOT. I did not edit the web.xml under ROOT\WEB-INF. I am pretty strong on Java, servlet, XML, XSL HTML etc. but weak on infrastructure stuff such as Tomcat.

Re: Display of Static Resources

2004-12-11 Thread Ben Souther
For the most part, you should never need to edit the global web.xml file (the one under conf). Each app has it's own web.xml file stored under it's WEB-INF directory. Try removing your entries from the global one and put your servlet/mapping into the one under WEB-INF. My suspicion is that th

include directive " or "include action" are now make the same effect ?

2004-12-11 Thread Altug B. Altintas
I thing in the new versions of Tomcat these below to code <%@ include file="time.html" %> make the same effect. When i make changes in time.html; i always see the main page uptodate whether using "include directive " or "include action" spec changed ? Regards

RE: Display of Static Resources

2004-12-11 Thread Mike Curwen
you've named it 'myweb.xml', just so we can tell the attachments apart, or is it actually named myweb.xml? If the latter, change it to web.xml. And having your servlet mapped to "/" is most likely the problem. The default servlet is the one that Tomcat uses to serve up static resources. So ei

Re: Setting virtual path

2004-12-11 Thread Hari Mailvaganam
I have set it up from Apache - which acts as the HTTP listener and siimple redirects request to the Tomcat. regards, Hari Mailvaganam On Sat, 11 Dec 2004 14:52:56 +, Centaur zeus <[EMAIL PROTECTED]> wrote: > HI All, > > I have a path like: > http://www.foo.com/fooapp/testing.do?id=2 > > I

Re: Tomcat Version

2004-12-11 Thread Hari Mailvaganam
The only, but inconvenient way, I have found is to stop/start Tomcat and look at the 'catalina.out' log file. The Tomcat version number is written to the log file on start-up. cheers, Hari Mailvaganam On Sat, 11 Dec 2004 14:40:10 -0800, Billy Ng <[EMAIL PROTECTED]> wrote: > Hi folks, > > Is th

Tomcat serving the wrong app

2004-12-11 Thread Charles Daniel
I suspect this is a Tomcat configuration issue. I use Tomcat 4 as the servlet container for my Apache2 web server. Apache's DocumentRoot is $CATALINA_HOME/webapps. The application I want to serve over my LAN and the www is organized as follows: Let's call my domain www.my-domain.com for now.

Re: include directive " or "include action" are now make the same effect ?

2004-12-11 Thread Tim Funk
No. The newer version of tomcat looks for changes in <%@ include file %> and recompiles on demand. -Tim Altug B. Altintas wrote: I thing in the new versions of Tomcat these below to code <%@ include file="time.html" %> make the same effect. When i make changes in time.html; i always see the mai

Re: Tomcat Version

2004-12-11 Thread Tim Funk
http://jakarta.apache.org/tomcat/faq/misc.html#version -Tim Billy Ng wrote: Hi folks, Is there any way to find out the tomcat version from the command line? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-m

RE: Display of Static Resources

2004-12-11 Thread Ben Souther
On Sat, 2004-12-11 at 15:52, Mike Curwen wrote: > you've named it 'myweb.xml', just so we can tell the attachments apart, or > is it actually named myweb.xml? If the latter, change it to web.xml. > > And having your servlet mapped to "/" is most likely the problem. > > The default servlet is t

Update Re: Tomcat Requirements?

2004-12-11 Thread Chris Cherrett
This is an old post but I would like to thank everyone who helped out. The problem turned out to indexes on the mysql database. I added index and everything runs great for my client on their small machine. <-- (This is relative: I have a client running a sun server - dual 3.4 with 2 GB ram. Th

JNDI object not shared among TC instances

2004-12-11 Thread John Smith
Hi, as, I understand things, the JNDI can be used to share an object among different JVMs even from J2SE applications running on different machines. Right? I need a relatively light object (that is why I am avoiding EJBs altogether) which would simply: 1._ poll a backend database at configurab

Re: Display of Static Resources

2004-12-11 Thread Ram Sriram
Hi, Thanks for all the help everyone. The problem is solved. Having my servlet mapped to "/" pattern was the problem. I changed the pattern for my servlet and added the entry in the welcome-file-list and the static resources show up and the page waits for the user response even with a gif image

change conf directory

2004-12-11 Thread Vikram
hi, is it possible to specify a completely different location other than $CATALINA_HOME/conf for the directory for tomcat conf files? thanks, Vikram - To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

Re: Chirag: Can Tomcat Server be surfed from the Machine where the Server it is running

2004-12-11 Thread Christoph Kutzinski
Chirag wrote: I think tomcat-5.5.2 cannot work in JDK1.4 Am I correct I mean as per this page http://apache.mirrors.hoobly.com/jakarta/tomcat-5/v5.5.4/README.html It says though it is of version 5.5.4 that it requires Tomcat 5.5 requires JRE 5.0 by default You can install a compatibility packag

Test

2004-12-11 Thread Parsons Technical Services
Test mail. Doug - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Re: Chirag: Can Tomcat Server be surfed from the Machine where the Server it is running

2004-12-11 Thread Parsons Technical Services
Before you make the changes to go to JDK 1.4 try removing the address attribute. This will require that you have IP addresses assigned to all adapters. If you still have the second adapter enabled, go into network from control panel and assign it a static IP(you may want to do this anyway). Dou

Re: Display of Static Resources

2004-12-11 Thread Parsons Technical Services
Ram, Post your web.xml. Only the active parts, leave out the factory comment sections. Also what are your mappings like? Also did you configure any filters or valves? Doug - Original Message - From: "Ram Sriram" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]>; <[EMAIL PRO

Re: Display of Static Resources

2004-12-11 Thread Parsons Technical Services
- Original Message - From: "Ram Sriram" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, December 11, 2004 12:01 AM Subject: Re: Display of Static Resources Doug, This is what I did. I stopped Apache; I don't that made any difference.

Re: Display of Static Resources

2004-12-11 Thread Ram Sriram
Doug, attached is the web.xml. This is the one from the conf directory. I do not have (or not aware of) any mappings other than what is there in the web.xml. I have not configured any filters or valves Thanks...Ram Parsons Technical Services wrote: Ram, Post your web.xml. Only the active parts, l

RE: JSP expressions are displayed as string

2004-12-11 Thread haimra
I replaced my tag with the following tag in my web.xml http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"; version="2.4"> Then I rebuild everythi

Tomcat Version

2004-12-11 Thread Billy Ng
Hi folks, Is there any way to find out the tomcat version from the command line? Thanks! Billy Ng - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Help needed in configuring JTA with Tomcat 5

2004-12-11 Thread Anirban Konar
We need to use JTA in Apache Tomcat server. Does anybody have the steps to configure Tomcat to use JTA? We tried few diff ways - for ex: using Tyrex jar file, but not getting the result. Thanks, Anirban Konar. Information transmitted by this EMAIL is proprietary to iGA