post-parameter

External django redirect with POST parameters

I'm trying to create a redirect in a Django view to an external url with some get parameters attached to the request. After doing some looking around and some trying around, it seems I have hit a road block. So my view looks something like this def view(request): data = get.data(request) if something in data: return Htt...

Apache mod_rewrite question

Hi! I have an application running under tomcat 6. In front of it I have an apache server which is forwarding all requests. That is, the user "talks" to the apache and not to tomcat. For some reasons the it is requested the following: when the apache server receives a request of the form http://www.mydomain.com/myApp then it has to ...

ASP.NET MVC POST Parameter into RouteData

I'm using jQuery to POST an Id to my route, for example: http://localhost:1234/Load/Delete with a POST Parameter Id = 1 I'm only using the default route in Global.asax.cs right now: routes.MapRoute( "Default", "{controller}/{action}/{id}", new { controller = "Home", action = "Index", id = "" } ); When I perform the POST, ...

POST/GET bindings in Racket

Is there a built-in way to get at POST/GET parameters in Racket? extract-binding and friends do what I want, but there's a dire note attached about potential security risks related to file uploads which concludes Therefore, we recommend against their use, but they are provided for compatibility with old code. The best I can fi...

post request with link_to in rails 3

How do I make a remote POST request with custom parameters with a link_to helper in rails 3? I tried something like this: link_to 'Submit', model_path, :query => "value", :remote => true, :method => :post The POST works and the control comes to the action in the controller, but I don't get the POST parameters in params or anywhere el...