Re: Project Status...

2019-02-27 Thread Jakob Frank
ee any >>> activity in the mailing list archives. Is there another venue for >>> communication with the team? And if the project isn't worked on routinely, >>> is there another platform recommended to use with similar features / >>> license? >>> >>> Thanks! >>> Alan >>> -- Jakob Frank | http://redlink.at | m: +43 699 10588742 | e: jakob.fr...@redlink.at | http://at.linkedin.com/in/jakobfrank

Re: First authentication

2018-04-03 Thread Jakob Frank
a Methods > > > Department of Media and Communications > Faculty of Arts and Social Sciences > THE UNIVERSITY OF SYDNEY > Rm S208, A20 - John Woolley Building | The University of Sydney | NSW > | 2006 | Australia > Phone +61 2 8627 6895 <+61%202%208627%206895>| Twitter @FrBa

Re: First authentication

2018-03-26 Thread Jakob Frank
em of logging in with my local >>>>> installation (on a Mac) but not on the Ubuntu server. >>>>> >>>>> Thanks >>>>> >>>>> Best >>>>> Francesco >>>>> >>>>> m: +61 416 860 221 >>

Re: GeoSPARQL Problem

2016-10-11 Thread Jakob Frank
ava:1142) > [na:1.8.0_40] > at > java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) > [na:1.8.0_40] > at java.lang.Thread.run(Thread.java:745) [na:1.8.0_40] > 14:37:55.698 INFO o.a.m.p.s.s.sparql.SparqlServiceImpl - SPARQL query > exec

Re: change graph name?

2016-04-13 Thread Jakob Frank
Hi Michel, the label in the "Context Manager" is taken from one of these rdf properties: rdfs:label, dct:title, dc:title, skos:prefLabel (in that order) So just update/set the rdfs:label for the context/graph in the marmotta triple store. If none of these properties does exist, the UI takes the

Re: default user

2016-04-13 Thread Jakob Frank
Hi Gil, by default the "simple" security profile is enabled, which allows write access to marmotta only from localhost. To enable write access (passwd-protected) from remote switch to the "standard" security profile [1]. In such case, please make sure you change the default password! Best, Jakob

Re: Help a beginner

2016-04-13 Thread Jakob Frank
Hi Gil, using a public server is not a recommended way of "getting started", especially if you are not familiar with server administration. I'd suggest you start with the Marmotta Installer [1] on your local machine, and once you have everything in place deploy to a public server. Best, Jakob [

Re: Reasoner does not infer anything

2015-08-31 Thread Jakob Frank
> does not return anything except : > HTTP/1.1 200 OK > Server: Apache Marmotta/RUNTIME (build 0) > Content-Type: application/json > Content-Length: 2 > Date: Fri, 28 Aug 2015 14:07:49 GMT > > while my context inferred carries 14209 triples > > Best, > Gérard > >

Re: Reasoner does not infer anything

2015-08-28 Thread Jakob Frank
Hi Gerard, sorry - I was not able to reproduce your issue: Starting from an empty marmotta with default configuration, I uploaded your sample data, configured the example rdfs reasoning and voila, the data was there: To the 14 triples uploaded, the reasoning programm added 5 additional triples:

Re: Developing Tasks. Is there a way?

2015-06-21 Thread Jakob Frank
Hi Santiago, I'm not sure I completely understand what you are trying to do... Tasks in Marmotta are used to track and report progress of long-running processes. Any module can use tha TaskManagerService from the platform-core module for such reporting . On the other hand, if you want to run tas

[ANNOUNCE] Apache Marmotta 3.3.0 released

2014-12-18 Thread Jakob Frank
The Apache Marmotta team is pleased to announce the release of Apache Marmotta 3.3.0: http://marmotta.apache.org Apache Marmotta is an Open Platform for Linked Data, a Linked Data stack that can be used and extended by organizations who want to publish Linked Data or build custom applications u

Re: Importing data with LDP

2014-11-27 Thread Jakob Frank
Hi David, welcome to the list, let's see how we can help you! LDP has no concept like context/named graph like SPARQL has. Creating a context for each resource is an internal mechanism to isolate the resource data from each other. Also SPARQL is not part of LDP. Basically you have two options: *

Re: KiWiLoader

2014-11-27 Thread Jakob Frank
In Java, you cannot combine the -cp and the -jar option. So to have the mysql connector available, you need to use the following command: java -cp mysql-connector-java.jar:marmotta-loader-kiwi.jar org.apache.marmotta.loader.core.MarmottaLoader -f /data/file-to-import.rdf -c "http://example.com:808

Re: Marmotta in Jetty 8.1.x: NPE on MarmottaResourceFilter.init

2014-11-24 Thread Jakob Frank
Hi Mark, do you plan to submit a patch for the jetty-web.xml any time soon? I could easily fix these issues myself, now you pointed to the right place - but the kudos should go on your account... Please tell us how you would like to proceed, best, Jakob On 16 November 2014 at 11:22, Sergio Fe

