Is there any way to upload a file into Fuseki server from other HTML than Fuseki panel control? I think that it could be done with javascript through an AJAX POST but I am not sure about what exactly should be send to Fuseki. I have checked in the console that once a file is uploaded from Fuseki panel control POST is done. This is the output:
10:55:50 INFO [1] POST http://localhost
:3030/ds/upload
10:55:50 INFO [1] Upload: Filename: test.owl, Content-Type=application/octet-stream, Charset=null => RDF/XML
10:55:50 INFO [1] Upload: Graph: default (37 triple(s))
10:55:50 INFO [1] 200 OK (125 ms)
In addition, I am checking the network data with browser to check what should be included in the ajax POST. In fact, I have succeeded sending select queries through AJAX GET and update queries through ajax POST. However, any luck with the described issue.