Hi,
I am not sure this is the right place to ask but I'll try.
I am developing a tray application for kde that fetches content from a webpage and updates itself depending on the content it gets.
The page it fetches is an .asp-page, my problem is that if I reload the page in a browser I get new content for every reload but the page fetched with kio (KIO::TransferJob* job = KIO::get( url, true, false ) get the same content like it was cached, if I wait a long while I seem to get an update as if something timed out.
I have however checked with ethereal and the content is fetched from the net so it's not that I get a locally cached page, but for some reason it sends me the same data again.
Could it be related to cookies ? I see that the page makes use of some ASPSESSIONID in the cookie on this page. Anyone have any experience with that ? Can I modify the cookie using kio somehow ?
I am not sure this is the right place to ask but I'll try.
I am developing a tray application for kde that fetches content from a webpage and updates itself depending on the content it gets.
The page it fetches is an .asp-page, my problem is that if I reload the page in a browser I get new content for every reload but the page fetched with kio (KIO::TransferJob* job = KIO::get( url, true, false ) get the same content like it was cached, if I wait a long while I seem to get an update as if something timed out.
I have however checked with ethereal and the content is fetched from the net so it's not that I get a locally cached page, but for some reason it sends me the same data again.
Could it be related to cookies ? I see that the page makes use of some ASPSESSIONID in the cookie on this page. Anyone have any experience with that ? Can I modify the cookie using kio somehow ?
Comment