-
i.e. http://demo.exist-db.org/exist/xquery/functions.xql.
2010-01-07 12:14:28 UTC by elharo
-
Make and serve static (or dynamic) HTML for the function documentation rather than requiring users to fill out a form and search first. This would be easier to browse and much more search engine friendly.
2010-01-07 12:13:49 UTC by elharo
-
1. Enter a query int he sandbox that gives a bunch of results. I get a message like this:
Found 982 in 0 seconds.
2. Enter and attempt to execute a second query that has a syntax error. Results panel still says "Found 982 in 0 seconds." It shouldn't say this. It should probably indicate that there was an error instead.
This can be confusing since the error box doesn't open...
2010-01-07 11:59:43 UTC by elharo
-
These two lines where impossible to find. The earlier code examples did not explain the encodings.
String simpleMd5 = MessageDigester.md5(passwd, true);
String digest = MessageDigester.md5(user + ":exist:" + passwd, false);
In Perl:
my $digest1 = md5_base64 $password;
my $digest2 = md5_hex "$user:exist:$password";
It works! Bug can be closed! Thanks!
2010-01-06 23:49:40 UTC by markov3
-
The first reported error is: "Response: faultString No method matching arguments: [B", which is not an "empty"
The second may need to be rephrased: from the docs I cannot see how the "Compile" works. If there is no answer to a "compile()", then how can I refer to the cached compiled result?.
2010-01-06 23:23:09 UTC by markov3
-
Here's some Java code which does create a new user. Login with the new user and password works as well:
@Test
public void testSetUser() {
try {
String user = "rudi";
String passwd = "pass";
String simpleMd5 = MessageDigester.md5(passwd, true);
String digest = MessageDigester.md5(user + ":exist:" + passwd, false);...
2010-01-06 23:06:14 UTC by wolfgang_m
-
The method seems to work as expected. It returns an empty map if the compilation succeeded. The compiled expression is cached on the server and will not be returned.
If compile fails with an error, you will get a map in which the key "error" points to the compiler's error message. "line" and "column" point to the locatoin of the error - if available. The following Java test passes:
@Test.
2010-01-06 22:38:13 UTC by wolfgang_m
-
I would recommend that the data directory for OS X become: /Library/eXist/data.
2010-01-06 16:45:52 UTC by ixitar
-
It may not always be possible to stop a hanging thread. eXist's shutdown process does not kill any threads (the threads are created by the servlet engine). It just sends a terminate request to the running XQuery. If a query does not respond within a certain time frame (as determined by the wait-before-shutdown parameter in conf.xml), eXist will continue the shutdown, make sure the db is in a...
2010-01-05 18:45:05 UTC by wolfgang_m
-
Found an IzPack variable which effectively disables the confirmation popup for both, the install target and the data directory. I committed the change to the 1.4.x branch, so we won't forget it for 1.4.1:
http://exist.svn.sourceforge.net/exist/?rev=10951&view=rev.
2010-01-05 18:21:43 UTC by wolfgang_m