cancel
Showing results for 
Search instead for 
Did you mean: 

External access to result page

cmr
Champ in-the-making
Champ in-the-making
hello,
I want to integrate Alfresco in my own web app. i want to request the result page of Alfresco with custom property filter, is it possible ??
i've look at ExternalAccessServlet, and there is no "search" outCome constant
i want to call Alfresco like that :
http://server/alfresco/faces/jsp/dialog/advanced-search.jsp?ticket=123&custom_property=myContent

how can i do that ???

thanks for your help
1 REPLY 1

gavinc
Champ in-the-making
Champ in-the-making
Unfortunately not, with JSF you have to setup the correct context before the JSP can be shown (in order to instantiate all the managed beans etc.). This is the reason ExternalAccessServlet exists.

To do this you will have to add another "handler" to the ExternalAccessServlet to setup the context for a search, then redirect to the search JSP.

Hope that helps.