Tagged Questions

Routing is the process of selecting paths in a network along which to send network traffic.

learn more… | top users | synonyms

236
votes
16answers
31k views

What algorithms compute directions from point A to point B on a map?

How do map providers (such as Google or Yahoo! Maps) suggest directions? I mean, they probably have real-world data in some form, certainly including distances but also perhaps things like driving ...
74
votes
6answers
11k views

Is it possible to make an ASP.NET MVC route based on a subdomain?

Is it possible to have an ASP.NET MVC route that uses subdomain information to determine its route? For example: user1.domain.com goes to one place user2.domain.com goes to another? Or, can I ...
59
votes
6answers
8k views

ASP.NET MVC Routing Via Method Attributes

In the StackOverflow Podcast #54, Jeff mentions they register their URL routes in the StackOverflow codebase via an attribute above the method that handles the route. Sounds like a good concept (with ...
51
votes
3answers
1k views

Akka Actor not terminating if an exception is thrown

I am currently trying to get started with Akka and I am facing a weird problem. I've got the following code for my Actor: class AkkaWorkerFT extends Actor { def receive = { case Work(n, c) if n ...
42
votes
3answers
14k views

How to redirect to a dynamic login URL in ASP.NET MVC

I'm creating a multi-tenancy web site which hosts pages for clients. The first segment of the URL will be a string which identifies the client, defined in Global.asax using the following URL routing ...
35
votes
5answers
1k views

What's so RESTful about ASP.NET MVC?

REST has been such a popular buzzword for the last couple of years (or so) and when ASP.NET MVC rolled out, everyone was relating REST with ASP.NET MVC. I also fell for the buzz and from the lack of ...
32
votes
11answers
22k views

Image equivalent of ActionLink in ASP.NET MVC

In ASP.NET MVC is there an equivalent of the Html.ActionLink helper for Img tags? I have a controller action that outputs a dynamically generated JPEG and I wanted to use the same Lambda expressions ...
30
votes
7answers
12k views

how can I find out the current route in rails?

I need to know the current route in a filter in rails.. how can I find out? I'm doing REST resources, and no named routes
30
votes
7answers
8k views

IIS URL Rewriting vs URL Routing

I was planning to use url routing for a Web Forms application. But, after reading some posts, I am not sure if it is an easy approach. Is it better to use the URL Rewrite module for web forms? But, ...
23
votes
2answers
4k views

How can I get the route name in controller in ASP.NET MVC?

