How to use lightweight session in ColdFusion?

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default How to use lightweight session in ColdFusion?

    How to use lightweight session in ColdFusion?
    Michael Mekhanoshin Guest

  2. Similar Questions and Discussions

    1. ColdFusion session variable
      I am looking for a way use my ColdFusion session variables in an application I have coded. My session variables can contain both simple and complex...
    2. Pass session info between Coldfusion and ASP
      I have one website that is Coldfusion and one that is ASP. At this time, it is not feasible to rewrite the ASP page to CF. The Coldfusion page...
    3. Lightweight Languages 2003 Call for Presentations
      Lightweight Languages Worshop 2003 (LL3) ---------------------------------- Saturday, November 8, 2003, MIT, Cambridge, MA...
    4. When I spawn a lightweight process in ASP.NET Does it time out??
      Hello When I spawn a lightweight process on a new Thread and return immediately to the Client what happens if the lightweight process takes an...
    5. Good quality lightweight tripod for tourist backpacking?
      Check out the travel tripod web site: "http://www.traveltripod.com" I got the Velbon Maxi 343E ($70 in the U.S.)...
  3. #2

    Default Re: How to use lightweight session in ColdFusion?

    Michael Mekhanoshin wrote:
    > How to use lightweight session in ColdFusion?
    No clue what you mean by "lightweight session"--can you provide more
    details?

    Matt

    --
    Matt Woodward
    [email]mpwoodward@gmail.com[/email]
    Team Macromedia - ColdFusion
    mpwoodward *TMM* Guest

  4. #3

    Default Re: How to use lightweight session in ColdFusion?

    This is what I mean. Text from Oracle book "JDBC Developer?s Guide and
    Reference" follows.

    Middle-tier authentication allows one JDBC connection (session) to act as
    proxy for
    other JDBC connections. A proxy session could be required for one of the
    following:if the middle tier does not know the password of the proxy user. This
    is done by

    first authenticating using:

    alter user jeff grant connect through scott with roles role1, role2;
    ... and so on


    Michael Mekhanoshin Guest

  5. #4

    Default Re: How to use lightweight session in ColdFusion?

    Michael Mekhanoshin wrote:
    > This is what I mean. Text from Oracle book "JDBC Developer?s Guide and
    > Reference" follows.
    >
    > Middle-tier authentication allows one JDBC connection (session) to act as
    > proxy for
    > other JDBC connections. A proxy session could be required for one of the
    > following:if the middle tier does not know the password of the proxy user. This
    > is done by
    >
    > first authenticating using:
    >
    > alter user jeff grant connect through scott with roles role1, role2;
    > ... and so on
    General caveat: I know next to nothing about how Oracle deals with
    things at this level, so take my response for what it's worth.

    On the ColdFusion side of the house, it can use any JDBC driver. As for
    the authentication stuff you're talking about, the issue there is that
    on the CF side you create a datasource in the CF administrator and that
    has a single user name and password. CF then handles the database
    connection pooling, but AFAIK it would all be based on that single user
    name and password. The proxy situation you're describing ... not sure
    how to handle that given the way CF does things. If I'm understanding
    what you're describing I'm not sure you can handle it on the CF side.

    Matt

    --
    Matt Woodward
    [email]mpwoodward@gmail.com[/email]
    Team Macromedia - ColdFusion
    mpwoodward *TMM* 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