how can i get ServiceRegistry in my external web application?

cancel
Showing results for 
Search instead for 
Did you mean: 
hs_j
Member II

how can i get ServiceRegistry in my external web application?

Jump to solution

How can i get ServiceRegistry in my external web application?

The environment is as follows.

1. Alfresco community is used only as a repository.

2. The client(separated web application) sends a request to the repository.

My web application is running Spring 3.2.17 based.

And it is running on a different server than the Alfresco community.

In this case, is it possible to get ServiceRegistry in my web application?

Can I get the serviceRegistry in it and the services it gets from the registry?

Can I use the serviceRegistry in the alfresco-repository library and the services I get from the registry?


What I want to do is to use the public java api, shown on the follwing page, in my web application.

http://docs.alfresco.com/5.2/concepts/dev-services.html?m=2


Thanks for reading.

1 Solution

Accepted Solutions
afaust
Master

Re: how can i get ServiceRegistry in my external web application?

Jump to solution

You cannot get a reference to the ServiceRegistry in an external application. For integration with external systems, you'll typically have to use one (or more) of the APIs that Alfresco provides as a service, e.g. public v1 REST API and/or CMIS.

View solution in original post

2 Replies
afaust
Master

Re: how can i get ServiceRegistry in my external web application?

Jump to solution

You cannot get a reference to the ServiceRegistry in an external application. For integration with external systems, you'll typically have to use one (or more) of the APIs that Alfresco provides as a service, e.g. public v1 REST API and/or CMIS.

hs_j
Member II

Re: how can i get ServiceRegistry in my external web application?

Jump to solution

Thank you Axel Faust!