Dear Wiki user,
You have subscribed to a wiki page or wiki category on "Jackrabbit Wiki" for change notification.
The following page has been changed by ScottCytacki:
http://wiki.apache.org/jackrabbit/HowtoSpi2Rmi
------------------------------------------------------------------------------
* [https://svn.apache.org/repos/asf/jackrabbit/sandbox/spi/README.txt]
* [http://jackrabbit.apache.org/jackrabbit-jcr-server.html]
* [http://jackrabbit.apache.org/jackrabbit-spi.html]
+
+ == Notes from Angela ==
+
+ the spi-rmi is currently still in the sandbox, since
+ we didn't spent time on optimization yet.
+
+ if you are looking for an example setup, you may start
+ with the 'getRepository()' method defined with
+ http://svn.apache.org/repos/asf/jackrabbit/sandbox/spi/client/src/test/java/org/apache/jackrabbit/jcr2spi/JCR2SPI2JCROverRMIRepositoryStub.java
+
+ the jcr2spi code can be found at
+ http://svn.apache.org/repos/asf/jackrabbit/trunk/jackrabbit-jcr2spi
+
+ the rmi-spi code
+ http://svn.apache.org/repos/asf/jackrabbit/sandbox/spi/spi-rmi
+
+ the spi2jcr code
+ http://svn.apache.org/repos/asf/jackrabbit/trunk/jackrabbit-spi2jcr
+
+ minimal intro as follows:
+
+ - jcr2spi-Repository takes a RepositoryConfig
+ - the most important part of the configuration is the RepositoryService
+ - RepositoryService is the main interface defined by the SPI.
+
+ running the setup you mention, you need to create a RepositoryConfig
+ that returns the ClientRepositoryService of spi-rmi which itself
+ was created with a remote RepositoryService wrapping whatever
+ spi implementation.
+
== Setup a spi server ==
|