Re: [basex-talk] BaseX not running

2018-02-21 Thread Bridger Dyson-Smith
Hi Leo - There was some discussion about this back in November of last year [1] - maybe the answers there will help? Apologies for not being able to say more - I am not a Mac user these days. HTH, Bridger [1] https://www.mail-archive.com/basex-talk@mailman.uni-konstanz.de/msg10162.html On Wed,

[basex-talk] BaseX not running

2018-02-21 Thread Leo Studer
Hello I try desperately getting baseX 8.6.7 to run on MacOS X 10.13.3 where I have Java 9 installed Here the error message: BaseX installed with homebrew today: MBP-2015:~ leo$ basexgui WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by

Re: [basex-talk] BaseX http running single threaded?

2013-09-30 Thread Christian Grün
Hi France, sorry for the inconvenience. Regarding REST(XQ) calls to the same BaseX instance, it’s indeed sth. that should be avoided, as it can cause all kinds of deadlocks, so it’s generally wise to address resources outside the database when using XSLT from an updating XQuery script. As you

Re: [basex-talk] BaseX http running single threaded?

2013-09-26 Thread France Baril
Different issues than, my global lock has been set to false all along and I have the problems even on read-only operations. I'm saving my PDF on the file system, redirecting and then loading it in the PdfReview DB in an update operation just to make sure that I don't have a write lock on the DB

Re: [basex-talk] BaseX http running single threaded?

2013-09-25 Thread France Baril
I'm having similar issues where everything freezes on an http request done from inside a restxq function, but only if certain conditions are present. The conditions are not easy to pinpoint. However, they affect our ability to validate content against modular dtds/xsds, to apply modular .xsl and

Re: [basex-talk] BaseX http running single threaded?

2013-09-25 Thread Joe Templeman
I found that it is locking up because of the database global lockhttp://docs.basex.org/wiki/Options#GLOBALLOCK which locks during any updating function. On the long updating call that was happening first, it was grabbing the lock and so every subsequent request was being blocked until the update

[basex-talk] BaseX http running single threaded?

2013-09-20 Thread Joe Templeman
Hi all, I'm having trouble with the running a restxq API, set up as either a stand alone app (using basexhttp) or running the servlet in jetty. When I make a request, the server will lazily load in the requested content using a small java library that I've built which can take quite a while, and