You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@stanbol.apache.org by ar...@wipro.com on 2013/09/13 13:41:29 UTC

How to enhance a word / pdf document.

Hi,
  I have a requirement to enhance a word / pdf document .
Iam using a curl command.

Tried below calls but none of them work.
curl -i -X POST -H "Content-Type:text/plain" --data @TextToEnhance.docx "http://localhost:8080/contenthub/contenthub/store?uri=urn:my-content-item2&chain=MyCustomChain1" -u admin:admin
curl -i -X POST -H "Content-Type:application/word" --data @TextToEnhance.docx "http://localhost:8080/contenthub/contenthub/store?uri=urn:my-content-item2&chain=MyCustomChain1" -u admin:admin


Any ideas how I could enhance a word / pdf document?
Note :  The same call works well for a plain text file.

On reading I came across that for this to work we would need the metaxa engine as part of the enhancement chain.  Is this the case?  Does Metaxa need any separate configuration before use.


Also other than curl command if this can be accomplished by java client then pls point me to some reference for same.


Thanks and Rgds,
Arti




Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. 

www.wipro.com

RE: How to enhance a word / pdf document.

Posted by ar...@wipro.com.
Hi Reto,
 The issue below is resolved.
Iam able to do both enhancements as well as using the content hub. 
Rupert pointed out that I needed to add a -binary to the --data call. Once this is done the calls go 
through fine.


Thanking you and Rgds,
Arthi



-----Original Message-----
From: arthi venkataraman (WT01 - CTO Office) 
Sent: Saturday, September 14, 2013 3:08 PM
To: 'dev@stanbol.apache.org'
Subject: RE: How to enhance a word / pdf document.

Hi Reto,
 I also tried with just the enhancement chain and not using content hub. Even in this case it did not work.

  For example below command returns the enhancements 

curl -X POST -H "Accept: text/turtle" -H "Content-type: text/plain" --data @FileToAugment.txt http://localhost:8080/enhancer/chain/MyCustomChain1

However none of the below three commands give a response.
curl -X POST -H "Accept: text/turtle" -H "Content-type: application/msword" --data @TextToEnhance97ver.doc "http://localhost:8080/enhancer/chain/MyCustomChain1"

curl -X POST -H "Accept: text/turtle" -H "Content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.document" --data @TextToEnhance.docx "http://localhost:8080/enhancer/chain/MyCustomChain1"

curl -X POST -H "Accept: text/turtle" -H "Content-type: application/pdf" --data @Testpdf.pdf "http://localhost:8080/enhancer/chain/MyCustomChain1"

Please do share any pointers which you have on this.
Note : MyCustomChain1  has below configuration :

    tika ( optional , TikaEngine)
    langdetect ( required , LanguageDetectionEnhancementEngine)
    opennlp-sentence ( required , OpenNlpSentenceDetectionEngine)
    opennlp-token ( required , OpenNlpTokenizerEngine)
    opennlp-pos ( required , OpenNlpPosTaggingEngine)
    opennlp-chunker ( required , OpenNlpChunkingEngine)
    MyLinkingEngine ( required , EntityLinkingEngine)

Thanks and Rgds,
Arthi


-----Original Message-----
From: Reto Bachmann-Gmür [mailto:reto@wymiwyg.com]
Sent: Friday, September 13, 2013 10:28 PM
To: dev@stanbol.apache.org
Subject: Re: How to enhance a word / pdf document.

HI

While the enahncer works with pdf the contenthub only support text files.
The URI you're using indicate you're using the contenthub. If you need the ability to store the data and process formats other than text plain you might consider using the fusepool enhanced content management system:
https://github.com/fusepool/fusepool-ecs. It is apache license.

Cheers,
Reto


On Fri, Sep 13, 2013 at 1:41 PM, <ar...@wipro.com> wrote:

> Hi,
>   I have a requirement to enhance a word / pdf document .
> Iam using a curl command.
>
> Tried below calls but none of them work.
> curl -i -X POST -H "Content-Type:text/plain" --data @TextToEnhance.docx "
> http://localhost:8080/contenthub/contenthub/store?uri=urn:my-content-item2&chain=MyCustomChain1"
> -u admin:admin
> curl -i -X POST -H "Content-Type:application/word" --data 
> @TextToEnhance.docx "
> http://localhost:8080/contenthub/contenthub/store?uri=urn:my-content-item2&chain=MyCustomChain1"
> -u admin:admin
>
>
> Any ideas how I could enhance a word / pdf document?
> Note :  The same call works well for a plain text file.
>
> On reading I came across that for this to work we would need the 
> metaxa engine as part of the enhancement chain.  Is this the case?
> Does Metaxa need any separate configuration before use.
>
>
> Also other than curl command if this can be accomplished by java 
> client then pls point me to some reference for same.
>
>
> Thanks and Rgds,
> Arti
>
>
>
>
> Please do not print this email unless it is absolutely necessary.
>
> The information contained in this electronic message and any 
> attachments to this message are intended for the exclusive use of the
> addressee(s) and may contain proprietary, confidential or privileged 
> information. If you are not the intended recipient, you should not 
> disseminate, distribute or copy this e-mail. Please notify the sender 
> immediately and destroy all copies of this message and any attachments.
>
> WARNING: Computer viruses can be transmitted via email. The recipient 
> should check this email and any attachments for the presence of viruses.
> The company accepts no liability for any damage caused by any virus 
> transmitted by this email.
>
> www.wipro.com
>

Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. 

