Click here to Skip to main content
Licence CPOL
First Posted 15 Sep 2008
Views 101,134
Downloads 5,285
Bookmarked 253 times

XML Visualizer v.2

By | 30 Mar 2012 | Article
XML Visualizer v.2 improves the standard XML Visualizer in Visual Studio 2005, 2008, and 2010.

Introduction

XML Visualizer v.2 improves the standard XML Visualizer in Visual Studio 2005, 2008 and 2010.

  • "That's Hot! Every Developer should go and have a nicer Debugger Visualizer." - Channel9
  • "This is a real gem. I have been copying and pasting XML from the text visualizer to VSTO because the built-in XML visualizer pretty much sucks." - Asher Barak
  • "Developers can definitely be more productive if they use this tool." - .NET Developer
  • "For anyone who works a lot with XML, this extension is an absolute must. Good job." - LieberLieber
  • "If you've ever needed to work with XML files in Windows, and can't afford XMLSpy, get this now. Even if you don't have Visual Studio, the standalone app is worth its weight in bits." - SWiK Review

XML Visualizer v.2 is a free debug visualizer for Visual Studio 2005, 2008 and 2010. It uses Internet Explorer as the XML rendering engine and features many improvements over the standard XML Visualizer:

  • Execution of XPath queries and use of XPath functions
  • Create, edit and apply XSL transformations
  • Editor with both XML and XSLT debugging capabilities
  • Inject XML back into the running application
  • Validate XML and XSL against XSD
  • Search functionality

XML Visualizer v.2 works in all editions of Visual Studio 2005, 2008 and 2010 including Express Editions.

XML Visualizer v.2 is also available as a standalone application and as a User Control.

See Channel9 video review here.

See .NET Developer review here.

XMLVisualizer/pic2.gif

XMLVisualizer/pic3.gif

XMLVisualizer/pic4.gif

XMLVisualizer/pic5.gif

XMLVisualizer/pic6.gif

Visual Studio Plugin Installation

Only the compiled DLL, XmlVisualizer.dll, is required to run and use XML Visualizer v.2.

