cancel
Showing results for 
Search instead for 
Did you mean: 

how can i get ServiceRegistry in my external web application?

hs_j
Champ in-the-making
Champ in-the-making

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 ACCEPTED ANSWER

afaust
Legendary Innovator
Legendary Innovator

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 answer in original post

2 REPLIES 2

afaust
Legendary Innovator
Legendary Innovator

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
Champ in-the-making
Champ in-the-making

Thank you Axel Faust!