Click here to Skip to main content
15,919,434 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: How to sort list view by clicking column header? Pin
beeritger27-Jan-11 14:10
beeritger27-Jan-11 14:10 
GeneralRe: How to sort list view by clicking column header? Pin
Tesic Goran27-Jan-11 21:19
professionalTesic Goran27-Jan-11 21:19 
Questionpdf to xaml wrapper Pin
BoySetsFire26-Jan-11 3:45
BoySetsFire26-Jan-11 3:45 
AnswerRe: pdf to xaml wrapper Pin
Jason McBurney27-Jan-11 7:32
Jason McBurney27-Jan-11 7:32 
QuestionSilverlight DataGrid throwing error Pin
Santhosh Sebastian Mattathil24-Jan-11 21:48
Santhosh Sebastian Mattathil24-Jan-11 21:48 
AnswerRe: Silverlight DataGrid throwing error Pin
Pete O'Hanlon24-Jan-11 21:55
mvePete O'Hanlon24-Jan-11 21:55 
GeneralRe: Silverlight DataGrid throwing error Pin
Santhosh Sebastian Mattathil24-Jan-11 22:01
Santhosh Sebastian Mattathil24-Jan-11 22:01 
GeneralRe: Silverlight DataGrid throwing error Pin
Pete O'Hanlon24-Jan-11 22:09
mvePete O'Hanlon24-Jan-11 22:09 
Ah yes. One of the more unhelpful messages. You'll need to use WCF tracing to identify what's really going on. You'll need to add the following to your config file:
<system.serviceModel>
  <diagnostics>
    <messageLogging logEntireMessage="true" logMalformedMessages="true" logMessagesAtServiceLevel="true" logMessagesAtTransportLevel="true" />
  </diagnostics>
  <serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
</system.serviceModel>
<system.diagnostics>
  <sources>
    <source name="System.ServiceModel" switchValue="Verbose, ActivityTracing">
      <listeners>
        <add type="System.Diagnostics.DefaultTraceListener" name="Default">
          <filter type="" />
        </add>
        <add type="System.Diagnostics.ConsoleTraceListener" name="console">
          <filter type="" />
        </add>
        <add name="ServiceModelTraceListener">
          <filter type="" />
        </add>
      </listeners>
    </source>
    <source name="System.ServiceModel.MessageLogging" switchValue="Verbose, ActivityTracing">
      <listeners>
        <add type="System.Diagnostics.DefaultTraceListener" name="Default">
          <filter type="" />
        </add>
        <add type="System.Diagnostics.ConsoleTraceListener" name="console">
          <filter type="" />
        </add>
        <add name="ServiceModelMessageLoggingListener">
          <filter type="" />
        </add>
      </listeners>
  </source>
</sources>
<sharedListeners>
  <add initializeData="C:\logging\wcftracesvc.log"
    type="System.Diagnostics.XmlWriterTraceListener, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
    name="ServiceModelTraceListener" traceOutputOptions="Timestamp">
    <filter type="" />
  </add>
  <add initializeData="C:\logging\wcfmsgsvc.log"
    type="System.Diagnostics.XmlWriterTraceListener, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
    name="ServiceModelMessageLoggingListener" traceOutputOptions="Timestamp">
    <filter type="" />
  </add>
</sharedListeners>
<trace autoflush="true" />
</system.diagnostics>

GeneralRe: Silverlight DataGrid throwing error Pin
Santhosh Sebastian Mattathil24-Jan-11 22:12
Santhosh Sebastian Mattathil24-Jan-11 22:12 
GeneralRe: Silverlight DataGrid throwing error Pin
Pete O'Hanlon24-Jan-11 23:46
mvePete O'Hanlon24-Jan-11 23:46 
AnswerRe: Silverlight DataGrid throwing error Pin
Abhinav S25-Jan-11 18:27
Abhinav S25-Jan-11 18:27 
AnswerRe: Silverlight DataGrid throwing error Pin
Ibrahim.Poonawala1-Feb-11 4:35
Ibrahim.Poonawala1-Feb-11 4:35 
GeneralRe: Silverlight DataGrid throwing error Pin
Pete O'Hanlon1-Feb-11 4:36
mvePete O'Hanlon1-Feb-11 4:36 
QuestionSilverlight with Ruby on Rails? An unholy union? Pin
RB@Emphasys23-Jan-11 20:18
RB@Emphasys23-Jan-11 20:18 
QuestionMVVM Model Sample [modified] Pin
Eric Goedhart22-Jan-11 4:05
professionalEric Goedhart22-Jan-11 4:05 
AnswerRe: MVVM Model Sample Pin
Abhinav S23-Jan-11 18:51
Abhinav S23-Jan-11 18:51 
QuestionAttempted to read or write protected memory. This is often an indication that other memory is corrupt. Pin
εїзεїзεїз21-Jan-11 20:21
εїзεїзεїз21-Jan-11 20:21 
AnswerRe: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. Pin
dasblinkenlight23-Jan-11 8:21
dasblinkenlight23-Jan-11 8:21 
QuestionRadioButton, GroupName, and Guid Pin
Frank W. Wu21-Jan-11 4:56
Frank W. Wu21-Jan-11 4:56 
QuestionIterate DataGrid in Silverlight web application. Pin
Sunil G 321-Jan-11 0:10
Sunil G 321-Jan-11 0:10 
AnswerRe: Iterate DataGrid in Silverlight web application. Pin
Pete O'Hanlon21-Jan-11 0:57
mvePete O'Hanlon21-Jan-11 0:57 
GeneralRe: Iterate DataGrid in Silverlight web application. Pin
Mycroft Holmes21-Jan-11 17:00
professionalMycroft Holmes21-Jan-11 17:00 
GeneralRe: Iterate DataGrid in Silverlight web application. Pin
Pete O'Hanlon22-Jan-11 9:16
mvePete O'Hanlon22-Jan-11 9:16 
AnswerRe: Iterate DataGrid in Silverlight web application. Pin
Mycroft Holmes21-Jan-11 17:01
professionalMycroft Holmes21-Jan-11 17:01 
QuestionAssign a context to a UI Element Pin
Adrian020-Jan-11 21:36
Adrian020-Jan-11 21:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.