如何使用TopBraid Composer SPARQL网页返回XML?

时间:2013-10-25 14:37:56

标签: xml sparql swp topbraid-composer

我正在使用TopBraid Composer Maestro Edition学习SWP(SPARQL网页),我可以创建一个SWP文件。此SWP文件使用SPARQL查询示例数据集以将结果作为HTML返回。这是我项目中的代码片段:

<!-- Navigate to http://localhost:8083/tbl/tutorial.swp?test=Mate in a web browser -->
<ui:setContext 
    xmlns:kennedys="http://topbraid.org/examples/kennedys#"
    ui:queryGraph="&lt;http://topbraid.org/examples/kennedys&gt;"
        let:test="{= ui:param('test', xsd:string) }">
        <h1>G'day, {= ?test }!</h1>
        <ul>
            <ui:forEach ui:resultSet="{#
                SELECT * 
                WHERE {
                    &lt;http://topbraid.org/examples/kennedys#AlfredTucker&gt; ?property ?value .
                }
                }">
            <li>{= ui:label(?value) }</li>
        </ui:forEach>
    </ul>
</ui:setContext>

此SWP代码段就像魅力一样,可以显示我需要的内容。但是,如何获取XML而不是HTML?

编辑:

这是返回的HTML:

<!DOCTYPE html>
<html>
    <head>
        <META http-equiv="Content-Type" content="text/html; charset=utf-8">
    </head>
    <body>
        <data>
            <entry>
                <property>year of birth</property>
                <value>1967</value>
            </entry>
            <entry>
                <property>first name</property>
                <value>Alfred</value>
            </entry>
            <entry>
                <property>has gender</property>
                <value>male</value>
            </entry>
            <entry>
                <property>last name</property>
                <value>Tucker</value>
            </entry>
            <entry>
                <property>name</property>
                <value>Alfred Tucker</value>
            </entry>
            <entry>
                <property>has spouse</property>
                <value>Kym Smith</value>
            </entry>
            <entry>
                <property>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</property>
                <value>Person</value>
            </entry>
        </data>
    </body>
</html>

而不是那样,我只想让它用xml标题返回:

<data>
  <entry>
    <property>year of birth</property>
    <value>1967</value>
  </entry>
  <entry>
    <property>first name</property>
    <value>Alfred</value>
  </entry>
  <entry>
    <property>has gender</property>
    <value>male</value>
  </entry>
  <entry>
    <property>last name</property>
    <value>Tucker</value>
  </entry>
  <entry>
    <property>name</property>
    <value>Alfred Tucker</value>
  </entry>
  <entry>
    <property>has spouse</property>
    <value>Kym Smith</value>
  </entry>
  <entry>
    <property>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</property>
    <value>Person</value>
  </entry>
</data>

1 个答案:

答案 0 :(得分:0)

SWP是一个数据模板工具,就像JSP,ASP等一样。处理器将响应SWP文件中的任何文本,除非有一个SWP处理指令,用花括号或SWP元素表示。因此,对您的问题的简短回答是简单地使用XML标记而不是HTML。

以下内容应该为您提供所需的XML:

<ui:setContext xmlns:kennedys="http://topbraid.org/examples/kennedys#"
               ui:queryGraph="&lt;http://topbraid.org/examples/kennedys&gt;">
    <data>
        <ui:forEach ui:resultSet="{#
            SELECT * 
            WHERE {
                &lt;http://topbraid.org/examples/kennedys#AlfredTucker&gt; ?property ?value .
            }
            }">
           <entry>
              <property>{= ?property}</property>
              <value>{= ui:label(?value) }</value>
           </entry>
       </ui:forEach>
    </data>
</ui:setContext>