Hi Johan,
On 03/10/2020 21:38, Johan Kumps wrote:
Hi all,

I'm have a working high available setup of Jena Fuseki servers and
RDF-delta.

For general information : what is your setup for this?

Is there a way to connect Fuseki UI to a remote Fuseki server?

The Fuseki UI has two parts:
  Admin -- for create datasets etc
  Workbench -- for query and data modification.

Which parts were you interested in?

Neither is available for the Fuseki with Delta. The UI is in Fuseki/Webabpp ("Fuseki full") and the server package up with Delta is Fuseki/main which is just a server.

The admin in Delta is completely different to Fuseki/webapp standalone server. Really, it needs a control interface on the Delta server cluster, not Fuseki.

There is some on-going work to clean up and modernise the code for the UI and that will make it easier to have a standalone workbench separate from the admin functions.

Fuseki/main has a "--base" argument which names a file area to server static files.

For now, you can add a simple query page to load Yasgui (note the endpoint is in the HTML file) by putting this HTML file in the file area:

---- browser.html
<html>
  <head>
<link href="https://unpkg.com/@triply/yasgui/build/yasgui.min.css"; rel="stylesheet" type="text/css" /> <script src="https://unpkg.com/@triply/yasgui/build/yasgui.min.js";></script>
  </head>
  <body>
    <h1>Browser</h1>
    <div id="yasgui"></div>
    <script>
      const yasgui = new Yasgui(document.getElementById("yasgui"),  {
        requestConfig: { endpoint: "http://localhost:3030/ds/sparql"; } ,
        copyEndpointOnNewTab: false
      });
    </script>
  </body>
</html>
---- browser.html

    Andy


Thanks for the info!

Johan,

Reply via email to