1. Geting Cached URLs
- Posted by "Thomas Parslow (PatRat)" <patrat at INAME.COM> May 14, 2000
- 547 views
- Last edited May 15, 2000
Hi, I'm using GetUrlCacheEntryInfoA from wininet.dll to retreive a cached web page using it's url. The problem I'm having is that it doesn't seem to work for some urls, this doesn't work: http://www.infoseek.com/ while this does: http://infoseek.go.com/ Both of these domain names evaluate to the same IP yet only one of them works when used with GetUrlCacheEntryInfoA Any ideas? Thomas Parslow (PatRat) ICQ #:26359483 Rat Software http://www.ratsoft.freeserve.co.uk/ Get paid to surf the web! http://members.tripod.co.uk/paid2surf/
2. Re: Geting Cached URLs
- Posted by Kat <gertie at PELL.NET> May 14, 2000
- 562 views
----- Original Message ----- From: "Thomas Parslow (PatRat)" <patrat at INAME.COM> To: <EUPHORIA at LISTSERV.MUOHIO.EDU> Sent: Sunday, May 14, 2000 4:23 PM Subject: Geting Cached URLs > Hi, > I'm using GetUrlCacheEntryInfoA from wininet.dll to retreive a cached web > page using it's url. The problem I'm having is that it doesn't seem to work > for some urls, this doesn't work: > http://www.infoseek.com/ > while this does: > http://infoseek.go.com/ > Both of these domain names evaluate to the same IP yet only one of them > works when used with GetUrlCacheEntryInfoA > Any ideas? HTTP/1.0 302 Moved Temporarily Date: Sun, 14 May 2000 22:04:28 GMT Location: http://www.go.com/ Connection: Keep-Alive Content-Length: 0 HTTP/1.0 302 Moved Temporarily Date: Sun, 14 May 2000 22:04:58 GMT Location: http://www.go.com/ Connection: Keep-Alive Content-Length: 0 So i am assuming they are both redirects, and only one properly resolves. Speaking of such things, what is it in windoze that caches web pages? I noticed if i have a web page open in IE, then do a getwebpage in Eu, Eu instantly has it. If i close the IE and then have Eu get the page, the access time is more normal. Using David Cuny's winlib and socks, not any IE calls that i am aware of. The reason this bothers me is that if i wish to access the page, then i want a *new* access, so if the page has been updated, i want that update, regardless of whether or not IE has the page displayed. Anyone have any ideas on this? Kat