Emanuele Greco
Emanuele Greco

Reputation: 12721

Generate Visio compatible XML (VDX) with ASP.NET

I need to create a web page (.aspx) that creates a Visio compatible XML (VDX) filed, based on my application data, and sends it to the user.

I suppose to:

I can't install Visio on webserver, so i must work on XML and can't use Visio Primary Interop Assembly.

Googling, I can't find

can someone help?

Upvotes: 3

Views: 3929

Answers (3)

JohnGoldsmith
JohnGoldsmith

Reputation: 2698

also checkout Saveen Reddy's VisioAutomation project on GitHub, which allows you to generate VDX files without requiring Visio:

https://github.com/saveenr/VisioAutomation

Update - another resource is Visio MVP, Al Edlund's 'xmlVisio' project, also on CodePlex:

http://xmlvisio.codeplex.com/

Upvotes: 2

Emanuele Greco
Emanuele Greco

Reputation: 12721

Very interesting links from Simon Halsey and JohnoGldsmith.
I found Visio Guy which is very interesting, too.

Upvotes: 0

Simon Halsey
Simon Halsey

Reputation: 5480

I think this is what you've been looking for.

http://msdn.microsoft.com/en-us/library/ff768724.aspx

As it's standard XML you can use the classes in System.Xml to modify the XML you load from the template. You should have no need to use Visio Automation, therefore no need to install Visio on the webserver.

Upvotes: 1

Related Questions