IIS log failed to write entry

Ask a Question related to ASP, Design and Development.

  1. #1

    Default IIS log failed to write entry

    This comes randomly once in a blue moon on the browser
    screen. Any clues on how to resolve this.


    Warning: IIS log failed to write entry,
    File /WebCollections/global.asa
    Line 35 Arguments are of the wrong type, are out of
    acceptable range, or
    are in conflict with one another.. .
    For additional information specific to this message please
    visit the
    Microsoft Online Support site located at:
    [url]http://www.microsoft.com/contentredirect.asp[/url].

    Vinod Pillai Guest

  2. Similar Questions and Discussions

    1. #19022 [Com]: PHP Warning: Failed to write session data (files)
      ID: 19022 Comment by: alexbodn at 012 dot net dot il Reported By: phpbugs at mx4k dot com Status: No Feedback...
    2. delayed write failed?
      oooh I could cry. I just lost an entire page of work. There is an error that keeps popping up that says "windows was unable to save all data for...
    3. Any ideas on how to confirm data entry of an item post entry?
      Access 97 is being used. Sorry for the vague subject. The database is a frontend/backend if that makes a difference. There are 3 tables,...
    4. #21503 [Opn->Fbk]: Failed to write session data (Files).
      ID: 21503 Updated by: sniper@php.net Reported By: ccollins at totsp dot com -Status: Open +Status: ...
    5. Getting "{Delayed Write Failed}" messages
      I have several rendering machines running XP Pro connected to a Server Running XP Server 2003 - I am getting the message : "{Delayed Write Failed}...
  3. #2

    Default Re: IIS log failed to write entry

    What is on line 35 of global.asa?

    Cheers
    Ken

    "Vinod Pillai" <vinod.pillai@indussoft.com> wrote in message
    news:126101c372c2$48d61f40$a001280a@phx.gbl...
    : This comes randomly once in a blue moon on the browser
    : screen. Any clues on how to resolve this.
    :
    :
    : Warning: IIS log failed to write entry,
    : File /WebCollections/global.asa
    : Line 35 Arguments are of the wrong type, are out of
    : acceptable range, or
    : are in conflict with one another.. .
    : For additional information specific to this message please
    : visit the
    : Microsoft Online Support site located at:
    : [url]http://www.microsoft.com/contentredirect.asp[/url].
    :


    Ken Schaefer Guest

  4. #3

    Default Re: IIS log failed to write entry

    The error comes only once or twice in one to two weeks.

    The error comes on the line
    com.Parameters.Append com.CreateParameter("f1", 8 , adParamInput)

    from the function below in global.asa file
    Sub Session_OnEnd
    set con = server.CreateObject("ADODB.Connection")
    con.Open session("sConnectstring")
    con.Execute "update th set caccountdisabledyn = 'N' where szuserid =
    '"&session("userid")&"'"
    'Added By
    set com = Server.CreateObject("adodb.command")
    com.ActiveConnection = con
    com.CommandType = 4 'adcmdstoredproc
    com.CommandText = "Upd_LOG"

    com.Parameters.Append com.CreateParameter("f1", 8 , adParamInput)
    com.Parameters.Append com.CreateParameter("f2", 8, adParamInput)
    com.Parameters.Append com.CreateParameter("f3", 8, adParamInput)
    com.Parameters.Append com.CreateParameter("f4", 8, adParamInput)

    com.Execute

    con.CommitTrans

    con.Close
    set com = nothing
    set con = nothing

    session.Abandon

    End Sub




    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Vinod Pillai 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