Book a Demo

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Tadd Stuart

Pages: [1]
1
General Board / Re: File already in use
« on: April 01, 2007, 04:41:27 am »
Yup that was it. The developer had entered the wrong key and it put EA in Developer Edition. Once he entered the correct Corporate Key everything went as expected.

Thanks

2
General Board / File already in use
« on: March 30, 2007, 07:22:28 am »
We have a Project File on a shared network drive/folder and I am getting an error stating the "file already in use". The documentation states that a Project can be shared if on a network drive yet why will it only allow one in at a time?  :-/

3
General Board / Visual Source Safe
« on: March 27, 2004, 04:44:26 pm »
EA 4.0 assumes Visual Source Safe is installed locally. It would be nice if you could enter a URI for a network located VSS database such as \\[servername]\[sharedfoldername]. I tried mapping a drive to this location as well but the next display did NOT display the VSS databases located on the server. If I missed something, please advise.

Tadd Stuart
Portland Maine

5
Automation Interface, Add-Ins and Tools / Re: Tagged value note
« on: August 06, 2004, 11:06:57 am »
This may help. I needed to extract the TaggedValues out of a Data Model and the associated Notes so I created an XSLT stylesheet to go against the Exported XML from EA.
---- Start ---

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:UML="omg.org/UML1.3" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     <xsl:template match="/">
           <HTML>
           <HEAD>
           <link href="style.css" rel="stylesheet" type="text/css">
           </HEAD><BODY>
           <H1>Data Model</H1>
     
<TABLE border="1" width="100%">
     <xsl:for-each select="XMI/XMI.content/UML:Model/UML:Namespace.ownedElement/UML:Package/UML:Namespace.ownedElement">
    <TR>
           <TD valign="top"><xsl:value-of select="@name"/></TD>
           <TD valign="top"><xsl:value-of select="@description"/>
                 <TABLE border="1" width="100%">
                 <xsl:for-each select="UML:Class">
                       <TR name="Table" valign="top">
                             <TD><xsl:value-of select="@name"/></TD>
                             <TD>
                            <TABLE border="1" width="100%">
                                   <xsl:for-each select="UML:Classifier.feature/UML:Attribute">
                                <TR name="Element">
                                    <TD valign="top"><xsl:value-of select="@name"/></TD>
                                    <TD>
                                              <TABLE border="1" width="100%">
                                                     <xsl:for-each select="UML:ModelElement.taggedValue/UML:TaggedValue">
                                                      <xsl:choose>
                                                            <xsl:when test="@tag = 'Datafield'">
                                                  <TR name="Element">
                                                      <TD><xsl:value-of select="@value"/></TD>
                                                      <TD><xsl:value-of select="XMI.extension/UML:Comment/@name"/></TD>
                                                  </TR>
                                                      </xsl:when>
                                                    </xsl:choose>
                                                     </xsl:for-each>
                                              </TABLE>
                                    </TD>
                                </TR>
                                   </xsl:for-each>
                            </TABLE>
                             </TD>
                       </TR>      
                   </xsl:for-each>
                   </TABLE>
       </TD>
    </TR>
      </xsl:for-each>
</TABLE>
      
           </BODY>       
           </HTML>            
     </xsl:template>
</xsl:stylesheet>

---- End ----

Pages: [1]