Getting going with Adobe Drive 4

So we're looking for a Digital Asset Management system. Since we use the Master Collection, times 14, so an Adobe solution would be great!
We found Adobe Drive 4 to be a perfect fit for us...
However getting started has been a pain in the ***....
We have a Mac Pro, with 2 x quadcore 3.2's, 32 GB of RAM, 1 x 256GB SSD, 26 TB eSATA and Firewire 800 connectors... Installed on it is the Master Collection, OSX Server and Adobe Drive, that's it!
Fast forward to yesterday as my ip address, 10.0.0.108, as I type in the Adobe CQ Digital Asset Management details, server url, username, password, desplay name, I get the following error...
"The server could not be connected"
com.adobe.drive.connector.api.exception.RemoteSystemNotFoundException: Failed to connect repository
I've tried everything I can think of to get Adobe Drive 4 connected so I can get our assests under control... I'm at my wits end an need help getting this up and running..
PLEASE!
Ted

You’ll need to identify an asset management system to work with…either from Adobe or a number of outside vendors. To fully enable the Adobe Drive connection to a DAM server, one needs an Adobe Drive plug-in (what we call connectors) to interface with the DAM. Adobe Drive includes a connector that is designed to work with Adobe’s CQ DAM, now Adobe Experience Manager DAM. We also include a generic CMIS compliant connector that will work with servers that implement the Content Management Interoperability Services (CMIS) specification. There are also custom connectors available from third-party vendors that are designed to work with their DAM systems.
If you are interested in learning more about the Adobe Experience Manager DAM, go here.

