On 02/12/13 17:24, DAVID PATTERSON wrote:
I am using Fuseki to return content in support of a desired RESTful
server design.
1) Can I use the imbedded server to also serve up "my" pages, or do I
need to have a second server with Tomcat or something running in it?
Put them in the pages/ directory.
2) If I make changes to a TDB dataset behind Fuseki, do I have to close
the server gracefully in order for the data to be saved?
Don't do that!
Don't even modify the TDB dataset when Fuseki is running. Do not
assume that a graceful restart will help - it won't.
You will corrupt the database.
Either
modify via Fuseki
or
stop the server then modify the dataset
Andy
Thanks.
Dave P