• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

xml to UMI format

 
Ranch Hand
Posts: 185
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How can we convert the xml to UML export format UMI?any ideas about UMI??
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Using XSL... Seriously, you've got to tell us what kind of XML we're talking about. If it's a proprietary schema, you'll have to write a proprietary stylesheet (or the same transformation logic in a language other than XML, if that's what you prefer). If your XML is an existing standard, you might get lucky and find a tool that does the conversion for you out-of-the-box.
 
vishwa venkat
Ranch Hand
Posts: 185
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a directory structure in xml.I want to convert into UMI format so that I can export it in UML modelling tools.How can I do this?
 
Lasse Koskela
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sounds like you need to do it yourself. You could use XSL transformation, write Java code to make the same transformation, or write <code in any other language> to make the same transformation.
Out of curiosity, why do you want a directory structure imported into a UML tool?
 
reply
    Bookmark Topic Watch Topic
  • New Topic