SlideShare uma empresa Scribd logo
1 de 37
Introducing the Alfresco Digital Business Platform
1. Content & Search
Tech Talk Live #106
Where to start?
http://community.alfresco.com
http://chat.alfresco.com
http://docs.alfresco.com
http://university.alfresco.com
https://www.alfresco.com/platform
https://www.alfresco.com/platform
https://www.alfresco.com/platform
https://www.alfresco.com/platform
https://www.alfresco.com/platform
https://www.alfresco.com/platform
https://www.alfresco.com/platform
https://www.alfresco.com/platform
https://www.alfresco.com/platform
https://www.alfresco.com/platform
https://www.alfresco.com/platform
https://www.alfresco.com/platform
https://www.alfresco.com/platform
https://www.alfresco.com/platform/content-services-ecm
Storage layer
Application layer
Client layer
Metadata, Users,
Groups, Permits,
Audits, ...
Content in files
organized in the
alf_data folder
https://www.alfresco.com/platform/content-services-ecm
Storage layer
Application layer
Client layer
Database File system
Apache Tomcat
alfresco.war
https://www.alfresco.com/platform/content-services-ecm
Clients for
supported
protocols
Storage layer
Application layer
Client layer
Database File system
Spring Framework
Authentication Access Control ...
Audit Log SSO
Behaviour/Policies Rules/Actions Content Model
Alfresco Public Java API JavaScript API
Mobile
Custom
Clients ...
REST, WebDav, CMIS, CIFS, FTP, SPP, IMAP, SMTP, ...
alfresco.war
https://www.alfresco.com/platform/content-services-ecm
Storage layer
Application layer
Client layer
Database File system
Spring Framework
Authentication Access Control ...
Audit Log SSO
Behaviour/Policies Rules/Actions Content Model
Alfresco Public Java API JavaScript API
Alfresco Share
share.war Alfresco ADF
REST, WebDav, CMIS, CIFS, FTP, SPP, IMAP, SMTP, ...
alfresco.war
Alfresco Content Services
A practical approach to protocols, services and configuration
https://www.alfresco.com/platform/content-services-ecm
Storage layer
Application layer
Client layer
Database File system
Spring Framework
Authentication Access Control ...
Audit Log SSO
Behaviour/Policies Rules/Actions Content Model
Alfresco Public Java API JavaScript API
REST, WebDav, CMIS, CIFS, FTP, SPP, IMAP, SMTP, ...
alfresco.war
https://www.alfresco.com/platform/content-services-ecm
Database File system
Spring Framework
Authentication Access Control ...
Audit Log SSO
Behaviour/Policies Rules/Actions Content Model
Alfresco Public Java API JavaScript API
REST, WebDav, CMIS, CIFS, FTP, SPP, IMAP, SMTP, ...
# Content store (file system)
dir.root=/usr/local/alfresco/alf_data
# Database
db.username=alfresco
db.password=alfresco
db.driver=org.postgresql.Driver
db.url=jdbc:postgresql://db:5432/alfresco
# Alfresco Content Service
alfresco.context=alfresco
alfresco.host=${localname}
alfresco.port=8080
alfresco.protocol=http
# FTP Server
ftp.enabled=true
# IMAP Server
imap.server.enabled=true
# SMTP Server
email.server.enabled=true
alfresco-global.properties
alfresco.war
https://www.alfresco.com/platform/content-services-ecm
version: '2'
services:
alfresco:
build: ./alfresco
ports:
- "8080:8080"
- "2121:21"
- "2525:25"
- "1143:143"
- "1139:139"
- "1445:445"
user: root
privileged: true
db:
build: ./postgres
network_mode: service:alfresco
environment:
- POSTGRES_DB=alfresco
- POSTGRES_USER=alfresco
- POSTGRES_PASSWORD=alfresco
Docker Compose
https://github.com/keensoft/alfresco-ttl-106/tree/master/docker
Protocols
HTTP
http://localhost:8080/alfresco/api/-default-/public/alfresco/versions/1/sites
http://localhost:8080/alfresco/api/-default-
/public/cmis/versions/1.1/browser/root/Sites
http://localhost:8080/alfresco/webdav/Sites
http://localhost:8080/alfresco/aos/Sites
FTP
$ ftp localhost 2121
CIFS
$ smb://localhost:1445/alfresco
IMAP
$ telnet localhost 1143
https://www.alfresco.com/platform/content-services-ecm
Protocols
SMTP
$ telnet
telnet> open localhost 2525
220 alfresco.com ESMTP SubEthaSMTP 3.1.7
helo me
250 alfresco.com
mail from:admin@alfresco.com
250 Ok
rcpt to:folder@alfresco.com
250 Ok
Data
354 End data with <CR><LF>.<CR><LF>
Subject:test
Testing inbound email!
.
https://www.alfresco.com/platform/content-services-ecm
Services
• Files & folders
– http://localhost:8080/api-explorer/#/nodes
• Versioning
– http://localhost:8080/api-explorer/#/versions
• Lock & Unlock
– http://localhost:8080/api-explorer/#/nodes
• People
– http://localhost:8080/api-explorer/#/people
https://www.alfresco.com/platform/content-services-ecm
https://github.com/keensoft/alfresco-ttl-106/tree/master/postman 5.2 +
Postman
Services
• Audit
– http://localhost:8080/alfresco/s/api/audit
• Groups
– http://localhost:8080/alfresco/s/api/groups
• Dictionary
– http://localhost:8080/alfresco/s/api/dictionary
– http://localhost:8080/alfresco/s/api/defclasses
4.0 +
https://www.alfresco.com/platform/content-services-ecm
Services
• Rules & actions
– http://localhost:8080/alfresco/s/api/node
• Metadata extraction
– http://localhost:8080/alfresco/s/admin/admin-nodebrowser
4.0 +
https://www.alfresco.com/platform/content-services-ecm
Services
• Search Service
– http://localhost:8080/api-explorer/#/search
{
"query": {
"query": "TYPE:"cm:content""
}
}
{
"query": {
"query": "lorem"
}
}
5.2 +
https://www.alfresco.com/platform/content-services-ecm
!
Alfresco Search Services
Many different syntax languages to search them all
Database File system
Spring Framework
Authentication ... Search
Audit Log SSO
Behaviour/Policies Rules/Actions Content Model
Alfresco Public Java API JavaScript API
REST, WebDav, CMIS, CIFS, FTP, SPP, IMAP, SMTP, ...
alfresco.war
solr6.war
File system
powered by
Searching
Indexing
Search Services https://www.alfresco.com/platform/content-services-ecm
# SOLR 6 conf (solr.in.sh)
data.dir.root=/opt/solr6/solrhome
alfresco.host=alfresco
alfresco.port=8080
# Alfresco Search Service
index.subsystem.name=solr6
solr.host=solr6
solr.port=8983
solr.secureComms=none
https://www.alfresco.com/platform/content-services-ecm
Database File system
Spring Framework
Authentication ... Search
Audit Log SSO
Behaviour/Policies Rules/Actions Content Model
Alfresco Public Java API JavaScript API
REST, WebDav, CMIS, CIFS, FTP, SPP, IMAP, SMTP, ...
alfresco.war
solr6.war
File system
powered by
alfresco-global.properties
solr.in.sh
Search Services
version: '2'
services:
alfresco:
build: ./alfresco
links:
- solr6
solr6:
image: keensoft/alfresco-
solr6:201701-GA
ports:
- 8983:8983
https://www.alfresco.com/platform/content-services-ecm
Docker Compose
https://github.com/keensoft/alfresco-ttl-106/tree/master/docker
Search Services
AFTS
{
"query": {
"query": "lorem AND TYPE:"cm:content"",
"language": "afts"
}
}
Lucene
{
"query": {
"query": "+lorem +TYPE:"cm:content"",
"language": "lucene"
}
}
5.2 +
https://www.alfresco.com/platform/content-services-ecmSearch Services
CMIS
{
"query": {
"query": "select * from cmis:document WHERE CONTAINS('lorem')",
"language": "cmis"
}
}
5.2 +
https://www.alfresco.com/platform/content-services-ecm
http://chemistry.apache.org/java/developing/tools/dev-tools-workbench.html
Search Services
Alfresco Content Services
Renditions
What changes when nothing seems to change
# Alfresco Transformation Service
ooo.exe=/opt/LibreOffice/soffice
ooo.enabled=true
ooo.host=libreoffice
ooo.port=8100
# GhostScript
img.gslib=/usr/lib
# ImageMagick
img.exe=/usr/bin/convert
https://www.alfresco.com/platform/content-services-ecm
Database File system
Spring Framework
Authentication Access Control ...
Audit Log SSO
Behaviour/Policies Rules/Actions Content Model
Alfresco Public Java API JavaScript API
REST, WebDav, CMIS, CIFS, FTP, SPP, IMAP, SMTP, ...
alfresco.war LibreOffice server
version: '2'
services:
alfresco:
build: ./alfresco
links:
- solr6
- libreoffice
libreoffice:
image: xcgd/libreoffice
EXPOSE 8997
https://www.alfresco.com/platform/content-services-ecm
Docker Compose
https://github.com/keensoft/alfresco-ttl-106/tree/master/docker
Services
• Thumbnailing service
• Transformation service
– http://localhost:8080/api-explorer/#!/renditions/listRenditions
5.2 +
https://www.alfresco.com/platform/content-services-ecm
Selected references
Where to go from now
CONTENT SERVICES
Getting started
https://community.alfresco.com/community/ecm/pages/get-started
REST API
Postman
https://community.alfresco.com/community/ecm/blog/2017/05/02/v1-rest-api-10-things-you-should-know
Java Client
https://community.alfresco.com/community/ecm/blog/2016/11/17/alfresco-java-client-sdk
SEARCH SERVICES
Introducing SOLR 6
https://community.alfresco.com/community/ecm/blog/2016/12/22/introducing-solr-63-and-alfresco-search-services
References
Introducing the Alfresco Digital Business Platform
1. Content & Search
Tech Talk Live #106

