background preloader

.NET

Facebook Twitter

Tests

Oracle. Powershell. SQL Server. Wiki. MSDN: Microsoft Development, MSDN Subscriptions, Resources, and. Service Trace Viewer Tool (SvcTraceViewer.exe) Windows Communication Foundation (WCF) Service Trace Viewer Tool helps you analyze diagnostic traces that are generated by WCF. Service Trace Viewer provides a way to easily merge, view, and filter trace messages in the log so that you can diagnose, repair, and verify WCF service issues. Configuring Tracing Diagnostic traces provide you with information that shows what is happening throughout your application's operation. As the name implies, you can follow operations from their source to destination and through intermediate points as well. You can configure tracing using the application's configuration file—either Web.config for Web-hosted applications, or Appname.config for self-hosted applications.

In this example, the name and type of the trace listener is specified. The example creates a file in the root directory called SdrConfigExample.e2e. The tracing level is controlled by the switchValue setting. Using the Service Trace Viewer Tool Opening and Viewing WCF Trace Files Note Caution. Conseils pour l'utilisation de Silverlight 2 avec les services d. Data Points Using Silverlight 2 With ADO.NET Data Services John Papa ADO.NET Data Services makes it tremendously easy to expose data and allow updates over HTTP using its RESTful (Representational State Transfer) abilities. Your Silverlight applications can take advantage of ADO.NET Data Services to send and receive data using the unique URIs that map to entities.

You can also use LINQ queries in the Silverlight client to interact with the entities on the server by using the ADO.NET Data Services Silverlight client library. ADO.NET Data Services and Silverlight make a powerful combination, but to make them work well together you need a good understanding of a few aspects that may not be immediately obvious. So, here I'll address some steps you can take to ensure a more successful experience when building applications with ADO.NET Data Services and Silverlight. Cross-Domain Communications ADO.NET Data Services does not currently support cross-domain communications. Retrieving Data Using LINQ. Drag Drop using Silverlight. LDAP Active Directory User mapping. The following tables identify the property pages supplied by the Active Directory Users and Computers snap-in. Each table identifies the user interface elements of the property page and the attribute associated with that user interface element.

Because the property pages that are displayed by the Active Directory Users and Computers snap-in can be extended, it is not possible to provide this data for all of the pages displayed in a property sheet. General Property Page The following table lists UI labels of the General property page. Account Property Page The following table lists the UI labels of the Account property page. Address Property Page The following table lists the UI labels of the Address property page. Member Of Property Page The following table lists UI labels of the Member Of property page. Organization Property Page The following table shows the UI labels of the Organization property page.

Profile Property Page The following table lists the UI labels of the Profile property page.

Silverlight

Communautés. Inversion of Control Containers and the Dependency Injection pattern. In the Java community there's been a rush of lightweight containers that help to assemble components from different projects into a cohesive application. Underlying these containers is a common pattern to how they perform the wiring, a concept they refer under the very generic name of "Inversion of Control". In this article I dig into how this pattern works, under the more specific name of "Dependency Injection", and contrast it with the Service Locator alternative. The choice between them is less important than the principle of separating configuration from use.

One of the entertaining things about the enterprise Java world is the huge amount of activity in building alternatives to the mainstream J2EE technologies, much of it happening in open source. A lot of this is a reaction to the heavyweight complexity in the mainstream J2EE world, but much of it is also exploring alternatives and coming up with creative ideas. Components and Services A Naive Example class MovieLister...