www.wipro.com

RE: How to enhance a word / pdf document.

Posted by ar...@wipro.com.
Hi Reto,
 I also tried with just the enhancement chain and not using content hub. Even in this case it did not work.

  For example below command returns the enhancements 

curl -X POST -H "Accept: text/turtle" -H "Content-type: text/plain" --data @FileToAugment.txt http://localhost:8080/enhancer/chain/MyCustomChain1

However none of the below three commands give a response.
curl -X POST -H "Accept: text/turtle" -H "Content-type: application/msword" --data @TextToEnhance97ver.doc "http://localhost:8080/enhancer/chain/MyCustomChain1"

curl -X POST -H "Accept: text/turtle" -H "Content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.document" --data @TextToEnhance.docx "http://localhost:8080/enhancer/chain/MyCustomChain1"

curl -X POST -H "Accept: text/turtle" -H "Content-type: application/pdf" --data @Testpdf.pdf "http://localhost:8080/enhancer/chain/MyCustomChain1"

Please do share any pointers which you have on this.
Note : MyCustomChain1  has below configuration :

    tika ( optional , TikaEngine)
    langdetect ( required , LanguageDetectionEnhancementEngine)
    opennlp-sentence ( required , OpenNlpSentenceDetectionEngine)
    opennlp-token ( required , OpenNlpTokenizerEngine)
    opennlp-pos ( required , OpenNlpPosTaggingEngine)
    opennlp-chunker ( required , OpenNlpChunkingEngine)
    MyLinkingEngine ( required , EntityLinkingEngine)

Thanks and Rgds,
Arthi


-----Original Message-----
From: Reto Bachmann-Gmür [mailto:reto@wymiwyg.com]
Sent: Friday, September 13, 2013 10:28 PM
To: dev@stanbol.apache.org
Subject: Re: How to enhance a word / pdf document.

HI

While the enahncer works with pdf the contenthub only support text files.
The URI you're using indicate you're using the contenthub. If you need the ability to store the data and process formats other than text plain you might consider using the fusepool enhanced content management system:
https://github.com/fusepool/fusepool-ecs. It is apache license.

Cheers,
Reto


On Fri, Sep 13, 2013 at 1:41 PM, <ar...@wipro.com> wrote:

> Hi,
>   I have a requirement to enhance a word / pdf document .
> Iam using a curl command.
>
> Tried below calls but none of them work.
> curl -i -X POST -H "Content-Type:text/plain" --data @TextToEnhance.docx "
> http://localhost:8080/contenthub/contenthub/store?uri=urn:my-content-item2&chain=MyCustomChain1"
> -u admin:admin
> curl -i -X POST -H "Content-Type:application/word" --data 
> @TextToEnhance.docx "
> http://localhost:8080/contenthub/contenthub/store?uri=urn:my-content-item2&chain=MyCustomChain1"
> -u admin:admin
>
>
> Any ideas how I could enhance a word / pdf document?
> Note :  The same call works well for a plain text file.
>
> On reading I came across that for this to work we would need the 
> metaxa engine as part of the enhancement chain.  Is this the case?
> Does Metaxa need any separate configuration before use.
>
>
> Also other than curl command if this can be accomplished by java 
> client then pls point me to some reference for same.
>
>
> Thanks and Rgds,
> Arti
>
>
>
>
> Please do not print this email unless it is absolutely necessary.
>
> The information contained in this electronic message and any 
> attachments to this message are intended for the exclusive use of the 
> addressee(s) and may contain proprietary, confidential or privileged 
> information. If you are not the intended recipient, you should not 
> disseminate, distribute or copy this e-mail. Please notify the sender 
> immediately and destroy all copies of this message and any attachments.
>
> WARNING: Computer viruses can be transmitted via email. The recipient 
> should check this email and any attachments for the presence of viruses.
> The company accepts no liability for any damage caused by any virus 
> transmitted by this email.
>
> www.wipro.com
>

Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. 

www.wipro.com

