פיתוח תוכנה ובניית אתרים תוכנה לעסקים






פיתוח תוכנה ובניית אתרי אינטרנט
תוכנות לעסקים פיתוח תוכנה ובניית אתרים
התחברות לקוחות
כניסת לקוחות

 
 
כניסת לקוחות

  שכחת את הסיסמה?
תוכנות לדוגמא



 
חברת PC GROUP מתמחה במתן פתרונות מיחשוב מתקדמים לעסקים ולפרטיים. פיתוח תוכנות תפורות ומותאמות לעסקים שונים. בניית אתרי תדמית, אתרי מכירות, אתרים פנימיים לניהול עסק ותחזוקת מערכות מחשבים בעסק. אנו מתמסרים ללקוחותינו ומשתדלים בכל כוחנו לספק את המוצר הטוב ביותר במחירים הוגנים.
יצירת קשר מידע על תוכנה 052-663-5054
PC GROUP
  ניתן ליצור קשר בטלפון בין השעות 19:00 - 8:00
מעבר לשעות הנ"ל ניתן ליצור קשר דרך האתר

  טופס יצירת קשר dot   כתובת מייל dot   קבל הצעת מחיר dot
מחשבמידע על תוכנה

Web.config settings to make a wcf trace
 
an example to a web.config settings to make a working wcf trace. (Just make sure that IIS or whoever runs the application has permissions to write to the relevant path (in this example 'd:\log\mywcfmessage.svclog')

<system.diagnostics>
    <sources>
      
      <source name="System.ServiceModel" switchValue="All">
        <listeners>
          <add name="messages"
          type="System.Diagnostics.XmlWriterTraceListener"
          initializeData="d:\log\mywcfmessage.svclog" />
          
        </listeners>
        
      </source>


    </sources>
    <trace autoflush = "true" />

  </system.diagnostics> 



<system.serviceModel>
    <diagnostics>
      <messageLogging
              logEntireMessage="true"
              logMalformedMessages="true"
              logMessagesAtServiceLevel="true"
              logMessagesAtTransportLevel="true"
              maxMessagesToLog="3000"
              maxSizeOfMessageToLog="2000"/>
    </diagnostics>
</system.serviceModel>



Name: Shay
Comment: also make sure folder actually exists

Name: Shay
Comment: UPDATE: If entering relative path in initializeData the file will be created relative to the web.config file (in the root folder), you must grant permission to IIS APPPOOL\YourApplicationPoolIdentity to write and modify that folder (or whatever folder you choose in  initializeData).
Simplified and tested example:

<system.diagnostics>
    <sources>
      <source name="System.ServiceModel"
              switchValue="Error, Warning"
              propagateActivity="true" >
        <listeners>
             <add name="xml"/>
        </listeners>
      </source>
      <source name="System.ServiceModel.MessageLogging">
        <listeners>
            <add name="xml"/>
        </listeners>
      </source>
      <source name="myUserTraceSource"
              switchValue="Error, Warning">
        <listeners>
            <add name="xml"/>
        </listeners>
      </source>
    </sources>
    <sharedListeners>
        <add name="xml"
             type="System.Diagnostics.XmlWriterTraceListener"
             initializeData="logs\Error.svclog" />
    </sharedListeners>
  </system.diagnostics>


Post a comment
Your name:

Your comment:


 

מידע על תוכנה
מידע על תוכנה
בית תוכנה לעסקים ולפרטיים