Skip to main content

Posts

Showing posts from September, 2011

Ubuntu problem with accessing to .local domain

At work we have configured network with .local domain. But default setting on my Ubuntu 10.04 prevent me to access any resource which is configured in our network eg: "something.company.local". On Ubunt wiki i found solution for my problem:   sudo stop avahi-daemon This will stop avahi deamon. More info about this problem you can find on: Ubuntu Wiki

Servlet API Listeners

Generally speaking Listener are objects which are used for performing some action when somethings is happened. They receive notification about some change and perform action registered for that event. Also in the web application from time to time some "interesting" changes happens, and it would be nice that we can be notified about them.  Because of that in the servlet api are defined some Listener interfaces which allow us to handle events which are interesting for us.