Loggin all http Request

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • clécio

    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 ASYNCBEGINREQUE ST , but it doesn´t work!

    Any example will be welcome!

    tks

    Clécio


  • Luc Kumps

    #2
    Re: Loggin all http Request


    "clécio" <clmv@ig.com.br > wrote in message
    news:O10$OyAQDH A.1720@TK2MSFTN GP11.phx.gbl...[color=blue]
    > 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 ASYNCBEGINREQUE ST , but it doesn´t work!
    >
    > Any example will be welcome![/color]

    Would you like more tracing than what trace.axd provides?

    Luc K


    Comment

    • clécio

      #3
      Re: Loggin all http Request


      "Luc Kumps" <NOkumpsSPAM@pa ndora.be> escreveu na mensagem
      news:WXlMa.1521 $7h.97@afrodite .telenet-ops.be...[color=blue]
      >
      > "clécio" <clmv@ig.com.br > wrote in message
      > news:O10$OyAQDH A.1720@TK2MSFTN GP11.phx.gbl...[color=green]
      > > 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 ASYNCBEGINREQUE ST , but it doesn´t work!
      > >
      > > Any example will be welcome![/color]
      >
      > Would you like more tracing than what trace.axd provides?
      >
      > Luc K
      >[/color]
      Yeah, i want to log all request into database!

      tks


      Comment

      • Luc Kumps

        #4
        Re: Loggin all http Request


        "clécio" <clmv@ig.com.br > wrote in message
        news:%23a083SJQ DHA.1748@TK2MSF TNGP11.phx.gbl. ..[color=blue]
        >
        > "Luc Kumps" <NOkumpsSPAM@pa ndora.be> escreveu na mensagem
        > news:WXlMa.1521 $7h.97@afrodite .telenet-ops.be...[color=green]
        > >
        > > "clécio" <clmv@ig.com.br > wrote in message
        > > news:O10$OyAQDH A.1720@TK2MSFTN GP11.phx.gbl...[color=darkred]
        > > > 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 ASYNCBEGINREQUE ST , but it doesn´t work!
        > > >
        > > > Any example will be welcome![/color]
        > >
        > > Would you like more tracing than what trace.axd provides?
        > >
        > > Luc K
        > >[/color]
        > Yeah, i want to log all request into database![/color]

        You could add your tracing code to the Application_Beg inRequest 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


        Comment

        Working...