document() function returns different values with xalan version 2.7.1. and 
2.6.0.
---------------------------------------------------------------------------------

                 Key: XALANJ-2474
                 URL: https://issues.apache.org/jira/browse/XALANJ-2474
             Project: XalanJ2
          Issue Type: Bug
      Security Level: No security risk; visible to anyone (Ordinary problems in 
Xalan projects.  Anybody can view the issue.)
    Affects Versions: 2.7.1
         Environment: Windows, using command line transform of xalan.
            Reporter: pavankumar
            Priority: Blocker


document() function returns duplicate and improper values with 2.7.1. where as 
the same code works with 2.6.0.

Info : document and evaluate functions are used in xslt and there were other 
slightly inconsistent behaviour also for 2 versions in terms of syntax and all.

Executed using xalan CLI
C:\>java org.apache.xalan.xslt.Process -IN "C:\input.xml" -XSL 
"C:\transform.xslt" -OUT new.html -PARAM global.result 
compoundPersistenceTest1.xml

Following are transform.xslt and input.xml
=============================================start transform.xslt 
=======================================================
<?xml version="1.0" encoding="UTF-8"?>
<!-- This stylesheet depends on evaluate() function as well as using java's 
HashMap. 
These are supposed to come with XSLT 2.0. Meanwhile Xalan and Saxon both 
support it though switching 
between any of them requires some manual editing of this document -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
xmlns:xlink="http://www.w3.org/1999/xlink"; 
xmlns:xalan="http://xml.apache.org/xalan"; 
xmlns:java="http://xml.apache.org/xslt/java"; extension-element-prefixes="java" 
exclude-result-prefixes="xalan xlink">

        <xsl:param name="global.result" select="'result.xml'"/>
        <xsl:variable name="global.translationTable" 
select="java:java.util.HashMap.new()"/>
        
        <xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
        
        <xsl:template match="/">
                <xsl:if test="not(function-available('xalan:evaluate'))">
                        <xsl:message terminate="yes">This stylesheet depends on 
an evaluate() function which is not available.</xsl:message>
                </xsl:if>
                <h1>Test report</h1>
                <table cellpadding="3" border="1" cellspacing="1">
                        <tr>
                                <th>Template data</th>
                                <th>Target data</th>
                        </tr>
                        <xsl:apply-templates select="*"/>
                </table>
        </xsl:template>
        
        <xsl:template match="*/*">
                <!-- first see if we already processed this node of the source 
xml -->
                <xsl:variable name="isAlreadyProcessed" 
select="java:containsKey($global.translationTable, string(generate-id(.)))"/>
                <xsl:if test="not($isAlreadyProcessed)">
                        <xsl:for-each select="*...@xlink:href]">
                                <xsl:variable name="rawHref" 
select="@xlink:href"/>
                                <!-- take the referenced node in the source 
document -->
                                <xsl:choose>
                                        <xsl:when test="$rawHref='nil'"/>
                                        <xsl:when 
test="starts-with($rawHref,'#')">
                                                <xsl:apply-templates 
select="/*/*...@id=substring-after($rawHref,'#')]"/>
                                        </xsl:when>
                                        <xsl:otherwise>
                                                <xsl:apply-templates 
select="document(substring-before($rawHref,'#'))/*/*...@id=substring-after($rawHref,'#')]"/>
                                        </xsl:otherwise>
                                </xsl:choose>
                        </xsl:for-each>
                        <tr>
                                <td>
                                        <xsl:apply-templates select="." 
mode="print"/>
                                </td>
                                <td>
                                        <xsl:call-template name="findMatch"/>
                                </td>
                        </tr>
                </xsl:if>
        </xsl:template>
        
        <!-- finds match node in target xml document for the given source node 
-->
        <xsl:template name="findMatch">
                
                <xsl:variable name="passedClassName" select="name()"/>  
                <xsl:variable name="passedClassLength" 
select="string-length($passedClassName)"/>
                
                <xsl:variable name="targetObjects" 
select="document($global.result)/*/*[
                        substring(name(), 
string-length(name())-$passedClassLength, $passedClassLength+1) = 
concat('.',$passedClassName) or 
                        name()=$passedClassName]"/>

                <!-- construct the path -->
                <!-- construct the name of the class -->
                <xsl:variable name="className" 
