Reputation: 12721
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:
App_Data
folder)Public
folder, give the user the link to download this file.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
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:
Upvotes: 2
Reputation: 12721
Very interesting links from Simon Halsey and JohnoGldsmith.
I found Visio Guy which is very interesting, too.
Upvotes: 0
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