Place XmlVisualizer.dll in:

  • My Documents\Visual Studio 2010\Visualizers (for Visual Studio 2010)
  • My Documents\Visual Studio 2008\Visualizers (for Visual Studio 2008)
  • My Documents\Visual Studio 2005\Visualizers (for Visual Studio 2005)
  • If the Visualizers directory doesn't exist, then create it manually.

    If you want to use the visualizer for remote debugging, copy XmlVisualizer.dll to the same path on the remote computer.

    If Visual Studio is open, then restart Visual Studio.

    Source Code

    The Source Code includes the following projects:

    1. Visualizer
    2. DebugVisualizer
    3. TestDebugVisualizer
    4. StandAloneVisualizer
    5. TestStandAloneVisualizer

    Visualizer contains the primary Visualizer User Control and a form hosting the Visualizer User Control. The User Control contains the core functionality of XML Visualizer v.2.

    DebugVisualizer is used to bind the Visual Studio debugger to the Visualizer.

    TestDebugVisualizer is used to test the XML Visualizer v.2.

    StandAloneVisualizer is the standalone version of XML Visualizer v.2.

    TestStandAloneVisualizer is used to test the standalone version of XML Visualizer v.2.

    Compiled assemblies will be placed in a "runtime" folder for the DebugVisualizer and the StandAloneVisualizer projects.

    The Source Code is in C# and is available for Visual Studio 2008 and Visual Studio 2010.

    To build the DebugVisualizer and the StandAloneVisualizer projects, it requires ILMerge (not included) in XML Visualizer v.2 Source Code. Download ILMerge from here. Place ILMerge.exe in the same directory as XmlVisualizer.sln.

    Note: Icons used in the application are FamFamFam Silk Icons from here.

    Standalone

    Standalone version of XML Visualizer v.2 can be used without Visual Studio.

    User Control

    By adding the XmlVisualizer.dll to the Visual Studio Toolbox, the Visualizer can be used as a User Control and thereby making all the features of XML Visualizer v.2 available in your application.

    Please note that if you add the XmlVisualizer.dll as a User Control to the Visual Studio Toolbox, then the SharpDevelop TextEditor User Control will also be added to the toolbox.

    Troubleshooting

    Troubleshooting for the following error:

    Error: System.InvalidCastException: 
    Unable to cast object of type 'XmlVisualizer.Visualizer' 
    to type 'Microsoft.VisualStudio.DebuggerVisualizers.DialogDebuggerVisualizer'. 
    at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.ManagedShim.
    DelegatedHost.CreateViewer(IntPtr hwnd, HostServicesHelper hsh, SafeProxyWrapper proxy)

    If you have both Visual Studio 2005 and Visual Studio 2008 installed, there can be a conflict between Microsoft.VisualStudio.DebuggerVisualizers.dll version 8.0.0.0 (used by Visual Studio 2005) and Microsoft.VisualStudio.DebuggerVisualizers.dll version 9.0.0.0 (used by Visual Studio 2008).

    Microsoft.VisualStudio.DebuggerVisualizers.dll version 9.0.0.0 replaces all functionality of version 8.0.0.0 and version 9.0.0.0 is also used by newer versions of Visual Studio 2005 (i.e. Visual Studio 2005 Express Editions).

    To use Microsoft.VisualStudio.DebuggerVisualizers.dll version 9.0.0.0 and get support for XML Visualizer v.2, you'll have to do the following:

    1. Make sure that you have the .NET Framework Configuration Tool (mscorcfg.msc) installed. It's installed with the .NET Framework 2.0 SDK.
    2. Run "C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin\mscorcfg.msc".
    3. Choose ".NET Framework 2.0 Configuration\My Computer\Configured Assemblies" and then "Configure an Assembly".
    4. Choose "Choose Assembly..." and select "Microsoft.VisualStudio.DebuggerVisualizers". It's important that it's version 8.0.0.0.
    5. Press "Finish".
    6. Choose the "Binding Policy"-tab and for "Requested Version" enter "8.0.0.0", and for "New Version" enter "9.0.0.0".
    7. Press "OK" and restart Visual Studio.

    License

    This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

    About the Author

    Lars Hove Christiansen



    Denmark Denmark

    Member



    Sign Up to vote   Poor Excellent
    Add a reason or comment to your vote: x
    Votes of 3 or less require a comment

    Comments and Discussions

     
    You must Sign In to use this message board. (secure sign-in)
     
    Search this forum  
     FAQ
        Noise  Layout  Per page   
      Refresh
    GeneralMy vote of 5 PinmemberOrcun Iyigun12:57 30 Mar '12  
    SuggestionVS 2010 Extension Manager? PinmemberMarco Schmittnägel21:16 23 Feb '12  
    GeneralGreat! PinmemberMr. Mox23:41 21 Feb '12  
    QuestionNice job PinmemberMike Hankey4:39 18 Feb '12  
    GeneralMy vote of 5 PinmemberDean Oliver8:44 16 Feb '12  
    QuestionVisualizer tries to open file with my default xml editor PinmemberDaniel C.14:30 10 Jul '11  
    GeneralProblem wih VS2010 Pinmemberfatih_senel4:22 10 Feb '11  
    GeneralRe: Problem wih VS2010 PinmemberLars Hove Christiansen3:26 28 Feb '11  
    GeneralSweet PinmvpSacha Barber2:59 19 Jan '11  
    GeneralMy vote of 3 Pinmembermungflesh5:19 13 Dec '10  
    GeneralRe: My vote of 3 PinmvpSacha Barber2:59 19 Jan '11  
    GeneralWould be cool to be able to use a url for the xml Pinmemberjonaseriksson0:43 29 Sep '10  
    QuestionAlways the default visualizer! PinmemberAndromeda Shun23:08 15 Sep '09  
    AnswerRe: Always the default visualizer! PinmemberLars Hove Christiansen0:00 16 Sep '09  
    GeneralRe: Always the default visualizer! PinmemberAndromeda Shun22:04 16 Sep '09  
    GeneralRe: Always the default visualizer! PinmemberLars Hove Christiansen22:30 16 Sep '09  
    GeneralDog slow with large files PinmemberBuckSaw7:20 23 Dec '08  
    GeneralRe: Dog slow with large files Pinmemberzippy19814:25 27 Dec '08  
    GeneralRe: Dog slow with large files PinmemberLars Hove Christiansen21:46 28 Dec '08  
    GeneralVS 2005 Express problem [modified] PinmemberArchElf2:39 16 Dec '08  
    GeneralRe: VS 2005 Express problem PinmemberLars Hove Christiansen9:21 16 Dec '08  
    GeneralRe: VS 2005 Express problem PinmemberArchElf21:06 16 Dec '08  
    GeneralRe: VS 2005 Express problem PinmemberLars Hove Christiansen21:42 16 Dec '08  
    GeneralRe: VS 2005 Express problem PinmemberLars Hove Christiansen22:08 28 Dec '08  
    GeneralRe: VS 2005 Express problem PinmemberLars Hove Christiansen21:03 4 Jan '09  

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

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

    Permalink | Advertise | Privacy | Mobile
    Web01 | 2.5.120517.1 | Last Updated 30 Mar 2012
    Article Copyright 2008 by Lars Hove Christiansen
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid