Re: Fuseki HTTPS options don't seem to be available

2021-12-09 Thread Bruno P. Kinoshita
Those docs are for the Fuseki Main (`jena-fuseki-server` Maven module, see last paragraph of first section.) For example, I have the 4.3.0 release tag checked out locally, so you shuold have the same files if you are using the latest version. Locate the `jena-fuseki-server-4.3.0.jar`, and then

Re: Getting started with Jena Fuseki: export FUSEKI_HOME and FUSEKI_BASE?

2021-09-12 Thread Bruno P. Kinoshita
>Or should I fork the repo and make a pull request inside the fork? You should fork and make a pull request, please. That way a committer can review and merge it. Thanks! Bruno On Monday, 13 September 2021, 08:53:04 am NZST, Michael Wechner wrote: Hi Andy I have created a patch

Re: Mobile branch?

2021-03-22 Thread Bruno P. Kinoshita
Hi Danny, >Not quite as fluid from a mobile. Do you mean just having Fuseki UI open in a mobile (smaller) viewport? I have a branch where I ported the existing Backbone.js Fuseki UI to Vue.js. I had to update dependencies, especially the YASGUI editor and related libraries. I think I also

Re: Fuseki Web UI does not consider Dataset Level Access Control Lists

2020-10-16 Thread Bruno P. Kinoshita
I **guess** we would need an endpoint in Jena to return the authenticated user data (or an error or empty result if not authenticated), if this endpoint does not exist already (either provided by Jena, or Shiro directly?). Then in the current UI, we would need to create the JS code to store

Re: 403 errors in Fuseki web GUI

2020-10-08 Thread Bruno P. Kinoshita
.0.1:3030/js/app/templates/dataset-edit.tpl, referer: https://***.lingsoft.fi/fuseki/dataset.html?tab=query=/ds On 8.10.2020 14:00, Bruno P. Kinoshita wrote: >  Hi Mikael, > > This one "ProxyTimeout 1200" looks like it could fail to load a template file > if it took 120

Re: 403 errors in Fuseki web GUI

2020-10-08 Thread Bruno P. Kinoshita
og4j2.properties -cp /opt/fuseki/fuseki-server.jar org.apache.jena.fuseki.cmd.FusekiCmd --config=/etc/fuseki/config.ttl --update On 8.10.2020 12:40, Bruno P. Kinoshita wrote: >  Strange, I am using the web GUI more these past days but I haven't seen this >error yet. > It could be because I do

Re: 403 errors in Fuseki web GUI

2020-10-08 Thread Bruno P. Kinoshita
Strange, I am using the web GUI more these past days but I haven't seen this error yet. It could be because I don't have auth/Shiro. Do you have permissions/auth set up in Fuseki? Anything special about your set up, like a reverse proxy in front of Fuseki? Bruno On Thursday, 8 October

Re: FUSEKI_BASE is not writable

2020-06-18 Thread Bruno P. Kinoshita
Hi Kenneth, I was going to suggest looking at chmod or chown and permissions for that folder, but looks like you've done that already. I'm on Ubuntu 18.04, but running from my user home directory. In case you are running out of ideas, maybe you can try some of these and see if it helps: -

Re: General Jena/Fuseki/TDB2 architecture questions

2020-06-16 Thread Bruno P. Kinoshita
if the Fuseki web app can provide its HTTP UI and provide a SPARQL service endpoint for my web app. Ken On Tue, Jun 16, 2020 at 9:45 PM Bruno P. Kinoshita wrote: > Hi Ken, > > > I am probably not the best person to answer this, but hopefully others can > comment/correct me if I'm wrong.

Re: General Jena/Fuseki/TDB2 architecture questions

2020-06-16 Thread Bruno P. Kinoshita
Hi Ken, I am probably not the best person to answer this, but hopefully others can comment/correct me if I'm wrong. >1. Can I use the Fuseki web application as the interface point for my web >application? I think it depends how you are building your application. If you have portlets or

Re: GeoSPARQL Module - Testing

2019-02-04 Thread Bruno P. Kinoshita
nch break). Are you able to tell what's missing in my tests with GeoSparql and Fuseki, please? Cheers Bruno On Friday, 1 February 2019, 1:20:58 pm NZDT, Bruno P. Kinoshita wrote: Hi Greg, Had a bit of spare time today in between meetings, but don't have Gradle, only Maven on this

Re: GeoSPARQL Module - Testing

