Martynas Jusevičius
Martynas Jusevičius
I think you should think in terms of the (RDF) dataset instead. An app is just API that allows you to project it. So if you want to version, it...
@ate47 if you mean the `/api/endpoint/sparql` endpoint mentioned in the README, then it's the [SPARQL 1.1 Protocol endpoint](https://www.w3.org/TR/sparql11-protocol/).
@wouterbeek disallowing? RDF/XML (along with TriX) are important _bridges_ to the XML ecosystem. Love it or hate it, but it includes powerful tools for both generation and consumption of RDF,...
http://openjena.org/wiki/ARQ/Manipulating_SPARQL_using_ARQ
Do some property inversion also?
If I understand right, I think it would be easier to use shell utilities to read the text file line by line and feed each line into JSON2XML, like this:...
What is the problem using your `Splinterator` then? Alternatively, can you read each line into a byte array `byte[]` and construct a `ByteArrayInputStream`?
Hitting something similar. Could it be the same issue? ``` 1-Apr-2020 08:53:45.101 SEVERE [https-openssl-nio-8443-exec-5] org.apache.catalina.core.StandardWrapperValve.invoke Servlet.service() for servlet [com.atomgraph.linkeddatahub.Application] in context with path [] threw exception [A MultiException has 3...
@twoodhouse see https://github.com/eclipse-ee4j/jersey/issues/2627 and try: ``` public class SomeFactory implements Factory { @Context ServiceLocator serviceLocator; public Some provide() { getSome(serviceLocator.getService(ContainerRequestContext.class)); } public Some getSome(ContainerRequestContext crc) { // request-specific logic here...
Related to #140