Hi,
I am trying to create a login system where a user would be able to login inside of one flash game on say, example.com, and then that same login data would be preserved for all the games on example.com and also the games on foo.com and bar.world.com
I am new to shared objects in flash so if anybody knows of a way to do this in either...
Suppose I have a machine M and a webserver S. From M, I would like to be able to visit a page on S which will log me into some site X (e.g., Gmail). However, I want this to happen without M ever handling any password details. Also, I don't want to use a proxy, but rather have the end result be as if M were actually visiting the site X...
Hi
I like to know What the content is stored in in cookies? Who will fix that content
...
From XHR, I had one "Set-Cookie: .ASPXAUTH". It was really installed, as I saw that next XHR, had this cookie inside in request part. The strange is why document.cookie doesnot contain it?
...
I have a squid 3.0 deployed which has a url_rewriter program which rewrites certain HTTP requests.
I now need to modify this prpogram to rewrite along with the cookie setting code.
As much as I have seen the url_rewrite_program documentation, it appears that I may not be able to set a cookie along with the 302 response.
Is this correct...
Hi
I build portable HTML/Javscript prototypes, which are intended to be Zipped up and shared via email/sharepoint. The key word here is 'portable' - no server is required to run these prorotypes - just a javascript enabled browser. And there is no database.
Some of the prototypes require that I persist data (just to show off potential...
Here's the situation...
Site 1) ASP.NET MVC application for customers to login, view and pay bills, etc. This site is using cookieless ASP sessions to allow multiple sessions to run in tabbed browsers.
Site 2) Corporate web site with standard static content. This will have a small form at the top of each page with a username/pass...
What are some reasons why sites like LLNW create a CNAME record for Omniture requests (e.g. metrics.limelightnetworks.com instead of limelightnetworks.122.2o7.net)?
I've found a post that seems to suggest that it's intended to circumvent 3rd-party-cookie settings. Are there any other pros/cons to this approach? From a performance persp...
Hi,
I am trying to prevent one of our cookie from being sent out into remote websites using CookieFilter in ezproxy, but it does not work.
I put the CookieFilter CookieName into config.txt file.
What am I missing?
Thanks
...
I want to delete cookies programmatically.
More specifically, I am using HtmlUnit with Java to automate browser operations. After performing some operations I want to clear cookies so that my subsequent operations make sense. How can I clear cookies through HtmlUnit or through Java or through any other way automatically.
...
I am building an ASP.NET 3.5 application in which I have a page which loads another page in a different domain in an iframe. Below is the for Default.aspx page:
<asp:Content ID="Content1" ContentPlaceHolderID="mainContent" runat="server">
<iframe src="isite.aspx" runat="server" width="100%" height="100%" scrolling="auto">
</if...
I am building an ASP.NET 3.5 application in which I have a page which loads another page in a different domain in an iframe. Below is the for Default.aspx page:
<asp:Content ID="Content1" ContentPlaceHolderID="mainContent" runat="server">
<iframe src="isite.aspx" runat="server" width="100%" height="100%" scrolling="auto">
</if...
I am building an ASP.NET 3.5 application in which I have a page which loads another page in a different domain in an iframe. Below is the for Default.aspx page:
<asp:Content ID="Content1" ContentPlaceHolderID="mainContent" runat="server">
<iframe src="isite.aspx" runat="server" width="100%" height="100%" scrolling="auto">
</if...
I'd appreciate any thoughts/insight any of you might have on this...
I have two domains running the same applications e.g. mysite.com and mysite.org and I have a requirement that when a user logs into mysite.com then he should also be logged into mysite.org. Obviously, I can't set the cookie on another domain but I want to come up with ...
I know how to read cookies using CGI and Ruby but the problem is, if I try to read cookies.value[0] when it does not exists, it breaks my program. So I need to check if the cookie is there to read first. I can't find this answer anywhere on the internet.
Please help, thank you,
Henry.
...
We have two different web applications with different servers, stacks, etc. Let’s call one the Host at host.example.com, and the other the Client at client.example.com.
We want our users to log in to Host, and pass their credentials and some other information (real name, email address, DOB, etc) to Client. What is the best way of doing ...
I want to track repeated user for our web site to show others by using cookies. It can be either java or javascript.
...
Hi,
I am using a web client to allow cookie support.
public class MyWeb : WebClient
{
private CookieContainer cookies = new CookieContainer();
protected override WebRequest GetWebRequest(Uri address)
{
WebRequest request = base.GetWebRequest(address);
if (request is HttpWebRequest)
(request as H...
Hi, I have this single-page site that has 4 columns with draggable/droppable/collapsible boxes. I can drag and drop boxes in any of the 4 columns and collapse/expand the boxes. The interface actually works real fine. I'm now trying to get jQuery Cookie to remember the placement of the boxes, how the users have rearranged the boxes and if...
I have a site that we require the user to have enabled JavaScript and cookies before they can login to the site. (The JS part is done and works perfectly.) At the moment, we have been been setting a cookie and then redirect the user to another page (in PHP). This has worked fine, but now we have a bunch of people that have bookmarked the...