Difference between revisions of "Integrating oXygen"
Jump to navigation
Jump to search
Line 76: | Line 76: | ||
# Enter a name for your transformation, e.g. "BaseX" like in the screenshot below. | # Enter a name for your transformation, e.g. "BaseX" like in the screenshot below. | ||
# Specify an optional XML and XQuery URL. | # Specify an optional XML and XQuery URL. | ||
− | #* If you would like to query the BaseX database you connected to via WebDAV, leave the ''XML URL'' field empty. To | + | #* If you would like to query the BaseX database you connected to via WebDAV, leave the ''XML URL'' field empty. To access your database, you can use the following ''XQuery URL'' file: [[File:Oxygen-query-example.png]] |
#* If you specify an XML document in the ''XML URL'' field, you can query its content using {{Code|.}} (dot operator) in your ''XQuery URL'' file. | #* If you specify an XML document in the ''XML URL'' field, you can query its content using {{Code|.}} (dot operator) in your ''XQuery URL'' file. | ||
# Choose "BaseX XQJ" as Transformer from the combo box. | # Choose "BaseX XQJ" as Transformer from the combo box. |
Revision as of 13:57, 21 January 2019
This tutorial is part of the Getting Started Section. It describes how to access BaseX from the oXygen XML Editor. Currently, there are two alternatives how to use BaseX in oXygen:
- Resources in BaseX databases can be opened and modified.
- XPath/XQuery 1.0 expressions can be run by the query processor of BaseX.
- Note: BaseX itself is a highly compliant XQuery 3.1 processor. The restriction to XQuery 1.0 arises from the XQJ Interface which is used to establish the connection between oXygen and BaseX. We strongly encourage you to use the XML editor integrated into the BaseX GUI to edit and query your XML data!
Contents
Access Database Resources
Preparations
- Download one of the BaseX distributions.
- Start BaseX (see Startup).
- Create a BaseX database, if necessary (see Databases).
- Start the BaseX WebDAV service.
Configuration
- In oXygen, go to menu Options → Preferences → Data Sources.
- In the Connections panel (in the lower half of the screen), click the New button (
+
). - Enter "BaseX WebDAV" as connection name.
- Select "WebDAV (S)FTP" in the Data Source dropdown box.
- Fill in the appropriate connection details as follows:
- Set the WebDAV/FTP URL to
http://localhost:8984/webdav
. - Set the user name to
admin
. - Set the password to
admin
.
- Set the WebDAV/FTP URL to
- Now press OK, and your Data Source is ready for use.
You can then access your database file(s) via the Data Source Explorer: Windows → Show View → Data Source Explorer.
Perform Queries
One-Time Setup
Preparations
- Download one of the complete BaseX distributions (ZIP, EXE), if necessary.
- Start BaseX (see Startup). Note: Charles Foster's XQJ implementation provides a default (client/server) and a local driver. If you want to use the first flavor, you need to start a BaseX Server instance.
Configure Data Source
- In oXygen, select Options → Preferences → Data Sources.
- In the Data Sources panel, add a new data source using the New button (
+
). - Enter "BaseX" as name and select XQuery API for Java(XQJ) from the Type dropdown box.
- Add the following JAR files (downloaded in Preparations procedure) with the Add Files Button. The versions of the JAR files may differ.
basex/lib/xqj-api-1.0.jar
basex/lib/xqj2-0.2.0.jar
basex/lib/basex-xqj-9.0.jar
basex/basex.jar
, if you want to use BaseX embedded
- Under "Driver class", choose the preferred driver class:
- Embedded:
net.xqj.basex.BaseXXQDataSource
- Client/server:
net.xqj.basex.local.BaseXXQDataSource
- Embedded:
- Click OK.
Configure Connection
- In the Connections section (in the lower half of the Data Source dialog), click New (
+
). - Enter "BaseX XQJ" as name and select "BaseX" as data source.
- If you use the default driver, enter the following values in the Connection Details section:
- port:
1984
- serverName:
localhost
- user:
admin
- password:
admin
- port:
- Click OK to complete the connection configuration.
- Click OK again to close the Preferences dialog.
Configure New Transformation Scenario
- Select Window → Show View → Transformation Scenarios.
- In the Transformation Scenarios panel, click
+
and select XQuery transformation in the lower part of the dropdown list. - Enter a name for your transformation, e.g. "BaseX" like in the screenshot below.
- Specify an optional XML and XQuery URL.
- If you would like to query the BaseX database you connected to via WebDAV, leave the XML URL field empty. To access your database, you can use the following XQuery URL file:
- If you specify an XML document in the XML URL field, you can query its content using
.
(dot operator) in your XQuery URL file.
- If you would like to query the BaseX database you connected to via WebDAV, leave the XML URL field empty. To access your database, you can use the following XQuery URL file:
- Choose "BaseX XQJ" as Transformer from the combo box.
- Click OK to complete the scenario configuration.
Execute Query
After the one-time setup steps are complete, you can execute your query using the new transformation scenario. Start the transformation by clicking the red Run button (Apply associated scenarios) in the Transformation Scenarios window, while your scenario is selected. The results should be immediately displayed in the result panel.