If you ever thought that PInvoke was a pain in .NET, don’t fret, Adam Nathan has a VS.NET addin that you can get from here after using which you wondered, how the heck did I live without this! He also has a PInvoke.NET wiki for you to use and of course contribute to.
If you rather get to it yourself, then there is an wsdl endpoint exposed and Stripe has written a version that is proxy friendly. If you happen to be a Delphi.NET (strange as that might be) kind of guy or gal, you can get the check out Shenoy’s implementation of this.
After installing the add-in you can right-click in the source code to see the following two menu items:
Clicking on the first item opens a dialog allowing you to enter the signature e.g.:
[Listening to: Home Again - Dirty Vegas - One (04:47)]

Other similar posts you might be interested to check out:
- November 13, 2006 -- DragMove (0)
Did you know there is a new method called DragMove which is part of the Window class and allows you to move the window using a mouse? I certainly did not - till now. This is part of .NET 3.0, specifically part of WPF and . Here is an example from the SDK:protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
{
base.OnMouseLeftButtonDown(e);
// Begin dragging the window
this.DragMove();
} ... - December 31, 2005 -- Exception Management in Threads (0)
Exception Management is a topic near and dear to me personally, primarily because of the lack of understanding of most developers (that I have come across). There is an interesting change in the .NET 2.0 CLR on how it manages unhandled exceptions in a thread. If you write multi-threaded apps then this is important for you to understand. If you don't write multi-threaded apps today, but I presume you would soon, then this is a good learning exercises.
In .NET 2.0 the CLR allows unhandled exceptio... - June 28, 2005 -- Profilers for the CLR (0)
Brad Adams lists out a few options for Profilers available in the CLR - some of these possibly are familiar to you - but its good to see them listed in one place. (got this via Jon Kale who was responding to something else)....
Tags: .ms.net