2019-01-31 Thread Bruno P. Kinoshita
Hi Greg, Had a bit of spare time today in between meetings, but don't have Gradle, only Maven on this computer. Might have more time this weekend or coming next week to play with it and report back. My GIS stack is normally GeoServer, GeoNetworks, mapserver, ArcGIS (all for work), and QGIS

Re: jena-csv

2019-01-14 Thread Bruno P. Kinoshita
To: users@jena.apache.org Sent: Tuesday, 15 January 2019 4:04 AM Subject: Re: jena-csv Hi Bruno, thanks for your answer. I followed your github link but unfortunately I don't see any readme file with instructions there. Cheers, Piotr pon., 14 sty 2019 o 04:03 Bruno P. Kinoshita napisał

Re: jena-csv

2019-01-14 Thread Bruno P. Kinoshita
Hi Piotr, I believe it was retired for the lack of developer bandwidth to maintain it. If you look at the GitHub repository, there is a README at the jena-csv folder now. It instructs users to grab - if necessary - jena-csv from jena 3.9.0

Re: Build by program a Dataset that is both textual and spatial

2018-12-23 Thread Bruno P. Kinoshita
be used later by the query. At least that's my understanding (: Hope that helps Bruno From: Bruno P. Kinoshita To: "users@jena.apache.org" Sent: Monday, 24 December 2018 12:27 PM Subject: Re: Build by program a Dataset that is both textual and spat

Re: Build by program a Dataset that is both textual and spatial

