11-01-2010 05:48 AM
11-17-2010 04:08 PM
11-19-2010 05:10 AM
{http://www.rightsassist.com/model/exif/1.0}dateTimeOriginaland
{http://www.alfresco.org/model/exif/1.0}dateTimeOriginalnow your code really has to know which one to pick. I checked the code for QName.createQName(String qname, NamespacePrefixResolver prefixResolver)
String uri = prefixResolver.getNamespaceURI(prefix);
which ends up in
public String getNamespaceURI(String prefix)
{
if (! tenantService.isTenantUser())
{
return getPrefixesCtx().get(prefix);
}
else
…
…
private Map<String, String> getPrefixesCtx()
{
return getPrefixesCtx(getTenantDomain());
}
….
Which handles prefixes in a Map 😞11-19-2010 05:51 AM
never use a prefix, which is already in use (also for you guys)We can't possibly scan all forge or other 3rd party projects to discover which prefixes someone has decided to use. That may sound a little arrogant, but it's also realistic I would think.
11-19-2010 06:51 AM
11-19-2010 07:44 AM
cm:name
cm:title
custom:isbn
This is much more likely to be accepted as is:
{http://www.alfresco.org/model/content/1.0}name
{http://www.alfresco.org/model/content/1.0}title
{http://www.mydomain.org/model/custom/1.0}isbn
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.