ASP.NET MVC routes have names when mapped: routes.MapRoute( "Debug", // Route name -- how can I use this later???? "debug/{controller}/{action}/{id}", new { controller = "Home", action = "Index", ...
19
votes
3answers
4k views

MVC.Net Routing

Here is my scenario. For the example lets say that I need to return a list of cars based on a search criteria. I would like to have a single View to display the results since the output will be the ...
19
votes
11answers
22k views

HttpContext.Current.Session is null when routing requests

Without routing, HttpContext.Current.Session is there so I know that the StateServer is working. When I route my requests, HttpContext.Current.Session is null in the routed page. I am using .NET 3.5 ...
17
votes
2answers
3k views

How do I route images using ASP.Net MVC routing?

I upgraded my site to use ASP.Net MVC from traditional ASP.Net webforms. I'm using the MVC routing to redirect requests for old .aspx pages to their new Controller/Action equivalent: ...
17
votes
4answers
17k views

ASP.NET MVC QueryString defaults overriding supplied values?

Using ASP.NET MVC Preview 5 (though this has also been tried with the Beta), it appears that querystring defaults in a route override the value that is passed in on the query string. A repro is to ...
17
votes
5answers
8k views

Creating routes with an optional path prefix

How can I go about making my routes recognise an optional prefix parameter as follows: /*lang/controller/id In that the lang part is optional, and has a default value if it's not specified in the ...
16
votes
3answers
8k views

How do I redirect to the previous action in ASP.NET MVC?

Lets suppose that I have some pages some.web/articles/details/5 some.web/users/info/bob some.web/foo/bar/7 that can call a common utility controller like locale/change/es or authorization/login ...
16
votes
6answers
9k views

Rails: how do you access RESTful helpers?

I'm trying to work through this guide to Rails routing, but I got stuck in section 3.3: Creating a RESTful route will also make available a pile of helpers within your application and then they ...
15
votes
2answers
484 views

In Ruby on Rails Routing I Would Like to Use Dash `-` Instead of Underscore `_`

I would like all the URLs for my web applications to use dash - instead of underscore _ for word separators. I'm surprised about a couple of things really: Google et al. continue to distinguish ...
15
votes
5answers
14k views

Setting ajax url for jQuery in JS file using ASP.NET MVC

When doing a Ajax call to an MVC action currently I have my javascript inside the View, not inside its own JS file. It is then very easy to do this: var xhr = $.ajax({ url: '<%= ...
14
votes
6answers
7k views

ASP.NET MVC, Url Routing: Maximum Path (URL) Length

The Scenario I have an application where we took the good old query string URL structure: ?x=1&y=2&z=3&a=4&b=5&c=6 and changed it into a path structure: ...
14
votes
3answers
7k views

ASP.NET MVC: url routing vs querystring

I have a page routed like /Comments/Search/3 where i search and display all the comments of the thread "3". I'm adding a sort function (by date, author etc). What is the best way to handle it? ...
13
votes
2answers
2k views

MVC2 Routing with WCF ServiceRoute: Html.ActionLink rendering incorrect links!

I have a WCF service that lives side-by-side with an MVC2 web site. I'd like for my URL for the service to look like this: http://localhost/projdir/Service The MVC site is in its infancy so it still ...
13
votes
2answers
8k views

How is RedirectToRoute supposed to be used?

I have this in my Global.asax.cs: routes.MapRoute("BetaAccess", "beta-access", new { controller = "Beta", action = "Index" }); And this in my controller (index action on HomeController) and it ...
13
votes
4answers
4k views

Using ASP.NET routing to serve static files

Can ASP.Net routing (not MVC) be used to serve static files? Say I want to route http://domain.tld/static/picture.jpg to http://domain.tld/a/b/c/picture.jpg and I want to do it dynamically in ...
13
votes
7answers
1k views

Semantic urls with dots in .net

I'm trying to make semantic urls for search pages, but if someone use a search finished in dot, the .net engine return a 404. The request don't even get to the routing engine, so i think its ...
13
votes
6answers
2k views

ASP.NET MVC URL generation performance

A little benchmark with ASP.NET MVC. Viewpage code: public string Bechmark(Func<string> url) { var s = new Stopwatch(); var n = 1000; s.Reset(); ...
12
votes
7answers
11k views

Django: serving ADMIN media files

I've been successfully serving media files for the normal MEDIA files, but when I tried serving admin media files, I failed. please kindly help me locating the problem, as I've tried to troubleshoot ...
12
votes
5answers
4k views

“The resource cannot be found.” error when there is a “dot” at the end of the url

I'm using ASP .NET MVC Beta and I get the HTTP 404 (The resource cannot be found) error when I use this url which has a "dot" at the end: http://localhost:81/Title/Edit/Code1. If I remove the dot at ...
12
votes
7answers
1k views

ASP.NET MVC Routing Question

I must be dense. After asking several questions on StackOverflow, I am still at a loss when it comes to grasping the new routing engine provided with ASP.NET MVC. I think I've narrowed down the ...
11
votes
3answers
725 views

Preferred client side routing solution?

I am designing a one page browser based web application. JQuery is already being used in my application. I am currently planning to use KnockoutJS for data-binding and UI management. However I have ...
11
votes
1answer
2k views

Rails routing to handle multiple domains on single application

I've been unable to find a workable solution to this problem, despite several similar questions here and elsewhere. It seems likely that this question hasn't been answered for Rails 3, so here goes: ...
11
votes
2answers
175 views

Why does a trailing %20 (valid data in this case) kill asp.net mvc routing

Take the following controller action public ActionResult NextBySURNAME(int id, string data) { //code to process the data and edit the id accoringly not written yet return ...
11
votes
2answers
224 views

ASP.NET MVC User routing like that in StackOverflow?

I've looked at the routing on StackOverflow and I've got a very noobie question, but something I'd like clarification none the less. I'm looking specifically at the Users controller ...
11
votes
2answers
4k views

Adding a prefix to every URL in CakePHP

What's the cleanest way to add a prefix to every URL in CakePHP, like a language parameter? http://example.com/en/controller/action http://example.com/ru/admin/controller/action It needs to work ...
10
votes
5answers
7k views

I'm getting a “Does not implement IController” error on images and robots.txt in MVC2

I'm getting a strange error on my webserver for seemingly every file but the .aspx files. Here is an example. Just replace '/robots.txt' with any .jpg name or .gif or whatever and you'll get the ...
10
votes
3answers
751 views

Manually instantiate a Controller instance from an arbitrary URL?

My skills are failing me, and I know I've seen the code around for this but I can't find it. What's the quickest way to take any arbitrary URL, run it through your asp.net mvc routing system, and ...
10
votes
3answers
1k views

Is there an equivalent to Ruby on Rails' respond_to format.xml, etc in ASP.Net MVC?

In Ruby on Rails you can write a simple controller action such as: def index @movies = Movies.find(:all) respond_to do |format| format.html #index.html.erb format.xml { ...
10
votes
4answers
8k views

Basic Rails 404 Error Page

I have been looking for a simple answer to this for a ridiculously long time and it seems like this has to be so plainly obvious and simple because no one has an easy, idiot proof tutorial. Anyway, ...
10
votes
5answers
4k views

Trailing slash on an ASP.NET MVC route

In the latest MVC preview, I'm using this route for a legacy URL: routes.MapRoute( "Legacy-Firefox", // Route name "Firefox-Extension/", // URL with parameters new { controller = "Home", action = ...
9
votes
2answers
230 views

Is it possible to create routes dynamically in .NET 4?

In our application we use the new .NET 4 routing system to route certain requests to other parts of the site. We are only allowed to publish our site code in late evenings which means we have to stay ...
9
votes
3answers
149 views

Why can't Asp.net MVC distinguish between two actions when they have different parameters?

I am trying to have two different methods for account registration in my Asp.net MVC application, one for general users to register for and another for users who are registering with a specific ...
9
votes
3answers
217 views

ASP.NET routing: Literal sub-segment between tokens, and route values with a character from the literal sub-segment

The reason I'm asking is because IIS protects certain ASP.NET folders, like Bin, App_Data, App_Code, etc. Even if the URL does not map to an actual file system folder IIS rejects a URL with a path ...
9
votes
5answers
7k views

Devise Custom Routes and Login Pages

I'm trying to get Custom Routes working in my Rails application (Ruby 1.9.2 with Rails 3). This is my config/routes.rb file match '/dashboard' => 'home#dashboard', :as => 'user_root' ...
9
votes
7answers
4k views

US Bank Routing Number and BIC/SWIFT

I've been having a hard time finding more information to this question, and since this site is visited by a lot of people from the United States, you guys might know/find the answer more easily. ...
9
votes
4answers
967 views

How to add page title in url in asp.net mvc? (url generation)

How to dynamically create urls/links like: www.restaurant.com/restaurant/restaurant-name-without-some-characters-like-space-coma-etc/132 what are the keywords i can use to google some articles on ...
9
votes
3answers
358 views

How do I set up a route for the home page of an ASP.NET MVC site?

I'm working with an ASP.NET MVC site which will use a CMS controller for all pages of the site except for the home page. Here's the idea: Home controller: www.site.com www.site.com/default.aspx ...
9
votes
3answers
3k views

.Net MVC Routing Catchall not working

I can't seem to figure this out. I'm experimenting with MVC Beta and am trying to implement a catchall route such that if the user enters mysite.com/blah instead of mysite.com/home/index it will hit ...
9
votes
5answers
10k views

ASP.Net MVC route mapping

I'm new to MVC (and ASP.Net routing). I'm trying to map *.aspx to a controller called "PageController". routes.MapRoute( "Page", "{name}.aspx", new { controller = "Page", action = ...
8
votes
2answers
453 views

How to modify ASP.NET MVC static file root

I want to be able to reorganize my ASP.NET MVC site structure to more closely match the way Rails does it (We do both rails and ASP.net at my company). In Rails, there is a "public" folder that ...
8
votes
3answers
2k views

MVC 3 Subdomain Routing

In asp.net MVC 3 site i'd like to create online stores for users. Any store that is created by user should have a URL like "shopname.mydomain.com". I tried some routing work but failed at all. I am ...

1 2 3 4 5 55