Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
243 views

When tracking outbound links with Google Analytics, why delay the outbound click instead of pushing a function into the queue?

The official suggestion for tracking outbound links with (the asynchronous version of) Google Analytics is to push an tracking event into the queue, like: gaq.push(['_trackEvent', 'Outbound', ...
1
vote
0answers
126 views

nginx outgoing proxy configuration

im using nginx x as a reverse proxy. heres my configuration : location /google/ { rewrite ^/google/(.*) /$1 break; proxy_set_header Host $host; ...
1
vote
1answer
84 views

Is it bad practice to rely on outbound rules for rewriting?

For the past few years, if I've wanted a URL of a page on a site rewritten I've put the rewritten URL into the link on the page. E.g. If the page is /Product.aspx?filename=ProductA and it's rewritten ...
1
vote
2answers
141 views

How to limit SMTP delivery to hourly batches

In an effort to keep us from being labeled spammers by major ISPs (in addition to SPF records, privacy policies, CANSPAM compliance and the like) - I wanted to limit the amount of mail we send out an ...
1
vote
2answers
429 views

Making a TCP connection through a restrictive outbound firewall

I'm using Java to create a client/server application that communicates using TCP. The network that the client is running on has an outbound firewall that prevents the client from connecting to the ...
0
votes
1answer
144 views

Spring Integration - http outbound gateway custom headers

I have java object that I would like to pass as a custom header to my request on the http outbound gateway. Below is a snippet <int:gateway id="service" service-interface="MyService" ...
0
votes
0answers
142 views

Can't Allow Specific Port in Windows Firewall Advanced Security - Windows 2008

In the Outbound Rules, I set up a rule to allow outbound connection from port 26. But, it doesn't work.. However, if I allow "all port" for this rule, this will work, but then all ports will be ...
0
votes
1answer
58 views

Which data structure to throttle outbound messages?

I need to send messages (the actual technology is irrelevant at this stage) while complying with a number of throttling constraints. Basically I have contraints that are related to the sender and to ...
0
votes
0answers
111 views

Is there a simple, universal outbound click tracking method for web pages?

I'm looking for a way of tracking all outbound clicks from a web page without modifying any of the existing page code. The solution must work with frames, iframes, content from different domains, AJAX ...
0
votes
2answers
217 views

Is there a simple, universal outbound click tracking method for JQuery / Javascript?

I'm looking for a way of tracking all outbound clicks from a web page using Javascript/ JQuery without modifying any of the existing page code. The solution must work with frames, iframes, content ...
0
votes
1answer
299 views

How to create the ultimate jquery-script for tracking outbound links in Google Analytics?

I found some jquery scripts to deal with tracking outbound links in Google Analytics. But they all seem to have some flaws: ...
0
votes
1answer
235 views

Outbound Inbound URL

Hi can anyone explain the differences between an outbound url and an inbound url? Im doing some code examples in asp.net mvc and don't really understand outbound/inbound url. cheers in advance
0
votes
2answers
377 views

How to verify if server can make outbound requests on port 80 and 443?

In relation to this question on an openid issue I'm having, someone asked me to check whether my server is able to make outbound requests on port 80 and 443. Can you tell me how to verify that? The ...