Eduard Drenth

Results 78 comments of Eduard Drenth

Don't know about the stock apps. My own apps are running stable for several years, they don't use authentication, I keep configuration default for security and authentication. Only since 6.0.0....

See https://github.com/duncdrum/distroless-exist/issues/17

For my pf (jpa) apps I use a library that allows users to use some syntax in values. Based on https://bitbucket.org/fryske-akademy/crudapi/src/master/jpaservices/src/main/java/org/fryske_akademy/jpa/OPERATOR.java see https://bitbucket.org/fryske-akademy/crudapi/src/master/ Perhaps this is of use

I'll have a look, perhaps I'll even refactor to stick closer to PF, or develop an extension sometime

I assume these filtering features aren't passed on into the jpa data layer and executed there?

I have the feeling I did not explain clear enough what my solution offers, it has been very valuable for years now for us. **jpa module** - building jpql queries,...

Ok of course, though I experience a bit of syntax that enables advanced sql like querying makes (some) users very happy.

I mean to directly write to response.getoutputstream. BlackLabServer always first writes response data to a string (memory), then writes to the response outputstream.

Yes I know, this will not be easy. If it ain't broke and there are no complaints / figures that support such a change.... Perhaps if we isolate streaming to...

ee 8, maybe 7 as well has very nice streaming support (running here: https://web2.fa.knaw.nl/standertwurdlist-ws/): ``` private Response prcessRequest(.....) { StreamingOutput output = new StreamingOutput() { @Override public void write(OutputStream output)...