select="name($targetObjects[1])"/>
                <!-- construct the inner part of the path -->
                <xsl:variable name="innerPart">
                
                        <xsl:variable name="scalarPart">
                                <xsl:apply-templates mode="addressScalars" 
select="*[not(@xlink:href)]"/>
                        </xsl:variable>
                        <xsl:variable name="referencePart">
                                <xsl:apply-templates mode="addressRefs" 
select="*...@xlink:href]"/>
                        </xsl:variable>
                        
                        <xsl:choose>
                                <xsl:when test="string($scalarPart)">
                                        <xsl:value-of select="$scalarPart"/>
                                        <xsl:if test="string($referencePart)">
                                                        and <xsl:value-of 
select="$referencePart"/>
                                        </xsl:if>
                                </xsl:when>
                                <xsl:otherwise>
                                        <xsl:if test="string($referencePart)">
                                                <xsl:value-of 
select="$referencePart"/>
                                        </xsl:if>
                                </xsl:otherwise>
                        </xsl:choose>
                        
                </xsl:variable>
                
                <xsl:variable name="path">
                        <xsl:if test="string($className) and 
string($innerPart)">
                                        document('<xsl:value-of 
select="$global.result"/>')/*/<xsl:value-of 
select="string($className)"/>[<xsl:value-of select="string($innerPart)"/>]
                                </xsl:if>
                </xsl:variable>


                <!--<xsl:variable name="targetNode3" 
select="document('compoundPersistenceTest1.xml')/*/NetworkElement[Id='1000000010']"/>
 -->

                <!--xsl:value-of select="$path"/-->             
                <xsl:choose>
                        <xsl:when test="string($path)">
                                <xsl:variable name="targetNode" 
select="xalan:evaluate(string($path))"/>
                                <xsl:variable name="targetID">
                                        <xsl:if test="$targetNode">
                                                <xsl:copy-of 
select="string($targetNode/@id)"/>
                                        </xsl:if>
                                </xsl:variable>
                                <xsl:choose>
                                        <xsl:when test="string($targetID)">
                                                <xsl:variable name="addID" 
select="java:put($global.translationTable, string(generate-id(.)), 
string($targetID))"/>
                                                <xsl:apply-templates 
mode="print" select="$targetNode"/>
                                        </xsl:when>
                                        <xsl:otherwise>
                                                <xsl:text>yep.Corresponding 
element has not been found.</xsl:text>
                                                <xsl:message 
terminate="no">yep.Two sets are not equivalent.</xsl:message>
                                        </xsl:otherwise>
                                </xsl:choose>
                        </xsl:when>
                        <xsl:otherwise>
                                <xsl:text>no.Corresponding element has not been 
found.</xsl:text>
                                <xsl:message terminate="no">no.Two sets are not 
equivalent.</xsl:message>
                        </xsl:otherwise>
                </xsl:choose>
        </xsl:template>

        <xsl:template mode="addressScalars" match="*">
                <xsl:value-of select="name()"/>='<xsl:value-of 
