Skip to main content

Questions tagged [forwarding]

There are myriad kinds of forwarding. Use this if you must, but try to find a more specific [tag] first.

forwarding
163 votes
5 answers
212k views

Set up DNS based URL forwarding in Amazon Route53 [closed]

I'm trying to setup forwarding in Amazon Route53. My last DNS service (Nettica) allowed me to route requests to "aws.example.com" to "https://myaccount.signin.aws.amazon.com/console/". Is this ...
Saurav's user avatar
  • 3,136
177 votes
3 answers
85k views

When to use std::forward to forward arguments?

C++0x shows an example of using std::forward: template<class T> void foo(T&& arg) { bar(std::forward<T>(arg)); } When is it advantageous to use std::forward, always? Also, it ...
coyotte508's user avatar
  • 9,595
50 votes
6 answers
116k views

Python: Get HTTP headers from urllib2.urlopen call?

Does urllib2 fetch the whole page when a urlopen call is made? I'd like to just read the HTTP response header without getting the page. It looks like urllib2 opens the HTTP connection and then ...
shigeta's user avatar
  • 1,781
49 votes
7 answers
171k views

How to use HTTP_X_FORWARDED_FOR properly?

Alright, I have an small authentication issue. My web service allows to connect to my API over HTTP with a username and password, but this connection can also be restricted to a specific IP address. ...
kingmaple's user avatar
  • 4,282
47 votes
3 answers
55k views

Can I forward env variables over ssh?

I work with several different servers, and it would be useful to be able to set some environment variables such that they are active on all of them when I SSH in. The problem is, the contents of some ...
singingwolfboy's user avatar
111 votes
9 answers
81k views

How to use ssh agent forwarding with "vagrant ssh"?

Rather than create a new SSH key pair on a vagrant box, I would like to re-use the key pair I have on my host machine, using agent forwarding. I've tried setting config.ssh.forward_agent to TRUE in ...
Matt V.'s user avatar
  • 9,809
53 votes
6 answers
57k views

Getting "error: closed" twice on "adb reverse"

I am trying to reverse-forward port through ADB, but it just returns cryptic error of error: closed. Normal forwarding works. Session snippet: $ adb forward tcp:59778 tcp:59778 $ adb forward --list ...
Konrad Jamrozik's user avatar
3 votes
3 answers
2k views

Boot2Docker: can't get ports forwarding to work

I'm playing with boot2docker (docker 1.6) on windows 8.1. I wanted to make myself machine container to play with ruby and I want to be able to connect to rails server from my windows host. To start ...
mindriven's user avatar
  • 143
45 votes
5 answers
41k views

Relaying a request in asp.net (Forwarding a request)

I have a web application that communicates between two different web applications (one receiver and one sender, the sender communicates with my application, and my application communicates with both). ...
El Che's user avatar
  • 1,321
35 votes
5 answers
14k views

Naked Domain Redirect Failing when using HTTPS SSL on Google App Engine

We've got a website: www.feeltracker.com This is running on Google App Engine On Google App Engine, we have Naked Domain forwarding setup, so that: http://feeltracker.com redirects to http://...
Gaurav Sharma's user avatar
28 votes
3 answers
3k views

Why use std::forward<T> instead of static_cast<T&&>

When given code of the following structure template <typename... Args> void foo(Args&&... args) { ... } I've often seen library code use static_cast<Args&&> within the ...
Curious's user avatar
  • 21.3k
14 votes
5 answers
29k views

Send keystroke to other control

Easy one for you guys. I have a textbox on top of a listbox. The textbox is use to filter ther data in the listbox. So... When the user type in the textbox, I would like to "trap" the down/up/...
vIceBerg's user avatar
  • 4,267
4 votes
2 answers
13k views

How do I unmask a link from my domain masked site to an external site?

I registered domain www.a.com I then forwarded with masking (using GoDaddy) traffic from www.a.com to www.really.long.url.com, so users will only see www.a.com in their address bar when visiting my ...
Cory Klein's user avatar
  • 54.2k
47 votes
9 answers
51k views

How do I to forward example.com to www.example.com at godaddy for s3 hosted site?

I have: signed up for an AWS account set up buckets for example.com and www.example.com enabled website settings in properties for each domain set bucket policies for both domains created this cname ...
empathysage's user avatar
16 votes
4 answers
40k views

Symfony 2 Forward Request passing along GET/POST params

Is it possible to forward a request, passing along all GET/POST params? I think if I just do $this->forward('dest') I will go to dest without any GET/POST params? UPDATE My objective is ...
Jiew Meng's user avatar
  • 86.5k

15 30 50 per page
1
2 3 4 5