Questions tagged [akamai]

Akamai is a Content Delivery Network helping you to accelerate your website.

Akamai is a Content Delivery Network. It allows you to store your data distributed to accelerate delivery for streaming and other technologies.

313 questions
1
vote
2 answers

Akamai Edgescape?

I was wondering if anyone has any links to on how to implement Akamai's Edgescape solution to get the zip code? I tried scouring the web for some sort of documentation from Akamai, but couldn't find any docs online, thought I would ask here first…
DLS
  • 5,313
  • 8
  • 37
  • 50
1
vote
2 answers

Validation of Akamai caching

We have cached html and png pages in Akamai by changing the waa config. But unable to validate it through fiddler, live http headers or through curl commands. Below are the screenshots. Please help if I missed any headers Fiddler: live http…
Swathi
  • 21
  • 1
  • 6
1
vote
1 answer

akamai osmf live stream connection woes

I know this stream works because of two reasons: 1) It works OUTSIDE of OSMF 2) It works in the akamai support player: http://support.akamai.com/flash/ I don't believe the current akamai support player is using OSMF (which is suprising since they…
Jacksonkr
  • 31,583
  • 39
  • 180
  • 284
1
vote
1 answer

PhantomJS returns status 200 on localhost but 403 on live server

I have to scrape HTML documents from given url. On my localhost the Phantom JS script is returning the url fine. But on live server I get a 403 forbidden status scraper.js var system = require('system'); var page = require('webpage').create(); $url…
pcezar91
  • 111
  • 11
1
vote
2 answers

CDN: Forward to a different resource instead of redirect

I need to send different resources (specially images) for same urls depending on a complex logic based on different factors (cookie, IP, time, random). I want to take advantage of CDNs (cache, availability, proximity). So, I want this CDN to make a…
sinuhepop
  • 20,010
  • 17
  • 72
  • 107
1
vote
1 answer

How to prevent elmah url /elmah.axd to not be cached when using akamai

So, for one of our ASP.NET MVC website, we are using Akamai to cache all pages, what has happened coz of this, even our elmah url "/elmah.axd" is also cached. A quick google search didnt yield any help, as of now I have a workaround to see the…
Yasser Shaikh
  • 46,934
  • 46
  • 204
  • 281
1
vote
1 answer

Set the header for web page so that IE doesn't cache the page but AKAMAI still does?

I'm setting the headers for a web page to CacheControlMaxAge 900 secs. This works well with Akamai and all the browsers ignore this setting except IE which caches the page for 9 minutes. What I want is to have only Akamai cache the page for 9…
Jay James
  • 31
  • 4
1
vote
0 answers

Rails. Preventing CDN from interfering with http auth via headers. What is going on?

I am looking through some legacy code and I see this: In the application_controller.rb def set_cache_buster response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate" response.headers["Pragma"] = "no-cache" …
Jwan622
  • 11,015
  • 21
  • 88
  • 181
1
vote
2 answers

CDN (Akamai), origin app with RESTfull api and HTTP DELETE method "501 not supported"

AngularJS based app hosted on https://123.45.67.89 is accessed through a CDN (Akamai) network which manages the app's domain name https://www.killerapp.com. CDN network is configured to have cache TTL 1 day for everything /* except /api/* for which…
Maxim Suponya
  • 1,419
  • 2
  • 20
  • 43
1
vote
1 answer

Akamai edge-config XML specification

Per the title, I'm looking for Akamai edge-config XML specification. Using the "Property Manager" is not available presently to me. I do not need the API/JSON specification, nor the W3C ESI spec, but the XML config doc spec.
Brandt Solovij
  • 2,124
  • 13
  • 24
1
vote
3 answers

Akamai clear cache after publishing

I'm publishing data from php code to Akamai CDN. I'm looking for a way to clear cache of my data after publish is completed. Can I do it from Akamai user interface? Or should I implement it in my php app?
Roman V
  • 33
  • 1
  • 6
1
vote
1 answer

Redirect from Origin Server to Akamai instance

Looking for some PHP help. What I'd like to try (and find out if its feasible) is to redirect all traffic coming from origin back to the Akamai CDN url. Obviously if I did this globally I would run into a loop. So instead I've set up a header…
Mr. BigglesWorth
  • 1,530
  • 3
  • 18
  • 33
1
vote
0 answers

Upgrading Authorize.net Webservice Reference(api) to Akamai (api2)

I am Trying to Set debug URL and live URL based on flag for service call to authorize.net like below.. if (isDebug) { API_URL = "https://apitest.authorize.net/soap/v1/Service.asmx"; } else { API_URL =…
Mehul Gohel
  • 118
  • 7
1
vote
1 answer

Does Akamai resubmit on timeout

We have an application that is behind Akamai meaning all traffic goes first to Akamai, then to our web server, then our app server. There are a few URLs that do lengthy updates in our app and can take over 4 minutes depending on what the user…
George
  • 1,021
  • 15
  • 32
1
vote
2 answers

Bypass specific URL from Akamai if header exist

I would like Akamai not to cache certain URLs if the origin server sends a specific header. Is this possible to do with Akamai? The question has been covered pretty well here: Bypass specific URL from Akamai if certain cookie exist I would be…