Trace from a service running in web application

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • H Branyan

    Trace from a service running in web application

    In the Application_OnS tart event in global.asax, my code calls an AlertService which creates a System.Timers.T imer() object. So this service doesn't actually run in conjunction with a specific aspx page, apparently. When the timer's Elapsed event handler fires, it calls some other classes I have written. These classes output some Trace statements that you can view if an aspx page calls them, but I can't seem to figure out where the Trace statements go when my service calls the classes.

    Is there any way I can find the trace for this service?
    --
    [[((hillarie))]]

    To reply, remove ".SPAMBLOCK " from email address


  • Natty Gur

    #2
    Re: Trace from a service running in web application

    Hi,

    You can't use TraceContext from class that is not part of page request
    process since trace can be use from Context only. you can use diagnostic
    (namespace) trace class to write to variety of outputs.

    Natty Gur[MVP]
    Phone Numbers:
    Office: +972-(0)9-7740261
    Fax: +972-(0)9-7740261
    Mobile: +972-(0)58-888377


    *** Sent via Developersdex http://www.developersdex.com ***
    Don't just participate in USENET...get rewarded for it!

    Comment

    • H Branyan

      #3
      Re: Trace from a service running in web application

      Hi Natty - I have found some tutorials on the System.Diagnost ics namespace
      but I am unable to write to a log file. I posted a followup to my original
      post asking for more info on my problem. Thank you for your reply.

      --
      [[((hillarie))]]

      To reply, remove ".SPAMBLOCK " from email address



      "Natty Gur" <natty@dao2com. com> wrote in message
      news:eQQ#UuYmDH A.2500@TK2MSFTN GP10.phx.gbl...[color=blue]
      > Hi,
      >
      > You can't use TraceContext from class that is not part of page request
      > process since trace can be use from Context only. you can use diagnostic
      > (namespace) trace class to write to variety of outputs.
      >
      > Natty Gur[MVP]
      > Phone Numbers:
      > Office: +972-(0)9-7740261
      > Fax: +972-(0)9-7740261
      > Mobile: +972-(0)58-888377
      >
      >
      > *** Sent via Developersdex http://www.developersdex.com ***
      > Don't just participate in USENET...get rewarded for it![/color]


      Comment

      Working...