+1  A: 

You need to define the additional action, see http://guides.rubyonrails.org/routing.html#adding-more-restful-actions for more, so change the route to

map.resources :users, :collection => { :test => :get }

A helpful utility to check all routes is rake routes - btw I assume you're using Rails 2.3.x, right?

lwe
yes I am using 2.3.5 ..
Madhusudhan
hey thanks.....
Madhusudhan
you're welcome :)
lwe