Re: Client calls and CORS - documentation

2014-11-03 Thread Jakob Frank
Hi Fabian, which version are you using? Because I updated the CORS-configuration last week because of a similar issue in one of our projects [1], so it should be available in the develop branch. Best, Jakob [1] https://issues.apache.org/jira/browse/MARMOTTA-557 On 31 October 2014 13:35, Fabian

Re: Rép. : Re: Java ImportClient and HTTP Authentication

2014-10-28 Thread Jakob Frank
I had make my own copy of the method > >> ImportClient.uploadDataset(), and pass the headerAuth received by my own > >> webservice to the post object: > post.setHeader("Authorization", headerAuth); > > Fabian > > >>> Jakob Fra

Re: Rép. : Re: Java ImportClient and HTTP Authentication

2014-10-27 Thread Jakob Frank
more precisely, where is the use of a deprecated API of HttpClient ? > > thanks > Fabian > >>>> Jakob Frank 27.10.2014 09:38 >>> > Hi Fabian, > > while looking into the code for the data-import issue, I saw that we > are using a deprecated API of HttpClie

Re: Java ImportClient and HTTP Authentication

2014-10-27 Thread Jakob Frank
Hi Fabian, while looking into the code for the data-import issue, I saw that we are using a deprecated API of HttpClient - maybe the authentication issue is related to that. Would be great if you could have a look into that and maybe provide a patch! Best, Jakob On 24 October 2014 13:56, Fabia

Re: Importing Data - API change ?

2014-10-27 Thread Jakob Frank
Updated On 24 October 2014 11:04, Sergio Fernández wrote: > I'll do it later. Thanks for the report. > > On 24/10/14 09:28, Fabian Cretton wrote: >> >> I think I found the answer, >> the context must now be specified in the ClientConfiguration. >> >> Maybe only the doc needs an update then :-) >>

Re: Rép. : Re: Importing Data - API change ?

2014-10-27 Thread Jakob Frank
Great, we're always looking for "fresh blood" ;-) For providing code/doc and related discussion, you might want to join dev@marmotta.a.o Best, Jakob On 24 October 2014 11:07, Fabian Cretton wrote: > Sergio, > > now that I start to be more familiar with Marmotta, and that I am > developping new

Re: Support for SPARQL queries via direct POST?

2014-10-13 Thread Jakob Frank
Hi Mark, sending SPARQL queries via POST is already supported in Marmotta, only the parameters 'default-graph-uri' or 'named-graph-uri' are not used., also the content-type is not checked. Just try sending the query e.g. via curl -X POST --data-binary 'SELECT * WHERE { ?s ?p ?o } LIMIT 10' http:/

Re: Marmotta 3.3.0 - logging issue

2014-10-13 Thread Jakob Frank
Hi Fabian, would you mind filing an issue in JIRA? [1] thanks, Jakob [1] https://issues.apache.org/jira/browse/MARMOTTA On 13 October 2014 14:29, Sebastian Schaffert wrote: > I am also experiencing some strange behavior, but I am not really sure what > the reason is, because there have been no

Re: LDClient Questions

2014-09-24 Thread Jakob Frank
, are there any tutorials on the implementation or usage of the > linked data clients? Best starting point IMHO is the source code one of the ldclient providers shipped with marmotta, e.g. the ldap provider (ldclient-provider-ldap) Best, Jakob -- DI Jakob Frank Knowledge and Media Technologie

Re: Issue with attempting to login to Marmotta

