I am working with Fuseki 2, as checked out from here:
https://svn.apache.org/repos/asf/jena/branches/jena-fuseki-new-ui
It is not recognizing the config file that I pass in with the --config= command
line argument. In tracing through the code, I see that FusekiCmd parses this
parameter correctly, stashes it in a member called cmdLineDataset, and then
sets this onto the FusekiServletContextListener class's static member
initialSetup. Then, FusekiServletContextListener.init() passes initialSetup to
FusekiServer.initializeDataAccessPoints(), which initiates the whole assembler
thing. The problem appears to be that FusekiServletContextListener.init() is
never called. In fact, I can't find a single place in the whole Fuseki code
base where this class is instantiated.
What am I missing? How is this supposed to work?
Thanks,
Ian