Has anyone developing webservices here encountered any problems with the Firefox browser?
 
I seem to be having a cookie problem which only seems to occur on Firefox browsers. (Yes cookies have been enabled).
 
We are writing the cookies in the following way.
 
  with webmodule.Response.Cookies.Add do
  begin
    Domain:='';
    Path:='/';
    Expires := incmonth(now,1);
    Secure := False;
    Name := 'FSessionID';
    Value := SessionObject.id;
  end;
 
Regards,
 
Matt.
_______________________________________________
Delphi mailing list
[email protected]
http://ns3.123.co.nz/mailman/listinfo/delphi

Reply via email to