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 the problem is right here: >> <!-- The mapping for the default servlet --> >> <servlet-mapping> >> <servlet-name>default</servlet-name> >> <url-pattern>/</url-pattern> >> </servlet-mapping> >> >> <servlet-mapping> >> <servlet-name>bizDispatcher</servlet-name> >> <url-pattern>/</url-pattern> >> </servlet-mapping> You have two mappings to the same url-pattern. Try that and see if it clears things up. On Sat, 2004-12-11 at 12:38, Ram Sriram wrote: > 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. Would appreciate some advice and > help here > ----------------------------------------------------------------------------- > Ben Souther wrote: > > >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 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, 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 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. I was the application on port 8080 anyways. I put a > >>>>>static HTML page in the same directory as the image (and tried it > >>>>>from the ROOT directory as well). When I access the html > >>>>>(http://localhost:8080/image/test.html or > >>>>>http://localhost:8080/test.html), the request is directed to the > >>>>>servlet and I see the request coming through the break point in my > >>>>>java code. So very clearly, even request for static resource is > >>>>>being directed to the servlet. > >>>>>I think your suspicion something is wrong with config is correct. Do > >>>>>you want me to send you the web.xml so you could see what is wrong > >>>>>with the config. > >>>>>I have not done any config for the static resource at all; is there > >>>>>any config I need to do? > >>>>>Thanks...Ram > >>>>>------------------------------------------------------------------------------------------------------------------------------------------------- > >>>>> > >>>>> > >>>>> > >>>>>Parsons Technical Services wrote: > >>>>> > >>>>> > >>>>> > >>>>>>>>Are the images served out ok on other pages? > >>>>>>>> > >>>>>>>> > >>>>>>> > >>>>>>>Images are not being served at all in any page. > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>This makes me think you have a configuration issue that is pointing > >>>>>>all content to your servlet other than *.jsp. > >>>>>> > >>>>>>Have you tried running Tomcat without Apache? And is there a reason > >>>>>>you need Apache? > >>>>>> > >>>>>>If you haven't disabled it or after reenabling it try your app on > >>>>>>http://localhost:8080 > >>>>>> > >>>>>>If it still will not serve the pictures post your config files for > >>>>>>Tomcat. Something is sending all the request for the images to your > >>>>>>servlet or at least not allowing them to make it to the proper folder. > >>>>>> > >>>>>> > >>>>>> > >>>>>> > >>>>>>>>As a test can you serve out a static page from the same folder > >>>>>>>>the gif is in? > >>>>>>>> > >>>>>>>> > >>>>>>> > >>>>>>>In fact, I brought up the Tomcat index.jsp locally when only the > >>>>>>>webserver is running (without connection to the internet) and even > >>>>>>>that doesn't display the images. > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>Stick a JSP file in the image folder along with a html page and see > >>>>>>if they will serve. If they will, but the image will not you have a > >>>>>>config issue. > >>>>>> > >>>>>> > >>>>>I haven't used JSPs in a while so I am not able to do this at this time > >>>>> > >>>>> > >>>>> > >>>>>>>>When you say it is making the round trip, please explain what or > >>>>>>>>how you know this. > >>>>>>>> > >>>>>>>> > >>>>>>> > >>>>>>>I am debugging the servlet and the connected java application. > >>>>>>>When the gif is included in the page, the process displays the > >>>>>>>page and comes right back to my break-point in the java code. When > >>>>>>>I remove the gif, the page waits for a user to respond (the way > >>>>>>>one would expect Http to behave) and comes back to my code only > >>>>>>>when I click on one of the buttons on the page. > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>I am taking this to mean the code of your servlet. > >>>>>> > >>>>>> > >>>>>yes. the java code the servlet is invoking. > >>>>> > >>>>> > >>>>> > >>>>>> > >>>>>> > >>>>>>>>Is it possible that when you see the round trip, you are actually > >>>>>>>>seeing the browser request for the image? > >>>>>>>> > >>>>>>>> > >>>>>>> > >>>>>>>It is possible. Actually, that is what is may be happening. How > >>>>>>>can I make the browser not come to the servlet but go and pick up > >>>>>>>the file from the directory. I am using only one servlet (a single > >>>>>>>URL) and I route the process through request attribute in the HTTP > >>>>>>>request. I have done that with JBoss in the past and it worked > >>>>>>>fine. In this application, I am not using any app server. > >>>>>>> > >>>>>>>I think there is a config in Apache to direct where the static > >>>>>>>resources are picked up from. I am not able to figure out where > >>>>>>>this configuration should be done for Tomcat. Or maybe it is not a > >>>>>>>configuration issue at all. > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>As I do not run Apache, I am lost when it comes to it's config > >>>>>>files. But for now let's talk directly to Tomcat to take this out > >>>>>>of the picture. > >>>>>> > >>>>>> > >>>>>>One last comment, you asked about serving static content in Tomcat, > >>>>>>understand that the static items in the app are served from the > >>>>>>same place as the jsps or subfolders. If you want several apps to > >>>>>>use a common source of static content, such as the images, this is > >>>>>>a whole different matter. > >>>>>> > >>>>>>But for now lets put out one fire at a time. > >>>>>> > >>>>>>Doug > >>>>>> > >>>>>> > >>>>>> > >>>>>>--------------------------------------------------------------------- > >>>>>>To unsubscribe, e-mail: [EMAIL PROTECTED] > >>>>>>For additional commands, e-mail: [EMAIL PROTECTED] > >>>>>> > >>>>>> > >>>>>> > >>>>>> > >>>>>> > >>>>>--------------------------------------------------------------------- > >>>>>To unsubscribe, e-mail: [EMAIL PROTECTED] > >>>>>For additional commands, e-mail: [EMAIL PROTECTED] > >>>>> > >>>>> > >>>>> > >>>>> > >>>>> > >>>> > >>>>--------------------------------------------------------------------- > >>>>To unsubscribe, e-mail: [EMAIL PROTECTED] > >>>>For additional commands, e-mail: [EMAIL PROTECTED] > >>>> > >>>> > >>>> > >>>> > >>>> > >>> > >>>--------------------------------------------------------------------- > >>>To unsubscribe, e-mail: [EMAIL PROTECTED] > >>>For additional commands, e-mail: [EMAIL PROTECTED] > >>> > >>> > >>> > >>> > >>> > >>______________________________________________________________________ > >><?xml version="1.0" encoding="ISO-8859-1"?> > >><!DOCTYPE web-app > >> PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" > >> "http://java.sun.com/dtd/web-app_2_3.dtd"> > >><web-app> > >> > >> <servlet> > >> <servlet-name>default</servlet-name> > >> <servlet-class> > >> org.apache.catalina.servlets.DefaultServlet > >> </servlet-class> > >> <init-param> > >> <param-name>debug</param-name> > >> <param-value>0</param-value> > >> </init-param> > >> <init-param> > >> <param-name>listings</param-name> > >> <param-value>true</param-value> > >> </init-param> > >> <load-on-startup>1</load-on-startup> > >> </servlet> > >> > >> <servlet> > >> <servlet-name>bizDispatcher</servlet-name> > >> <servlet-class>com.client.BizDispatcher</servlet-class> > >> </servlet> > >> > >><!-- > >> <servlet> > >> <servlet-name>invoker</servlet-name> > >> <servlet-class> > >> org.apache.catalina.servlets.InvokerServlet > >> </servlet-class> > >> <init-param> > >> <param-name>debug</param-name> > >> <param-value>0</param-value> > >> </init-param> > >> <load-on-startup>2</load-on-startup> > >> </servlet> > >>--> > >> > >> <servlet> > >> <servlet-name>jsp</servlet-name> > >> <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class> > >> <init-param> > >> <param-name>fork</param-name> > >> <param-value>false</param-value> > >> </init-param> > >> <init-param> > >> <param-name>xpoweredBy</param-name> > >> <param-value>false</param-value> > >> </init-param> > >> <load-on-startup>3</load-on-startup> > >> </servlet> > >><!-- > >> <servlet> > >> <servlet-name>ssi</servlet-name> > >> <servlet-class> > >> org.apache.catalina.ssi.SSIServlet > >> </servlet-class> > >> <init-param> > >> <param-name>buffered</param-name> > >> <param-value>1</param-value> > >> </init-param> > >> <init-param> > >> <param-name>debug</param-name> > >> <param-value>0</param-value> > >> </init-param> > >> <init-param> > >> <param-name>expires</param-name> > >> <param-value>666</param-value> > >> </init-param> > >> <init-param> > >> <param-name>isVirtualWebappRelative</param-name> > >> <param-value>0</param-value> > >> </init-param> > >> <load-on-startup>4</load-on-startup> > >> </servlet> > >>--> > >><!-- > >> <servlet> > >> <servlet-name>cgi</servlet-name> > >> > >> <servlet-class>org.apache.catalina.servlets.CGIServlet</servlet-class> > >> <init-param> > >> <param-name>clientInputTimeout</param-name> > >> <param-value>100</param-value> > >> </init-param> > >> <init-param> > >> <param-name>debug</param-name> > >> <param-value>6</param-value> > >> </init-param> > >> <init-param> > >> <param-name>cgiPathPrefix</param-name> > >> <param-value>WEB-INF/cgi</param-value> > >> </init-param> > >> <load-on-startup>5</load-on-startup> > >> </servlet> > >>--> > >> > >> > >> <!-- ================ Built In Servlet Mappings ========================= > >> --> > >> > >> <!-- The mapping for the default servlet --> > >> <servlet-mapping> > >> <servlet-name>default</servlet-name> > >> <url-pattern>/</url-pattern> > >> </servlet-mapping> > >> > >> <servlet-mapping> > >> <servlet-name>bizDispatcher</servlet-name> > >> <url-pattern>/</url-pattern> > >> </servlet-mapping> > >> > >> <!-- The mapping for the invoker servlet --> > >><!-- > >> <servlet-mapping> > >> <servlet-name>invoker</servlet-name> > >> <url-pattern>/servlet/*</url-pattern> > >> </servlet-mapping> > >>--> > >> > >> <!-- The mapping for the JSP servlet --> > >> <servlet-mapping> > >> <servlet-name>jsp</servlet-name> > >> <url-pattern>*.jsp</url-pattern> > >> </servlet-mapping> > >> > >> <servlet-mapping> > >> <servlet-name>jsp</servlet-name> > >> <url-pattern>*.jspx</url-pattern> > >> </servlet-mapping> > >> > >> <!-- The mapping for the SSI servlet --> > >><!-- > >> <servlet-mapping> > >> <servlet-name>ssi</servlet-name> > >> <url-pattern>*.shtml</url-pattern> > >> </servlet-mapping> > >>--> > >> > >> <!-- The mapping for the CGI Gateway servlet --> > >> > >><!-- > >> <servlet-mapping> > >> <servlet-name>cgi</servlet-name> > >> <url-pattern>/cgi-bin/*</url-pattern> > >> </servlet-mapping> > >>--> > >> > >> <session-config> > >> <session-timeout>30</session-timeout> > >> </session-config> > >> > >> <mime-mapping> > >> <extension>abs</extension> > >> <mime-type>audio/x-mpeg</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>ai</extension> > >> <mime-type>application/postscript</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>aif</extension> > >> <mime-type>audio/x-aiff</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>aifc</extension> > >> <mime-type>audio/x-aiff</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>aiff</extension> > >> <mime-type>audio/x-aiff</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>aim</extension> > >> <mime-type>application/x-aim</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>art</extension> > >> <mime-type>image/x-jg</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>asf</extension> > >> <mime-type>video/x-ms-asf</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>asx</extension> > >> <mime-type>video/x-ms-asf</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>au</extension> > >> <mime-type>audio/basic</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>avi</extension> > >> <mime-type>video/x-msvideo</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>avx</extension> > >> <mime-type>video/x-rad-screenplay</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>bcpio</extension> > >> <mime-type>application/x-bcpio</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>bin</extension> > >> <mime-type>application/octet-stream</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>bmp</extension> > >> <mime-type>image/bmp</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>body</extension> > >> <mime-type>text/html</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>cdf</extension> > >> <mime-type>application/x-cdf</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>cer</extension> > >> <mime-type>application/x-x509-ca-cert</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>class</extension> > >> <mime-type>application/java</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>cpio</extension> > >> <mime-type>application/x-cpio</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>csh</extension> > >> <mime-type>application/x-csh</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>css</extension> > >> <mime-type>text/css</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>dib</extension> > >> <mime-type>image/bmp</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>doc</extension> > >> <mime-type>application/msword</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>dtd</extension> > >> <mime-type>text/plain</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>dv</extension> > >> <mime-type>video/x-dv</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>dvi</extension> > >> <mime-type>application/x-dvi</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>eps</extension> > >> <mime-type>application/postscript</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>etx</extension> > >> <mime-type>text/x-setext</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>exe</extension> > >> <mime-type>application/octet-stream</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>gif</extension> > >> <mime-type>image/gif</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>gtar</extension> > >> <mime-type>application/x-gtar</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>gz</extension> > >> <mime-type>application/x-gzip</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>hdf</extension> > >> <mime-type>application/x-hdf</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>hqx</extension> > >> <mime-type>application/mac-binhex40</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>htc</extension> > >> <mime-type>text/x-component</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>htm</extension> > >> <mime-type>text/html</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>html</extension> > >> <mime-type>text/html</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>hqx</extension> > >> <mime-type>application/mac-binhex40</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>ief</extension> > >> <mime-type>image/ief</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>jad</extension> > >> <mime-type>text/vnd.sun.j2me.app-descriptor</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>jar</extension> > >> <mime-type>application/java-archive</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>java</extension> > >> <mime-type>text/plain</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>jnlp</extension> > >> <mime-type>application/x-java-jnlp-file</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>jpe</extension> > >> <mime-type>image/jpeg</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>jpeg</extension> > >> <mime-type>image/jpeg</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>jpg</extension> > >> <mime-type>image/jpeg</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>js</extension> > >> <mime-type>text/javascript</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>jsf</extension> > >> <mime-type>text/plain</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>jspf</extension> > >> <mime-type>text/plain</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>kar</extension> > >> <mime-type>audio/x-midi</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>latex</extension> > >> <mime-type>application/x-latex</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>m3u</extension> > >> <mime-type>audio/x-mpegurl</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>mac</extension> > >> <mime-type>image/x-macpaint</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>man</extension> > >> <mime-type>application/x-troff-man</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>me</extension> > >> <mime-type>application/x-troff-me</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>mid</extension> > >> <mime-type>audio/x-midi</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>midi</extension> > >> <mime-type>audio/x-midi</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>mif</extension> > >> <mime-type>application/x-mif</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>mov</extension> > >> <mime-type>video/quicktime</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>movie</extension> > >> <mime-type>video/x-sgi-movie</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>mp1</extension> > >> <mime-type>audio/x-mpeg</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>mp2</extension> > >> <mime-type>audio/x-mpeg</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>mp3</extension> > >> <mime-type>audio/x-mpeg</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>mpa</extension> > >> <mime-type>audio/x-mpeg</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>mpe</extension> > >> <mime-type>video/mpeg</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>mpeg</extension> > >> <mime-type>video/mpeg</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>mpega</extension> > >> <mime-type>audio/x-mpeg</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>mpg</extension> > >> <mime-type>video/mpeg</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>mpv2</extension> > >> <mime-type>video/mpeg2</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>ms</extension> > >> <mime-type>application/x-wais-source</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>nc</extension> > >> <mime-type>application/x-netcdf</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>oda</extension> > >> <mime-type>application/oda</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>pbm</extension> > >> <mime-type>image/x-portable-bitmap</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>pct</extension> > >> <mime-type>image/pict</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>pdf</extension> > >> <mime-type>application/pdf</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>pgm</extension> > >> <mime-type>image/x-portable-graymap</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>pic</extension> > >> <mime-type>image/pict</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>pict</extension> > >> <mime-type>image/pict</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>pls</extension> > >> <mime-type>audio/x-scpls</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>png</extension> > >> <mime-type>image/png</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>pnm</extension> > >> <mime-type>image/x-portable-anymap</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>pnt</extension> > >> <mime-type>image/x-macpaint</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>ppm</extension> > >> <mime-type>image/x-portable-pixmap</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>ps</extension> > >> <mime-type>application/postscript</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>psd</extension> > >> <mime-type>image/x-photoshop</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>qt</extension> > >> <mime-type>video/quicktime</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>qti</extension> > >> <mime-type>image/x-quicktime</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>qtif</extension> > >> <mime-type>image/x-quicktime</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>ras</extension> > >> <mime-type>image/x-cmu-raster</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>rgb</extension> > >> <mime-type>image/x-rgb</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>rm</extension> > >> <mime-type>application/vnd.rn-realmedia</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>roff</extension> > >> <mime-type>application/x-troff</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>rtf</extension> > >> <mime-type>application/rtf</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>rtx</extension> > >> <mime-type>text/richtext</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>sh</extension> > >> <mime-type>application/x-sh</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>shar</extension> > >> <mime-type>application/x-shar</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>smf</extension> > >> <mime-type>audio/x-midi</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>sit</extension> > >> <mime-type>application/x-stuffit</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>snd</extension> > >> <mime-type>audio/basic</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>src</extension> > >> <mime-type>application/x-wais-source</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>sv4cpio</extension> > >> <mime-type>application/x-sv4cpio</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>sv4crc</extension> > >> <mime-type>application/x-sv4crc</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>swf</extension> > >> <mime-type>application/x-shockwave-flash</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>t</extension> > >> <mime-type>application/x-troff</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>tar</extension> > >> <mime-type>application/x-tar</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>tcl</extension> > >> <mime-type>application/x-tcl</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>tex</extension> > >> <mime-type>application/x-tex</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>texi</extension> > >> <mime-type>application/x-texinfo</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>texinfo</extension> > >> <mime-type>application/x-texinfo</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>tif</extension> > >> <mime-type>image/tiff</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>tiff</extension> > >> <mime-type>image/tiff</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>tr</extension> > >> <mime-type>application/x-troff</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>tsv</extension> > >> <mime-type>text/tab-separated-values</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>txt</extension> > >> <mime-type>text/plain</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>ulw</extension> > >> <mime-type>audio/basic</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>ustar</extension> > >> <mime-type>application/x-ustar</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>xbm</extension> > >> <mime-type>image/x-xbitmap</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>xml</extension> > >> <mime-type>text/xml</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>xpm</extension> > >> <mime-type>image/x-xpixmap</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>xsl</extension> > >> <mime-type>text/xml</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>xwd</extension> > >> <mime-type>image/x-xwindowdump</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>wav</extension> > >> <mime-type>audio/x-wav</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>svg</extension> > >> <mime-type>image/svg+xml</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>svgz</extension> > >> <mime-type>image/svg+xml</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <!-- Wireless Bitmap --> > >> <extension>wbmp</extension> > >> <mime-type>image/vnd.wap.wbmp</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <!-- WML Source --> > >> <extension>wml</extension> > >> <mime-type>text/vnd.wap.wml</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <!-- Compiled WML --> > >> <extension>wmlc</extension> > >> <mime-type>application/vnd.wap.wmlc</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <!-- WML Script Source --> > >> <extension>wmls</extension> > >> <mime-type>text/vnd.wap.wmlscript</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <!-- Compiled WML Script --> > >> <extension>wmlscriptc</extension> > >> <mime-type>application/vnd.wap.wmlscriptc</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>wrl</extension> > >> <mime-type>x-world/x-vrml</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>Z</extension> > >> <mime-type>application/x-compress</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>z</extension> > >> <mime-type>application/x-compress</mime-type> > >> </mime-mapping> > >> <mime-mapping> > >> <extension>zip</extension> > >> <mime-type>application/zip</mime-type> > >> </mime-mapping> > >> > >> > >> <welcome-file-list> > >> <welcome-file>index.html</welcome-file> > >> <welcome-file>index.htm</welcome-file> > >><!-- <welcome-file>index.jsp</welcome-file> --> > >> <welcome-file>BizDispatcher</welcome-file> > >> </welcome-file-list> > >> > >></web-app> > >> > >> > >>______________________________________________________________________ > >>--------------------------------------------------------------------- > >>To unsubscribe, e-mail: [EMAIL PROTECTED] > >>For additional commands, e-mail: [EMAIL PROTECTED] > >> > >> > > > > > >--------------------------------------------------------------------- > >To unsubscribe, e-mail: [EMAIL PROTECTED] > >For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
