Altova Mailing List Archives>Archive Index >microsoft.public.xsl Archive Home >Recent entries >Thread Prev - Table rows not updated in the XML transformed by XSL in a browser [Thread Next] Re: Table rows not updated in the XML transformed by XSL in a browserTo: NULL Date: 7/10/2008 9:52:00 AM You are committing the common mistake of prefixing all your XPath expressions with //. This is perpetuated by examples online but it's not good practise and often wrong. It means fetch all the matching nodes underneath the context at whatever level. You just need the nodes directly under the current item element: <xsl:for-each select="*/item"> <!--Getting values for the table--> <tr bgcolor="#FFFFFF"> <td class="mytablestyle"> <xsl:value-of select="ResultSpecificationElement/RevStatus"/> </td> <td class="mytablestyle"> <xsl:value-of select="ResultSpecificationElement/Severity"/> </td> <td class="mytablestyle"> <xsl:value-of select="ResultPropertiesElement/PropertyArray/PropertySetProperty/Value/DatasetResource/ResourceDatasetName"/> </td> <td class="mytablestyle"> <xsl:value-of select="ResultSpecificationElement/UniqueID"/> </td> </tr> </xsl:for-each> // is a resource intensive operation, never use it as a shortcut, for example change the code that adds the title to: <title> <xsl:value-of select="*/header/ToolName"/> Log File </title> -- Joe Fawcett (MVP - XML) http://joe.fawcett.name <nishi.mishra@g...> wrote in message news:32c7fb35-446c-402e-a8ce-8aeb1eae0a8a@x...... > Hello, > > I am transforming a XML using XSl stylesheet in a browser. The xsl > stylesheet transforms the xml into a table and displays correct number > of rows, but does not display the correct data. It is displaying the > information for first row in all the rows. > > Here is the XSL Stylesheet I am using: > > <?xml version="1.0" encoding="utf-8"?> > <!--XSL Transformation and ESRI namespace--> > <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/ > Transform" > xmlns="http://www.w3.org/1999/xhtml" > xmlns:esri="http://www.esri.com/schemas/ArcGIS/9.2" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xmlns:xs="http://www.w3.org/2001/XMLSchema"> > > <xsl:template match="/"> > <html xmlns="http://www.w3.org/1999/xhtml"> > <head> > <!--Title of the webpage--> > <title><xsl:value-of select="//header/ToolName"/> Log File</title> > <!--Apply CSS to display formatting in Mozilla Firefox and Netscape > browsers--> > <style type="text/css"> > table.mytablestyle { > border-collapse: collapse; > background: white; > border-top: 2px solid #F5F5DC; > border-right: 2px solid #F5F5DC; > border-left: 2px solid #F5F5DC; > border-bottom: 2px solid #F5F5DC; > empty-cells: show > } > table.mytablestyle td { > border-collapse: collapse; > background: white; > border: 2px solid #F5F5DC; > empty-cells: show > } > table.mytablestyle th { > border-collapse: collapse; > background: white; > border: 2px solid #F5F5DC; > empty-cells: show > } > </style> > </head> > <body> > <!--Title of the table--> > <h2><xsl:value-of select="//header/ToolName"/> Log File</h2> > > <!--Header row of the table--> > <table cellpadding="5" class="mytablestyle"> > <tr bgcolor="#FFFFFF"> > <th>DESCRIPTION</th> > <th>SEVERITY</th> > <th>FEATURE CLASS</th> > <th>UNIQUEID</th> > </tr> > <xsl:for-each select="//item"> > <!--Getting values for the table--> > <tr bgcolor="#FFFFFF"> > <td class="mytablestyle"> > <xsl:value-of select="//ResultSpecificationElement/RevStatus"/> > </td> > <td class="mytablestyle"> > <xsl:value-of select="//ResultSpecificationElement/Severity"/> > </td> > <td class="mytablestyle"> > <xsl:value-of select="//ResultPropertiesElement/PropertyArray/ > PropertySetProperty/Value/DatasetResource/ResourceDatasetName"/> > </td> > <td class="mytablestyle"> > <xsl:value-of select="//UniqueID"/> > </td> > </tr> > </xsl:for-each> > > </table> > </body> > </html> > </xsl:template> > > </xsl:stylesheet> > > and here's a sample which is being transformed: > <?xml-stylesheet href="Nautical_XSL.xsl" type="text/xsl"? >><esri:PLTS_XML_File xmlns:esri='http://www.esri.com/schemas/ArcGIS/ > 9.2' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' > xmlns:xs='http://www.w3.org/2001/XMLSchema'><header><ToolName>Product > Refresher</ToolName><User>jayd0000</User><Time>7/3/2008 2:31:40 PM</ > Time><CellName>US3MI01M</CellName></header><item > xsi:type='typens:RevResult' xmlns:typens='http://www.esri.com/schemas/ > ArcGIS/9.3'><ResultSpecificationElement > xsi:type='typens:RevResultSpecification'><UniqueID>{E99082ED-8C99-4B07-8D6B-83AD346DCE91}</ > UniqueID><ErrorClass>1</ErrorClass><ErrorType>999</ > ErrorType><RevStatus>Feature with LNAM: US022613235402533, NOID: > {534A9663-18A1-4FB4-A365-67563C72772E} was deleted (was outside > product extent or scale range).</RevStatus><RevCheckName>Clip > Extraneous Features</RevCheckName><Parameters></ > Parameters><SourceConfig xsi:nil='true'/><Notes></Notes><Severity>5</ > Severity></ResultSpecificationElement><ResultPropertiesElement > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>ResourceToValidate</ > Key><Value xsi:type='typens:RevFeatureResource'><DatasetResource > xsi:type='typens:RevBaseDatasetResource'><ResourceDatasetType>5</ > ResourceDatasetType><ResourceWorkspaceName > xsi:type='typens:WorkspaceName'><BrowseName>ArcSDE Data</ > BrowseName><WorkspaceFactoryProgID>esriDataSourcesGDB.SdeWorkspaceFactory. > 1</WorkspaceFactoryProgID><WorkspaceType>esriRemoteDatabaseWorkspace</ > WorkspaceType><ConnectionProperties > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>SERVER</Key><Value > xsi:type='xs:string'>EDDIETEST_sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>INSTANCE</Key><Value > xsi:type='xs:string'>sde:sqlserver:EDDIETEST\sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>DATABASE</Key><Value > xsi:type='xs:string'>MI01M</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>AUTHENTICATION_MODE</ > Key><Value xsi:type='xs:string'>OSA</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>VERSION</Key><Value > xsi:type='xs:string'>DBO.CM</Value></PropertySetProperty></ > PropertyArray></ConnectionProperties></ > ResourceWorkspaceName><ResourceDatasetName>MI01M.DBO.NaturalFeaturesA</ > ResourceDatasetName><ResourceIsWorkspace>false</ResourceIsWorkspace></ > DatasetResource><ResourceRowReloadQuery>OBJECTID = 338</ > ResourceRowReloadQuery></Value></PropertySetProperty></PropertyArray></ > ResultPropertiesElement></item><item xsi:type='typens:RevResult' > xmlns:typens='http://www.esri.com/schemas/ArcGIS/ > 9.3'><ResultSpecificationElement > xsi:type='typens:RevResultSpecification'><UniqueID>{316EED92-7978-4958- > ADF6-712610880BBF}</UniqueID><ErrorClass>1</ErrorClass><ErrorType>999</ > ErrorType><RevStatus>Feature with LNAM: US038409559103123, NOID: > {44D26C0D-5C77-4C97-86F2-DDE2DFA0CCC1} was deleted (was outside > product extent or scale range).</RevStatus><RevCheckName>Clip > Extraneous Features</RevCheckName><Parameters></ > Parameters><SourceConfig xsi:nil='true'/><Notes></Notes><Severity>5</ > Severity></ResultSpecificationElement><ResultPropertiesElement > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>ResourceToValidate</ > Key><Value xsi:type='typens:RevFeatureResource'><DatasetResource > xsi:type='typens:RevBaseDatasetResource'><ResourceDatasetType>5</ > ResourceDatasetType><ResourceWorkspaceName > xsi:type='typens:WorkspaceName'><BrowseName>ArcSDE Data</ > BrowseName><WorkspaceFactoryProgID>esriDataSourcesGDB.SdeWorkspaceFactory. > 1</WorkspaceFactoryProgID><WorkspaceType>esriRemoteDatabaseWorkspace</ > WorkspaceType><ConnectionProperties > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>SERVER</Key><Value > xsi:type='xs:string'>EDDIETEST_sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>INSTANCE</Key><Value > xsi:type='xs:string'>sde:sqlserver:EDDIETEST\sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>DATABASE</Key><Value > xsi:type='xs:string'>MI01M</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>AUTHENTICATION_MODE</ > Key><Value xsi:type='xs:string'>OSA</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>VERSION</Key><Value > xsi:type='xs:string'>DBO.CM</Value></PropertySetProperty></ > PropertyArray></ConnectionProperties></ > ResourceWorkspaceName><ResourceDatasetName>MI01M.DBO.NaturalFeaturesA</ > ResourceDatasetName><ResourceIsWorkspace>false</ResourceIsWorkspace></ > DatasetResource><ResourceRowReloadQuery>OBJECTID = 37034</ > ResourceRowReloadQuery></Value></PropertySetProperty></PropertyArray></ > ResultPropertiesElement></item><item xsi:type='typens:RevResult' > xmlns:typens='http://www.esri.com/schemas/ArcGIS/ > 9.3'><ResultSpecificationElement > xsi:type='typens:RevResultSpecification'><UniqueID>{627B48F8-EC18-4D09- > AF63-B9A87CDD2900}</UniqueID><ErrorClass>1</ErrorClass><ErrorType>999</ > ErrorType><RevStatus>Feature with LNAM: US022612759902533, NOID: > {FE2AEAFD-145A-4978-B3C4-3ECCF1E3CA20} was deleted (was outside > product extent or scale range).</RevStatus><RevCheckName>Clip > Extraneous Features</RevCheckName><Parameters></ > Parameters><SourceConfig xsi:nil='true'/><Notes></Notes><Severity>5</ > Severity></ResultSpecificationElement><ResultPropertiesElement > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>ResourceToValidate</ > Key><Value xsi:type='typens:RevFeatureResource'><DatasetResource > xsi:type='typens:RevBaseDatasetResource'><ResourceDatasetType>5</ > ResourceDatasetType><ResourceWorkspaceName > xsi:type='typens:WorkspaceName'><BrowseName>ArcSDE Data</ > BrowseName><WorkspaceFactoryProgID>esriDataSourcesGDB.SdeWorkspaceFactory. > 1</WorkspaceFactoryProgID><WorkspaceType>esriRemoteDatabaseWorkspace</ > WorkspaceType><ConnectionProperties > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>SERVER</Key><Value > xsi:type='xs:string'>EDDIETEST_sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>INSTANCE</Key><Value > xsi:type='xs:string'>sde:sqlserver:EDDIETEST\sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>DATABASE</Key><Value > xsi:type='xs:string'>MI01M</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>AUTHENTICATION_MODE</ > Key><Value xsi:type='xs:string'>OSA</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>VERSION</Key><Value > xsi:type='xs:string'>DBO.CM</Value></PropertySetProperty></ > PropertyArray></ConnectionProperties></ > ResourceWorkspaceName><ResourceDatasetName>MI01M.DBO.RegulatedAreasAndLimitsA</ > ResourceDatasetName><ResourceIsWorkspace>false</ResourceIsWorkspace></ > DatasetResource><ResourceRowReloadQuery>OBJECTID = 323</ > ResourceRowReloadQuery></Value></PropertySetProperty></PropertyArray></ > ResultPropertiesElement></item><item xsi:type='typens:RevResult' > xmlns:typens='http://www.esri.com/schemas/ArcGIS/ > 9.3'><ResultSpecificationElement > xsi:type='typens:RevResultSpecification'><UniqueID>{646FB4D3-7E6F-4CE3- > B63F-ACAD87267BC1}</UniqueID><ErrorClass>1</ErrorClass><ErrorType>999</ > ErrorType><RevStatus>Feature with LNAM: US022612754602533, NOID: > {3217E167-5BB0-4C8E-9991-F0AE7C8FB867} was deleted (was outside > product extent or scale range).</RevStatus><RevCheckName>Clip > Extraneous Features</RevCheckName><Parameters></ > Parameters><SourceConfig xsi:nil='true'/><Notes></Notes><Severity>5</ > Severity></ResultSpecificationElement><ResultPropertiesElement > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>ResourceToValidate</ > Key><Value xsi:type='typens:RevFeatureResource'><DatasetResource > xsi:type='typens:RevBaseDatasetResource'><ResourceDatasetType>5</ > ResourceDatasetType><ResourceWorkspaceName > xsi:type='typens:WorkspaceName'><BrowseName>ArcSDE Data</ > BrowseName><WorkspaceFactoryProgID>esriDataSourcesGDB.SdeWorkspaceFactory. > 1</WorkspaceFactoryProgID><WorkspaceType>esriRemoteDatabaseWorkspace</ > WorkspaceType><ConnectionProperties > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>SERVER</Key><Value > xsi:type='xs:string'>EDDIETEST_sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>INSTANCE</Key><Value > xsi:type='xs:string'>sde:sqlserver:EDDIETEST\sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>DATABASE</Key><Value > xsi:type='xs:string'>MI01M</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>AUTHENTICATION_MODE</ > Key><Value xsi:type='xs:string'>OSA</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>VERSION</Key><Value > xsi:type='xs:string'>DBO.CM</Value></PropertySetProperty></ > PropertyArray></ConnectionProperties></ > ResourceWorkspaceName><ResourceDatasetName>MI01M.DBO.RegulatedAreasAndLimitsA</ > ResourceDatasetName><ResourceIsWorkspace>false</ResourceIsWorkspace></ > DatasetResource><ResourceRowReloadQuery>OBJECTID = 324</ > ResourceRowReloadQuery></Value></PropertySetProperty></PropertyArray></ > ResultPropertiesElement></item><item xsi:type='typens:RevResult' > xmlns:typens='http://www.esri.com/schemas/ArcGIS/ > 9.3'><ResultSpecificationElement > xsi:type='typens:RevResultSpecification'><UniqueID>{61DF54A2-09DF-4312- > BE94-3CD5CFBC6DAA}</UniqueID><ErrorClass>1</ErrorClass><ErrorType>999</ > ErrorType><RevStatus>Feature with LNAM: US038409073003123, NOID: > {976E0A28-64E8-4262-ACCD-32D173DA20B1} was deleted (was outside > product extent or scale range).</RevStatus><RevCheckName>Clip > Extraneous Features</RevCheckName><Parameters></ > Parameters><SourceConfig xsi:nil='true'/><Notes></Notes><Severity>5</ > Severity></ResultSpecificationElement><ResultPropertiesElement > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>ResourceToValidate</ > Key><Value xsi:type='typens:RevFeatureResource'><DatasetResource > xsi:type='typens:RevBaseDatasetResource'><ResourceDatasetType>5</ > ResourceDatasetType><ResourceWorkspaceName > xsi:type='typens:WorkspaceName'><BrowseName>ArcSDE Data</ > BrowseName><WorkspaceFactoryProgID>esriDataSourcesGDB.SdeWorkspaceFactory. > 1</WorkspaceFactoryProgID><WorkspaceType>esriRemoteDatabaseWorkspace</ > WorkspaceType><ConnectionProperties > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>SERVER</Key><Value > xsi:type='xs:string'>EDDIETEST_sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>INSTANCE</Key><Value > xsi:type='xs:string'>sde:sqlserver:EDDIETEST\sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>DATABASE</Key><Value > xsi:type='xs:string'>MI01M</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>AUTHENTICATION_MODE</ > Key><Value xsi:type='xs:string'>OSA</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>VERSION</Key><Value > xsi:type='xs:string'>DBO.CM</Value></PropertySetProperty></ > PropertyArray></ConnectionProperties></ > ResourceWorkspaceName><ResourceDatasetName>MI01M.DBO.RegulatedAreasAndLimitsA</ > ResourceDatasetName><ResourceIsWorkspace>false</ResourceIsWorkspace></ > DatasetResource><ResourceRowReloadQuery>OBJECTID = 13796</ > ResourceRowReloadQuery></Value></PropertySetProperty></PropertyArray></ > ResultPropertiesElement></item><item xsi:type='typens:RevResult' > xmlns:typens='http://www.esri.com/schemas/ArcGIS/ > 9.3'><ResultSpecificationElement > xsi:type='typens:RevResultSpecification'><UniqueID>{63E8437E-9EB6-4FA5-8214-1B7D9226ECF5}</ > UniqueID><ErrorClass>1</ErrorClass><ErrorType>999</ > ErrorType><RevStatus>Feature with LNAM: US022612752402533, NOID: > {F39AE854-5355-43DC-9A97-6DFA67959C41} was deleted (was outside > product extent or scale range).</RevStatus><RevCheckName>Clip > Extraneous Features</RevCheckName><Parameters></ > Parameters><SourceConfig xsi:nil='true'/><Notes></Notes><Severity>5</ > Severity></ResultSpecificationElement><ResultPropertiesElement > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>ResourceToValidate</ > Key><Value xsi:type='typens:RevFeatureResource'><DatasetResource > xsi:type='typens:RevBaseDatasetResource'><ResourceDatasetType>5</ > ResourceDatasetType><ResourceWorkspaceName > xsi:type='typens:WorkspaceName'><BrowseName>ArcSDE Data</ > BrowseName><WorkspaceFactoryProgID>esriDataSourcesGDB.SdeWorkspaceFactory. > 1</WorkspaceFactoryProgID><WorkspaceType>esriRemoteDatabaseWorkspace</ > WorkspaceType><ConnectionProperties > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>SERVER</Key><Value > xsi:type='xs:string'>EDDIETEST_sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>INSTANCE</Key><Value > xsi:type='xs:string'>sde:sqlserver:EDDIETEST\sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>DATABASE</Key><Value > xsi:type='xs:string'>MI01M</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>AUTHENTICATION_MODE</ > Key><Value xsi:type='xs:string'>OSA</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>VERSION</Key><Value > xsi:type='xs:string'>DBO.CM</Value></PropertySetProperty></ > PropertyArray></ConnectionProperties></ > ResourceWorkspaceName><ResourceDatasetName>MI01M.DBO.MetaDataA</ > ResourceDatasetName><ResourceIsWorkspace>false</ResourceIsWorkspace></ > DatasetResource><ResourceRowReloadQuery>OBJECTID = 14</ > ResourceRowReloadQuery></Value></PropertySetProperty></PropertyArray></ > ResultPropertiesElement></item><item xsi:type='typens:RevResult' > xmlns:typens='http://www.esri.com/schemas/ArcGIS/ > 9.3'><ResultSpecificationElement > xsi:type='typens:RevResultSpecification'><UniqueID>{3E4D19B2- > C501-48CF-97D6-83F09DD161F4}</UniqueID><ErrorClass>1</ > ErrorClass><ErrorType>999</ErrorType><RevStatus>Feature with LNAM: > US022612751602533, NOID: {A6533A3B-7284-4FC3-A76C-E3119E78EE03} was > deleted (was outside product extent or scale range).</ > RevStatus><RevCheckName>Clip Extraneous Features</ > RevCheckName><Parameters></Parameters><SourceConfig xsi:nil='true'/ >><Notes></Notes><Severity>5</Severity></ > ResultSpecificationElement><ResultPropertiesElement > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>ResourceToValidate</ > Key><Value xsi:type='typens:RevFeatureResource'><DatasetResource > xsi:type='typens:RevBaseDatasetResource'><ResourceDatasetType>5</ > ResourceDatasetType><ResourceWorkspaceName > xsi:type='typens:WorkspaceName'><BrowseName>ArcSDE Data</ > BrowseName><WorkspaceFactoryProgID>esriDataSourcesGDB.SdeWorkspaceFactory. > 1</WorkspaceFactoryProgID><WorkspaceType>esriRemoteDatabaseWorkspace</ > WorkspaceType><ConnectionProperties > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>SERVER</Key><Value > xsi:type='xs:string'>EDDIETEST_sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>INSTANCE</Key><Value > xsi:type='xs:string'>sde:sqlserver:EDDIETEST\sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>DATABASE</Key><Value > xsi:type='xs:string'>MI01M</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>AUTHENTICATION_MODE</ > Key><Value xsi:type='xs:string'>OSA</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>VERSION</Key><Value > xsi:type='xs:string'>DBO.CM</Value></PropertySetProperty></ > PropertyArray></ConnectionProperties></ > ResourceWorkspaceName><ResourceDatasetName>MI01M.DBO.MetaDataA</ > ResourceDatasetName><ResourceIsWorkspace>false</ResourceIsWorkspace></ > DatasetResource><ResourceRowReloadQuery>OBJECTID = 15</ > ResourceRowReloadQuery></Value></PropertySetProperty></PropertyArray></ > ResultPropertiesElement></item><item xsi:type='typens:RevResult' > xmlns:typens='http://www.esri.com/schemas/ArcGIS/ > 9.3'><ResultSpecificationElement > xsi:type='typens:RevResultSpecification'><UniqueID>{98C6AA0F-9434-47B0- > BD83-7EC4DFA7391F}</UniqueID><ErrorClass>1</ErrorClass><ErrorType>999</ > ErrorType><RevStatus>Feature with LNAM: US022612760702533, NOID: > {00AB08F6-977A-4EF2-B186-2C4B267E4969} was deleted (was outside > product extent or scale range).</RevStatus><RevCheckName>Clip > Extraneous Features</RevCheckName><Parameters></ > Parameters><SourceConfig xsi:nil='true'/><Notes></Notes><Severity>5</ > Severity></ResultSpecificationElement><ResultPropertiesElement > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>ResourceToValidate</ > Key><Value xsi:type='typens:RevFeatureResource'><DatasetResource > xsi:type='typens:RevBaseDatasetResource'><ResourceDatasetType>5</ > ResourceDatasetType><ResourceWorkspaceName > xsi:type='typens:WorkspaceName'><BrowseName>ArcSDE Data</ > BrowseName><WorkspaceFactoryProgID>esriDataSourcesGDB.SdeWorkspaceFactory. > 1</WorkspaceFactoryProgID><WorkspaceType>esriRemoteDatabaseWorkspace</ > WorkspaceType><ConnectionProperties > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>SERVER</Key><Value > xsi:type='xs:string'>EDDIETEST_sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>INSTANCE</Key><Value > xsi:type='xs:string'>sde:sqlserver:EDDIETEST\sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>DATABASE</Key><Value > xsi:type='xs:string'>MI01M</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>AUTHENTICATION_MODE</ > Key><Value xsi:type='xs:string'>OSA</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>VERSION</Key><Value > xsi:type='xs:string'>DBO.CM</Value></PropertySetProperty></ > PropertyArray></ConnectionProperties></ > ResourceWorkspaceName><ResourceDatasetName>MI01M.DBO.MetaDataA</ > ResourceDatasetName><ResourceIsWorkspace>false</ResourceIsWorkspace></ > DatasetResource><ResourceRowReloadQuery>OBJECTID = 16</ > ResourceRowReloadQuery></Value></PropertySetProperty></PropertyArray></ > ResultPropertiesElement></item><item xsi:type='typens:RevResult' > xmlns:typens='http://www.esri.com/schemas/ArcGIS/ > 9.3'><ResultSpecificationElement > xsi:type='typens:RevResultSpecification'><UniqueID>{24AEECE5-145C-4BF2-9853-1097F5FCEBF2}</ > UniqueID><ErrorClass>1</ErrorClass><ErrorType>999</ > ErrorType><RevStatus>Feature with LNAM: US038409024403123, NOID: > {863056D0-266D-45EC-941D-3758686F6F0B} was deleted (was outside > product extent or scale range).</RevStatus><RevCheckName>Clip > Extraneous Features</RevCheckName><Parameters></ > Parameters><SourceConfig xsi:nil='true'/><Notes></Notes><Severity>5</ > Severity></ResultSpecificationElement><ResultPropertiesElement > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>ResourceToValidate</ > Key><Value xsi:type='typens:RevFeatureResource'><DatasetResource > xsi:type='typens:RevBaseDatasetResource'><ResourceDatasetType>5</ > ResourceDatasetType><ResourceWorkspaceName > xsi:type='typens:WorkspaceName'><BrowseName>ArcSDE Data</ > BrowseName><WorkspaceFactoryProgID>esriDataSourcesGDB.SdeWorkspaceFactory. > 1</WorkspaceFactoryProgID><WorkspaceType>esriRemoteDatabaseWorkspace</ > WorkspaceType><ConnectionProperties > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>SERVER</Key><Value > xsi:type='xs:string'>EDDIETEST_sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>INSTANCE</Key><Value > xsi:type='xs:string'>sde:sqlserver:EDDIETEST\sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>DATABASE</Key><Value > xsi:type='xs:string'>MI01M</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>AUTHENTICATION_MODE</ > Key><Value xsi:type='xs:string'>OSA</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>VERSION</Key><Value > xsi:type='xs:string'>DBO.CM</Value></PropertySetProperty></ > PropertyArray></ConnectionProperties></ > ResourceWorkspaceName><ResourceDatasetName>MI01M.DBO.MetaDataA</ > ResourceDatasetName><ResourceIsWorkspace>false</ResourceIsWorkspace></ > DatasetResource><ResourceRowReloadQuery>OBJECTID = 11577</ > ResourceRowReloadQuery></Value></PropertySetProperty></PropertyArray></ > ResultPropertiesElement></item><item xsi:type='typens:RevResult' > xmlns:typens='http://www.esri.com/schemas/ArcGIS/ > 9.3'><ResultSpecificationElement > xsi:type='typens:RevResultSpecification'><UniqueID>{08799BE3-632B-40D2- > BD5A-F7B4914AB9BD}</UniqueID><ErrorClass>1</ErrorClass><ErrorType>999</ > ErrorType><RevStatus>Feature with LNAM: US038409024703123, NOID: > {7068F48F-0BAD-4687-B147-AA646B96D1B1} was deleted (was outside > product extent or scale range).</RevStatus><RevCheckName>Clip > Extraneous Features</RevCheckName><Parameters></ > Parameters><SourceConfig xsi:nil='true'/><Notes></Notes><Severity>5</ > Severity></ResultSpecificationElement><ResultPropertiesElement > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>ResourceToValidate</ > Key><Value xsi:type='typens:RevFeatureResource'><DatasetResource > xsi:type='typens:RevBaseDatasetResource'><ResourceDatasetType>5</ > ResourceDatasetType><ResourceWorkspaceName > xsi:type='typens:WorkspaceName'><BrowseName>ArcSDE Data</ > BrowseName><WorkspaceFactoryProgID>esriDataSourcesGDB.SdeWorkspaceFactory. > 1</WorkspaceFactoryProgID><WorkspaceType>esriRemoteDatabaseWorkspace</ > WorkspaceType><ConnectionProperties > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>SERVER</Key><Value > xsi:type='xs:string'>EDDIETEST_sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>INSTANCE</Key><Value > xsi:type='xs:string'>sde:sqlserver:EDDIETEST\sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>DATABASE</Key><Value > xsi:type='xs:string'>MI01M</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>AUTHENTICATION_MODE</ > Key><Value xsi:type='xs:string'>OSA</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>VERSION</Key><Value > xsi:type='xs:string'>DBO.CM</Value></PropertySetProperty></ > PropertyArray></ConnectionProperties></ > ResourceWorkspaceName><ResourceDatasetName>MI01M.DBO.MetaDataA</ > ResourceDatasetName><ResourceIsWorkspace>false</ResourceIsWorkspace></ > DatasetResource><ResourceRowReloadQuery>OBJECTID = 11578</ > ResourceRowReloadQuery></Value></PropertySetProperty></PropertyArray></ > ResultPropertiesElement></item><item xsi:type='typens:RevResult' > xmlns:typens='http://www.esri.com/schemas/ArcGIS/ > 9.3'><ResultSpecificationElement > xsi:type='typens:RevResultSpecification'><UniqueID>{42AA75D2-52C1-4336-97F5- > E2BE4591E375}</UniqueID><ErrorClass>1</ErrorClass><ErrorType>999</ > ErrorType><RevStatus>Feature with LNAM: US038409025003123, NOID: > {0676C8F2-EF52-4522-8D91-953D8C9CA46E} was deleted (was outside > product extent or scale range).</RevStatus><RevCheckName>Clip > Extraneous Features</RevCheckName><Parameters></ > Parameters><SourceConfig xsi:nil='true'/><Notes></Notes><Severity>5</ > Severity></ResultSpecificationElement><ResultPropertiesElement > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>ResourceToValidate</ > Key><Value xsi:type='typens:RevFeatureResource'><DatasetResource > xsi:type='typens:RevBaseDatasetResource'><ResourceDatasetType>5</ > ResourceDatasetType><ResourceWorkspaceName > xsi:type='typens:WorkspaceName'><BrowseName>ArcSDE Data</ > BrowseName><WorkspaceFactoryProgID>esriDataSourcesGDB.SdeWorkspaceFactory. > 1</WorkspaceFactoryProgID><WorkspaceType>esriRemoteDatabaseWorkspace</ > WorkspaceType><ConnectionProperties > xsi:type='typens:PropertySet'><PropertyArray > xsi:type='typens:ArrayOfPropertySetProperty'><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>SERVER</Key><Value > xsi:type='xs:string'>EDDIETEST_sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>INSTANCE</Key><Value > xsi:type='xs:string'>sde:sqlserver:EDDIETEST\sqlexpress</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>DATABASE</Key><Value > xsi:type='xs:string'>MI01M</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>AUTHENTICATION_MODE</ > Key><Value xsi:type='xs:string'>OSA</Value></ > PropertySetProperty><PropertySetProperty > xsi:type='typens:PropertySetProperty'><Key>VERSION</Key><Value > xsi:type='xs:string'>DBO.CM</Value></PropertySetProperty></ > PropertyArray></ConnectionProperties></ > ResourceWorkspaceName><ResourceDatasetName>MI01M.DBO.MetaDataA</ > ResourceDatasetName><ResourceIsWorkspace>false</ResourceIsWorkspace></ > DatasetResource><ResourceRowReloadQuery>OBJECTID = 11579</ > ResourceRowReloadQuery></Value></PropertySetProperty></PropertyArray></ > ResultPropertiesElement></item><footer><TimeInterval>0 Hrs 0 Mins 32 > Secs</TimeInterval><VersionName>DBO.CM</VersionName><DatabasePath></ > DatabasePath></footer></esri:PLTS_XML_File> > > Any help will be highly appreciated. I need to fix this in next 2 > days. > > Thanks, > > Nishi | ||||||
| Company | Legal | Press | Partners | Careers | Sitemap | Contact Us | Altova Blog | Mobile | Full Site | |||
|
