cancel
Showing results for 
Search instead for 
Did you mean: 

Embebed scanner for Alfresco Community version

edu_gb15
Champ in-the-making
Champ in-the-making

Hi everyone,

I´m working with the Alfresco community edition 5.0.d, and I want to know, If exist any free add-ons, or tool to integrate with my Alfresco, what posibilite scan documents directly  from Alfresco.

regards

7 REPLIES 7

jpotts
World-Class Innovator
World-Class Innovator

Your scanner probably came with software that knows how to write scanned files to a file system. The most basic integration would be to simply mount the Alfresco repository as a shared drive using CIFS/SMB or WebDAV, then point your scanner software at that shared drive. When documents are scanned they'll go directly into Alfresco.

Some scanner software can integrate with document repositories using an industry standard called CMIS. Alfresco supports CMIS 1.0 as well as CMIS 1.1. If your scanning software can use CMIS, that will allow you to capture not only files but also metadata. So, for example, if your scanner software allows you to "index" scanned files, which means it provides a user interface for capturing metadata, like maybe customer number, invoice number, etc., that metadata can be written into Alfresco as property values which you can then use for search purposes.

It isn't clear from your question, but what you may also be looking for is something that can OCR the scanned document images. Doing that would allow the text of the scanned document to be full-text indexed. Your scanning software may offer OCR features or it might leverage open source OCR functionality. If it does not offer OCR features you might want to look at something like the Alfresco Simple OCR Action, which would allow you to convert the scanned document into text.

Hopefully this gives you some ideas. If not, please follow-up with more detail about what exactly it is you are looking for.

edu_gb15
Champ in-the-making
Champ in-the-making

Thank you for your answer,

The share repository feature is available in alfresco community 5.0.d version, or I have to upgrade to 201609 EA? I don't find in the documentation, how configure the file server in this version

regards

jpotts
World-Class Innovator
World-Class Innovator

Yes, Alfresco Share is available in 5.0.d. It is the web-based UI that you see when you go to http://localhost:8080/share.

If you need help configuring the server to expose the repository as a CIFS/SMB share, see the docs.

edu_gb15
Champ in-the-making
Champ in-the-making

Excuse my English.

I see that documentation, but is for Alfresco One.

the file file-servers-context.xml not exist in the 5.0.d version.

How I can solve that?

jpotts
World-Class Innovator
World-Class Innovator

The software is nearly identical so the documentation should be close

enough.

Alfresco will pick up any file on the classpath that ends with

"-context.xml" so if you need to override or extend a bean you can create

your own context file and place it in the classpath, such as

$TOMCAT_HOME/shared/classes/alfresco/extension and it will get picked up.

edu_gb15
Champ in-the-making
Champ in-the-making

Thank you Jeff,

I'll try to do that, and I'll tell you the results!

edu_gb15
Champ in-the-making
Champ in-the-making

Hi Jeff,

This configuration works for me, thank you for the support

In /tomcat/shared/classes/alfresco-global.properties add:

cifs.enabled=true

cifs.serverName="ServerName"a

cifs.hostannounce=true

cifs.tcpipSMB.port=445

cifs.netBIOSSMB.sessionPort=139

cifs.netBIOSSMB.namePort=137

cifs.netBIOSSMB.datagramPort=138

regards!