I solved the problem by adding ActionController::Routing::SEPARATORS = %w( / ; , ? ) in my routes.rb file, but an warning message is displaying as below
config/routes.rb:12: warning: already initialized constant SEPARATORS
Want to know whether this warning will be an issue on future?
regards,
Loganathan
constraints (:version => /[0-9]{1}(?:.[0-9]{1,2})/) domatch 'ws/:api_version => 'api#create'endThis route will match to 'ws/1.23" and you will have params[:version] == "1.23"--On Sat, Jan 21, 2012 at 1:35 AM, Rob Biedenharn <rob@agileconsultingllc.com> wrote:On Jan 20, 2012, at 7:38 AM, Loganathan Sellapa wrote:Hi All,I am having routes like below to delete/list an user.
map.connect 'developer/:user_name/delete',:controller=>"developers",:action=>"delete",:method=>:delete
You probably need to keep the '.' from being treated as a separator (like for a format)::requirements => { :user_name => /.*/ }-Robregards,map.connect 'developer/:user_name/list',:controller=>"developers",:action=>"list",:method=>:get
While listing the user by encoding the Dot with %2E, i can see the success response http://localhost:3000/developer/testuser%2Ehu/list
But While trying to delete the user who containing the Dot(.), throws 404 error.
http://localhost:3000/developer/testuser%2Ehu/delete , thanks in advance
Loganathan--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Regards
Mukesh Paras Singh
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
No comments:
Post a Comment