RE: How to enhance a word / pdf document.

Posted by ar...@wipro.com.
Thanks a lot Reto
Will try the same.

Thanks and Regards,
Arthi

-----Original Message-----
From: Reto Bachmann-Gmür [mailto:reto@wymiwyg.com] 
Sent: Friday, September 13, 2013 10:28 PM
To: dev@stanbol.apache.org
Subject: Re: How to enhance a word / pdf document.

HI

While the enahncer works with pdf the contenthub only support text files.
The URI you're using indicate you're using the contenthub. If you need the ability to store the data and process formats other than text plain you might consider using the fusepool enhanced content management system:
https://github.com/fusepool/fusepool-ecs. It is apache license.

Cheers,
Reto


On Fri, Sep 13, 2013 at 1:41 PM, <ar...@wipro.com> wrote:

> Hi,
>   I have a requirement to enhance a word / pdf document .
> Iam using a curl command.
>
> Tried below calls but none of them work.
> curl -i -X POST -H "Content-Type:text/plain" --data @TextToEnhance.docx "
> http://localhost:8080/contenthub/contenthub/store?uri=urn:my-content-item2&chain=MyCustomChain1"
> -u admin:admin
> curl -i -X POST -H "Content-Type:application/word" --data 
> @TextToEnhance.docx "
> http://localhost:8080/contenthub/contenthub/store?uri=urn:my-content-item2&chain=MyCustomChain1"
> -u admin:admin
>
>
> Any ideas how I could enhance a word / pdf document?
> Note :  The same call works well for a plain text file.
>
> On reading I came across that for this to work we would need the 
> metaxa engine as part of the enhancement chain.  Is this the case?  
> Does Metaxa need any separate configuration before use.
>
>
> Also other than curl command if this can be accomplished by java 
> client then pls point me to some reference for same.
>
>
> Thanks and Rgds,
> Arti
>
>
>
>
> Please do not print this email unless it is absolutely necessary.
>
> The information contained in this electronic message and any 
> attachments to this message are intended for the exclusive use of the 
> addressee(s) and may contain proprietary, confidential or privileged 
> information. If you are not the intended recipient, you should not 
> disseminate, distribute or copy this e-mail. Please notify the sender 
> immediately and destroy all copies of this message and any attachments.
>
> WARNING: Computer viruses can be transmitted via email. The recipient 
> should check this email and any attachments for the presence of viruses.
> The company accepts no liability for any damage caused by any virus 
> transmitted by this email.
>
> www.wipro.com
>

Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. 

www.wipro.com

Re: How to enhance a word / pdf document.

Posted by Reto Bachmann-Gmür <re...@wymiwyg.com>.
HI

While the enahncer works with pdf the contenthub only support text files.
The URI you're using indicate you're using the contenthub. If you need the
ability to store the data and process formats other than text plain you
might consider using the fusepool enhanced content management system:
https://github.com/fusepool/fusepool-ecs. It is apache license.

Cheers,
Reto


On Fri, Sep 13, 2013 at 1:41 PM, <ar...@wipro.com> wrote:

> Hi,
>   I have a requirement to enhance a word / pdf document .
> Iam using a curl command.
>
> Tried below calls but none of them work.
> curl -i -X POST -H "Content-Type:text/plain" --data @TextToEnhance.docx "
> http://localhost:8080/contenthub/contenthub/store?uri=urn:my-content-item2&chain=MyCustomChain1"
> -u admin:admin
> curl -i -X POST -H "Content-Type:application/word" --data
> @TextToEnhance.docx "
> http://localhost:8080/contenthub/contenthub/store?uri=urn:my-content-item2&chain=MyCustomChain1"
> -u admin:admin
>
>
> Any ideas how I could enhance a word / pdf document?
> Note :  The same call works well for a plain text file.
>
> On reading I came across that for this to work we would need the metaxa
> engine as part of the enhancement chain.  Is this the case?  Does Metaxa
> need any separate configuration before use.
>
>
> Also other than curl command if this can be accomplished by java client
> then pls point me to some reference for same.
>
>
> Thanks and Rgds,
> Arti
>
>
>
>
> Please do not print this email unless it is absolutely necessary.
>
> The information contained in this electronic message and any attachments
> to this message are intended for the exclusive use of the addressee(s) and
> may contain proprietary, confidential or privileged information. If you are
> not the intended recipient, you should not disseminate, distribute or copy
> this e-mail. Please notify the sender immediately and destroy all copies of
> this message and any attachments.
>
> WARNING: Computer viruses can be transmitted via email. The recipient
> should check this email and any attachments for the presence of viruses.
> The company accepts no liability for any damage caused by any virus
> transmitted by this email.
>
> www.wipro.com
>