[topbraid-users] Using OAuth for authentication in a tomcat application

2023-04-03 Thread Brendan McMahon
Hello, I'm working on a topbraid application deployed with tomcat. We currently use saml authentication, but want to use OAuth instead. Is this something that anyone has done before? Is there a tomcat valve for it? Thanks, Brendan McMahon -- This email and any attachments may contain

Re: [topbraid-users] Displaying a table on a form

2023-04-03 Thread Holger Knublauch
Please try to return something like Label as part of your rdf:HTML, assuming URL is the URI of the resource you want to link to. This should then become a proper link with right-click menu automatically, by the dash:HTMLViewer. https://datashapes.org/forms.html#HTMLViewer Holger > On 3 Apr

Re: [topbraid-users] Displaying a table on a form

2023-04-03 Thread Tim Smith
Thanks Holger! I was thinking that such features were hard-coded. I will dust off my HTML knowledge, LOL. One last question that is somewhat related to my other create link thread... Links on forms in EDG that EDG "knows" are resources in EDG, all have a right-click context menu. [image:

Re: [topbraid-users] on inverseOf

2023-04-03 Thread Myungdae Cho
Thank you, Holger. You are very kind. ^^ Myungdae Cho On Mon, Apr 3, 2023 at 7:16 PM Holger Knublauch wrote: > Yes. Another way of asserting the inverse values would be to use SPARQL, > e.g. > > INSERT { > ?o ?inverseProperty ?s . > } > WHERE { > ?p owl:inverseOf ?inverseProperty . > ?s ?p ?o

Re: [topbraid-users] on inverseOf

2023-04-03 Thread Holger Knublauch
Yes. Another way of asserting the inverse values would be to use SPARQL, e.g. INSERT { ?o ?inverseProperty ?s . } WHERE { ?p owl:inverseOf ?inverseProperty . ?s ?p ?o . } (Above is untested) Holger > On 3 Apr 2023, at 11:12 am, Myungdae Cho wrote: > > Thanks > > It

Re: [topbraid-users] How to generate a link to an instance?

2023-04-03 Thread Holger Knublauch
Yes, within EDG you should be able to use teamwork:editorLink with relative URLs. Parts of EDG use that function internally. Holger > On 2 Apr 2023, at 3:59 pm, Tim Smith wrote: > > Hi Holger, > > This is very helpful! Thank you. > > An additional use case I am working against is to

Re: [topbraid-users] on inverseOf

2023-04-03 Thread Holger Knublauch
I no longer have TBC installed, but from memory I believe you need to go to the Ontology tab of the home resource and find the OWL RL checkbox there, then use the Inferences View to run the inferences. That view should also have an assert button. Maybe the help pages have more info. Holger >

Re: [topbraid-users] Displaying a table on a form

2023-04-03 Thread Holger Knublauch
The solution that I have outlined does exactly what the screenshot shows: a prepared table with various built-in features, based on a JSON data structure. All this is hard-coded, and you cannot stylise the headers. However, if you want to take full control you can instead construct an rdf:HTML

Re: [topbraid-users] on inverseOf

2023-04-03 Thread Myungdae Cho
Thank you for your quick reply Could you tell me how can I run OWL RL inferencing? 2023년 4월 3일 (월) 오후 5:00, Holger Knublauch 님이 작성: > The source code view would only show the asserted forward triples for a > resource. This means that it would not see inferred triples (such as those > that are

Re: [topbraid-users] on inverseOf

2023-04-03 Thread Holger Knublauch
The source code view would only show the asserted forward triples for a resource. This means that it would not see inferred triples (such as those that are only computed by rules such as owl:inverseOf) and it also would not show incoming references (from object to subject). You could try to run

[topbraid-users] on inverseOf

2023-04-03 Thread Myungdae Cho
Hi there. I am a user using topbraid 4.1.1. ME version. Maybe I bought it less than 10 years ago. The thing is I can see its relationship in the form "as incoming reference" and also I can see that in the browser also. But I can't see its relation in 'source code' I certainly used rdfs:domain