Does ImageResizer CopyMetaData plugin copy the "date acquired" information? - imageresizer

I'm evaluating ImageResizer CopyMetaData plugin and it seems it doesn't copy the "data acquired" meta tag?
Is there a reason for this property being discarded?
thanks in advance

It's possible that this is a windows extended file attribute, and not actually image metadata. If you e-mail the file to yourself and the metadata disappears, then there is your answer. If it is retained, it is likely in XMP or another metadata store that CopyMetadata does not support.
Check out the MetadataExtractor library for a way to access this information. The windows API CopyMetadata uses doesn't support reading or writing XMP.

Related

How to get Webtop Drl of a document via .net application?

Is it possible to retrieve drl ex:https://host:port /ewebtop/drl/objectId/0900a58e80970f7b of document via .net application?.So that when users clicks on this link they can be able to edit the document and when they close the document the document should be autosaved onto documentum.
First of all: a link is a link. What you decide to do with it I u to you. Default handler in browser will just redirect you to webtop application. If you have SSO you can have the document opened for edit. There are some extra arguments that can be provided (view/edit).
The object id is the only varying part of the URL, so you can easily construct this in code.
Secondly: what is your goal? There is no way to make the document upload itself into Documentum repo. You can write a plugin for every application to handle that, but it seems like a big task - especially dealing with security.
The problem is that upon check-in, user must provide some information - at least about the new version number...
If you're building a thick client in .net I would go with DFS - that's the only real option here.

XPages POI4Xpages download to network location

Using POI4Xpages which is great LINK
However, I was wondering, at present, when it creates my word document, it simply downloads, like a normal download from the internet, storing it the downloads folder in windows (using Chrome anyways)
Is there a way, using POI4XPages, to instead, dump the file to a specified network location, for example a shared drive?
After that, I would simply build a link to the file using the network location, and a filename variable for example to pick the correct file.
If thats not possible, is it possible to get a handle on the file before or after it is downloaded, and then save it to a field in the xpage?
In short, I want to avoid the user downloading the file, then having to attach it manually to the xpage.
Thanks
POI allows you to get a handle to the file using the variable "workbook". You are also able to provide the specific downloadFileName you wish to use. Using the postGenerationProcess property you should be able to make a call to a Java method that makes the connection to your network drive where you can use the "workbook" variable and downloadFileName value to save your document. If this doesn't work definitely post a question on their project site because the creator does reply.

Sharepoint 2010/2013 Document Library - Document Versioning

Can we control versions of the documents stored in the library like setting the beginning base version and ignore versioning on certain check-in/check-outs/modifications of a document ?
We are accessing this document library in our application through the client object model. But our legacy application requires a more control over the versions of the documents which are going to be stored in sharepoint and at the same time we would like to leverage the sharepoint document library's versioning features too. How do we achieve it ?
You can only do that using event receiver.
You could have a field named "proposed version" and the event receiver would set it to that. You can hide/making it readonly/set it in pages like viewitem.aspx using jquery.

Is is possible to set per file custom metadata in dropbox

I want to be able to set custom metadata on a file in dropbox. Ideally a string of at least 32 bytes for each file. I've looked through the core API docs but I haven't seen a way.
However I'm new to Dropbox so maybe I missed something or there is another way?
Thanks!
There isn't any way to set additional metadata on the file for your app. You could use the Datastore API (https://www.dropbox.com/developers/datastore) to store the string and the associated file path.

How to know the url from a pdf component? (Tridion2009)

We have some pdf as a multimedia components. And I would like to know the url before I publish the page where we are using the pdf. The component is already published.
I was trying to guess looking another examples: domain/en/multimedia/Name_pdf.pdf
But didn't work...
¿Someone knows the rule?
Thank you,
A lot depends on how you are handling the multimedia component within your templates, whether you are creating variants (probably not for PDF files) and, to a certain extent, what kind of delivery environment you are using and how it is configured.
If you are trying to output a link to your published binary from a template, you should probably use the out-of-the-box functionality by outputting syntax like
text
from your templates and then using the other default TBBs to publish the component and resolve the link for you.
However, in a default, standard 2009 environment, with normal publishing, you should find that your file is simply published to the file system at
<Publication Images Path>\<Binary Filename>
With the link resolving to
http://<Your server>/<Publication Images URL>/<Binary Filename>
Note:
In earlier versions of Tridion the binary filename was manipulated to include the TCM Id for uniqueness, but by 2009 this was no longer the case