Hello,

thanks for this tip. I start
rmiregistry -J-cp
-Jjackrabbit-api-1.5.0.jar:jcr-1.0.jar:jackrabbit-jcr-rmi-1.5.0.jar

and after that the standalone jar.

Now the rmi connection is found and I can connect over Spring and JCR
Eclipse plugin
from day software.

I think it would be good to give this hint on the rmi page.

best regards



Jukka Zitting wrote:
> 
> Hi,
> 
> On Wed, Feb 18, 2009 at 12:50 PM, greeklinux <[email protected]> wrote:
>> I open http://localhost:8080/ and I get the JCR server page. Under the
>> "remote access"
>> section I found the info, that I can access the repository over
>>
>> RMI registry: //localhost/jackrabbit.repository
>>
>> I tried with rmiregistry and without.
> 
> The rmiregistry needs to be running (with the jcr, jackrabbit-api, and
> jackrabbit-jcr-rmi jars in it's classpath) before you start the
> Jackrabbit standalone server. Otherwise the standalone server fails to
> register the RMI endpoint in the registry.
> 
> An easier alternative for accessing the repository remotely is to
> download the RMI endpoint directly from http://localhost:8080/rmi. You
> can use the URLRemoteRepository class to do this in your client code:
> 
>     import org.apache.jackrabbit.rmi.repository.URLRemoteRepository;
>     Repository repository = new
> URLRemoteRepository("http://localhost:8080/rmi";);
> 
> BR,
> 
> Jukka Zitting
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Jackrabbit-1.5.2-Standalone-Problem-tp22077018p22078460.html
Sent from the Jackrabbit - Users mailing list archive at Nabble.com.

Reply via email to