Search results for query "monitor" (17):
.NET Cross AppDomain Communication
This article demonstrates a quick and easy-to-use implementation for cross-AppDomain communication in .NET by leveraging Windows native messaging. The XDMessaging library is based on code developed to aid rapid development for a recent Vista project that required a lot of cross-AppDomain communication in a locked-down environment. It proved to be extremely useful in a number of scenarios where .NET Remoting would have been impractical, if not impossible, and actually solved more problems than I could have imagined due to its simplicity. The library is intended to send messages between multiple applications in a same-box scenario. For example, a task-tray application might want to communicate with or
monitor a separate desktop application. The library does not implement cross-domain communication across a network, for which case .NET Remoting is sufficient.
Net Spy: Your Network Spy With Logging System Using C#
This is a windows based tool to continuous
monitor your shared folder in network and generated a log for different folder.
Deadlock monitor
Q: I'm using locks in my application to synchronize work on a bunch of threads. Unfortunately, I'm doing something incorrectly and my threads seem to just stop sometimes. I think I'm running into deadlocks, but I'm not sure how to find them. Is there any way I can do so programmatically? I'd like an exception to be thrown when a deadlock is encountered.
A: First, it's important to understand what a deadlock among threads is and the conditions that lead to one. Threads deadlock when waiting on each other to release some resources, but by performing that blocking wait, they're not releasing the resources the other threads need in order to unblock. The threads can't make any progress until the resources are released, but because they're not making progress, the resources will never be released, the threads are locked up, and thus "deadlock"...
Simple Ping Utility with GUI
This article demonstrates usage of the Ping class located in the System.Net.NetworkInformation namespace. It can help network administrators or others who need to
monitor their servers and connections.
NDIS MONITOR .NET v1.00
NDIS
Monitor allows to catch and log the exchange of packet data between NDIS miniport drivers and network protocol modules that occurs in kernel space.
Health Monitoring in ASP.NET 2.0: Notifications via Email
The Health Monitoring system in ASP.NET 2.0 is designed to monitor the
health of a running ASP.NET application in a production environment. It works by recording event information to a specified
log source. The .NET 2.0 Framework includes a variety of built-in events that can be used by the Health
Monitoring system, including events for monitoring application re-starts and stops, unhandled exceptions, and failed
authentication attempts, among others. The .NET Framework also include support for logging these events to the Windows event
log, to a Microsoft SQL Server database, via WMI,
in an email, and to the ASP.NET page tracing system.
In this article we will continue our exploration of the built-in events and log sources. In particular, we will look at the
WebFailureAuditEvent event, which is raised when there is a security audit failure. We will also look at the SimpleMailWebEventProvider
event provider, which, as its name implies, sends event information via email.
Monitor Your Web Cam from a Remote Computer
We've offered a few solutions for working with web cams within .NET to create fun and intriguing
monitoring applications. In this article, we extend those ideas so that web cam images can be shared with multiple clients over the Web.
SlickEdit® Gadgets
SlickEdit has released SlickEdit® Gadgets, a collection of free utilities for the Microsoft® Visual Studio® 2005 development environment.
SlickEdit Gadgets is an assortment of useful utilities to help programmers
monitor, explore, and inspect the contents of their code.
SlickEdit Gadgets include:
* Editor Gadgets: Four utilities that add visual pizzazz to your editor, such as background images and wallpaper.
* Command Spy:
Monitors command execution and allows you to see exactly what commands you've run, how many times you've run them and what key bindings are used to invoke those commands.
* File Explorer: Provides an easy way to open solutions, projects, or single files in Visual Studio.
* Data Object Analyzer: Inspects the contents of any clipboard operation, or drag-and-drop operation, from any other application.
* SLOC Report: Provides a graphical report of the total lines of code in a file, project, or solution.
Windows Mobile Network Analyzer Power Toy
Network Analyzer for Windows Mobile runs network utilities, for example ping and ipconfig, on a Windows Mobile powered device. Network Analyzer for Windows Mobile facilitates the troubleshooting of network connectivity issues. You can extend the harness. You can add user-defined tests (DLLs) to the list of tests to be executed. An xml input file defines the list of tests to execute. You can use Network Analyzer to send information about network traffic to a .cap file. You can then view the .cap file with the Network
Monitor tool or the Ethereal tool.
Monitor .NET Code Quality with FxCop and Custom Rules
You no longer have to rely solely on experience and code reviews to find code problems; FxCop can find many problems for you. It even lets you create and enforce custom rules that apply specifically to your organization's code.