2014-09-16 Thread Jakob Frank
Hi Paul, the login/logout form in the Admin-UI is broken, but apart from confusing users it does not affect the actual platform usage. >From what I can guess from your mail, it looks everything works fine, but let me elaborate on that: Marmotta comes with three pre-defined security profiles (sim

Re: Marmotta user module

2014-09-11 Thread Jakob Frank
Hi Johan, the user management in Marmotta is only a very basic one. The access policy is based on URL-patterns. You can restrict/allow access to the different admin-pages and/or webservices. There is no access control on the RDF store - that would be an interesting module to be added. The login

Re: Possible bug importing RDF Data?

2014-09-11 Thread Jakob Frank
/core/admin/export.html Best, Jakob On 10 September 2014 11:01, Josep Maria Brunetti wrote: > Hi Jakob, > > Thank you for your answer. I had already seen this view. Is there anyway to > obtain that resource as RDF, JSON or any format? > > Thank you. > > Best, > > Jo

Re: LDCache(ing) Forever?

2014-09-09 Thread Jakob Frank
Hi Joshua, why not "just" import the protein data into marmotta? For better separation you could import every protein into it's own context/named graph... Best, Jakob On 4 September 2014 17:04, Joshua Dunham wrote: > Hi Marmotta Users/Admins, > > I’m wondering if the linked data cache modul

Re: Possible bug importing RDF Data?

2014-09-09 Thread Jakob Frank
Test > --> WORKS > > Am I doing something wrong regarding the snapshot service? > > Thank you very much. > > Best, > > Josep Maria Brunetti > > On Tue, Sep 2, 2014 at 1:32 PM, Jakob Frank wrote: >> >> Hi Josep, >> >> the dataview is grouped

Re: illegal escape error

2014-09-09 Thread Jakob Frank
For the records: this issue has already been discussed in a different thread [1]: > I'm currently working on a fix - until then please set a valid Java Regex > in the configuration-panel for content.filesystem.pattern in configuration > admin page: http://localhost:8080/marmotta/core/admin/configu

Re: marmotta error

2014-09-04 Thread Jakob Frank
you use > it and for damage of any kind resulting from the risks inherent to the > electronic transmission of messages. > > > > *From:* Jakob Frank [mailto:ja...@apache.org] > *Sent:* donderdag 4 september 2014 12:59 > *To:* users@marmotta.apache.org; Bohms, H.M. (Michel) > *Subje

Re: marmotta error

2014-09-04 Thread Jakob Frank
Hi Michel, first of all, please subscribe to the user-mailinglist [1] to make sure you get the answers to your question. The error in your log-file is caused by the windows file-path, which contains backslashes that are not escaped. For a workaroud, open the systems-config.properties, look for a

Re: Possible bug importing RDF Data?

2014-09-02 Thread Jakob Frank
Hi Josep, the dataview is grouped in three sections: the context/graph view, the classes/types view, and the resource list. If you select a graph in the first chart, the two other sections will be updated to show only data from the selected graph. If you select a type/class in the second chart,

Re: Possible bug importing RDF Data?

2014-09-02 Thread Jakob Frank
Hi Josep, sorry - I can't reproduce your error. Starting with a clean installation of Marmotta 3.2.1, I imported both your examples and the resource is listed in the dataview. The dataview is basically just running pre-defined SPARQL-Queries and then renders the result. It would be great if you c

ApacheCon.EU CFP closes June 25

2014-06-11 Thread Jakob Frank
Dear Marmotta enthusiast, As you may be aware, ApacheCon will be held this year in Budapest, on November 17-23. (See http://apachecon.eu for more info.) The Call For Papers for that conference is still open, but will be closing soon (June 25). We need you talk proposals, to represent Marmotta at

[ANNOUNCE] Apache Marmotta 3.2 released

2014-06-02 Thread Jakob Frank
After several months of development, the Apache Marmotta team is pleased to announce the release of Apache Marmotta 3.2: http://marmotta.apache.org Apache Marmotta is an Open Platform for Linked Data, that can be used, extended and deployed easily by organizations who want to publish Linked D

Re: Oracle disk-based storage?

2014-04-25 Thread Jakob Frank
Hi Joshua, welcome to the Marmotta community! The short answer is: Yes, at the moment you are limited to Postgresql/MySQL/H2. The long answer: LMF [1] (from where Marmotta originates) once had experimental support for Oracle but that was long ago when we still used hibernate as a persistence lay

Re: Problem import rdf with client library

2014-03-10 Thread Jakob Frank
Hi Diego, first of all, is there any specific reason why you are using the SNAPSHOT version of the marmotta client? Version 3.1.0-incubating has been released quite some time ago so please try out this version first. It that dos not help, please check your dependency tree, maybe the version of ht

[ANN] Apache Marmotta 3.0.1 (maintenance release)

2014-01-23 Thread Jakob Frank
Hi all, Apache Marmota 3.0.1, the first maintenance release, has been published and is available from the maven repositories, and of course from the Apache archive. Since this is "only" a maintenance release, the binaries are not distributed via the Apache mirrors. New Users should prefer 3.1.0-i

Re: manage repository? (bulk insert, clean triples)

2014-01-20 Thread Jakob Frank
> uhm at this phase of prototyping we actually have no more than 50 > triples, maybe the best option is then installing another backend as soon as > I can. The performance are really poor indeed: so installing another backend > should enable these options? No need to install a different backend

Apache Marmotta - the podling has left the nest

2013-11-29 Thread Jakob Frank
elease as a Top-Level Project and hope to finally have it ready before Christmas. What a nice present ;-) Best, Jakob Frank (Marmotta PMC Chair) on behalf of the Marmotta PMC TL;DR: A big THANK YOU to our mentors Andy Seaborne, Fabian Christ and Nandana Mihindukulasooriya, and to the general In

Re: LDPath

2013-11-27 Thread Jakob Frank
Hi Alex, LDPath allows only one @filter statement. I think you are looking for the following: @filter rdf:type is foaf:Person | rdf:type is org:OrganizationalUnit This will match both ex:foo and ex:bar: ex:foo a foaf:Person. ex:bar a org:OrganizationalUnit Generally speaking, you can use any LD