We have an application server on each of several computer systems, and wish to have a TDB/Fuseki server on another computer system, all on a common LAN. Some of the application servers will execute transactions that involve loading new named graphs (RDF/XML files local to the application servers) onto the TDB. TDB files are local to the TDB/Fuseki server's computer system (and remote from the application servers). The application is written in Java.
If all of the moving parts are on a single, common computer system there are multiple options found in the documentation, from the tdbloader scripts to (Java program executes it as a command) to something like Model.read( ... ). In our case the moving parts are distributed. Model.read( ... ) is preferable, but it does not appear to work remotely. What are the options for loading the RDF/XML file's data onto a remote TDB? Can someone point to an example or tutorial for this case. I've looked and have not found an online resource.
