Error - system registry

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

  1. #1

    Default Error - system registry

    Hi All,

    I have a problem with a hosted site.

    There is a search facility, the result set can be very large. So I created a
    sp to only return 1000 records at a time.
    There is also a next/previous naviagation to traverse through the 1000 records.

    Now I wanted to store the query result set in a session variable, to limit the
    numbr of db hits.
    When I include the session management in the cfapplication tag, the following
    error occurs

    Error Occurred While Processing Request
    Error Diagnostic Information
    Error attempting to get the client (Client ID = '283944').

    A problem was encountered trying to access the system registry. Error number
    1450 occurred.

    Now I know what the error is and how to fix it, but the host has said they
    will not flush the registry.

    I know I could use cookies, but what if the user has cookies turned off ??
    I know I could also save to a db, but this then goes against the whole point
    of the session variable.

    So does anyone have another option ??

    Any thoughts or ideas ??

    Ken


    The ScareCrow Guest

  2. Similar Questions and Discussions

    1. Clients registry error ?
      Good morning, Anyone has an idea about this error or a solution. Information - Unable to set value...
    2. Registry Error
      CF5 (Win 2K Adv) is serving up this error message: A problem was encountered trying to access the system registry. Error number 6 occurred. ...
    3. Error accessing the OLE registry.
      Hi all, Hopefully someone can shed some light on a radical error I am getting. I am using windows XP Corp Edition with IIS 5.1 as a dev...
    4. The type System.Web.UI.WebControls.TextBox in Assembly System.Web...error
      I've been getting this error every since I installed InstallSqlState to handle my viewState Sessions. it only happens on 1 section of my asp.net...
    5. access to system registry denied
      Hi, I have a problem with the method "EventLog.CreateEventSource" because I received one error message (access to system registry denied). I...
  3. #2

    Default Re: Error - system registry

    Hi Ken, Registry, DB, what's the difference? Stability, that's what. Are you
    actually using client variables in your application? Horror story: I wrote an
    app that created an index page of work orders from a database. I then wrote a
    simple view page that was the target of all the hrefs on the index page. Then
    I wrote a nifty crawl in Sharepoint, starting at the index page and going one
    level deep. The outcome was that all of the salient info in my work order
    database was now indexed and searchable through the Sharepoint interface
    (search box). This went on happily for a week, then I received the 1450.
    Multiple times. Brought the production CF server to its knees and we couldn't
    bring it up again. Why? I had client management turned on, with the default
    location (registry), and every iteration of the SharePoint crawler created a
    new entry in the registry. ~255K entries, if I'm not mistaken. Well, we
    rebuilt the box; I pointed the client variables at our SQL DB, and turned off
    client mgmt for those apps that don't need it. And, yes, there's a TechNote
    out there, STRONGLY recommending that you override the default setting and
    point your client variable storage at a DB. I second that.

    philh Guest

  4. #3

    Default Re: Error - system registry

    Thank's for the reply Phil.

    I checked the application.cfm page again and it appears that somehow I included

    clientmanagement="Yes"

    in it. I don't usually include this, so I have asked my client to upload the
    correction and see if it resolves the problem.

    Ken

    The ScareCrow 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