2018-12-23 Thread Bruno P. Kinoshita
extSpatial with delegation like this: > >> > >> class DatasetGraphTextSpatial extends DatasetGraphWrapper { > >> DatasetGraphText datasetGraphText; > >> DatasetGraphSpatial datasetGraphSpatial; > >> public DatasetGraphTextSpatial(DatasetGraph dsg) { > >>super(dsg

Re: blocking IP to prevent malicious sparql queries

2018-12-18 Thread Bruno P. Kinoshita
I think Laura's option is the best/easiest one, and good on you for the positive point-of-view on these spams Marco! :D Bruno From: Marco Neumann To: users@jena.apache.org Sent: Wednesday, 19 December 2018 8:58 AM Subject: Re: blocking IP to prevent malicious sparql queries Thank

Re: Base64 binary data

2018-08-18 Thread Bruno P. Kinoshita
Hi Graham, I think you have to use exactly what you have, an array of bytes (i.e. byte[]). Here's a unit test in Jena for base64 https://github.com/apache/jena/blob/09994d2e2a7a9dd031f35e53ac79eb84f6927297/jena-core/src/test/java/org/apache/jena/graph/test/TestTypedLiterals.java#L967 Hope that

Re: Fuseki on Docker

2018-08-09 Thread Bruno P. Kinoshita
Hi Claude, >I am running the stain/fuseki based version of fuseki on docker. I use the same when running Skosmos or when I want to quickly test something in Jena and don't have my Eclipse workspace. >I am wondering how well the memory mapped files in TDB work inside the >docker container. Or

Re: Jena Usage Report: Performance, bugs and feature requests

2018-05-30 Thread Bruno P. Kinoshita
And kudos for your work and for posting on the dev list. Did you write a report or paper that was made public somewhere? Bruno (replied previously just to Siddhesh by accident, so re-posted here) From: Siddhesh Rane To: users@jena.apache.org Sent:

Re: Error in Jena code, when switch to another computer

2018-05-26 Thread Bruno P. Kinoshita
Very likely something in your environment, especially given it's working on the other laptop. I think it won't be easy for others to spot what's wrong, without looking at the code, and without knowing more about your environment. Might be easier for yourself to compare the two environments and

Re: Fuseki2 inferencing documentation s:u

2017-10-10 Thread Bruno P. Kinoshita
Hi Nick, Inference (as well as GIS and fuzzy reasoning) are in my todo list to learn and research how it works in Jena. In case you need some help with some code or for reviewing/testing let me know. Is it for an internal project, or for an Open Source project from CSIRO? At work (NIWA/NZ) we

Re: Getting latest Fuseki release

2017-09-10 Thread Bruno P. Kinoshita
If you would like to use the Maven central repository, perhaps you could either look at how Maven fetches the latest version, or just query the central repo and pick the top one? http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.apache.jena%22%20AND%20a%3A%22jena-fuseki%22 If you prefer

Re: Jetty conflict in Fuseki 2

2017-09-03 Thread Bruno P. Kinoshita
Looks like you are not using the latest version of jena-fuseki-embedded. The pom.xml of the version 2.6.0 (released with Jena 3.3.0) lists 9.3.3.x jetty. https://github.com/apache/jena/blob/jena-3.3.0/jena-fuseki2/pom.xml Now Jena uses a single version for all its artefacts. So if you use:

Re: Return nested JSON results

2017-05-08 Thread Bruno P. Kinoshita
I may have time to test if the change in this pull request [1] could create such response. Feel free to comment there should you have any suggestion, or if you could help testing it. Cheers Bruno [1] https://github.com/apache/jena/pull/114 From: Laura

Re: [VOTE] Release vote : Apache Jena 3.3.0

2017-05-03 Thread Bruno P. Kinoshita
[ X ] +1 Approve the release Build passing on Linux (Ubuntu LTS), and Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-11T05:41:47+13:00) Maven home: /opt/maven Java version: 1.8.0_131, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-8-oracle/jre Default locale:

Re: Querying Fuseki

2017-04-05 Thread Bruno P. Kinoshita
The URL you mentioned is the Query endpoint for the ds dataset. The same page in the documentation mentions the other possible endpoints. Fuseki itself is a good example. It is a web application, written with HTML and JavaScript (Backbone.JS and Marionette to be more specific). Assuming you

Re: Documentation of Fuseki HTTP Admin Protocol

2017-03-29 Thread Bruno P. Kinoshita
browser. -----Original Message- From: Bruno P. Kinoshita [mailto:brunodepau...@yahoo.com.br.INVALID] Sent: 28 March 2017 10:59 To: users@jena.apache.org Subject: Re: Documentation of Fuseki HTTP Admin Protocol Hi Chris, You are correct. The correct link is /$/backups-list

RE: Documentation of Fuseki HTTP Admin Protocol

2017-03-28 Thread Bruno P. Kinoshita
/tasks/ both work. /$/server works and  /$/server/  404s. /$/backups-list works and /$/backups-list 404s. /$/ping works and /$/ping/  404s. I only tried these as GETs via a browser. -Original Message- From: Bruno P. Kinoshita [mailto:brunodepau...@yahoo.com.br.INVALID] Sent: 28 Marc

Re: Documentation of Fuseki HTTP Admin Protocol

2017-03-28 Thread Bruno P. Kinoshita
Hi Chris, You are correct. The correct link is /$/backups-list (https://github.com/apache/jena/blob/347d7764dc9132e182e5f8c12de99c3c20938ce8/jena-fuseki2/jena-fuseki-core/src/main/webapp/WEB-INF/web.xml#L177) Fixed in SVN. Will be updated once the site is published. You can check the current

Re: Broken Link

2016-11-23 Thread Bruno P. Kinoshita
- Original Message - > From: Bruno P. Kinoshita <brunodepau...@yahoo.com.br.INVALID> > To: "users@jena.apache.org" <users@jena.apache.org> > Sent: Thursday, 24 November 2016 8:17 AM > Subject: Re: Broken Link > > Hi Erich, > > What page con

Re: Broken Link

2016-11-23 Thread Bruno P. Kinoshita
Hi Erich, What page contains the broken link? If you find things that could be fixed, you can also click on the right top corner link, Improve this page, follow the instructions and submit a patch :) Changes are not applied automatically, and will be available in jena.staging.apache.org

Re: Missing link

2016-11-23 Thread Bruno P. Kinoshita
Hi Erich, I assume you are referring to Fuseki 1. The main navigation bar drop down has a link to Fuseki, under Learn. The Fuseki 1 javadocs will be present until the old source is deprecated/removed, as it is generated during the project build. Hope that helps Bruno - Original Message

Re: Vague knowledge in Ontologies

2016-07-29 Thread Bruno P. Kinoshita
Hi Tina Someone posted similar question some time ago. I started my involvement with Apache Commons, because I needed some functional programming features for a fuzzy logic Java API (that was before Java 8). One pointer from the thread of the other question, was that Protege has a plug-in

Re: Parsing UDFs...

2015-12-28 Thread Bruno P. Kinoshita
Hi Jonathan; I have built Jena on Windows a few times, but never used it to run Jena (though I think I once started Fuseki 1 on Windows). But I believe it should work. Don't know if you have a deadline for your project, but even then you may find useful to spend some time going through Jena's

Re: Parsing UDFs...

2015-12-28 Thread Bruno P. Kinoshita
, feel free to drop me an e-mail off list (as the discussion has digressed a little bit from Jena) :-) Bruno From: Jonathan Camilleri <camilleri@gmail.com> To: Bruno P. Kinoshita <ki...@apache.org> Cc: "users@jena.apache.org" <users@jena.apache.org> Sent: Tu