Session Variables over Different Domains

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Re: Session Variables over Different Domains

    Did you guys ever find an answer to this problem? I am having the same issue. It should be so simple, but not even passing the jsessionid to the url works! argh!
    MillerBoard315 Guest

  2. Similar Questions and Discussions

    1. #39833 [NEW]: Session variables overwritten by local variables (register_globals=off)
      From: sup1382 at accedo dot es Operating system: OpenBSD 3.9 PHP version: 5.2.0 PHP Bug Type: Session related Bug...
    2. #39447 [NEW]: Want to optionally handle apc_upload_progress variables using session variables
      From: krudtaa at yahoo dot com Operating system: All PHP version: 5.2.0 PHP Bug Type: Feature/Change Request Bug...
    3. CGI Variables across local domains
      The broad question: is there any way to use the CGI.auth_user CGI.auth_password variables across local hosts so that NTFS authentication is NOT...
    4. forms auth - session timeout - multi domains - POST values
      I have several questions. 1) Does forms authentication store and re-send data intended for the secured page via a post request during its...
    5. sharing session state across domains
      Hi, I have the same problem. Did you solve it? Lapsoft Rosario - Argentina *** Sent via Developersdex http://www.developersdex.com *** Don't...
  3. #2

    Default Re: Session Variables over Different Domains

    Perhaps I wrote a workaround to the problem.
    Whenever you need to change domains you temporarely copy the entire session
    into a structure inside the application scope, identified with a UUID. You then
    call the other domain passing the UUID either by form post or URL. In the
    application.cfm page you check for the keyword, take the UUID, copy the
    structure back from the application to the session, and clean up the
    application.
    Thus far it's working great. Works with any number of domains, ssl or non-ssl
    ....

    Try it out, and let me know if you need some code examples.

    Cheers



    RobGonda Guest

  4. #3

    Default Re: Session Variables over Different Domains

    Is there any way to set .NET Session variables with ColdFusion?
    bmwm3smg Guest

  5. #4

    Default Re: Session Variables over Different Domains

    Can Application scope variables be stored in a database table as well? or just Client scope variables only?
    DCS Admin Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139