Showing posts with label tomcat. Show all posts
Showing posts with label tomcat. Show all posts

Saturday, September 12, 2015

Windows 10 installed

While I finally made it to a Mac (MacBook Air 13) at work, I gave in and let Microsoft install Windows 10 over my Windows 7 on my home PC.

It went surprisingly smooth and without any problems.
Except that my Tomcat did successfully start under Window 10, because for some weird reasons Redmond decided to install and activate the Internet Information Services (which I previously did not have), and those blocked port 80 of course.
Simple de-install of those features, reboot and everything was running fine again. All apps and services I had running (or those I could think of within 30minutes) are running fine again.
Amazingly even my DB2 instance did not create any problems at all.

Now I only have to get used to the new UI, but even that seems easier than I thought.... well, as long as I have the keyboard.

Wednesday, January 02, 2008

Offline for a couple of days


Am Weissensee
Originally uploaded by roetzi24
I'm enjoying some days off at lake Weissensee in Carinthia, Austria - pondering how to implement an idea for a flickr application I had.

Anyone know a good site with hosted Tomcat or - even better - glassfish ?

Monday, August 13, 2007

Enabling directory listing in Tomcat

One and for all --- this is mainly for myself, because I tend to forget it and have to google it everytime I need it:

To enable/disable directory listings in Tomcat (5.x at least) I have to change the property listings of the default servlet in conf/web.xml

<servlet>
<servlet-name>default</servlet-name>
<servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>
<init-param>
<param-name>listings</param-name>
<param-value>false</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>

Tomcat FAQ - Miscellaneous Questions