Skip to content
Snippets Groups Projects
Commit 0541902b authored by miesma's avatar miesma
Browse files

add BaseX

parent c124ae1f
Branches
Tags
No related merge requests found
Showing
with 992 additions and 0 deletions
Manifest-Version: 1.0
Built-By: user
Build-Jdk: 1.7.0_67
Created-By: Apache Maven 3.2.5
Archiver-Version: Plexus Archiver
<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
<Configure id="Server" class="org.eclipse.jetty.server.Server">
<!-- Default connector. The Jetty stop port can be specified
in the .basex or pom.xml configuration file. -->
<Call name="addConnector">
<Arg>
<New class="org.eclipse.jetty.server.nio.SelectChannelConnector">
<Set name="host">0.0.0.0</Set>
<Set name="port">8984</Set>
<Set name="maxIdleTime">60000</Set>
<Set name="reuseAddress">true</Set>
<Set name="Acceptors">2</Set>
<!-- Support for SSL connections .
<Set name="confidentialPort">8986</Set>
-->
</New>
</Arg>
</Call>
<!-- Debugging
<Get class="org.eclipse.jetty.util.log.Log" name="log">
<Set name="debugEnabled">true</Set>
</Get> -->
<!-- Support for SSL connections.
<Call name="addConnector">
<Arg>
<New class="org.eclipse.jetty.server.ssl.SslSelectChannelConnector">
<Set name="Port">8986</Set>
<Set name="maxIdleTime">60000</Set>
<Set name="keystore"><SystemProperty name="jetty.home" default="."/>/etc/keystore</Set>
<Set name="password">jetty</Set>
<Set name="keyPassword">jetty</Set>
<Set name="truststore"><SystemProperty name="jetty.home" default="."/>/etc/keystore</Set>
<Set name="trustPassword">jetty</Set>
</New>
</Arg>
</Call>-->
</Configure>
<?xml version="1.0" encoding="UTF-8"?>
<web-app
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<display-name>BaseX: The XML Database and XQuery Processor</display-name>
<description>HTTP Services</description>
<!-- All BaseX options can be overwritten prefixing the key with "org.basex."
and specifying them in <context-param/> elements, as shown below. Please
check out http://docs.basex.org/wiki/Options for a list of all options. -->
<!--
<context-param>
<param-name>org.basex.restxqpath</param-name>
<param-value>.</param-value>
</context-param>
<context-param>
<param-name>org.basex.dbpath</param-name>
<param-value>WEB-INF/data</param-value>
</context-param>
<context-param>
<param-name>org.basex.repopath</param-name>
<param-value>WEB-INF/repo</param-value>
</context-param>
<context-param>
<param-name>org.basex.user</param-name>
<param-value>admin</param-value>
</context-param>
<context-param>
<param-name>org.basex.password</param-name>
<param-value>admin</param-value>
</context-param>
<context-param>
<param-name>org.basex.authmethod</param-name>
<param-value>Digest</param-value>
</context-param>
<context-param>
<param-name>org.basex.httplocal</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<param-name>org.basex.timeout</param-name>
<param-value>5</param-value>
</context-param>
<context-param>
<param-name>org.basex.log</param-name>
<param-value>false</param-value>
</context-param>
-->
<!-- Global session and servlet listener -->
<listener>
<listener-class>org.basex.http.SessionListener</listener-class>
<listener-class>org.basex.http.ServletListener</listener-class>
</listener>
<!-- RESTXQ Service (can be deactivated by removing this entry) -->
<servlet>
<servlet-name>RESTXQ</servlet-name>
<servlet-class>org.basex.http.restxq.RestXqServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>RESTXQ</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<!-- REST Service (can be deactivated by removing this entry) -->
<servlet>
<servlet-name>REST</servlet-name>
<servlet-class>org.basex.http.rest.RESTServlet</servlet-class>
<!-- service-specific credentials
<init-param>
<param-name>org.basex.user</param-name>
<param-value/>
</init-param>
<init-param>
<param-name>org.basex.password</param-name>
<param-value/>
</init-param>
-->
</servlet>
<servlet-mapping>
<servlet-name>REST</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
<!-- WebDAV Service (can be deactivated by removing this entry) -->
<servlet>
<servlet-name>WebDAV</servlet-name>
<servlet-class>org.basex.http.webdav.WebDAVServlet</servlet-class>
<!-- service-specific credentials
<init-param>
<param-name>org.basex.user</param-name>
<param-value/>
</init-param>
<init-param>
<param-name>org.basex.password</param-name>
<param-value/>
</init-param>
-->
</servlet>
<servlet-mapping>
<servlet-name>WebDAV</servlet-name>
<url-pattern>/webdav/*</url-pattern>
</servlet-mapping>
<!-- Mapping for static resources (may be restricted to a sub path) -->
<servlet>
<servlet-name>default</servlet-name>
<init-param>
<param-name>useFileMappedBuffer</param-name>
<param-value>false</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>/static/*</url-pattern>
</servlet-mapping>
</web-app>
File added
10:54:14.781 SERVER admin OK Server was started (port: 1984).
10:54:50.169 0:0:0:0:0:0:0:1:49906 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:54:50.271 0:0:0:0:0:0:0:1:49906 admin 401 No username specified. 104.96 ms
10:54:50.941 0:0:0:0:0:0:0:1:49943 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:54:51.145 0:0:0:0:0:0:0:1:49943 admin 401 No username specified. 204.6 ms
10:54:51.540 0:0:0:0:0:0:0:1:49915 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:54:51.958 0:0:0:0:0:0:0:1:49915 admin 401 No username specified. 417.36 ms
10:54:56.342 0:0:0:0:0:0:0:1:49915 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:54:56.487 0:0:0:0:0:0:0:1:49915 admin 200 145.75 ms
10:55:07.337 0:0:0:0:0:0:0:1:49915 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:55:07.340 0:0:0:0:0:0:0:1:49915 admin 200 3.2 ms
10:55:21.292 0:0:0:0:0:0:0:1:49915 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/xml
10:55:21.306 0:0:0:0:0:0:0:1:49915 admin 404 Database 'xml' was not found. 14.05 ms
10:55:24.496 0:0:0:0:0:0:0:1:49965 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/xml
10:55:24.598 0:0:0:0:0:0:0:1:49965 admin 401 No username specified. 101.24 ms
10:55:24.860 0:0:0:0:0:0:0:1:49965 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:55:25.071 0:0:0:0:0:0:0:1:49965 admin 401 No username specified. 211.09 ms
10:55:25.298 0:0:0:0:0:0:0:1:49915 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:55:25.301 0:0:0:0:0:0:0:1:49915 admin 200 3.24 ms
10:56:26.552 127.0.0.1:49995 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/dba
10:56:26.553 127.0.0.1:49995 admin 404 Database 'dba' was not found. 1.06 ms
10:56:38.991 127.0.0.1:49995 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/dba/database
10:56:38.992 127.0.0.1:49995 admin 404 Database 'dba' was not found. 1.29 ms
10:57:25.945 0:0:0:0:0:0:0:1:50055 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:57:25.947 0:0:0:0:0:0:0:1:50055 admin 200 2.53 ms
10:57:37.764 0:0:0:0:0:0:0:1:50062 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:57:37.866 0:0:0:0:0:0:0:1:50062 admin 401 No username specified. 102.07 ms
10:57:38.088 0:0:0:0:0:0:0:1:50062 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:57:38.294 0:0:0:0:0:0:0:1:50062 admin 401 No username specified. 206.23 ms
10:57:38.484 0:0:0:0:0:0:0:1:50062 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:57:38.557 0:0:0:0:0:0:0:1:50055 admin REQUEST [GET] http://localhost:8080/BaseX821/
10:57:38.907 0:0:0:0:0:0:0:1:50062 admin 401 No username specified. 422.71 ms
10:57:39.994 0:0:0:0:0:0:0:1:50055 admin 200 1437.19 ms
11:02:45.034 127.0.0.1:50123 admin REQUEST [GET] http://localhost:8080/BaseX821/
11:02:45.089 127.0.0.1:50123 admin 200 55.35 ms
11:03:01.168 127.0.0.1:50123 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
11:03:01.270 127.0.0.1:50123 admin 401 No username specified. 102.46 ms
11:03:01.283 0:0:0:0:0:0:0:1:50142 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
11:03:01.286 0:0:0:0:0:0:0:1:50142 admin 200 2.54 ms
11:03:33.557 0:0:0:0:0:0:0:1:50169 admin REQUEST [GET] http://localhost:8080/BaseX821/rest
11:03:33.660 0:0:0:0:0:0:0:1:50169 admin 401 No username specified. 103.11 ms
11:03:33.666 0:0:0:0:0:0:0:1:50169 admin REQUEST [GET] http://localhost:8080/BaseX821/rest
11:03:33.668 0:0:0:0:0:0:0:1:50169 admin 200 2.23 ms
11:03:58.265 0:0:0:0:0:0:0:1:50173 admin REQUEST [GET] http://localhost:8080/BaseX821/dba
11:03:58.343 0:0:0:0:0:0:0:1:50173 admin 302 77.39 ms
11:03:58.343 0:0:0:0:0:0:0:1:50173 admin 200 0.13 ms
11:03:58.348 0:0:0:0:0:0:0:1:50173 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/databases
11:03:58.578 0:0:0:0:0:0:0:1:50173 admin 302 230.96 ms
11:03:58.579 0:0:0:0:0:0:0:1:50173 admin 200 0.15 ms
11:03:58.584 0:0:0:0:0:0:0:1:50173 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/login
11:03:58.646 0:0:0:0:0:0:0:1:50173 admin 200 62.11 ms
11:03:58.653 0:0:0:0:0:0:0:1:50173 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/style.css
11:03:58.656 0:0:0:0:0:0:0:1:50174 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/js.js
11:03:58.720 0:0:0:0:0:0:0:1:50173 admin 200 68.05 ms
11:03:58.733 0:0:0:0:0:0:0:1:50174 admin 200 76.86 ms
11:03:58.738 0:0:0:0:0:0:0:1:50173 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/basex.svg
11:03:58.788 0:0:0:0:0:0:0:1:50173 admin 200 49.79 ms
11:04:04.702 0:0:0:0:0:0:0:1:50173 admin REQUEST [POST] http://localhost:8080/BaseX821/dba/login-check
11:04:04.776 SERVER admin INFO User was logged in: admin
11:04:04.777 0:0:0:0:0:0:0:1:50173 admin 302 75.16 ms
11:04:04.777 0:0:0:0:0:0:0:1:50173 admin 200 0.11 ms
11:04:04.782 0:0:0:0:0:0:0:1:50173 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/databases
11:04:04.922 0:0:0:0:0:0:0:1:50173 admin 200 140.3 ms
11:04:10.235 0:0:0:0:0:0:0:1:50173 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/database?name=xml_Database_v3
11:04:10.382 0:0:0:0:0:0:0:1:50173 admin 200 146.43 ms
11:06:36.532 0:0:0:0:0:0:0:1:50196 admin REQUEST [POST] http://localhost:8080/BaseX821/dba/database
11:06:36.603 0:0:0:0:0:0:0:1:50196 admin 302 70.66 ms
11:06:36.603 0:0:0:0:0:0:0:1:50196 admin 200 0.11 ms
11:06:36.608 0:0:0:0:0:0:0:1:50196 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/create-backup?name=xml_Database_v3
11:06:36.735 0:0:0:0:0:0:0:1:50196 admin 302 127.13 ms
11:06:36.735 0:0:0:0:0:0:0:1:50196 admin 200 0.16 ms
11:06:36.741 0:0:0:0:0:0:0:1:50196 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/database?name=xml_Database_v3&info=Backup%20was%20created.
11:06:36.836 0:0:0:0:0:0:0:1:50196 admin 200 95.58 ms
11:06:55.245 0:0:0:0:0:0:0:1:50196 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/database?name=xml_Database_v3&resource=xml_Database_v3
11:06:55.350 0:0:0:0:0:0:0:1:50196 admin 200 104.51 ms
11:06:55.585 0:0:0:0:0:0:0:1:50196 admin REQUEST [POST] http://localhost:8080/BaseX821/dba/query-resource?name=xml_Database_v3&resource=xml_Database_v3&sort=&loglist=&query=
11:06:55.741 0:0:0:0:0:0:0:1:50196 admin 200 156.42 ms
11:32:41.285 SERVER admin OK Server was stopped (port: 1984).
11:32:56.807 SERVER admin OK Server was started (port: 1984).
11:34:32.197 SERVER admin OK Server was stopped (port: 1984).
11:35:37.644 SERVER admin OK Server was started (port: 1984).
11:35:52.389 SERVER admin OK Server was stopped (port: 1984).
11:39:56.030 SERVER admin OK Server was started (port: 1984).
11:39:56.858 0:0:0:0:0:0:0:1:50430 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/xml_Database_v3
11:39:56.962 0:0:0:0:0:0:0:1:50430 admin 401 No username specified. 108.66 ms
11:40:00.850 0:0:0:0:0:0:0:1:50430 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/xml_Database_v3
11:40:01.063 0:0:0:0:0:0:0:1:50430 admin 401 Access denied. 213.19 ms
11:40:04.425 0:0:0:0:0:0:0:1:50430 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/xml_Database_v3
11:40:05.041 0:0:0:0:0:0:0:1:50430 admin 200 615.74 ms
11:45:48.734 SERVER admin OK Server was stopped (port: 1984).
12:05:04.512 SERVER admin OK Server was started (port: 1984).
12:06:25.038 SERVER admin OK Server was stopped (port: 1984).
12:23:37.094 SERVER admin OK Server was started (port: 1984).
12:26:22.875 SERVER admin OK Server was stopped (port: 1984).
12:27:55.717 SERVER admin OK Server was started (port: 1984).
12:28:15.578 SERVER admin OK Server was stopped (port: 1984).
13:03:14.979 SERVER admin OK Server was started (port: 1984).
13:10:26.163 0:0:0:0:0:0:0:1:50969 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/database?name=xml_Database_v3&resource=xml_Database_v3
13:10:27.695 0:0:0:0:0:0:0:1:50969 admin 302 1535.28 ms
13:10:27.695 0:0:0:0:0:0:0:1:50969 admin 200 0.35 ms
13:10:27.707 0:0:0:0:0:0:0:1:50969 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/login
13:10:27.767 0:0:0:0:0:0:0:1:50969 admin 200 60.27 ms
13:10:27.798 0:0:0:0:0:0:0:1:50969 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/style.css
13:10:27.805 0:0:0:0:0:0:0:1:50970 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/js.js
13:10:27.845 0:0:0:0:0:0:0:1:50969 admin 200 47.55 ms
13:10:27.874 0:0:0:0:0:0:0:1:50970 admin 200 69.1 ms
13:10:27.879 0:0:0:0:0:0:0:1:50969 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/basex.svg
13:10:27.920 0:0:0:0:0:0:0:1:50969 admin 200 41.4 ms
13:16:22.692 SERVER admin OK Server was stopped (port: 1984).
13:16:29.554 SERVER admin OK Server was started (port: 1984).
13:19:40.339 SERVER admin OK Server was stopped (port: 1984).
13:29:40.082 SERVER admin OK Server was started (port: 1984).
13:32:49.556 SERVER admin OK Server was started (port: 1984).
13:41:28.174 SERVER admin OK Server was started (port: 1984).
13:43:29.450 SERVER admin OK Server was started (port: 1984).
13:53:07.828 SERVER admin OK Server was started (port: 1984).
13:55:05.914 SERVER admin OK Server was started (port: 1984).
13:57:47.836 SERVER admin OK Server was stopped (port: 1984).
13:58:07.818 SERVER admin OK Server was started (port: 1984).
13:58:08.522 SERVER admin ERROR Server is running or permission was denied.
13:58:52.306 SERVER admin OK Server was started (port: 1984).
13:58:53.244 SERVER admin OK Server was stopped (port: 1984).
13:59:16.142 SERVER admin OK Server was started (port: 1984).
14:16:42.828 SERVER admin OK Server was stopped (port: 1984).
14:16:53.394 SERVER admin OK Server was started (port: 1984).
14:16:54.099 SERVER admin ERROR Server is running or permission was denied.
14:17:06.774 SERVER admin OK Server was stopped (port: 1984).
14:17:14.185 SERVER admin OK Server was started (port: 1984).
14:17:27.530 SERVER admin OK Server was stopped (port: 1984).
14:18:07.797 SERVER admin OK Server was started (port: 1984).
16:12:34.869 SERVER admin OK Server was stopped (port: 1984).
16:49:44.549 SERVER admin OK Server was started (port: 1984).
14:18:40.470 SERVER admin OK Server was started (port: 1984).
14:18:41.300 SERVER admin OK Server was stopped (port: 1984).
14:45:56.282 SERVER admin OK Server was started (port: 1984).
14:49:48.052 127.0.0.1:54076 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
14:49:48.159 127.0.0.1:54076 admin 401 No username specified. 112.24 ms
14:49:48.222 127.0.0.1:54076 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
14:49:48.426 127.0.0.1:54076 admin 401 No username specified. 204.64 ms
14:49:53.326 127.0.0.1:54076 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
14:49:53.714 127.0.0.1:54076 admin 200 388.72 ms
14:50:05.809 127.0.0.1:54076 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/xml_Database_v3
14:50:06.379 127.0.0.1:54076 admin 200 570.18 ms
10:29:04.320 SERVER admin OK Server was started (port: 1984).
10:29:33.225 127.0.0.1:49832 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:29:33.327 127.0.0.1:49832 admin 401 No username specified. 105.67 ms
10:29:37.765 127.0.0.1:49832 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:29:38.042 127.0.0.1:49832 admin 200 276.99 ms
10:29:53.481 127.0.0.1:49839 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:29:53.585 127.0.0.1:49839 admin 401 No username specified. 104.02 ms
10:29:53.993 127.0.0.1:49839 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:29:54.199 127.0.0.1:49839 admin 401 No username specified. 206.24 ms
10:29:55.436 127.0.0.1:49839 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:29:55.849 127.0.0.1:49839 admin 401 No username specified. 413.71 ms
10:29:56.110 127.0.0.1:49839 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
10:29:56.355 127.0.0.1:49840 admin REQUEST [GET] http://localhost:8080/BaseX821/
10:29:56.428 127.0.0.1:49832 admin REQUEST [GET] http://localhost:8080/BaseX821/
10:29:56.925 127.0.0.1:49839 admin 401 No username specified. 816.03 ms
10:29:57.748 127.0.0.1:49840 admin 200 1392.62 ms
10:29:57.763 127.0.0.1:49832 admin 200 1335.54 ms
10:30:06.866 127.0.0.1:49832 admin REQUEST [GET] http://localhost:8080/BaseX821/hello/World
10:30:06.927 127.0.0.1:49832 admin 200 61.22 ms
10:30:12.939 127.0.0.1:49832 admin REQUEST [GET] http://localhost:8080/BaseX821/hello/Universe
10:30:12.999 127.0.0.1:49832 admin 200 59.68 ms
10:30:34.741 127.0.0.1:49873 admin REQUEST [GET] http://localhost:8080/BaseX821/dba
10:30:34.807 127.0.0.1:49873 admin 302 66.06 ms
10:30:34.807 127.0.0.1:49873 admin 200 0.1 ms
10:30:34.812 127.0.0.1:49873 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/databases
10:30:35.027 127.0.0.1:49873 admin 302 215.7 ms
10:30:35.027 127.0.0.1:49873 admin 200 0.12 ms
10:30:35.034 127.0.0.1:49873 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/login
10:30:35.111 127.0.0.1:49873 admin 200 77.06 ms
10:30:35.134 127.0.0.1:49873 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/style.css
10:30:35.139 127.0.0.1:49875 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/js.js
10:30:35.193 127.0.0.1:49873 admin 200 70.35 ms
10:30:35.226 127.0.0.1:49875 admin 200 87.19 ms
10:30:35.232 127.0.0.1:49873 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/basex.svg
10:30:35.286 127.0.0.1:49873 admin 200 53.72 ms
10:34:34.179 127.0.0.1:49927 admin REQUEST [POST] http://localhost:8080/BaseX821/dba/login-check
10:34:34.246 SERVER admin INFO User was logged in: admin
10:34:34.246 127.0.0.1:49927 admin 302 66.9 ms
10:34:34.246 127.0.0.1:49927 admin 200 0.08 ms
10:34:34.250 127.0.0.1:49927 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/databases
10:34:34.411 127.0.0.1:49927 admin 200 160.73 ms
10:35:59.783 127.0.0.1:49994 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/databases
10:35:59.918 127.0.0.1:49994 admin 200 134.83 ms
10:49:07.084 SERVER admin OK Server was stopped (port: 1984).
10:49:15.593 SERVER admin OK Server was started (port: 1984).
11:30:52.522 127.0.0.1:52325 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/xml_Database_v3
11:30:53.406 127.0.0.1:52325 admin 200 891.52 ms
11:31:21.873 127.0.0.1:52334 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/database?name=xml_Database_v3
11:31:23.390 127.0.0.1:52334 admin 302 1516.92 ms
11:31:23.390 127.0.0.1:52334 admin 200 0.19 ms
11:31:23.396 127.0.0.1:52334 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/login
11:31:23.491 127.0.0.1:52334 admin 200 94.91 ms
11:31:23.520 127.0.0.1:52334 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/style.css
11:31:23.529 127.0.0.1:52335 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/js.js
11:31:23.600 127.0.0.1:52334 admin 200 80.07 ms
11:31:23.668 127.0.0.1:52335 admin 200 138.75 ms
11:31:23.672 127.0.0.1:52334 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/basex.svg
11:31:23.737 127.0.0.1:52334 admin 200 65.05 ms
11:31:28.627 127.0.0.1:52334 admin REQUEST [POST] http://localhost:8080/BaseX821/dba/login-check
11:31:28.708 SERVER admin INFO User was logged in: admin
11:31:28.709 127.0.0.1:52334 admin 302 82.11 ms
11:31:28.709 127.0.0.1:52334 admin 200 0.12 ms
11:31:28.713 127.0.0.1:52334 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/databases
11:31:28.928 127.0.0.1:52334 admin 200 215.15 ms
11:31:31.492 127.0.0.1:52334 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/database?name=xml_Database_v3
11:31:31.627 127.0.0.1:52334 admin 200 135.2 ms
11:31:44.638 127.0.0.1:52334 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/database?name=xml_Database_v3&resource=xml_Database_v3
11:31:44.730 127.0.0.1:52334 admin 200 92.28 ms
11:31:44.963 127.0.0.1:52334 admin REQUEST [POST] http://localhost:8080/BaseX821/dba/query-resource?name=xml_Database_v3&resource=xml_Database_v3&sort=&loglist=&query=
11:31:45.142 127.0.0.1:52334 admin 200 178.78 ms
11:36:22.158 SERVER admin OK Server was stopped (port: 1984).
11:36:28.697 SERVER admin OK Server was started (port: 1984).
11:36:31.265 SERVER admin OK Server was stopped (port: 1984).
11:36:41.036 SERVER admin OK Server was started (port: 1984).
11:37:26.873 SERVER admin OK Server was stopped (port: 1984).
12:53:57.263 SERVER admin OK Server was started (port: 1984).
13:05:10.217 SERVER admin OK Server was stopped (port: 1984).
13:11:19.428 SERVER admin OK Server was started (port: 1984).
13:30:57.928 SERVER admin OK Server was started (port: 1984).
13:38:30.294 SERVER admin OK Server was started (port: 1984).
13:39:59.325 SERVER admin OK Server was stopped (port: 1984).
14:09:47.428 SERVER admin OK Server was started (port: 1984).
14:09:48.373 SERVER admin OK Server was stopped (port: 1984).
14:10:14.083 SERVER admin OK Server was started (port: 1984).
14:10:19.537 SERVER admin ERROR Server is running or permission was denied.
14:10:23.792 SERVER admin ERROR Server is running or permission was denied.
14:10:25.649 0:0:0:0:0:0:0:1:53689 admin REQUEST [GET] http://localhost:8080/BaseX821
14:10:27.425 0:0:0:0:0:0:0:1:53689 admin 200 1780.78 ms
14:10:30.942 0:0:0:0:0:0:0:1:53697 admin REQUEST [GET] http://localhost:8080/BaseX821/
14:10:30.996 0:0:0:0:0:0:0:1:53697 admin 200 53.65 ms
14:10:31.694 0:0:0:0:0:0:0:1:53697 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
14:10:31.799 0:0:0:0:0:0:0:1:53697 admin 401 No username specified. 105.36 ms
14:10:31.844 0:0:0:0:0:0:0:1:53689 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
14:10:31.893 0:0:0:0:0:0:0:1:53689 admin 200 49.24 ms
14:10:40.106 0:0:0:0:0:0:0:1:53689 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/xml_Database_v3
14:10:40.151 0:0:0:0:0:0:0:1:53689 admin 200 46.06 ms
14:11:40.242 0:0:0:0:0:0:0:1:53740 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
14:11:40.244 0:0:0:0:0:0:0:1:53740 admin 200 2.54 ms
14:11:48.342 0:0:0:0:0:0:0:1:53740 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/xml_Database_v3
14:11:48.352 0:0:0:0:0:0:0:1:53740 admin 200 10.57 ms
14:29:37.278 0:0:0:0:0:0:0:1:54001 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/xml_Database_v3
14:29:37.314 0:0:0:0:0:0:0:1:54001 admin 200 36.72 ms
14:40:52.493 SERVER admin OK Server was stopped (port: 1984).
14:44:37.202 SERVER admin OK Server was started (port: 1984).
14:44:38.250 0:0:0:0:0:0:0:1:54137 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/database
14:44:40.292 0:0:0:0:0:0:0:1:54137 admin 400 Stopped at /Users/nichexx/apache-tomcat-7.0.62/webapps/BaseX821/dba/databases/database.xqm, 34/10: [XPTY0004] Cannot cast empty-sequence() to xs:string: (). 2049.42 ms
14:44:47.221 0:0:0:0:0:0:0:1:54145 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/database
14:44:47.358 0:0:0:0:0:0:0:1:54145 admin 400 Stopped at /Users/nichexx/apache-tomcat-7.0.62/webapps/BaseX821/dba/databases/database.xqm, 34/10: [XPTY0004] Cannot cast empty-sequence() to xs:string: (). 137.08 ms
14:44:48.690 0:0:0:0:0:0:0:1:54146 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/database
14:44:48.909 0:0:0:0:0:0:0:1:54146 admin 400 Stopped at /Users/nichexx/apache-tomcat-7.0.62/webapps/BaseX821/dba/databases/database.xqm, 34/10: [XPTY0004] Cannot cast empty-sequence() to xs:string: (). 219.4 ms
14:44:52.733 0:0:0:0:0:0:0:1:54147 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/database?name=xml_Database_v3&resource=xml_Database_v3
14:44:53.076 0:0:0:0:0:0:0:1:54147 admin 302 342.87 ms
14:44:53.076 0:0:0:0:0:0:0:1:54147 admin 200 0.24 ms
14:44:53.085 0:0:0:0:0:0:0:1:54147 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/login
14:44:53.158 0:0:0:0:0:0:0:1:54147 admin 200 72.99 ms
14:44:53.172 0:0:0:0:0:0:0:1:54147 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/style.css
14:44:53.193 0:0:0:0:0:0:0:1:54148 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/js.js
14:44:53.250 0:0:0:0:0:0:0:1:54147 admin 200 79.17 ms
14:44:53.285 0:0:0:0:0:0:0:1:54148 admin 200 92.08 ms
14:44:53.291 0:0:0:0:0:0:0:1:54147 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/static/basex.svg
14:44:53.354 0:0:0:0:0:0:0:1:54147 admin 200 62.66 ms
14:44:57.063 0:0:0:0:0:0:0:1:54147 admin REQUEST [POST] http://localhost:8080/BaseX821/dba/login-check
14:44:57.143 SERVER admin INFO User was logged in: admin
14:44:57.144 0:0:0:0:0:0:0:1:54147 admin 302 81.38 ms
14:44:57.144 0:0:0:0:0:0:0:1:54147 admin 200 0.14 ms
14:44:57.148 0:0:0:0:0:0:0:1:54147 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/databases
14:44:57.330 0:0:0:0:0:0:0:1:54147 admin 200 181.96 ms
14:44:59.617 0:0:0:0:0:0:0:1:54147 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/database?name=xml_Database_v3
14:44:59.784 0:0:0:0:0:0:0:1:54147 admin 200 166.53 ms
14:45:02.740 0:0:0:0:0:0:0:1:54147 admin REQUEST [POST] http://localhost:8080/BaseX821/dba/database
14:45:02.821 0:0:0:0:0:0:0:1:54147 admin 302 81.69 ms
14:45:02.821 0:0:0:0:0:0:0:1:54147 admin 200 0.13 ms
14:45:02.826 0:0:0:0:0:0:0:1:54147 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/alter-db?name=xml_Database_v3
14:45:02.898 0:0:0:0:0:0:0:1:54147 admin 200 71.86 ms
14:45:16.964 0:0:0:0:0:0:0:1:54147 admin REQUEST [POST] http://localhost:8080/BaseX821/dba/alter-db
14:45:17.033 0:0:0:0:0:0:0:1:54147 admin 302 68.52 ms
14:45:17.033 0:0:0:0:0:0:0:1:54147 admin 200 0.11 ms
14:45:17.037 0:0:0:0:0:0:0:1:54147 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/database?name=flugzeug&info=Database%20was%20renamed.
14:45:17.145 0:0:0:0:0:0:0:1:54147 admin 200 107.72 ms
14:45:21.144 0:0:0:0:0:0:0:1:54147 admin REQUEST [GET] http://localhost:8080/BaseX821/dba/database?name=flugzeug&resource=xml_Database_v3
14:45:21.229 0:0:0:0:0:0:0:1:54147 admin 200 85.22 ms
14:45:21.456 0:0:0:0:0:0:0:1:54147 admin REQUEST [POST] http://localhost:8080/BaseX821/dba/query-resource?name=flugzeug&resource=xml_Database_v3&sort=&loglist=&query=
14:45:21.656 0:0:0:0:0:0:0:1:54147 admin 200 200.16 ms
14:45:58.573 SERVER admin ERROR Server is running or permission was denied.
14:49:41.469 SERVER admin OK Server was stopped (port: 1984).
14:52:08.332 SERVER admin OK Server was started (port: 1984).
14:53:35.570 SERVER admin OK Server was stopped (port: 1984).
14:53:40.585 SERVER admin OK Server was started (port: 1984).
14:54:57.210 127.0.0.1:54257 admin REQUEST [POST] http://localhost:8080/BaseX821/rest/flugzeug
14:54:58.334 127.0.0.1:54257 admin 200 1127.09 ms
14:55:26.732 SERVER admin OK Server was stopped (port: 1984).
14:55:31.467 SERVER admin OK Server was started (port: 1984).
14:55:59.524 127.0.0.1:54290 admin REQUEST [GET] http://localhost:8080/BaseX821/rest/
14:55:59.631 127.0.0.1:54290 admin 401 No username specified. 112.73 ms
15:00:14.393 127.0.0.1:54365 admin REQUEST [POST] http://localhost:8080/BaseX821/rest/flugzeug
15:00:15.346 127.0.0.1:54365 admin 200 953.8 ms
6>jP%P%%d(%6o@ 7%G e޺C
\ No newline at end of file
File added
File added
File added
File added
File added
File added
/xml_database_v3
\ No newline at end of file
File added
File added
2
\ No newline at end of file
File added
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment