Loggin all http Request

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Re: Loggin all http Request


    "clécio" <clmv@ig.com.br> wrote in message
    news:O10$OyAQDHA.1720@TK2MSFTNGP11.phx.gbl...
    > hi folks!
    >
    > How can i log all request in my web application?
    > But i wanted something that not consume the time of the request (using
    > treads, for ex)!
    > I tried to use the ASYNCBEGINREQUEST , but it doesn´t work!
    >
    > Any example will be welcome!
    Would you like more tracing than what trace.axd provides?

    Luc K


    Luc Kumps Guest

  2. Similar Questions and Discussions

    1. Send Basic HTTP authentication credential in the first HTTP request
      Hello, How can I make the web service proxy class send basic authentication information in the HTTP header of the first request? My...
    2. HTTP Request
      Hey peoples, Just a quick one as i dont know where to start, i have a friends website that returns results and only results on request... so if i...
    3. Making HTTP request through php
      I want to make an http request through php. The requested code should output some HTML data. To add some mote details, I want to achieve the...
    4. HTTP 400 BAD REQUEST
      Hi, I am trying to upload a file to the Server using the System.net.Webclient and the uploadfile method. The Upload consistenly happens for file...
    5. HTTP::Request failed on HTTP/1.1 and Connection: Keep-Alive
      Hi Abigail, I know that the error comes from the Java program, the nullpointer error. But what it confused me is: if I'm using an Internet Explorer...
  3. #2

    Default Loggin all http Request

    hi folks!

    How can i log all request in my web application?
    But i wanted something that not consume the time of the request (using
    treads, for ex)!
    I tried to use the ASYNCBEGINREQUEST , but it doesn´t work!

    Any example will be welcome!

    tks

    Clécio


    clécio Guest

  4. #3

    Default Re: Loggin all http Request


    "Luc Kumps" <NOkumpsSPAM@pandora.be> escreveu na mensagem
    news:WXlMa.1521$7h.97@afrodite.telenet-ops.be...
    >
    > "clécio" <clmv@ig.com.br> wrote in message
    > news:O10$OyAQDHA.1720@TK2MSFTNGP11.phx.gbl...
    > > hi folks!
    > >
    > > How can i log all request in my web application?
    > > But i wanted something that not consume the time of the request (using
    > > treads, for ex)!
    > > I tried to use the ASYNCBEGINREQUEST , but it doesn´t work!
    > >
    > > Any example will be welcome!
    >
    > Would you like more tracing than what trace.axd provides?
    >
    > Luc K
    >
    Yeah, i want to log all request into database!

    tks


    clécio Guest

  5. #4

    Default Re: Loggin all http Request


    "clécio" <clmv@ig.com.br> wrote in message
    news:%23a083SJQDHA.1748@TK2MSFTNGP11.phx.gbl...
    >
    > "Luc Kumps" <NOkumpsSPAM@pandora.be> escreveu na mensagem
    > news:WXlMa.1521$7h.97@afrodite.telenet-ops.be...
    > >
    > > "clécio" <clmv@ig.com.br> wrote in message
    > > news:O10$OyAQDHA.1720@TK2MSFTNGP11.phx.gbl...
    > > > hi folks!
    > > >
    > > > How can i log all request in my web application?
    > > > But i wanted something that not consume the time of the request (using
    > > > treads, for ex)!
    > > > I tried to use the ASYNCBEGINREQUEST , but it doesn´t work!
    > > >
    > > > Any example will be welcome!
    > >
    > > Would you like more tracing than what trace.axd provides?
    > >
    > > Luc K
    > >
    > Yeah, i want to log all request into database!
    You could add your tracing code to the Application_BeginRequest handler in
    global.asax.cs
    Or is this what you were doing in the first place?
    In that case, perhaps you should show some source code and explain what
    "doesn't work" ?


    Luc


    Luc Kumps 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