Similar Messages

  • No previews in Bridge with Adobe Drive 3?

    We are using a custom connector for Adobe Drive. Windows Explorer shows the correct thumbnails and previews for asset versions (in the Show Versions UI). However in Bridge we cannot see any thumbnails or previews. Clearing or purging the cache does not help. It turns out that the execute method in the GetPreviewIconHandler class is never called when browsing assets in Bridge. This used to work fine with Adobe Drive 2 (at least for jpg previews, png previews never seemed to work in Bridge).  We tried different Bridge versions (4.0.4.2, 4.0.5.11, 4.1.054) but they all have the same problem. Did anything change regarding this behavior in Adobe Drive 3? Thanks in advance for any advice.

    Indeed, adding the READ_XMP_METADATA capability seems to do the trick.
    Thanks for the quick help.

  • Using Acrobat with Adobe Drive

    I am exploring using Acrobat professional with Adobe Drive 2.1. I have not seen an explict statement that Acrobat can use Adobe drive.
    Here are my questions:
    1. Can Acrobat 9 or 10 interact with Adobe Drive 2.1?
    2. Are there any Acrobat limitations to using the exposed Adobe Drive 2.1 CMIS functionality?
    Thanks
    Tom

    FatMac>MacPro is correct about using Preview to read PDF's. It is built in, reliable and kept up to date by Apple software updates.
    Adobe Reader has had vulnerabilities that can cause your Mac to be attacked via malicious PDF's. Keeping Reader up to date is essential for good security, however Adobe updaters nag so much that it is simpler to avoid installing it if at all possible.
    PC users recommend it because they had no PDF support for so long, OS X has always had PDF support from Apple.

  • Cannot get my Elements 9 serial number to work and am getting nowhere with Adobe. Any suggestions?

    Elements 9 worked fine. It had been preloaded by Dell. I had a hard drive go bad and put in a new one. When I re-installed it Elements said the serial was invalid. Dell says it is an Adobe license and I must deal with them. Adobe sent me to the point of purchase (Dell). Dell says the yellow sticker on the disc sleeve was attached by Adobe and the serial number on it was assigned by them. If that is the case Adobe should rectify this. I paid for a product and nobody has been willing to help me out. I've spent 2 hours going back and forth with Adobe and an hour with Dell. This crap is giving me an upset stomach.

    Connect the HDMI cable directly from the Apple TV to the TV to make sure you don't have any problems with the Apple TV.

  • Getting started with Adobe forms?

    Hi,
    I'm an  ABAP consultant and worked extensively on scripts and smartforms. I got an opportunity to work on Adobe forms, so can anybody tell me about prerequisites to learn adobe forms. Is it necessary to learn Java, Webdynpro...etc?
    Can anybody send tutorials on these forms?
    regards,
    Ravi.

    HI,
    t.code SFP.
    definition:
    Interactive Forms based on Adobe software is SAP's new solution for forms development. Its first release has the focus on interactive use of forms. High-volume printing is supported in principle, but - being a new solution - the performance has not yet reached the same level as Smart Forms or SAPscript, two established solutions that had years to grow. Interactive Forms is the only solution that will continue to be enhanced with new features, while SAPscript and Smart Forms will be supported without limitations.
    When (or if) to move to Interactive Forms depends on your requirements. For interactive forms usage, i.e. the new functions, you have no choice, as the existing solutions don't support it. High-volume print scenarios need to be carefully analyzed to see whether your concrete requirements can be met at this point.
    However, it is possible to move to Smart Forms and design your forms in such a way that a migration at any point in the future would be but a small step. Smart Forms offers from Web AS 6.40 a migration wizard to Interactive Forms. Technically, everything can be migrated, but we recommend against things like ABAP program nodes, for example.
    You are not forced to ever go to Interactive Forms if you don't want to. It really depends on whether your client needs any of the new features in Interactive Forms. Also, if they are currently working with JetForms, they could enquire with Adobe directly what migration path they offer to the joint solution.
    go thru this links
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/4a94696de6429cada345c12098b009/frameset.htm
    example
    To get an overview idea about Adobe forms ,
    Using SFP , first you need to create a interface . in interface you can declare the import and export parameters and also the declaration part, coding etc : This is nothing but similar to Function module interface.
    And now we have to create the Form which is interactive. Create the form and enter the interface name which you have created in first step, so that the parameters , declarations of fields etc : will be copied and available in the form layout. So that you can drag and drop these declared fields ( dclared fields of interface ) to the layout.
    Create the context and layout in the form.
    The layout generated can be previewed and saved as PDF output.
    Now we need to integrate the driver program and the PDF form to get the final output as per the requirement.
    On activating and executing the form you will get a function module name just similar to smartforms.
    The driver program needs to call this FM.
    Refer to the below sample code :
    DATA : is_customer TYPE scustom.
    DATA : it_bookings TYPE ty_bookings.
    DATA : iv_image_url TYPE string.
    DATA : iv_sending_country TYPE adrc-country.
    DATA : it_sums TYPE TABLE OF flprice_t.
    DATA : docparams TYPE sfpdocparams.
    DATA : formoutput TYPE fpformoutput.
    DATA : outputparams TYPE sfpoutputparams.
    PARAMETERS : pa_cusid TYPE scustom-id.
    SELECT SINGLE * FROM scustom INTO is_customer
    WHERE id = pa_cusid.
    SELECT * FROM sbook
    INTO CORRESPONDING FIELDS OF TABLE it_bookings
    WHERE customid = pa_cusid.
    outputparams-nodialog = 'X'.
    outputparams-getpdf = 'X'.
    *outputparams-adstrlevel = '02'.
    CALL FUNCTION 'FP_JOB_OPEN'
    CHANGING
    ie_outputparams = outputparams
    EXCEPTIONS
    cancel = 1
    usage_error = 2
    system_error = 3
    internal_error = 4
    OTHERS = 5.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    docparams-langu = 'E'.
    docparams-country = 'US'.
    docparams-fillable = 'X'.
    CALL FUNCTION '/1BCDWB/SM00000043'
    EXPORTING
    /1bcdwb/docparams = docparams
    is_customer = is_customer
    it_bookings = it_bookings
    IV_IMAGE_URL =
    iv_sending_country = 'US'
    IT_SUMS =
    IMPORTING
    /1bcdwb/formoutput = formoutput
    EXCEPTIONS
    usage_error = 1
    system_error = 2
    internal_error = 3
    OTHERS = 4
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    CALL FUNCTION 'FP_JOB_CLOSE'
    IMPORTING
    E_RESULT =
    EXCEPTIONS
    usage_error = 1
    system_error = 2
    internal_error = 3
    OTHERS = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Reward points for useful Answers
    Regards
    PC

  • Photoshop CS6 not allowing Check In with Adobe Drive 4.2 & AEM 5.6 DAM

    I have just started to set up a AEM DAM for my design team to utilize. While it worked exactly as expected on one team member's computer, I am having some problems. I can only check items in or out through Bridge CS6. With both PS and Illustrator the "Check In" menu item is greyed out. Also, when I open a file in PS from the DAM, it doesn't automatically check the item. I've seen it work fine on a cowokers computer with a seemly similar setup. Any ideas?
    Mac 10.7.5
    PS CS6
    Bridge CS6
    Adobe Drive 4.2
    CQ 5.5 and AEM 5.6 (same thing on both)
    Thanks in advance!

    In order for the Check In menu item to appear in the supported CS apps., the asset must be opened and a change must be made (it will then automatically be checked out).

  • Check in dialog with Adobe Drive 4.2 doesn't work

    Hi,
    we are currently implementing a custom check-in dialog using Adobe Drive 4.2.
    The dialog looks like the example given in discussion "Custom check in dialog".
    To build the SWF, I use Flash Builder 4.5 with Adobe Flex SDK 4.0.0 (flex_sdk_4.0.0.14159A).
    I have created a new Flex Project with Application type "Web" and added a MXML Modul with name "CustomUI" and option "Do not optimize (module can be loaded by multiple applications)".
    After compiling the project I extract the "CustomUI.swf" and copy the file in the "resources" folder of my Custom Adobe Drive adapter.
    I implement the "IGetCustomCheckInUIHandler", "ICanEnableCustomCheckInUIHandler" and "IGetCustomCheckInUIContextInfoHandler":
    "IGetCustomCheckInUIHandler" sets the module url like
    response.setModuleURL(Thread.currentThread().getContextClassLoader().getResource("resource s/CustomUI.swf"));
    "ICanEnableCustomCheckInUIHandler" enables the custom ui dialog with
    response.setCanEnable(true);
    "IGetCustomCheckInUIContextInfoHandler" adds some context data like
    Map<String, Object> contextInfo = new HashMap<String, Object>();
    contextInfo.put("key1", "test1");
    response.setContextInfo(contextInfo);              
    (Also hidding the "IGetCustomCheckInUIContextInfoHandler" in "IRemoteHandlerFactory" doesn't work.)
    Right click on an checked out asset in Windows Explorer and click on "Adobe Drive 4/Check in..." does following:
    1. "IGetCustomCheckInUIHandler" called
    2. "ICanEnableCustomCheckInUIHandler" called
    3. "IGetCustomCheckInUIHandler" once more called
    4. "IGetCustomCheckInUIContextInfoHandler" called
    5. The default check in dialog is shown (with no custom ui extension), the default dialog hangs (OK/Cancel doesn't react on click, the dialog is freezed). Only the close button (X in the right upper corner) works.
    How is it possible to provide a custom ui check in dialog?
    Thanks

    Hi again.
    I found where the problem was (at least in my case).
    To go to the point: go in the "properties" of your flex project. In the menu, go in "Flex Build Path" and then in "Library Path". Then, the option "Framework linkage" is with the default value in a new flex project.
    So here is the trick : with Flex 3 (so Adobe Drive 3), the default value is "merged into code".  Bug in the Flex 4 (so Adobe Drive 5), the default value is "Runtime Shared Library".
    And because the module is ran independently (with no link with the flex code that load your module), the flash player crashes because it doesn't find your libraries (like ICustomCheckinUI).
    I discovered this problem running the Custom UI from the windows explorer (not with Bridge) and using the Flash Player Debug version, and watching the error log files of the Flash Player.
    So in the end, when I checked "merged into code" in the Framework Linkage option, all my dependencies of my flex module were merged into my final module swf, and no more flash crash.
    Sorry for my bad english and hope it helped.
    Guillaume
    (edit : screenshot at http://www.hostingpics.net/viewer.php?id=276932flexbuildpath.png )

  • Issue with Adobe Drive showing 2 drives when connecting to a HA environment

    I am using Adobe Drive 5 and when connecting to a HA application it shows 2 drives. Even if I use the direct IP of one node 2 drives show up
    Any idea how to stop a second drive shown up?

    I have "SMB/CIFS" not "SMB/CIS" - does that make a difference? (I'm in uncharted waters here...)
    When I go to Configure it, the default Workgroup is "Windows" in what looks like a drop down menu, but there is nothing else in the menu.
    The WINS Server: is blank and I can't type anything in it.
    I changed "Windows" (because I can type there) to the Workgroup of my school, and tried again with the same results.
    The "Apply" and "Revert" buttons are grayed out. Only a few of the options are checked: AppleTalk, Bonjour (grayed), LDApv3, SLP, and SMB/CIFS
    Authentication is set to Custom Path (/Netinfo/DefaultLocalNode)
    Contacts set to "Automatic" (same path as above)
    I'm trying to be a thorough as I can in my description, because I'm unfamiliar with this utility and want to make sure I'm not missing anything.
    Thanks.

  • Lightroom 4 - Print the Perfect Image | Getting Started with Adobe Photoshop Lightroom 4 | Adobe TV

    Learn how to use the Print module to bring your images into the spotlight and share with clients, friends or family. Also, see the new tools for making custom contact sheets and print packages.
    http://adobe.ly/wqFX7Y

    I love Julieanne Kost’s videos.  The one on the print module did not mention some gotcha’s.  I find this module very frustrating.  I have thousands of pictures of wild horses and decided to print a few pages with photos of the right and left side of the horse to make it easier to identify the many pintos.  I made a grid of 4 x 2 cells on each page and then tried to drag and drop the photos from the film strip.  The first cell filled as expected but when I tried a different photo in the next cell it replaced the first cell’s photo!  I could not figure out what was going on.  I didn’t know you had to move the photos in the film strip to put them in the order I wanted.  I had only used the print module to print single photos and had not used collections before.  After spending a lot of time trying to find out what I was doing wrong I found out you couldn’t drag and drop in the Single image/ contact sheet layout!  This took over an hour.  I tried a different style only to find that the picture package would only use one picture.  Well, the custom package did what I wanted it to do.  Great, so now I needed to print the captions with the names of the horses and spent another hour trying to get that to print only to discover you could only do that in the Single image/ Contact sheet!  In that layout you can only have cells the same size with no mixing of portrait and landscape orientation!  Not only that, I only had a picture of one side of a few horses and couldn’t skip a cell in that layout so had to go to Photoshop and create a blank photo to use as a place holder.   I had to fill the bottom of a page with blank photos to get a new page if it didn’t want pictures in all the cells of a particular page.  This all caused me hours of frustration and pounding my head on the desk.  I tried going to the book module but couldn’t create an 8 photos per page like in the contact sheet layout. 
    Maybe you could tell us why we aren’t allowed to print captions in all of the layout styles and why we can’t drag and drop in all the layout styles in any order we want.  Why the Custom Layout style isn’t the only one.  Why all the templates supplied are not using the Custom Layout package.  Why is this so hard? 
    Thank you  -- Eric Hill

  • Few question to get going w adobe stuff...

    Ok I have a few questions, maybe you can help me...
    A) ORGANIZER RELATED QUESTIONS:
    1) How/where do I back up photo/videos/settings from adobe organizer?
    1b) If I decide to upgrade from pse9 to ps cs5 is it real simple to 'import.transfer' organizer to the big dog ps cs5?
    1c) Same thing (but for videos) if decide to upgrade to premiere pro from premiere elements 9 is it easy to import organizer?
    2) Organizer - are there physical copies of my photos/videos in some other adobe organizer folder
    or are they just linked to similar to windows 7 and libraries?
    B) Photoshop & Premiere Elements 9 vs Photoshop cS5 & Premiere Pro
    1) Does After Effects work with premiere elements 9?
    1b) Recommend some good starter plug in collections for video editing.?
    2) If I decide to upgrade/buy photoshop cs5, do all of my plug ins I've got installed with elements 8 as host get automatically transferred to ps cs5? Or do I have to manually reinstall all over?
    3) How much simpler is photoshop elements to learn than ps cs5 and premiere pro?
    Is the learning curve about the same just more of it to learn (and additional function of course)
    Thanks everybody - have a ton more questions, but gonna lay low and watch some tutorials for about a YEAR first....
    One last thing...
    I love this site, but variety is the spice of life. Can you guys recommend some other Adobe ps/premeire learing sites and help/discussion forums that would be valuable

    A.1) Click File >>Back Up catalog to CD DVD or Hard Drive.
    1b) You can convert a PSE catalog in CS5 but works best with photos only. Project files like slideshows and videos might cause the conversion to stall.
    1c) Premier Pro has it’s own media browser.
    2)There are no physical copies. The Organizer only makes links to the folders on your computer.
    B.1)AE is fully integrated in CS5.5 Production Premium but I’m not sure if it works on a stand alone basis, although I don’t see why not.
    1b) Sorry don’t know any plug-ins to recommend but 32 bit plug-in's will not work with AE.
    2) You would need to move plug-ins manually.
    3) Just more of it. In PS CS5 you get great things like the pen/paths tool and tone curves. With Premier pro you ideally need a fast 64 bit system with high end GPU to take full advantage of the mercury Playback Engine.
    Try adobe TV for all sorts of video tutorials for the various products.
    Good luck.
    Other forums (click the dropdown menu)
    http://forums.adobe.com/index.jspa
     

  • Lightroom 4 - Importing and Organizing Your Images | Getting Started with Adobe Photoshop Lightroom 4 | Adobe TV

    Discover the most efficient method for downloading images into Lightroom and organizing them. Quickly import and manage your photo collection in a library that makes organizing, finding and editing your photos easy.
    http://adobe.ly/zQmi8t

    Ms. Kost,
    I am an event photographer and new to Lightroom.  I just got Lightroom 4 and am just starting to watch your videos.  This first one demonstrates your great step by step teaching method that's very informative and I'll be watching more.
    As an event shooter, I usually shoot with two cameras, each with a different lens.  I would very much like Lightroom to be able to SORT the files from both cameras during the Import phase and order them by the TIME that the shots were taken, or Chronologically, rather than to sort each group of files from each camera individually.  Since I do my editing and presenting in chronological order, I would like them sorted as if I shot them all with one camera.  My current method is to import to Lightroom after first using Bridge to import to the main SSD drive on my Macbook Pro, although I can change this method if need be.
    Is this possible? I didn't notice this option explained in this video if it exists.
    Thanks in advance!

  • Lightroom 5 - Importing Your Images | Getting Started with Adobe Photoshop Lightroom 5 | Adobe TV

    Discover how to quickly download and import your images into Lightroom. Then, decide which method is the most efficient for your workflow.
    http://adobe.ly/11iaqIz

    I don't have a card slot on my Macbook pro  it's about 4-5 years old. I have a Canon EOS 500. When i want to import i use a cable that plugs from the camera into a USB port downloading in either iPhoto o Photoshop. Can I do this also with lightroom or do I need to get a card adapter?
    Thanks, Patrick

  • Getting frustrated with Adobe and being able to find someone to talk to.

    I have Adobe Acrobat, it was on my old Windows PC, I now have an Apple Is there a way to download it to my Apple with out buying a whole new program seeing I already own a Windows version. Very frustration not being able to talk to a customer service rep as I have wasted 2 hours bouncing around the site and can' get an answer to my question.

    Hi Robert ,
    Please let us know the version of Acrobat you are using
    If it is the latest version then it is possible without buying a whole new program .
    If you are using the Acrobat subscription, you can simply download it by typing in your credentials to license it.This is possible for the latest version only .
    Please refer to this link as well.
    https://helpx.adobe.com/x-productkb/policy-pricing/order-product-platform-language-swap.ht ml
    Refer to this link to connect with the Adobe agent.
    https://helpx.adobe.com/adobe-connect/kb/connect-chat-support.html
    Regards
    Sukrit Dhingra

  • Lightroom 5 - Print the Perfect Image | Getting Started with Adobe Photoshop Lightroom 5 | Adobe TV

    Learn how to use the Print module to bring your images into the spotlight and share with clients, friends or family.
    http://adobe.ly/12t2aN8

    Can you do Proof for printing in LR5 like in PS?

  • Lightroom 5 - Creating and Publishing a Book | Getting Started with Adobe Photoshop Lightroom 5 | Adobe TV

    Create and publish your own book using the Book module in Lightroom. Discover how to quickly add text and images, change layouts and customize templates.
    http://adobe.ly/12t1S9f

    You are one of the best presenters. Easy to keep track with what you explain.Thanks

Maybe you are looking for

  • Cannot find "file to sync photos"?

    I'm am trying to update my photos. But everytime I try sync my phone it prompts with an error. can't find the file. phone cannot be synced. Why?

  • How to retrieve the list of interface in a project

    Does anyone know how can I retrieve the entire list of project interface ? Is there a way to retrieve it from the ODI repository? Thanks

  • Web Analysis data layout does not reflect newly added attribute dimension

    Hi, We newly added one new attribute dimension. If any new report creation in Web Analysis reflect that dimension. However, the reports which are old(created before the addition of new dimension), does not show the newly added dimension. Please advic

  • Cat5 vs cat6 ethernet cable

    I'm trying to transfer info from a PC to a new Macbook pro using a cat5 ethernet cable.  The two computers can't even find each other.  Do I really need a cat 6 or is something else wrong?

  • Recording 24bit in Mediasource results in non-PCM WA

    When recording a WAV file in 24bits using the Record feature of Creative Mediasource Player, what kind of format does the WAV file get created in ? For example, a 6bit recording gets created in "PCM" format but a 24bit recording gets created in some