Routing is the process of selecting paths in a network along which to send network traffic. For the process of associating URLs to content, use the tag url-routing instead.
3
votes
0answers
107 views
build a road network
I have various number of tracks which represents different roads. Each track represent one road. I have loaded this gpx file into my postgres.
Now my problem is how am I going to build a network ...
3
votes
0answers
361 views
Simulating Geographic Routing in Wireless Sensor Networks Using Omnet++
I'm planning to simulate the geographic routing algorithm ( http://coitweb.uncc.edu/~ywang32/research/TPGF-shu.pdf )in wireless sensor networks using omnet++ and Mixim .
I need the following ...
3
votes
0answers
554 views
iOS: Route audio-IN thru jack, audio-OUT thru inbuilt speaker
My project involves a magnetic card reader device that plugs into the phono socket (ie only uses microphone)
Can I get my project to output sound through the inbuilt speaker while simultaneously ...
3
votes
0answers
493 views
link_to array of objects but with new path
I have a link that is generated from an array of objects...
<%= link_to 'Add a Post', [@object, Post.new], :action => 'new', :remote => true, :class => 'button gray medium' %>
...
2
votes
0answers
42 views
Handling complex GET parameters with Slim Framework HTTP routing
Assuming the following naive code:
$app->get( '(/store(/:url)+)', function( $url = NULL ) use ( $app )
{
// Execute actions on $url
});
The above works fine for the following:
...
2
votes
0answers
61 views
Rails and Multiple base URLs
So I'm beginning to think that this isn't possible because hours of googling are turning nothing up.
I have a single app that will live under multiple URLs being proxied from different servers. I ...
2
votes
0answers
64 views
Routing Rules are Conflicting
My applications Routing url is like:
routes.Add("Rule1",
new Route("test/12345/{subjectname}/{pageno}",
new RouteValueDictionary { { "pageno", null } },
new ...
2
votes
0answers
628 views
Using AngularJS routing and loading controllers on demand using requirejs
I'm trying to use AngularJS and RequireJS in combination. I would like to use the $routeProvider service and avoid having to load all the controllers for my views on application startup. For that, I ...
2
votes
0answers
220 views
Clone and Forward with iptables
I'm trying to forward all incoming tcp packets to multiple ip addresses.
Setup:
A - 10.10.10.10
B - 10.10.10.11
C - 10.10.10.12
D - 10.10.10.13
I want B, C and D to receive on port 8000 all ...
2
votes
0answers
81 views
How to retain client IP address after WCF routing?
I currently have a WCF service that is able to obtain the client IP address using the following code;
private static string GetClientIPAddress()
{
RemoteEndpointMessageProperty ...
2
votes
0answers
445 views
Compute next hop routing table from adjacency matrix using Dijkstra's algorithm - alg. not stopping
I am trying to determine a next hop routing table using an adjacency matrix. Each node knows the full adjacency matrix for that topology. I have found previous posts explaining how to do it, however, ...
2
votes
0answers
174 views
WebApi optional parameter - is required?
I have a web api controller (TasksController) with a get method like :
public IEnumerable<TimeUnitModel> Get(DateTime startDate, DateTime endDate, string projectCode = "")
If I call
...
2
votes
0answers
60 views
Gosmore - No route found
I achieved to run an offline map server(mapnik/postgresql/osm-maps).
Now I need a routing in order to create visible routse between to points of the map.
Of course it should work offline without ...
2
votes
0answers
179 views
Jquery Mobile backbone Select box not showing up
I have used Jquery mobile with Backbone and Handlebar i have a select box that loads the country list using the JSON data coming from cakephp and the HTML code is :
<select name="Country" ...
2
votes
0answers
117 views
How to prevent not found error when image doesn't exist in .NET MVC
I have an MVC application and my error handling is set up like this in web.config:
<customErrors mode="On" defaultRedirect="~/Error/" redirectMode="ResponseRedirect">
<error ...