Mais conteúdo relacionado

Mais de Francesco Corti

Alfresco DevCon 2019 - Alfresco Identity Services in Action
Alfresco DevCon 2019 - Alfresco Identity Services in ActionAlfresco DevCon 2019 - Alfresco Identity Services in Action
Alfresco DevCon 2019 - Alfresco Identity Services in ActionFrancesco Corti
 
Alfresco DevCon 2018 - Embedding Pentaho dashboards into an Alfresco ADF appl...
Alfresco DevCon 2018 - Embedding Pentaho dashboards into an Alfresco ADF appl...Alfresco DevCon 2018 - Embedding Pentaho dashboards into an Alfresco ADF appl...
Alfresco DevCon 2018 - Embedding Pentaho dashboards into an Alfresco ADF appl...Francesco Corti
 
Pentaho 8 Reporting for Java Developers - Because details matter
Pentaho 8 Reporting for Java Developers - Because details matterPentaho 8 Reporting for Java Developers - Because details matter
Pentaho 8 Reporting for Java Developers - Because details matterFrancesco Corti
 
Next generation content intelligence (BeeCon 2017)
Next generation content intelligence (BeeCon 2017)Next generation content intelligence (BeeCon 2017)
Next generation content intelligence (BeeCon 2017)Francesco Corti
 
