Как выбрать элементы в области имен и избавиться от пустого пространства имен по умолчанию в выводе - PullRequest
3 голосов
/ 06 июня 2011

Мне нужно преобразовать следующий входной файл

<?xml version="1.0"?>
<soap:Envelope 
    xmlns:soap="http://www.w3.org/2003/05/soap-envelope" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
    xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" 
    xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" 
    xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <env:Header xmlns:env="http://www.w3.org/2003/05/soap-envelope">
        <wsa:Action>http://worksite.imanage.com/SearchDocumentsResponse</wsa:Action>
        <wsa:MessageID>urn:uuid:b9b79a0f-b4de-4686-9c54-51c5a7f99331</wsa:MessageID>
        <wsa:RelatesTo>urn:uuid:8e88f531-8369-4557-80bf-e8a9835d8eb3</wsa:RelatesTo>
        <wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
        <wsse:Security>
            <wsu:Timestamp wsu:Id="Timestamp-ea526ce6-ca66-4aaf-aae9-cf2fe8d5cbad">
                <wsu:Created>2011-06-01T07:09:20Z</wsu:Created>
                <wsu:Expires>2011-06-01T07:14:20Z</wsu:Expires>
            </wsu:Timestamp>
        </wsse:Security>
    </env:Header>
    <soap:Body>
        <SearchDocumentsResult xmlns="http://worksite.imanage.com">
            <Documents>
                <Document>
                    <ObjectID>!nrtdms:0:!session:PTHT096:!database:Technical:!document:803226,1:</ObjectID>
                    <Database>Technical</Database>
                    <Profile>
                        <ProfileItem>
                            <AttributeID>imProfileDocNum</AttributeID>
                            <Value>803226</Value>
                        </ProfileItem>
                        <ProfileItem>
                            <AttributeID>imProfileDescription</AttributeID>
                            <Value>TC-D60-1087 - Compressor C-301C Installation Work Platform General Arrangement</Value>
                        </ProfileItem>
                        <ProfileItem>
                            <AttributeID>imProfileVersion</AttributeID>
                            <Value>1</Value>
                        </ProfileItem>
                        <ProfileItem>
                            <AttributeID>imProfileCustom3</AttributeID>
                            <Value>CV</Value>
                        </ProfileItem>
                        <ProfileItem>
                            <AttributeID>imProfileDatabase</AttributeID>
                            <Value>Technical</Value>
                        </ProfileItem>
                        <ProfileItem>
                            <AttributeID>imProfileExtension</AttributeID>
                            <Value>ACROBAT</Value>
                        </ProfileItem>
                    </Profile>
                </Document>
            </Documents>
        </SearchDocumentsResult>
    </soap:Body>
</soap:Envelope>

в следующий выходной файл

<?xml version="1.0"?>
<soap:Envelope 
    xmlns:soap="http://www.w3.org/2003/05/soap-envelope" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
    xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" 
    xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" 
    xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <env:Header xmlns:env="http://www.w3.org/2003/05/soap-envelope">
        <wsa:Action>http://worksite.imanage.com/SearchDocumentsResponse</wsa:Action>
        <wsa:MessageID>urn:uuid:b9b79a0f-b4de-4686-9c54-51c5a7f99331</wsa:MessageID>
        <wsa:RelatesTo>urn:uuid:8e88f531-8369-4557-80bf-e8a9835d8eb3</wsa:RelatesTo>
        <wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
        <wsse:Security>
            <wsu:Timestamp wsu:Id="Timestamp-ea526ce6-ca66-4aaf-aae9-cf2fe8d5cbad">
                <wsu:Created>2011-06-01T07:09:20Z</wsu:Created>
                <wsu:Expires>2011-06-01T07:14:20Z</wsu:Expires>
            </wsu:Timestamp>
        </wsse:Security>
    </env:Header>
    <soap:Body>
        <SearchDocumentsResult xmlns="http://worksite.imanage.com">
            <Documents>
                <Document>
                    <ObjectID>!nrtdms:0:!session:PTHT096:!database:Technical:!document:803226,1:</ObjectID>
                    <Database>Technical</Database>
                    <Profile>
                        <ProfileItem>
                            <AttributeID>imProfileDocNum</AttributeID>
                            <Value>803226</Value>
                        </ProfileItem>
                        <ProfileItem>
                            <AttributeID>imProfileDescription</AttributeID>
                            <Value>TC-D60-1087 - Compressor C-301C Installation Work Platform General Arrangement</Value>
                        </ProfileItem>
                        <ProfileItem>
                            <AttributeID>imProfileVersion</AttributeID>
                            <Value>1</Value>
                        </ProfileItem>
                        <ProfileItem>
                            <AttributeID>imProfileCustom3</AttributeID>
                            <Value>CV</Value>
                        </ProfileItem>
                        <ProfileItem>
                            <AttributeID>imProfileDatabase</AttributeID>
                            <Value>Technical</Value>
                        </ProfileItem>
                        <ProfileItem>
                            <AttributeID>imProfileExtension</AttributeID>
                            <Value>pdf</Value>
                        </ProfileItem>
                    </Profile>
                </Document>
            </Documents>
        </SearchDocumentsResult>
    </soap:Body>
