quarks
quarks

Reputation: 35326

Proxy servlet and iframe to run site from another domain

For quite a long time I use proxy servlet, and from my experience in order for javascript to properly work, the proxy servlet has to be configured to run in the ROOT context. However, a site http://www.filestube.com/ from what I investigated, its running a site from another domain on a iframe.

I am wondering what kind of approach is this?

Upvotes: 1

Views: 797

Answers (1)

Angelo Fuchs
Angelo Fuchs

Reputation: 9941

From what I can see on the target page it loads javascript from some 'local' domains (*.filestube.com) who then in turn load javascript from another domain (e.G. google or facebook in this case).

Also there is an IFrame on the site, but IFrames may come from everywhere anyway.

So the kind of approach is: Normal, don't think about user privacy and just load everything you think you might need from everywhere.

Upvotes: 2

Related Questions