Alfresco press in Office Hours (2017-02-24)
Alfresco press in Office Hours (2017-02-24)Alfresco press in Office Hours (2017-02-24)
Alfresco press in Office Hours (2017-02-24)Francesco Corti
 
Alfresco press in Office Hours (2017-01-27)
Alfresco press in Office Hours (2017-01-27)Alfresco press in Office Hours (2017-01-27)
Alfresco press in Office Hours (2017-01-27)Francesco Corti
 
Alfresco press in Office Hours (2016-12-16)
Alfresco press in Office Hours (2016-12-16)Alfresco press in Office Hours (2016-12-16)
Alfresco press in Office Hours (2016-12-16)Francesco Corti
 
Alfresco press in Tech Talk Live #99
Alfresco press in Tech Talk Live #99Alfresco press in Tech Talk Live #99
Alfresco press in Tech Talk Live #99Francesco Corti
 
Content Intelligence on Alfresco with A.A.A.R. (BeeCon 2016)
Content Intelligence on Alfresco with A.A.A.R. (BeeCon 2016)Content Intelligence on Alfresco with A.A.A.R. (BeeCon 2016)
Content Intelligence on Alfresco with A.A.A.R. (BeeCon 2016)Francesco Corti
 
Pentaho Transparent Autenthication
Pentaho Transparent AutenthicationPentaho Transparent Autenthication
Pentaho Transparent AutenthicationFrancesco Corti
 