</soap:Envelope>

Я написал следующую таблицу стилей для выполнения работы

<?xml version="1.0" encoding="UTF-8"?>

<xsl:stylesheet 
xmlns:xsl = "http://www.w3.org/1999/XSL/Transform"
xmlns:xs = "http://www.w3.org/2001/XMLSchema"
xmlns:soap = "http://www.w3.org/2003/05/soap-envelope"
    xmlns:w = "http://worksite.imanage.com"
exclude-result-prefixes="#all"
version="2.0">

<xsl:output indent="yes"/>

<xsl:template match="element()">
    <xsl:copy>
    <xsl:apply-templates select="@*,node()"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="attribute()|text()|comment()|processing-instruction()">
    <xsl:copy/>
</xsl:template>

<xsl:template match = "//w:ProfileItem[6]/child::w:Value">        
    <xsl:call-template name="changeDocumentExtension"/>
</xsl:template>

<xsl:template name = "changeDocumentExtension">

    <xsl:variable 
    name="iManageExtension"
    as = "xs:string"
    select="//w:AttributeID[. = 'imProfileExtension']/following::w:Value"
    />

    <xsl:choose>
    <xsl:when test="$iManageExtension eq 'ACROBAT'">
        <Value>pdf</Value>
    </xsl:when>
    <xsl:when test="$iManageExtension eq 'ANSI'">
        <Value>txt</Value>
    </xsl:when>
    <xsl:when test="$iManageExtension eq 'EXCEL'">
        <Value>xsl</Value>
    </xsl:when>
    <xsl:when test="$iManageExtension eq 'EXCELX'">
        <Value>xslx</Value>
    </xsl:when>
    <xsl:when test="$iManageExtension eq 'PDF230'">
        <Value>pdf</Value>
    </xsl:when>
    <xsl:when test="$iManageExtension eq 'WORD'">
        <Value>doc</Value>
    </xsl:when>
    <xsl:when test="$iManageExtension eq 'WORDX'">
        <Value>docx</Value>
    </xsl:when>
    <xsl:when test="$iManageExtension eq 'WORDXT'">
        <Value>docx</Value>
    </xsl:when>
    </xsl:choose>               

</xsl:template>      

</xsl:stylesheet>

Это вывод, который я получаю

<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope 
    xmlns:soap="http://www.w3.org/2003/05/soap-envelope"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
    xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
    xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <env:Header xmlns:env="http://www.w3.org/2003/05/soap-envelope">
    <wsa:Action>http://worksite.imanage.com/SearchDocumentsResponse</wsa:Action>
    <wsa:MessageID>urn:uuid:b9b79a0f-b4de-4686-9c54-51c5a7f99331</wsa:MessageID>
    <wsa:RelatesTo>urn:uuid:8e88f531-8369-4557-80bf-e8a9835d8eb3</wsa:RelatesTo>
    <wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
    <wsse:Security>
        <wsu:Timestamp wsu:Id="Timestamp-ea526ce6-ca66-4aaf-aae9-cf2fe8d5cbad">
        <wsu:Created>2011-06-01T07:09:20Z</wsu:Created>
        <wsu:Expires>2011-06-01T07:14:20Z</wsu:Expires>
        </wsu:Timestamp>
    </wsse:Security>
    </env:Header>
    <soap:Body>
    <SearchDocumentsResult xmlns="http://worksite.imanage.com">
        <Documents>
        <Document>
            <ObjectID>!nrtdms:0:!session:PTHT096:!database:Technical:!document:803226,1:</ObjectID>
            <Database>Technical</Database>
            <Profile>
            <ProfileItem>
                <AttributeID>imProfileDocNum</AttributeID>
                <Value>803226</Value>
            </ProfileItem>
            <ProfileItem>
                <AttributeID>imProfileDescription</AttributeID>
                <Value>TC-D60-1087 - Compressor C-301C Installation Work Platform General Arrangement</Value>
            </ProfileItem>
            <ProfileItem>
                <AttributeID>imProfileVersion</AttributeID>
                <Value>1</Value>
            </ProfileItem>
            <ProfileItem>
                <AttributeID>imProfileCustom3</AttributeID>
                <Value>CV</Value>
            </ProfileItem>
            <ProfileItem>
                <AttributeID>imProfileDatabase</AttributeID>
                <Value>Technical</Value>
            </ProfileItem>
            <ProfileItem>
                <AttributeID>imProfileExtension</AttributeID>
                <Value xmlns="">pdf</Value>
            </ProfileItem>
            </Profile>
        </Document>
        </Documents>
    </SearchDocumentsResult>
    </soap:Body>
</soap:Envelope>