select="text()"/>'
                <xsl:if test="position() != last()"> and </xsl:if>
        </xsl:template>
        <xsl:template mode="addressRefs" match="*">
                <xsl:value-of select="name()"/>
                <xsl:text>[...@xlink:href='</xsl:text>
                <xsl:choose>
                        <xsl:when test="@xlink:href='nil'">
                                <xsl:text>nil</xsl:text>
                        </xsl:when>
                        <xsl:when test="starts-with(@xlink:href, '#')">
                                <xsl:apply-templates 
select="/*/*...@id=substring-after(current()/@xlink:href, '#')]" mode="getId"/>
                        </xsl:when>
                        <xsl:otherwise>
                                <xsl:apply-templates 
select="document(substring-before(current()/@xlink:href,'#'))/*/*...@id=substring-after(current()/@xlink:href,'#')]"
 mode="getId"/>
                        </xsl:otherwise>
                </xsl:choose>
                <xsl:text>']</xsl:text>
                <xsl:if test="position() != last()"> and </xsl:if>
        </xsl:template>
        <xsl:template match="*" mode="getId">
                <xsl:variable name="ID" 
select="java:get($global.translationTable, string(generate-id(.)))"/>
                <xsl:choose>
                        <xsl:when test="$ID">
                                <xsl:copy-of select="concat('#', string($ID))"/>
                        </xsl:when>
                        <xsl:otherwise>
                                <xsl:copy-of select="'nil'"/>
                        </xsl:otherwise>
                </xsl:choose>
        </xsl:template>
        
        <xsl:template match="*" mode="print">
                <xsl:text>Instance of : </xsl:text>

        </xsl:template>
</xsl:stylesheet>
=============================================end transform.xslt 
=======================================================

=============================================start 
input.xml===========================================================
<?xml version="1.0" encoding="UTF-8"?><?truesource 
targetNamespace="2"?><!--This XML is produced on Fri Dec 26 18:12:06 IST 2008 
by TrueSource--><case xmlns:xlink="http://www.w3.org/1999/xlink";>
<NetworkElement id="NetworkElement_1" 
package="com.comanage.truesource.schema.physical">
<Name>FTMYFLXABB0</Name>
<Description>Ascend CBX 500</Description>
<Id>1000000010</Id>
<HostAgent xlink:type="simple" xlink:href="nil"/>
<HostSystem xlink:type="simple" xlink:href="nil"/>
<Host xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<Enabled>EnableType.Enabled</Enabled>
<ManagementAddress/>
<LastDiscovered>2002-05-11 21:21:56.0</LastDiscovered>
<FirstDiscoveryFailure/>
<LastDiscoveryFailure/>
<NumDiscoveryFailures>0</NumDiscoveryFailures>
<NemClass>com.comanage.truesource.nem.naviscore.NavisCoreNem</NemClass>
<ContactAddress>Ipv4Address:172.20.254.1</ContactAddress>
<Vendor>Lucent</Vendor>
<Model>CBX 500</Model>
<HardwareVersion>03</HardwareVersion>
<SoftwareVersion>04.02.00.00</SoftwareVersion>
<SerialNumber/>
<Supplier/>
<PartNumber/>
<Clei/>
<Label/>
<Credibility>CredibilityLevel.Medium</Credibility>
<SlotCount>4</SlotCount>
<AvailableSlotCount>-1</AvailableSlotCount>
</NetworkElement>
<NetworkElement id="NetworkElement_0" 
package="com.comanage.truesource.schema.physical">
<Name>FTMYFLXA02W</Name>
<Description>Broadband Service Unit</Description>
<Id>1000000005</Id>
<HostAgent xlink:type="simple" xlink:href="nil"/>
<HostSystem xlink:type="simple" xlink:href="nil"/>
<Host xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<Enabled>EnableType.Enabled</Enabled>
<ManagementAddress/>
<LastDiscovered>2002-05-11 21:21:56.0</LastDiscovered>
<FirstDiscoveryFailure/>
<LastDiscoveryFailure/>
<NumDiscoveryFailures>0</NumDiscoveryFailures>
<NemClass>com.comanage.truesource.nem.file.FileNem</NemClass>
<ContactAddress>Ipv4Address:172.20.5.5</ContactAddress>
<Vendor>Lucent</Vendor>
<Model>PSAX-600</Model>
<HardwareVersion/>
<SoftwareVersion>5.0.1.0   </SoftwareVersion>
<SerialNumber/>
<Supplier/>
<PartNumber/>
<Clei/>
<Label/>
<Credibility>CredibilityLevel.Medium</Credibility>
<SlotCount>2</SlotCount>
<AvailableSlotCount>-1</AvailableSlotCount>
</NetworkElement>
<Card id="Card_3" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Label/>
<CardNumber>8</CardNumber>
<SlotCount>-1</SlotCount>
<AvailableSlotCount>-1</AvailableSlotCount>
<Vendor>Lucent</Vendor>
<Model>CBX-ATM</Model>
<HardwareVersion>toc3-atm-4</HardwareVersion>
<SoftwareVersion/>
<SerialNumber/>
<Supplier/>
<PartNumber/>
<Clei/>
<CreationTime/>
<LastUpdatedTime/>
<Name>Card 8</Name>
<Description/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Enabled>EnableType.Enabled</Enabled>
<ManagementAddress/>
<Credibility>CredibilityLevel.Medium</Credibility>
</Card>
<Card id="Card_2" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Label/>
<CardNumber>1</CardNumber>
<SlotCount>-1</SlotCount>
<AvailableSlotCount>-1</AvailableSlotCount>
<Vendor>Lucent</Vendor>
<Model>CBX</Model>
<HardwareVersion>sp-30</HardwareVersion>
<SoftwareVersion/>
<SerialNumber/>
<Supplier/>
<PartNumber/>
<Clei/>
<CreationTime/>
<LastUpdatedTime/>
<Name>Card 1</Name>
<Description/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Enabled>EnableType.Enabled</Enabled>
<ManagementAddress/>
<Credibility>CredibilityLevel.Medium</Credibility>
</Card>
<Card id="Card_6" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Label/>
<CardNumber>7</CardNumber>
<SlotCount>-1</SlotCount>
<AvailableSlotCount>-1</AvailableSlotCount>
<Vendor>Lucent</Vendor>
<Model>CBX-ATM</Model>
<HardwareVersion>ads3-t3</HardwareVersion>
<SoftwareVersion/>
<SerialNumber/>
<Supplier/>
<PartNumber/>
<Clei/>
<CreationTime/>
<LastUpdatedTime/>
<Name>Card 7</Name>
<Description/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Enabled>EnableType.Enabled</Enabled>
<ManagementAddress/>
<Credibility>CredibilityLevel.Medium</Credibility>
</Card>
<Card id="Card_4" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Label/>
<CardNumber>1003</CardNumber>
<SlotCount>-1</SlotCount>
<AvailableSlotCount>-1</AvailableSlotCount>
<Vendor>Lucent</Vendor>
<Model>PSAX600ATM</Model>
<HardwareVersion>44021321</HardwareVersion>
<SoftwareVersion/>
<SerialNumber/>
<Supplier/>
<PartNumber/>
<Clei/>
<CreationTime/>
<LastUpdatedTime/>
<Name>Card 2</Name>
<Description/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Enabled>EnableType.Enabled</Enabled>
<ManagementAddress/>
<Credibility>CredibilityLevel.Medium</Credibility>
</Card>
<Card id="Card_7" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Label/>
<CardNumber>10</CardNumber>
<SlotCount>-1</SlotCount>
<AvailableSlotCount>-1</AvailableSlotCount>
<Vendor>Lucent</Vendor>
<Model>CBX-FR</Model>
<HardwareVersion>gchn-ds3-4</HardwareVersion>
<SoftwareVersion/>
<SerialNumber/>
<Supplier/>
<PartNumber/>
<Clei/>
<CreationTime/>
<LastUpdatedTime/>
<Name>Card 10</Name>
<Description/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Enabled>EnableType.Enabled</Enabled>
<ManagementAddress/>
<Credibility>CredibilityLevel.Medium</Credibility>
</Card>
<Card id="Card_5" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Label/>
<CardNumber>1001</CardNumber>
<SlotCount>-1</SlotCount>
<AvailableSlotCount>-1</AvailableSlotCount>
<Vendor>Lucent</Vendor>
<Model>PSAX600ATM</Model>
<HardwareVersion>44162657</HardwareVersion>
<SoftwareVersion/>
<SerialNumber/>
<Supplier/>
<PartNumber/>
<Clei/>
<CreationTime/>
<LastUpdatedTime/>
<Name>Card 1</Name>
<Description/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Enabled>EnableType.Enabled</Enabled>
<ManagementAddress/>
<Credibility>CredibilityLevel.Medium</Credibility>
</Card>
<PhyPort id="PhyPort_25" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_6"/>
<PortNumber>2</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.Coaxial</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<Type>ATM</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>7.2</Name>
<Description>ATM LPORT 1</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_11" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_7"/>
<PortNumber>4</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.Coaxial</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<Type>FrameRelay</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>10.4</Name>
<Description>10.4</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_13" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_7"/>
<PortNumber>1</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.Coaxial</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<Type>FrameRelay</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>10.1</Name>
<Description>10.1</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_16" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_6"/>
<PortNumber>3</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.Coaxial</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<Type>ATM</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>7.3</Name>
<Description>LPort_7_3_1</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_21" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_6"/>
<PortNumber>4</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.Coaxial</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<Type>ATM</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>7.4</Name>
<Description>DS3 UNI DCE Port 4</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_20" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_4"/>
<PortNumber>1</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.STP</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>1.544</MaxTransmitBandwidth>
<MaxReceiveBandwidth>1.544</MaxReceiveBandwidth>
<Type>TDM</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>1/3/1</Name>
<Description>PSAX600 DS1 IMA PORT</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_9" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_7"/>
<PortNumber>2</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.Coaxial</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<Type>FrameRelay</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>10.2</Name>
<Description>10.2</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_19" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_7"/>
<PortNumber>3</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.Coaxial</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<Type>FrameRelay</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>10.3</Name>
<Description>10.3</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_17" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_3"/>
<PortNumber>4</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.MMF</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>155.52</MaxTransmitBandwidth>
<MaxReceiveBandwidth>155.52</MaxReceiveBandwidth>
<Type>ATM</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>8.4</Name>
<Description>OC3 LPORT 2</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_12" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_6"/>
<PortNumber>1</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.Coaxial</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<Type>ATM</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>7.1</Name>
<Description>DS3 PORT 1 UNI</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_22" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_3"/>
<PortNumber>3</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.MMF</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>155.52</MaxTransmitBandwidth>
<MaxReceiveBandwidth>155.52</MaxReceiveBandwidth>
<Type>ATM</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>8.3</Name>
<Description>OC3 LPORT 1</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_10" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_5"/>
<PortNumber>1</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.Coaxial</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<Type>ATM</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>1/1/1</Name>
<Description>PSAX600 DS3 ATM PORT</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_8" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_4"/>
<PortNumber>3</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.STP</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>1.544</MaxTransmitBandwidth>
<MaxReceiveBandwidth>1.544</MaxReceiveBandwidth>
<Type>TDM</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>1/3/3</Name>
<Description>PSAX600 DS1 IMA PORT</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_15" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_3"/>
<PortNumber>1</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.MMF</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>155.52</MaxTransmitBandwidth>
<MaxReceiveBandwidth>155.52</MaxReceiveBandwidth>
<Type>ATM</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>8.1</Name>
<Description>OC3 PORT 1 UNI</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_23" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_4"/>
<PortNumber>4</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.STP</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>1.544</MaxTransmitBandwidth>
<MaxReceiveBandwidth>1.544</MaxReceiveBandwidth>
<Type>TDM</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>1/3/4</Name>
<Description>PSAX600 DS1 IMA PORT</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_18" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_5"/>
<PortNumber>2</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.Coaxial</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<Type>ATM</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>1/1/2</Name>
<Description>PSAX600 DS3 ATM PORT</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_14" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_3"/>
<PortNumber>2</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.MMF</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>155.52</MaxTransmitBandwidth>
<MaxReceiveBandwidth>155.52</MaxReceiveBandwidth>
<Type>ATM</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>8.2</Name>
<Description>254.1.8.2</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<PhyPort id="PhyPort_24" package="com.comanage.truesource.schema.physical">
<Host xlink:type="simple" xlink:href="#Card_4"/>
<PortNumber>2</PortNumber>
<IsExternal>BooleanType.True</IsExternal>
<Media>PortMedia.STP</Media>
<Connector>PortConnector.Unspecified</Connector>
<MaxTransmitBandwidth>1.544</MaxTransmitBandwidth>
<MaxReceiveBandwidth>1.544</MaxReceiveBandwidth>
<Type>TDM</Type>
<Enabled>EnableType.Enabled</Enabled>
<Name>1/3/2</Name>
<Description>PSAX600 DS1 IMA PORT</Description>
<ManagementAddress/>
<Label/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</PhyPort>
<AtmPort id="AtmPort_32" package="com.comanage.truesource.schema.service.atm">
<Host xlink:type="simple" xlink:href="#PhyPort_21"/>
<LogicalIndex>4</LogicalIndex>
<Name>7.4</Name>
<Description>DS3 UNI DCE Port 4</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</AtmPort>
<AtmPort id="AtmPort_33" package="com.comanage.truesource.schema.service.atm">
<Host xlink:type="simple" xlink:href="#PhyPort_10"/>
<LogicalIndex>1</LogicalIndex>
<Name>1/1/1</Name>
<Description>PSAX600 DS3 ATM PORT</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</AtmPort>
<AtmPort id="AtmPort_35" package="com.comanage.truesource.schema.service.atm">
<Host xlink:type="simple" xlink:href="#PhyPort_25"/>
<LogicalIndex>2</LogicalIndex>
<Name>7.2</Name>
<Description>ATM LPORT 1</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</AtmPort>
<AtmPort id="AtmPort_28" package="com.comanage.truesource.schema.service.atm">
<Host xlink:type="simple" xlink:href="#Card_4"/>
<LogicalIndex>0</LogicalIndex>
<Name>1/3/5</Name>
<Description>PSAX600 DS1 IMA GROUP</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>1.544</MaxTransmitBandwidth>
<MaxReceiveBandwidth>1.544</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</AtmPort>
<AtmPort id="AtmPort_27" package="com.comanage.truesource.schema.service.atm">
<Host xlink:type="simple" xlink:href="#PhyPort_17"/>
<LogicalIndex>4</LogicalIndex>
<Name>8.4</Name>
<Description>OC3 LPORT 2</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>155.52</MaxTransmitBandwidth>
<MaxReceiveBandwidth>155.52</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</AtmPort>
<AtmPort id="AtmPort_30" package="com.comanage.truesource.schema.service.atm">
<Host xlink:type="simple" xlink:href="#PhyPort_22"/>
<LogicalIndex>3</LogicalIndex>
<Name>8.3</Name>
<Description>OC3 LPORT 1</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>155.52</MaxTransmitBandwidth>
<MaxReceiveBandwidth>155.52</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</AtmPort>
<AtmPort id="AtmPort_31" package="com.comanage.truesource.schema.service.atm">
<Host xlink:type="simple" xlink:href="#PhyPort_14"/>
<LogicalIndex>2</LogicalIndex>
<Name>8.2</Name>
<Description>254.1.8.2</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>155.52</MaxTransmitBandwidth>
<MaxReceiveBandwidth>155.52</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</AtmPort>
<AtmPort id="AtmPort_29" package="com.comanage.truesource.schema.service.atm">
<Host xlink:type="simple" xlink:href="#PhyPort_12"/>
<LogicalIndex>1</LogicalIndex>
<Name>7.1</Name>
<Description>DS3 PORT 1 UNI</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</AtmPort>
<AtmPort id="AtmPort_26" package="com.comanage.truesource.schema.service.atm">
<Host xlink:type="simple" xlink:href="#PhyPort_18"/>
<LogicalIndex>2</LogicalIndex>
<Name>1/1/2</Name>
<Description>PSAX600 DS3 ATM PORT</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</AtmPort>
<AtmPort id="AtmPort_34" package="com.comanage.truesource.schema.service.atm">
<Host xlink:type="simple" xlink:href="#PhyPort_15"/>
<LogicalIndex>1</LogicalIndex>
<Name>8.1</Name>
<Description>OC3 PORT 1 UNI</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>155.52</MaxTransmitBandwidth>
<MaxReceiveBandwidth>155.52</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</AtmPort>
<AtmPort id="AtmPort_36" package="com.comanage.truesource.schema.service.atm">
<Host xlink:type="simple" xlink:href="#PhyPort_16"/>
<LogicalIndex>3</LogicalIndex>
<Name>7.3</Name>
<Description>LPort_7_3_1</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</AtmPort>
<FrPort id="FrPort_43" 
package="com.comanage.truesource.schema.service.framerelay">
<Host xlink:type="simple" xlink:href="#PhyPort_19"/>
<LogicalIndex>3</LogicalIndex>
<FrameFormat>3</FrameFormat>
<Name>10.3</Name>
<Description>10.3</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</FrPort>
<FrPort id="FrPort_46" 
package="com.comanage.truesource.schema.service.framerelay">
<Host xlink:type="simple" xlink:href="#PhyPort_11"/>
<LogicalIndex>4</LogicalIndex>
<FrameFormat>3</FrameFormat>
<Name>10.4</Name>
<Description>10.4</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</FrPort>
<FrPort id="FrPort_45" 
package="com.comanage.truesource.schema.service.framerelay">
<Host xlink:type="simple" xlink:href="#PhyPort_13"/>
<LogicalIndex>1</LogicalIndex>
<FrameFormat>3</FrameFormat>
<Name>10.1</Name>
<Description>10.1</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</FrPort>
<FrPort id="FrPort_44" 
package="com.comanage.truesource.schema.service.framerelay">
<Host xlink:type="simple" xlink:href="#PhyPort_9"/>
<LogicalIndex>2</LogicalIndex>
<FrameFormat>3</FrameFormat>
<Name>10.2</Name>
<Description>10.2</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</FrPort>
<FrChannelGroup id="FrChannelGroup_50" 
package="com.comanage.truesource.schema.service.framerelay">
<Name/>
<Host xlink:type="simple" xlink:href="#PhyPort_13"/>
<TimeSlots>1:1-24</TimeSlots>
<LayeredOver xlink:type="simple" xlink:href="#FrPort_45"/>
<Description/>
<Enabled>EnableType.Unspecified</Enabled>
<LogicalIndex>1</LogicalIndex>
<MaxTransmitBandwidth>44.736</MaxTransmitBandwidth>
<MaxReceiveBandwidth>44.736</MaxReceiveBandwidth>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</FrChannelGroup>
<Ds1Port id="Ds1Port_38" 
package="com.comanage.truesource.schema.service.transport">
<Host xlink:type="simple" xlink:href="#PhyPort_20"/>
<LogicalIndex>1</LogicalIndex>
<Channelization/>
<Name>1/3/1</Name>
<Description>PSAX600 DS1 IMA PORT</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>1.544</MaxTransmitBandwidth>
<MaxReceiveBandwidth>1.544</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Credibility>CredibilityLevel.Medium</Credibility>
<TimingSource>TimingSourceType.Unspecified</TimingSource>
<PdhStructure>PdhStructureType.Unspecified</PdhStructure>
<SuperFrame>SuperFrameType.Unspecified</SuperFrame>
<LineCoding>LineCodingType.Unspecified</LineCoding>
</Ds1Port>
<Ds1Port id="Ds1Port_39" 
package="com.comanage.truesource.schema.service.transport">
<Host xlink:type="simple" xlink:href="#PhyPort_8"/>
<LogicalIndex>3</LogicalIndex>
<Channelization/>
<Name>1/3/3</Name>
<Description>PSAX600 DS1 IMA PORT</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>1.544</MaxTransmitBandwidth>
<MaxReceiveBandwidth>1.544</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Credibility>CredibilityLevel.Medium</Credibility>
<TimingSource>TimingSourceType.Unspecified</TimingSource>
<PdhStructure>PdhStructureType.Unspecified</PdhStructure>
<SuperFrame>SuperFrameType.Unspecified</SuperFrame>
<LineCoding>LineCodingType.Unspecified</LineCoding>
</Ds1Port>
<Ds1Port id="Ds1Port_40" 
package="com.comanage.truesource.schema.service.transport">
<Host xlink:type="simple" xlink:href="#PhyPort_24"/>
<LogicalIndex>2</LogicalIndex>
<Channelization/>
<Name>1/3/2</Name>
<Description>PSAX600 DS1 IMA PORT</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>1.544</MaxTransmitBandwidth>
<MaxReceiveBandwidth>1.544</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Credibility>CredibilityLevel.Medium</Credibility>
<TimingSource>TimingSourceType.Unspecified</TimingSource>
<PdhStructure>PdhStructureType.Unspecified</PdhStructure>
<SuperFrame>SuperFrameType.Unspecified</SuperFrame>
<LineCoding>LineCodingType.Unspecified</LineCoding>
</Ds1Port>
<Ds1Port id="Ds1Port_37" 
package="com.comanage.truesource.schema.service.transport">
<Host xlink:type="simple" xlink:href="#PhyPort_23"/>
<LogicalIndex>4</LogicalIndex>
<Channelization/>
<Name>1/3/4</Name>
<Description>PSAX600 DS1 IMA PORT</Description>
<Enabled>EnableType.Enabled</Enabled>
<MaxTransmitBandwidth>1.544</MaxTransmitBandwidth>
<MaxReceiveBandwidth>1.544</MaxReceiveBandwidth>
<LayeredOver xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Credibility>CredibilityLevel.Medium</Credibility>
<TimingSource>TimingSourceType.Unspecified</TimingSource>
<PdhStructure>PdhStructureType.Unspecified</PdhStructure>
<SuperFrame>SuperFrameType.Unspecified</SuperFrame>
<LineCoding>LineCodingType.Unspecified</LineCoding>
</Ds1Port>
<NetAddress id="NetAddress_42" 
package="com.comanage.truesource.schema.protocol">
<Address>Ipv4Address: 172.20.5.5</Address>
<Host xlink:type="simple" xlink:href="#NetworkElement_0"/>
<Name>Ipv4Address: 172.20.5.5</Name>
<MediationAddress>BooleanType.True</MediationAddress>
<Credibility>CredibilityLevel.Medium</Credibility>
<CreationTime/>
<LastUpdatedTime/>
<Description>Ipv4Address: 172.20.5.5</Description>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_0"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_0"/>
</NetAddress>
<NetAddress id="NetAddress_41" 
package="com.comanage.truesource.schema.protocol">
<Address>Ipv4Address: 172.20.254.1</Address>
<Host xlink:type="simple" xlink:href="#NetworkElement_1"/>
<Name>Ipv4Address: 172.20.254.1</Name>
<MediationAddress>BooleanType.True</MediationAddress>
<Credibility>CredibilityLevel.Medium</Credibility>
<CreationTime/>
<LastUpdatedTime/>
<Description>Ipv4Address: 172.20.254.1</Description>
<HostAgent xlink:type="simple" xlink:href="#NetworkElement_1"/>
<HostSystem xlink:type="simple" xlink:href="#NetworkElement_1"/>
</NetAddress>
<AtmTrunk id="AtmTrunk_51" package="com.comanage.truesource.schema.service.atm">
<HostAggregation xlink:type="simple" xlink:href="nil"/>
<Port1 xlink:type="simple" xlink:href="#AtmPort_33"/>
<Port2 xlink:type="simple" xlink:href="#AtmPort_36"/>
<Name>Unspecified</Name>
<HostAgent xlink:type="simple" xlink:href="nil"/>
<HostSystem xlink:type="simple" xlink:href="nil"/>
<Host xlink:type="simple" xlink:href="nil"/>
<HostService xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<Description/>
<Enabled>EnableType.Unspecified</Enabled>
<ManagementAddress/>
<Label/>
<AssimilationUpdatedTime>-1</AssimilationUpdatedTime>
<AssimilationStarted>false</AssimilationStarted>
<Credibility>CredibilityLevel.Medium</Credibility>
</AtmTrunk>
<AtmUniNbr_M id="AtmUniNbr_M_48" package="com.comanage.truesource.sem.atm">
<Base xlink:type="simple" xlink:href="#AtmPort_33"/>
<Address>00000000f22a8627</Address>
<IsPassive>false</IsPassive>
<Vpi>0</Vpi>
<Credibility>CredibilityLevel.Medium</Credibility>
<CreationTime/>
<LastUpdatedTime/>
<Name/>
<Description/>
<HostAgent xlink:type="simple" xlink:href="nil"/>
<HostSystem xlink:type="simple" xlink:href="nil"/>
<Host xlink:type="simple" xlink:href="nil"/>
<AssimilationUpdatedTime>-1</AssimilationUpdatedTime>
<AssimilationStarted>false</AssimilationStarted>
<HostAggregation xlink:type="simple" xlink:href="nil"/>
</AtmUniNbr_M>
<AtmUniNbr_M id="AtmUniNbr_M_47" package="com.comanage.truesource.sem.atm">
<Base xlink:type="simple" xlink:href="#AtmPort_36"/>
<Address>00000000f22a8627</Address>
<IsPassive>true</IsPassive>
<Vpi>0</Vpi>
<Credibility>CredibilityLevel.Medium</Credibility>
<CreationTime/>
<LastUpdatedTime/>
<Name/>
<Description/>
<HostAgent xlink:type="simple" xlink:href="nil"/>
<HostSystem xlink:type="simple" xlink:href="nil"/>
<Host xlink:type="simple" xlink:href="nil"/>
<AssimilationUpdatedTime>-1</AssimilationUpdatedTime>
<AssimilationStarted>false</AssimilationStarted>
<HostAggregation xlink:type="simple" xlink:href="nil"/>
</AtmUniNbr_M>
<AtmUniNbr_T id="AtmUniNbr_T_49" package="com.comanage.truesource.sem.atm">
<Mble1 xlink:type="simple" xlink:href="#AtmUniNbr_M_47"/>
<Mble2 xlink:type="simple" xlink:href="#AtmUniNbr_M_48"/>
<Base1 xlink:type="simple" xlink:href="nil"/>
<Base2 xlink:type="simple" xlink:href="nil"/>
<CreationTime/>
<LastUpdatedTime/>
<Name/>
<Description/>
<HostAgent xlink:type="simple" xlink:href="nil"/>
<HostSystem xlink:type="simple" xlink:href="nil"/>
<Host xlink:type="simple" xlink:href="nil"/>
<AssimilationUpdatedTime>-1</AssimilationUpdatedTime>
<AssimilationStarted>false</AssimilationStarted>
<HostAggregation xlink:type="simple" xlink:href="nil"/>
<Credibility>CredibilityLevel.Medium</Credibility>
</AtmUniNbr_T>
</case>
===========================================================end===========================================


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-dev-unsubscr...@xml.apache.org
For additional commands, e-mail: xalan-dev-h...@xml.apache.org

Reply via email to