내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

GSA and AEM 6.0 Integration

Avatar

Level 2

Hi,

Can you please let me know is there any article/document that explains how we can integrate GSA  (Google Search Appliance ) with AEM 6.0 

 

Thanks

Samb

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Employee

If your pages can all be just static files, you can configure the site mail url in GSA and it will index based on sitemap. Or else, you can write a agent to post content via gsa api and index on modification of pages and assets. To show the response , you need to get the data as xml and parse and display on the page. Adobe SearchandPromote  does something very similar and much more and has OOB integration. Please have a look.

원본 게시물의 솔루션 보기

3 답변 개

Avatar

Level 1

In GAS, you need to configure :

1) Front Ends  Set up Front Ends to create different search and search results pages. 

    e.g. mysite_prod_frontend

https://www.google.com/support/enterprise/static/gsa/docs/admin/70/admin_console_help/serve_frontend...

2) configure URL for crawling ( e.g. http://www.mysite.com/ )

Exclude url patterns if needed.

3) create collections 

e.g. default_collection can including all pages. "/"

https://www.google.com/support/enterprise/static/gsa/docs/admin/70/admin_console_help/crawl_collecti...

4) configure 

https://www.google.com/support/enterprise/static/gsa/docs/admin/70/admin_console_help/crawl_fresh.ht...

 

In CQ, search criteria should be set for all pages, as part of meta data. 

<head>

<meta http-equiv="keywords" content="CQ,  AME">

</head>

Create CQ  component for Search functionality. Component would retrieve data from GSA ( via API) in your CQ search component.

read :https://www.google.com/support/enterprise/static/gsa/docs/admin/70/admin_console_help/crawl_urls.htm...

Avatar

정확한 답변 작성자:
Employee

If your pages can all be just static files, you can configure the site mail url in GSA and it will index based on sitemap. Or else, you can write a agent to post content via gsa api and index on modification of pages and assets. To show the response , you need to get the data as xml and parse and display on the page. Adobe SearchandPromote  does something very similar and much more and has OOB integration. Please have a look.

Avatar

Level 10

Hi Samb,

I couldnt find any article/document on integrating with GSA. As we know GSA is a crawling search engine, you can use GSA APIs to build your index and search from the index. We had done this in one of our implementation. I will try to come up with a document in couple of days and see if it helps you.