Я хотел бы получить помощь по следующим вопросам:

  1. Существует нежелательный xmlns = "msgstr "элемент в выводе, который нельзя удалить с помощью атрибута exclude-result-prefixes.Я не знаю, как от этого избавиться.

  2. Таблица стилей имеет два длинных XPath.Они выполняют свою работу и указывают на правильные элементы, но я не могу удержаться от страха каждый раз, когда смотрю на них.Если бы кто-то мог предложить более короткую, более чистую альтернативу, я был бы очень признателен.

Ответы [ 2 ]

3 голосов
/ 06 июня 2011

Упрощение XPath

Я предлагаю вам включить в ваше преобразование объявление с префиксом для пространств имен по умолчанию. Например для

 <SearchDocumentsResult xmlns="http://worksite.imanage.com">

вы можете добавить w префикс в элементе таблицы стилей:

<xsl:stylesheet 
xmlns:xsl = "http://www.w3.org/1999/XSL/Transform"
xmlns:xs = "http://www.w3.org/2001/XMLSchema"
xmlns:soap = "http://www.w3.org/2003/05/soap-envelope"
xmlns:w = "http://worksite.imanage.com"
exclude-result-prefixes="#all"
version="2.0">

Это облегчит вам выбор элементов в пространстве имен, что позволит избежать совпадения XPath с namespace-uri() и упростит ваш XPath.

О XPath, насколько ваш выбор должен быть абсолютным? Например, следующее работало так же для меня:

"/soap:Envelope/soap:Body[1]/w:SearchDocumentResult/*[1]/*[1]/*[1]/*[6]/*[1]"

Но вы также можете использовать:

"/soap:Envelope/soap:Body[1]/w:SearchDocumentResult//w:Value[1]"

Удалить пустое пространство имен

Чтобы избавиться от пустого пространства имен, появляющегося в элементе Value, необходимо исправить таблицу стилей так, чтобы каждый элемент Value был правильно расположен в пространстве имен. Пример: * +1028 *

<xsl:when test="$iManageExtension eq 'ACROBAT'">
  <xsl:element 
       name="Value" 
       namespace="http://worksite.imanage.com">
       pdf
  </xsl:element>

Таким образом, система обычно выводит элемент без пространства имен.


Дополнительные сведения об упрощении XPath

Обратите внимание, что в определенных ситуациях , где в основном вы хотите управлять определенным пространством имен, вы можете просто сделать:

<xsl:stylesheet 
xmlns:xsl = "http://www.w3.org/1999/XSL/Transform"
xmlns:xs = "http://www.w3.org/2001/XMLSchema"
xmlns:soap = "http://www.w3.org/2003/05/soap-envelope"
exclude-result-prefixes="#all"
xpath-default-namespace="http://worksite.imanage.com"
version="2.0">

и работать без префикса пространства имен.

1 голос
/ 08 июня 2011

Следующая таблица стилей делает работу:

    <?xml version="1.0" encoding="UTF-8"?>

    <xsl:stylesheet 
        xmlns:xsl = "http://www.w3.org/1999/XSL/Transform"
        xmlns:xs = "http://www.w3.org/2001/XMLSchema"   
        xmlns:w = "http://worksite.imanage.com"      
        exclude-result-prefixes="#all"
        version="2.0">

    <xsl:output indent="yes"/>

    <xsl:template match="element()">
        <xsl:copy>
            <xsl:apply-templates select="@*, node()"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="attribute()|text()|comment()|processing-instruction()">
        <xsl:copy/>
    </xsl:template>

    <xsl:template match = "//w:ProfileItem[6]/child::w:Value">
        <xsl:element name="{local-name()}" namespace="http://worksite.imanage.com">
            <xsl:call-template name="changeDocumentExtension"/>
        </xsl:element>
    </xsl:template>

    <xsl:template name="changeDocumentExtension">

        <xsl:variable 
            name="iManageExtension" 
            as="xs:string"
            select="//w:AttributeID[. = 'imProfileExtension']/following::w:Value"/>

        <xsl:choose>
            <xsl:when test="$iManageExtension eq 'ACROBAT'"> pdf </xsl:when>
            <xsl:when test="$iManageExtension eq 'ANSI'"> txt </xsl:when>
            <xsl:when test="$iManageExtension eq 'EXCEL'"> xsl </xsl:when>
            <xsl:when test="$iManageExtension eq 'EXCELX'"> xslx </xsl:when>
            <xsl:when test="$iManageExtension eq 'HTML'"> htm </xsl:when>
            <xsl:when test="$iManageExtension eq 'JPEG'"> jpg </xsl:when>
            <xsl:when test="$iManageExtension eq 'PDF230'"> pdf </xsl:when>
            <xsl:when test="$iManageExtension eq 'PPT'"> ppt </xsl:when>
            <xsl:when test="$iManageExtension eq 'PPTX'"> pptx </xsl:when>
            <xsl:when test="$iManageExtension eq 'WORD'"> doc </xsl:when>
            <xsl:when test="$iManageExtension eq 'WORDX'"> docx </xsl:when>
            <xsl:when test="$iManageExtension eq 'WORDXT'"> docx </xsl:when>
        </xsl:choose>

    </xsl:template>      

</xsl:stylesheet>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...