[jira] [Closed] (JENA-2051) Union Model Returns Empty Model Even When Default Model Contains Statements

2021-03-02 Thread Andy Seaborne (Jira)
[ https://issues.apache.org/jira/browse/JENA-2051?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andy Seaborne closed JENA-2051. --- Resolution: Information Provided > Union Model Returns Empty Model Even When Default Model Contains St

[jira] [Reopened] (JENA-2052) run github action maven.yml also for windows server and macos

2021-03-02 Thread Jira
[ https://issues.apache.org/jira/browse/JENA-2052?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Øyvind Gjesdal reopened JENA-2052: -- I've looked at the windows environment/issues, and have noticed that there is more space on the c:

Re: read permissions on data.

2021-03-02 Thread Claude Warren
Since the flag would be in the SecurityEvaluator you could conceivably have soft in one place and hard in another. Does the above conversation mean that we should look at soft errors from Writes? (e.g. not report an error if the user is not permitted) And do we then consider soft errors for Updat

Re: read permissions on data.

2021-03-02 Thread Rob Vesse
Updates and soft mode is an interesting conundrum In my $dayjob system update operations are all resource centric i.e. you are either creating a new resource or overwriting an existing one. So for update we do use hard errors for non-permissible updates because it still doesn't let you infer a

[jira] [Created] (JENA-2060) Stabilise timeout/exception tests

2021-03-02 Thread Andy Seaborne (Jira)
Andy Seaborne created JENA-2060: --- Summary: Stabilise timeout/exception tests Key: JENA-2060 URL: https://issues.apache.org/jira/browse/JENA-2060 Project: Apache Jena Issue Type: Improvement

[jira] [Resolved] (JENA-2059) GraphFactory.createGraphMem() fails

2021-03-02 Thread Andy Seaborne (Jira)
[ https://issues.apache.org/jira/browse/JENA-2059?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andy Seaborne resolved JENA-2059. - Fix Version/s: Jena 4.0.0 Assignee: Andy Seaborne Resolution: Fixed > GraphFactory

[jira] [Commented] (JENA-2059) GraphFactory.createGraphMem() fails

2021-03-02 Thread Andy Seaborne (Jira)
[ https://issues.apache.org/jira/browse/JENA-2059?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17293724#comment-17293724 ] Andy Seaborne commented on JENA-2059: - Phew! > GraphFactory.createGraphMem() fails >

[jira] [Commented] (JENA-2059) GraphFactory.createGraphMem() fails

2021-03-02 Thread Florian Kleedorfer (Jira)
[ https://issues.apache.org/jira/browse/JENA-2059?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17293709#comment-17293709 ] Florian Kleedorfer commented on JENA-2059: -- Thanks, that fixes the issue for me!

[jira] [Updated] (JENA-2059) GraphFactory.createGraphMem() fails

2021-03-02 Thread Florian Kleedorfer (Jira)
[ https://issues.apache.org/jira/browse/JENA-2059?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Florian Kleedorfer updated JENA-2059: - Priority: Trivial (was: Major) > GraphFactory.createGraphMem() fails > --

[jira] [Comment Edited] (JENA-2059) GraphFactory.createGraphMem() fails

2021-03-02 Thread Andy Seaborne (Jira)
[ https://issues.apache.org/jira/browse/JENA-2059?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17293637#comment-17293637 ] Andy Seaborne edited comment on JENA-2059 at 3/2/21, 12:19 PM: -

Re: read permissions on data.

2021-03-02 Thread Andy Seaborne
On 02/03/2021 10:04, Rob Vesse wrote: No I like that approach In a system we're building currently in $dayjob we do much the same thing. If a user doesn't have permission to see the data it just looks to that user like that data does not exist so they get null, empty/truncated lists, false

[jira] [Commented] (JENA-2059) GraphFactory.createGraphMem() fails

2021-03-02 Thread Andy Seaborne (Jira)
[ https://issues.apache.org/jira/browse/JENA-2059?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17293637#comment-17293637 ] Andy Seaborne commented on JENA-2059: - It works for me here. {noformat} public static

[jira] [Commented] (JENA-2059) GraphFactory.createGraphMem() fails

2021-03-02 Thread Florian Kleedorfer (Jira)
[ https://issues.apache.org/jira/browse/JENA-2059?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17293620#comment-17293620 ] Florian Kleedorfer commented on JENA-2059: -- Looks like a build problem of the sna

[jira] [Updated] (JENA-2059) GraphFactory.createGraphMem() fails

2021-03-02 Thread Florian Kleedorfer (Jira)
[ https://issues.apache.org/jira/browse/JENA-2059?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Florian Kleedorfer updated JENA-2059: - Description: Getting this with snapshot-version 4.0.0-20210301.214547-15: {noformat} java.

[jira] [Commented] (JENA-2059) GraphFactory.createGraphMem() fails

2021-03-02 Thread Florian Kleedorfer (Jira)
[ https://issues.apache.org/jira/browse/JENA-2059?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17293601#comment-17293601 ] Florian Kleedorfer commented on JENA-2059: -- We are seeing this consistently acros

Re: read permissions on data.

2021-03-02 Thread Andy Seaborne
Context: This came up in the discussion on JENA-2055. There are two scenarios for permissions control: request denial and triple hiding. In denial mode, an operation may throw an exception. This is what current jena-permission does. It works well for "read vs write" access control. In hidi

Re: read permissions on data.

2021-03-02 Thread Rob Vesse
No I like that approach In a system we're building currently in $dayjob we do much the same thing. If a user doesn't have permission to see the data it just looks to that user like that data does not exist so they get null, empty/truncated lists, false etc. From an information security perspe

[jira] [Comment Edited] (JENA-2059) GraphFactory.createGraphMem() fails

2021-03-02 Thread Andy Seaborne (Jira)
[ https://issues.apache.org/jira/browse/JENA-2059?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17293543#comment-17293543 ] Andy Seaborne edited comment on JENA-2059 at 3/2/21, 9:23 AM: --

[jira] [Commented] (JENA-2059) GraphFactory.createGraphMem() fails

2021-03-02 Thread Andy Seaborne (Jira)
[ https://issues.apache.org/jira/browse/JENA-2059?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17293543#comment-17293543 ] Andy Seaborne commented on JENA-2059: - The function exists: [IRIs.scheme|https://gith

[jira] [Updated] (JENA-2059) GraphFactory.createGraphMem() fails

2021-03-02 Thread Andy Seaborne (Jira)
[ https://issues.apache.org/jira/browse/JENA-2059?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andy Seaborne updated JENA-2059: Description: Getting this with snapshot-version 4.0.0-20210301.214547-15: {noformat} java.lang.NoSuc

[jira] [Created] (JENA-2059) GraphFactory.createGraphMem() fails

2021-03-02 Thread Florian Kleedorfer (Jira)
Florian Kleedorfer created JENA-2059: Summary: GraphFactory.createGraphMem() fails Key: JENA-2059 URL: https://issues.apache.org/jira/browse/JENA-2059 Project: Apache Jena Issue Type: Bug