Alfresco Tech Talk n.73 - Business Intelligence for ECM Practitioners
Alfresco Tech Talk n.73 - Business Intelligence for ECM PractitionersAlfresco Tech Talk n.73 - Business Intelligence for ECM Practitioners
Alfresco Tech Talk n.73 - Business Intelligence for ECM PractitionersFrancesco Corti
 

Mais de Francesco Corti (11)

Alfresco DevCon 2019 - Alfresco Identity Services in Action
Alfresco DevCon 2019 - Alfresco Identity Services in ActionAlfresco DevCon 2019 - Alfresco Identity Services in Action
Alfresco DevCon 2019 - Alfresco Identity Services in Action
 
Alfresco DevCon 2018 - Embedding Pentaho dashboards into an Alfresco ADF appl...
Alfresco DevCon 2018 - Embedding Pentaho dashboards into an Alfresco ADF appl...Alfresco DevCon 2018 - Embedding Pentaho dashboards into an Alfresco ADF appl...
Alfresco DevCon 2018 - Embedding Pentaho dashboards into an Alfresco ADF appl...
 
Pentaho 8 Reporting for Java Developers - Because details matter
Pentaho 8 Reporting for Java Developers - Because details matterPentaho 8 Reporting for Java Developers - Because details matter
Pentaho 8 Reporting for Java Developers - Because details matter
 
Next generation content intelligence (BeeCon 2017)
Next generation content intelligence (BeeCon 2017)Next generation content intelligence (BeeCon 2017)
Next generation content intelligence (BeeCon 2017)
 
Alfresco press in Office Hours (2017-02-24)
Alfresco press in Office Hours (2017-02-24)Alfresco press in Office Hours (2017-02-24)
Alfresco press in Office Hours (2017-02-24)
 
Alfresco press in Office Hours (2017-01-27)
Alfresco press in Office Hours (2017-01-27)Alfresco press in Office Hours (2017-01-27)
Alfresco press in Office Hours (2017-01-27)
 
Alfresco press in Office Hours (2016-12-16)
Alfresco press in Office Hours (2016-12-16)Alfresco press in Office Hours (2016-12-16)
Alfresco press in Office Hours (2016-12-16)
 
Alfresco press in Tech Talk Live #99
Alfresco press in Tech Talk Live #99Alfresco press in Tech Talk Live #99
Alfresco press in Tech Talk Live #99
 
Content Intelligence on Alfresco with A.A.A.R. (BeeCon 2016)
Content Intelligence on Alfresco with A.A.A.R. (BeeCon 2016)Content Intelligence on Alfresco with A.A.A.R. (BeeCon 2016)
Content Intelligence on Alfresco with A.A.A.R. (BeeCon 2016)
 
Pentaho Transparent Autenthication
Pentaho Transparent AutenthicationPentaho Transparent Autenthication
Pentaho Transparent Autenthication
 
Alfresco Tech Talk n.73 - Business Intelligence for ECM Practitioners
Alfresco Tech Talk n.73 - Business Intelligence for ECM PractitionersAlfresco Tech Talk n.73 - Business Intelligence for ECM Practitioners
Alfresco Tech Talk n.73 - Business Intelligence for ECM Practitioners
 

Último

Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 

Último (20)

Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 

Tech Talk Live 106 - Introduction to the Alfresco Digital Business Platform - Content & Search