Library/Project Backup methods?

Hi there,
I have been using aperture from it's 1.0 incarnation and have always done my backups in the very tedious "export project" method. The reason for doing this is because of the lack of apple being able to keep a running backup of all projects in a vault. IE: if you delete a project in your library, it gets deleted in your vault.
I am at that point again that I am tired of the "export project" mode, as I am shooting more and more clients, and this is a very tedious, time consuming way of backing up.
Anyone know of an automated method of keeping a running/current back up of all projects for Aperture?
I have projects totaling near a TB of photos and keeping a library with ALL these projects is literally impossible.
Thanks.
Pax

Try asking in the iTunes forum.

Similar Messages

  • Create library (swc) in Flash Builder 4 / Flex Project (not in a Library Project)

    I want to create a swc file to use it in an other project. I can't use the Flash 4 Library Project to do this, because in a Library Project I
    haven't the possibility to use data/services, which I need for my library. After click on "data / services" I get the message "This view is only for Flex-Projects available".
    Has anyone a solution for my problem?
    Thanks for your help.

    Connect to PHP in FB4 is used when you have a PHP Class and you want to use that in FB, for example Employee.php and it has a Employee class and various methods in that like create, update, get, delete.
    However, if you have exposed your functionality in PHP as a HTTP URL (i.e. it is not a class), then you should be using HTTPService from the data menu.
    So if your file is login.php and is accessible as a URL, then using the HTTPService and enter the URL.
    Does this help?
    -Sunil

  • How do I apply programmatic skins for completely custom drawn components of a Flex library project?

    Hello folks,
    I am looking for best practices advice when (1) creating
    custom components and (2) styling and skinning.
    I already know how to skin a component part of the Flex
    framework. I can make a class extending ProgrammaticSkin and have
    my component skinned using CSS to link the component with the
    reference to my custom class.
    However what about those cases when you are completely
    creating a component from scratch?
    Imagine a "Freehand Drawing Canvas" component that allows the
    user to draw on it and has some buttons to set color styles, line
    styles, etc., or imagine a "Screen Flow Gallery" component that
    displays visual objects in a fashion similar to Cover Flow in the
    Mac.
    In many components I am aware you may reuse other components
    part of the Flex framework but I am trying to picture an scenario
    where you would need to draw everything yourself because there just
    isn't something to base it upon so you will end up drawing it from
    scratch.
    To learn how instead of building one of those components I
    mentioned previously I decided to start with something simple that
    would illustrate this like a LiteButton component that will behave
    just like the Flex mx.controls.Button but will extend UIComponent
    and be completely custom drawn.
    The component will have a default look and will also be
    style-able and skin-able. I will provide styles for users of the
    component to modify and regarding skinning anyone can create a
    custom ProgrammaticSkin adding its own drawing logic and link it to
    the component via CSS with the ClassReference applied to the skin
    selector.
    So far so good and it's clear what I want to achieve. I
    actually know how to do most of the stuff here but I have one
    single problem.
    Here is my question, where should I put my custom drawing
    logic? If I do it in the updateDisplayList inside the class
    extending UIComponent it works, however I thought that it would be
    a better practice to do it using programmatic skins, that way I
    could provide different skin themes for my component set.
    The problem is that I can't make the programmatic work in
    this scenario. I tried instantiating the custom programmatic skin
    during the updateDisplayList of the LiteButton component and adding
    it to my display object via addChild but that didn't do anything. I
    also tried creating a "default.css" stylesheet and tried to use
    ClassReference as I would normally do to skin an already existing
    component (or composite component as well) but that didn't do
    anything either.
    So how do I apply programmatic skins for completely custom
    drawn components of my Flex library project?
    I could do it inside the updateDisplayList of the LiteButton
    class extending UIComponent but again I would like to provide
    different theme sets for my components so it makes sense using
    programmatic skins.

    "jbucaran" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello folks,
    >
    > I am looking for best practices advice when (1) creating
    custom components
    > and
    > (2) styling and skinning.
    >
    > I already know how to skin a component part of the Flex
    framework. I can
    > make
    > a class extending ProgrammaticSkin and have my component
    skinned using CSS
    > to
    > link the component with the reference to my custom
    class.
    >
    > However what about those cases when you are completely
    creating a
    > component
    > from scratch?
    >
    > Imagine a "Freehand Drawing Canvas" component that
    allows the user to draw
    > on
    > it and has some buttons to set color styles, line
    styles, etc., or imagine
    > a
    > "Screen Flow Gallery" component that displays visual
    objects in a fashion
    > similar to Cover Flow in the Mac.
    >
    > In many components I am aware you may reuse other
    components part of the
    > Flex
    > framework but I am trying to picture an scenario where
    you would need to
    > draw
    > everything yourself because there just isn't something
    to base it upon so
    > you
    > will end up drawing it from scratch.
    This may help with that
    http://livedocs.adobe.com/flex/3/html/help.html?content=skinstyle_3.html
    > To learn how instead of building one of those components
    I mentioned
    > previously I decided to start with something simple that
    would illustrate
    > this
    > like a LiteButton component that will behave just like
    the Flex
    > mx.controls.Button but will extend UIComponent and be
    completely custom
    > drawn.
    >
    > The component will have a default look and will also be
    style-able and
    > skin-able. I will provide styles for users of the
    component to modify and
    > regarding skinning anyone can create a custom
    ProgrammaticSkin adding its
    > own
    > drawing logic and link it to the component via CSS with
    the ClassReference
    > applied to the skin selector.
    >
    > So far so good and it's clear what I want to achieve.
    Actually after
    > playing
    > with the weekend and today I know how to do most of the
    stuff but I have
    > one
    > single problem. So here is my question, where should I
    provide my custom
    > drawing logic? If I do it in the updateDisplayList
    inside the class
    > extending
    > UIComponent it works, however I thought that it would be
    a better practice
    > to
    > do it using programmatic skins, that way I could provide
    different skin
    > themes
    > for my component set.
    These aren't mutually exclusive. When you provide a skin with
    a
    TypeSelector, you have to add it to the display list
    somewhere, and this is
    typically done in updateDisplayList or addChildren. I prefer
    to do it in
    updateDisplayList, because you can then change it if the
    style changes.
    > The problem is that I can't make the programmatic work
    in this scenario. I
    > tried instantiating the custom programmatic skin during
    the
    > updateDisplayList
    > of the LiteButton component and adding it to my display
    object via
    > addChild but
    > that didn't do anything.
    Exactly what did you do?
    > I also tried creating a "default.css" stylesheet and
    > tried to use ClassReference as I would normally do to
    skin an already
    > existing
    > component (or composite component as well) but that
    didn't do anything
    > either.
    I've never had any problem using an approach similar to
    this...but I will
    say that I couldn't see any advantage in creating a
    default.css style sheet,
    since it's not really default in the way that the one that
    comes with Flex
    is. It's much more obvious to anyone using your component
    what's going on
    there if you create a style sheet where they're likely to
    spot it.
    > So how do I apply programmatic skins with the default
    look for custom
    > drawn
    > components?
    It seems like your approach is fine, but maybe you've made a
    mistake in your
    implementation.
    > I could do it inside the updateDisplayList of the
    LiteButton class
    > extending
    > UIComponent but again I would like to provide different
    theme sets for my
    > components so it makes sense using programmatic skins.
    You might want to consider also adding an instance of
    HaloBorder to your
    component. That brings a lot of functionality with it.
    HTH;
    Amy

  • Bug with swc folders and library projects?

    Hi guys, hope someone can help here. We are just in the
    process of starting a fairly large flex project and we were trying
    to work out a solution so that I as a designer can view and edit
    custom components with visual styles applied.
    Now I know that you aren't meant to add a style tag into the
    component but it was working for me and I could at least preview
    the styles in 'design mode'.
    The problem arises though when you have a large project with
    shared assets across projects. I had 3 projects set up in my
    workspace:
    Project 1: Library project with css files, swc and graphics
    Project 2: Library project with components for Project 3
    Application
    Project 3: Application project
    What I did was to add a external source folder to Project 2
    & 3 both of which was Project 1. So far so good, the css loaded
    into my application from Project 1 and I could view my styles in my
    custom componants in Project 2
    But, I needed to add swc files for custom buttons etc in my
    application. So, I thought I would just add an swc folder source to
    my build path in both my Project 2 & 3 which referenced an swc
    folder in Project 1. Well, it did work and I could view everything
    fine but (and here is the main problem) this corrupts the
    workspace. Once Flex has closed and tries to reopen my workspace it
    hangs, same if I change workspace in Flex from another workspace to
    this one.
    Can anyone help? Is this a flex bug?
    TIA
    Steve

    Section 6.3.9 of RFC3501 expands on previous RFCs and clarifies the LSUB command, confirming that this is a bug in JavaMail. http://www.isi.edu/in-notes/rfc3501.txt

  • How do I restore iTunes library from Backup files on External Hard Drive?

    How do I restore iTunes library from Backup files on External Hard Drive and keep the new iTunes library on the External Hard Drive. I have all the media and playlist and .xml .itl files, just want the iTunes to recognise the content.
    I backedup my iTunes content by dragging to External Hard Drive. Formatted and reinstalled OS. My iTunes content is so large, that I wish for the Library and content to remain on the External Hard Drive. I have all the music files and playlists, I just cannot get the iTunes application to display all the content. Hoping to Not have to drag and drop all the content to be recopied into new iTunes organised files.
    Troubleshooting this by researching other conversations on the web, I have come stuck for a solution. One Troubleshoot told me to hold down the Command key and then lauch iTunes and a dialogue box will appear to Choose a new library, however when I try this, no Dialogue box appear to give me the option!?

    It sometimes has that funny switch symbol on it too.  
    tt2

  • Getting an error while copying pdf file into RMS enabled document library using copyTo() method

    In SharePoint 2010, I am trying to copy pdf file programmatically from a non-RMS protected document library into RMS protected library using copyTo() method.
    But I am getting an error while doing so. it gives error as mentioned below -
    This library does not accept files of the given type. You must either upload a
    new, unprotected file that supports rights management or re-upload a document
    that was previously downloaded from this library.
    Please suggest some solution.
    Thanks,

    Are You sure that you have give 'PDF' in caps in your program? and check whether you are getting all the datas before calling the method.
    in my program, i have used like this and it is working fine for me,
    I am getting PDF content from the form...
    DATA  ls_formoutput     TYPE fpformoutput.
      DATA  pdf_content        TYPE solix_tab.
      DATA  lp_pdf_size        TYPE so_obj_len.
    DATA  lv_mail_title      TYPE so_obj_des.
    *Attach the PDF .
          lp_pdf_size = XSTRLEN( ls_formoutput-pdf ).
          pdf_content = cl_document_bcs=>xstring_to_solix(
              ip_xstring = ls_formoutput-pdf ).
          document->add_attachment(
            i_attachment_type     = 'PDF'
            i_att_content_hex     = pdf_content
            i_attachment_size     = lp_pdf_size
            i_attachment_subject  = lv_mail_title ) .

  • Library project errors and imports of projects using them

    So this is something that I have put up with in FB for a long time now, but I decided to try doing some research today to see if there is a workaround as it is very annoying. Unfortunately I couldn't find anything.
    I attempted to file a bug/feature request, but it turns out that for some unknown reason FB is the only Adobe application that gives a link to another url (http://bugs.adobe.com/flex/) and, today at least, the link is dead so I have to post here instead.
    The problem is with library projects (which I love by the way). I use them a great deal and for more than just creating standalone APIs. As do many others, I like to have the core of many of my cross-platform projects in a library so that I can create other ‘harness’ projects for different runtimes and use the same bulk code. This way I can just write code in each master project that is particular to that runtime be it air or web or whatever - this is a great bit of functionality that I would really miss were it not there.
    As a result of this workflow however, I am often working in the library project directly in order to update all versions of a project. The problem arises when there is an error in the library project. When this happens, all the projects reading from the library lose all linkages to the swc and as a result the problem tab fills up with hundreds of problems that don’t exist, because as far as those projects are now concerned the swc no longer exists.
    Now I understand why this happens but surely FB could be made to understand what is going on and override (what I assume is) the compiler’s behaviour, and just not display these errors.
    This whole thing is exacerbated by (and may not even be that big a problem where it not for) the fact that I am forced to turn off 'build automatically' due to the 4.7 crash bug that has been reported here numerous times. Because of this I tend to write large chunks of code between each compile so I don't instantly know what has broken.
    Please save the feature that I enjoy so much by either getting FB to deal with the situation better or by fixing the crash bug so I can use ‘build automatically’ again… or god forbid… fix both!! I can dream. J
    If anyone has any good tips regarding this please let me know.
    Many thanks,
    James

    Can I then delete the project from the hard drive (as it's now in the library?) or will that delete the whole thing forever?
    That depends on how you did import the projects.  If your images are referenced they might still be stored in the previous projects, but if your library is managed, then it will be save to delete the projects you already imported.

  • Project Backup Issue

    We have a situation where single project backup is reported as "completed successfully" , but when we try to restore it, it gives error.
    The Oracle Tech Support is horrible beyond imagination. For two weeks they kept telling me that they are working on it, and now they want to start over and want another backup sample. This tells me clearly, they have no clue, just fishing around to find something. Here is the entire conversation:
    Quote:
    I am surprised that this simple realization came after two weeks.This is really worst tech support I have ever seen, inspite of paying top dollars. Is there any place in Oracle which tracks the quality of technical support provided to clients or is it free for all.
    Well, just for your information, we have also started looking at some other options to replace Contract manager due to the bad support.
    I will send you the backup as desired.
    Oracle Support - April 16, 2012 2:15:23 PM GMT-04:00 [ODM Action Plan]
    Data Request
    Thanks for your reply.
    Based on the information you have provided and the support team's previous
    experience with the issue I believe the project itself may be corrupt in some way.
    Therefore when one attempts to restore the project the restore process fails the
    validity check due to possible missing data within the project.
    Because the .JAR file itself is corrupt I'm unable to view its contents using an XML editor
    or other means.
    Please upload a copy of a database export of the Oracle database where this project
    exists. This way I can restore the data here and query the contents of the project
    itself to confirm whether there is missing or invalid data within the project.
    See DOC ID 908371.1 (attached in the related articles section of this SR) for steps
    of how to perform the export.
    Thank you.
    [email protected] - April 16, 2012 9:31:18 AM GMT-04:00 [Update from Customer]
    This is really frustrating to receive such responses for a paid service contract after more than two weeks of pending SR. Did you read my entire post before posting your question or you just want me to start all over again. Last time you said that you have reproduced the issue, then why do you need another backup?
    Anyway the replies are as under:
    1. This is happening with one project and not multiple projects ( read my earlier responses)
    2. No, there were no errors reported ( read my earlier responses)
    3. It was saved on local drive
    4.As I understand you were able to reproduce the issue, then why do you need me to send you another backup. If so, please define the backup should be under what environment variables, because I dont want you to come back 2 weeks later and ask for another backup with different variables.
    Oracle Support - April 13, 2012 3:21:27 PM GMT-04:00 [ODM Action Plan]
    Hello.
    1- So am I understanding that this is only happening with ONE project and not multiple projects?
    2- When this single project backup was originally taken did any errors or unusual behavior occur?
    3- Where is the backup file being saved when it is taken? On the local machine or to a network drive on some other machine?
    4- Please create another single project backup of this project and attempt to restore that new backup to the new database
    group. Let me know how this works out.
    [email protected] - April 11, 2012 7:23:42 PM GMT-04:00 [Update from Customer]
    We are unable to do a backup only for this project. All other projects are working OK. Let me know if you need anything else.
    Thanks
    Oracle Support - April 11, 2012 5:56:53 PM GMT-04:00 [ODM Action Plan]
    Hello. I have reproduced the issue and am currently still investigating the issue. I will reply
    back shortly with next steps and or further questions. Thank you for bearing with us.
    [email protected] - April 11, 2012 2:07:53 PM GMT-04:00 [Update from Customer]
    When can we expect a reply?
    [email protected] - April 9, 2012 1:23:40 PM GMT-04:00 [Update from Customer]
    Do we have a time line for a fix of this issue?
    Oracle Support - April 2, 2012 11:47:40 PM GMT-04:00 [Notes]
    Thank you for uploading the single project backup. I will try to restore
    to a test system here to try and reproduce the issue.
    [email protected] - April 2, 2012 9:41:47 AM GMT-04:00 [Update from Customer]
    Upload to gtcr successful for the file EXP_SFP1_SFP1.JAR.
    [email protected] - April 2, 2012 9:40:16 AM GMT-04:00 [Update from Customer]
    Attached is a single project backup which was backed up successfully, but gives error while restoring. i havetried to restore it on two seperate installation of CM13, and both gave a message "error were encountered......."
    [email protected] - April 2, 2012 7:35:33 AM GMT-04:00 [Update from Customer]
    1. This happens with Single project backup with all the projects we have.
    2.yes, it is being restored to another group in the Same installation of Contract Manager.
    As expalined earlier, this was happening without any error until we installed the Contract Management Exchange Module. Since then we have uninstalled the module, but the error continues.
    Oracle Support - April 2, 2012 12:37:10 AM GMT-04:00 [Notes]
    Hello. Thanks for your reply.
    1- Does this issue happen with one single project backup or multiple backup files?
    2- Is the single project backup being restored to the same version of Contract Management system as where the backup was
    taken?
    3- If only happening with one backup please upload the single project backup file to this SR. This way I can restore the file to a test environment for research.
    [email protected] - March 30, 2012 9:31:50 PM GMT-04:00 [Update from Customer]
    1. The version is 13.0.5.0, build 2085
    2. "Errors encountered during restore"
    3. No
    4.Weblogic
    Let me know if you need anything else.
    Thanks
    Oracle Support - March 30, 2012 5:30:53 PM GMT-04:00 [ODM Action Plan]
    Data Request
    Hello. Thank you for contacting Oracle Primavera support.
    A few questions:
    1- What is the version and build of Contract Management? (This can be found in the upper right corner of the log on screen)
    2- What is the error message or behavior that occurs when attempting to restore the backup?
    3- Does the project already exist in the group to which the backup is being restored?
    4- What application server is being used with Contract Management? JBOSS or Weblogic?
    - If you are unsure which app server is being used do the following
    a. On the web server machine right click my computer and choose manage > expand services and apps > click on services
    b. Scroll through services and look for the service named either Contract Manager or Primavera Contract Management. If this service exists
    then open My Computer > open the drive that has your installed programs and look for a folder named JBOSS 5.0.1 GA
    c. If both of the above exist then your running JBOSS if neither of the above exist then go to step d.
    d. Open My computer and look for either of the below folders:
    [drive letter]:\bea\user_projects\domains\[Contract Management domain name]
    [drive letter]:\Oracle\Middleware\user_projects\domains\[Contract Management domain name]
    e. If either of the above folders exist then it is likely that Weblogic is being used as the application server.
    Thank you.
    [email protected] - March 30, 2012 3:24:01 PM GMT-04:00 [Customer Problem Description]
    1) Does your issue impact all of your users, or just some?
    All users
    2) Does your issue occur in a single project, or in multiple projects?
    all projects
    3) ### Impact on Business ###
    We back up the project before processing monthly pay requisitions, so that it can be restored in case the process is to be reversed. Till last month it was working properly. This problem started after we installed Contract Management Exchange Program to export the Pay Requisitions. Since then we have uninstalled this program, but the error continues.
    [email protected] - March 30, 2012 3:24:01 PM GMT-04:00 [Customer Problem Description]
    Problem Description: Unable to restore Project backup created in from one group to another group.
    Unquote:
    Anyone have any idea about this error message?
    Thanks

    I've experienced this also and I would then try the same project the next day and it worked OK. Sometimes the backup file does not get completely written for whatever reason. Try again sometime when there is no one else logged in. ALSO, and more importantly, make sure that you are selecting a LOCAL path when backing up. As in your local C or D drive. Don't assume that your "My Documents" folder is local either because in many organizations that is on a network drive somewhere.

  • How can i change the class in the Class Library project to be static or public so i can use it from the windows application project ?

    First i know that when i make any changes to the class library project i need to rebuild the project then to remove the Capture.dll from the TestScreenshot project and then to add again the updated Capture.dll
    The problem for example in this case i'm trying to use a public static variable i add in the DXHookD3D9.
    In the DXHookD3D9 i added this public static variable:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    //using SlimDX.Direct3D9;
    using EasyHook;
    using System.Runtime.InteropServices;
    using System.IO;
    using System.Threading;
    using System.Drawing;
    using Capture.Interface;
    using SharpDX.Direct3D9;
    namespace Capture.Hook
    internal class DXHookD3D9: BaseDXHook
    public DXHookD3D9(CaptureInterface ssInterface)
    : base(ssInterface)
    LocalHook Direct3DDevice_EndSceneHook = null;
    LocalHook Direct3DDevice_ResetHook = null;
    LocalHook Direct3DDevice_PresentHook = null;
    LocalHook Direct3DDeviceEx_PresentExHook = null;
    object _lockRenderTarget = new object();
    Surface _renderTarget;
    public static decimal framesperhourtodisplay = 0;
    protected override string HookName
    get
    return "DXHookD3D9";
    List<IntPtr> id3dDeviceFunctionAddresses = new List<IntPtr>(
    framesperhourtodisplay
    The problem is i can't even get to the Capture.Hook namespace and not to the DXHookD3D9 from the TestScreenshot application window project.
    This is a screenshot:
    For example fro the FramesPerSecond class i can use it get to it from the windows forms application.
    namespace Capture.Hook
    /// <summary>
    /// Used to determine the FPS
    /// </summary>
    public class FramesPerSecond
    int _frames = 0;
    int _lastTickCount = 0;
    float _lastFrameRate = 0;
    Since it's public i guess.
    But if i will change the DXHookD3D9 class from internal to public:
    public class DXHookD3D9: BaseDXHook
    I will get error on the DXHookD3D9: 
    Error 1
    Inconsistent accessibility: base class 'Capture.Hook.BaseDXHook' is less accessible than class 'Capture.Hook.DXHookD3D9'
    And the BaseDXHook class:
    namespace Capture.Hook
    internal abstract class BaseDXHook: IDXHook
    protected readonly ClientCaptureInterfaceEventProxy InterfaceEventProxy = new ClientCaptureInterfaceEventProxy();
    public BaseDXHook(CaptureInterface ssInterface)
    this.Interface = ssInterface;
    this.Timer = new Stopwatch();
    this.Timer.Start();
    this.FPS = new FramesPerSecond();
    Interface.ScreenshotRequested += InterfaceEventProxy.ScreenshotRequestedProxyHandler;
    Interface.DisplayText += InterfaceEventProxy.DisplayTextProxyHandler;
    InterfaceEventProxy.ScreenshotRequested += new ScreenshotRequestedEvent(InterfaceEventProxy_ScreenshotRequested);
    InterfaceEventProxy.DisplayText += new DisplayTextEvent(InterfaceEventProxy_DisplayText);
    ~BaseDXHook()
    Dispose(false);
    How can i solve it so i can use the variable framesperhourtodisplay in the DXHookD3D9 class with the TestScreenshot windows forms application ?

    Hi,
    I dont know if it will work here, since I dont know the complete structure, but the base call must be public, if the derived class is public, so the base class is at least as accessible as the derived class.
    Try make the base class public. (And maybe the base-class IDXHook of the base also...)
    Or use a different approach and make only the properties public that are needed to be public by adding an extra class...
    A structure could look like:(you need to create a class thats public in your dll and expose a property, and set this property in the internal class...)
    In the Accessing class (here Form1)
    public partial class Form1 : Form
    public Form1()
    InitializeComponent();
    private void Form1_Load(object sender, EventArgs e)
    C c = new C();
    MessageBox.Show(B.F.ToString());
    and in the class Lib:
    internal class A
    public A()
    B.F = DateTime.Now.Millisecond;
    public class B
    public static int F { get; set; }
    public class C
    public C()
    A a = new A();
    (add a referenc to the class lib from the accessing project)
    Regards,
      Thorsten

  • Creating workers in library projects?

    I'm trying to move a worker I created on Flash Builder 4.7 / AIR 3.4 from a stand-alone project to a library. I've tried using the new "ActionScript Library Project" wizard, which uses the correct AIR 3.4 SDK, but it does not inclue any of the facilities for creating and managing workers that exist in applications created with the "ActionScript Project" wizard.
    When I attempt to create a worker in the ActionScript library, I get a pop-up that says "Selected Project is not Flex or ActionScript: You must create a Flex or ActionScript project to hold this file."
    Is this something that's slated for support in a future release of the 4.7 beta, or is there some fundamental reason workers can't live in library projects?
    Thanks in advance for any help with this.

    You are both partially right,
    I fixed it by creating a new workspace (just deleted the
    metadata folder) and re-importing my projects..
    Then i removed the libraries and it worked, i started to add
    the libraries one by one and the library that breaks it is
    'FlexUnitOptional.swc'...
    Thanks a lot..
    I still have one problem open with the new flex builder, i
    cannot debug in modules, i also posted it on the forum. Which is
    over here:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=651&threadid =1303879&enterthread=y
    Thanks a lot

  • Backup method in Noarchive mode

    Hi All,
    I have one question regarding backup methods. I have my all database in Oracle11gR2 in Noarchive mode. I want to define some backup method but no idea which one is preferable in noarchive mode. Cold backup is again not possible. can I take tablespace/datafile backup ? Is there any other option which I can perform in Noarchive mode or temporarily put the database in Archive and perform the backup?
    Please guide me.
    Thanks...

    user12115 wrote:
    Hi All,
    First of all thanks for your reply and suggestions. I have not lost the interest but reading and thinking on all your suggestion.
    About expdp yes I think this is the only option I was thinking before post a question here. but as we know this is should not consider as a backup.
    For Archive mode - this is R&D database and we have disk space issue if we can not put database in Archive mode.
    For COld backup - again not possible because single database uses in different time zone so DB should be up and running almost all the time.I think the operative word there is "almost". How big is the database? How long does it take to shut it down, back it up, and bring it back up? Unless the database is really big (why would an r&d database be really big, unless r&d was specific to VLDB) you should be able to do the job during the guy's lunch break. Even for an r&d database, you might be able to justify noarchivelog, but you will really feel the pain if you get a physically corrupted database and all you have is an export.
    >
    The only one option which I am not aware is what about John speicified. John can you please suggest or forward me some link with some backup example for more details. this is really helpful to me. From your suggested link I understand this is possible but after put the database in suspend mode how do I copy the Tablespace/datafiles - just simple Linux cp command or some other options also?
    Edited by: user12115 on Mar 5, 2013 5:08 AM
    Edited by: user12115 on Mar 5, 2013 5:15 AM

  • Sharing code between Flex and AIR versions using library project

    Hello everyone,
    I'm developing an application that has both Flex and AIR versions. In order to share code between these apps, I created a library project and added all my code there. Now I've set the library project as a dependency for both Flex and AIR projects. Since there are some components that use the DataService object, I've added fds.swc and fds_rb.swc and fiber_rb.swc modules to the libs directory of the library project. No compile errors. Now, if I try to run my Flex application, I'm getting this error:
    Variable mx.data::LocalStoreFactory is not defined.
    I know that this error comes up when playerfds.swc is not present in the path. But that is not the case here. I have added playerfds.swc, fds.swc and related lib files to the build path.
    If I go back and add the playerfds.swc file to the original library project, the error no longer appears. This is not a proper solution for me, since I need to share this project with AIR version also, and I cannot have both playerfds.swc and airfds.swc in the same project.. Has anyone faced an issue like this before?? What am I doing wrong??

    Hello everyone,
    I'm developing an application that has both Flex and AIR versions. In order to share code between these apps, I created a library project and added all my code there. Now I've set the library project as a dependency for both Flex and AIR projects. Since there are some components that use the DataService object, I've added fds.swc and fds_rb.swc and fiber_rb.swc modules to the libs directory of the library project. No compile errors. Now, if I try to run my Flex application, I'm getting this error:
    Variable mx.data::LocalStoreFactory is not defined.
    I know that this error comes up when playerfds.swc is not present in the path. But that is not the case here. I have added playerfds.swc, fds.swc and related lib files to the build path.
    If I go back and add the playerfds.swc file to the original library project, the error no longer appears. This is not a proper solution for me, since I need to share this project with AIR version also, and I cannot have both playerfds.swc and airfds.swc in the same project.. Has anyone faced an issue like this before?? What am I doing wrong??

  • "Library" Projects vs "Projects & Albums" Projects

    Hello all,
    I have been using Aperture for about three years. I have Aperture 3 on three different Macs.
    Prevously I have been using Windows XP and have been storing photos in directories on the hard drive the old fashioned way.
    I have some questions about the storage structure of Aperture and I cannot find the answer in the Manual nor online.
    Here we go.
    1. When I import photo's into Aperture, it creates a "Project" both under "Library" Projects and under "Projects & Albums."
    Q: If I delete a project under "Library" do the photo's contained in that project get deleted from Aperture's Library?
    Q: If I delete a project under "Projects & Albums" do the photo's contained in that project get deleted from Aperture's Library?
    2. I have been a user of Mobile Me gallery since it came out, even before I bought Aperture.  I have synced the Mobile Me galleries with my copy of Aperture 3 on each of the mac's so I have redundant copies.  I understand that Aperture will automatically sync changed photos so I am pretty sure all the image files for each mobile me gallery now exists on my hard drives.
    Q: As Mobile Me Gallery will not longer be supported in June, if I delete a Moble Me Gallery via Aperture, will the images in my Aperture Library still be there?
    I know this question seems odd, but the manual is not really clear on this issue.
    3. While I am here asking the pro's this is a question I think I have figured out.
    Q: The Vault list shows a Bar for each vault.  It has a caption that says something like
    The Bar has hashes on the right side and solid color on the left. I assume this shows The total Drive side, and the total amount of free space availble at that moment, yet it does not show the size of the actual vault. And Green means plenty of room left, red means getting close to full.  Dum quesiton but I need varification.
    Thank you very much for your patients with a relatively new Aperture User.
    Mike

    Hello Mike,
    All images (and all versions of an image) are stored in one and only one project. All versions of the same image are always part of the same project.
    The "Photos" view shows you all versions of all of your images for quick access and filtering and searching, but it does not store the images - it is not a container like the projects, it's more like a smart album.
    Then that new "Project" would contain "Versions" of the orginal files in the "Photos" section??
    If you drag an image by accessing it from the Photos View, you will not drag it from the Photos View but move it from its original project to a the new project - this does not create new versions in the new project. The Photos View is just a neat feature to select all your images in one place, independent of the project they are stored in, like having a file of index cards to all your images.
    If so, then if I delete that new "Project" under "Projects and Albums" it should just delete the "Versions" in that project??? and not the originals under "Library?"
    Oh yes, deleting any project will certainly delete your original images. The only originals you see under "library" are projects in the "Projects" view, and that are exactly the same projects as under "Projects and  Albums" - just different ways to access the same content.
    What I was trying to find out is that if I delete a project, then that grouping created under that project would disappear but the original images would still be in the libary, just no longer assigned to that deleted project.
    If you delete a project, from whatever view you use, the images stored in that project are gone. And since each image - and all its versions - belongs to only one project, that image will be removed from the library for good, if its project is deleted!
    You really need to get a better understanding of the basic organizational structure of Aperture:
    If you not have found it already, here is the User Manual, really worth reading:
         Aperture 3 User Manual: http://documentation.apple.com/en/aperture/
    and here are well-polished, introductory posts by Kirby Krieger:
    Kirby Krieger: The Well-Trod Path:
    https://discussions.apple.com/message/16003277#16003277
    Kirby Krieger: Re: Organizing in Aperture, concise long version:
    https://discussions.apple.com/message/12616449#12616449
    Kirby: Krieger: Best way to managing libraries?
    Post back, if you need further clarification; I am sure someone else will drop in on this discussion.
    Regards
    Léonie

  • SAP Conversion Agent: HL7 library project could not be executed

    Hi experts
    I'm using SAP Conversion Agent version 4.3.0 on a PI 7.0. I'm trying to use a HL7 library project. On the Conversion Agent Studio side everythings works fine: the library project is created and a test of the service with a local HL7 file was successful. After that I make the project on the Conversion Agent Studio available and copy the project from the local \SAP\ConversionAgent\ServiceDB directory to the PI Conversion Agent ServiceDB directory.
    So far so good... but when I try to execute the CA project via File Sender Adapter the following error is thrown:
    "Invalid service 'TEST'. Check service name and service database"
    Module Exception 'com.sap.aii.af.mp.module.ModuleException: <Status><severity>4</severity><description>Invalid service 'TEST'. Check service name and service database.- for more information see file:///usr/sap/DXI/ConversionAgent/CMReports/Tmp/2009-12-23/nonexistent_U-_-63-4b17e36f-5e83/Events.cme</description><log_file>file:///usr/sap/DXI/ConversionAgent/CMReports/Tmp/2009-12-23/nonexistent_U-_-63-4b17e36f-5e83/Events.cme</log_file><Event error_code="401024" severity="error_fatal">
    <description>Invalid service 'TEST'. Check service name and service database.- for more information see file:///usr/sap/DXI/ConversionAgent/CMReports/Tmp/2009-12-23/nonexistent_U-_-63-4b17e36f-5e83/Events.cme</description>
    <time>N/A</time>
    </Event>
    </Status> caused by: com.itemfield.contentmaster.CMException' found, cause: com.itemfield.contentmaster.CMException
    I also created another parser project, without HL7 libraries, this works also on Conversion Agent Studio and on PI side without any problems.
    Do you have any ideas?
    Thx,
    manuku

    Hi Conversion Agent experts,
    Do you have any ideas?
    Thx
    manuku

  • Include xml data file in Flex Library Project

    Hi all,
    i've got a Flex Library Project in which I include some
    assets, as css files and some xml data files too. They are located
    in my project root, under /assets/css and /assets/data. Once
    compiled, if I use my library in other projects, the css styles
    from the css under /assets/css apply, but the xml data files are
    not found.Both are checked in the Flex Library Build Path window of
    the project's properties.
    There's any reason why the xml files are not included? Or
    should I reference them in some other way... In my library project
    I'm doing: ' theHTTPService.url = "assets/data/data_file.xml" '
    thanks in advance,
    Marc

    Hi Greg, thanks for answering.
    Yes, that's what I'd like to know also... I mark it to be
    added to the library, but how can I be sure if it's in the final
    .swc? Are they browseable somehow?
    thanks,
    Marc

Maybe you are looking for

  • Download manager seems to be stuck...

    I am trying to download the trail version of CS 5.5 and the download has been stuck on "less than a minute" for about 8 hours....Can I do anything to fix this? 

  • I want to put Firefox on my iPad air and have a shortcut for it also

    I think I already have the app on my iPad but can't find it and I want a short cut for it on the home page

  • Eclipse error | Help needed badly

    Hi, My Eclipse was working properly a couple of days back but suddenly It's stopped working and gives me an error : "workspace does not contain a main type,Do you have a public void run method" Now,I think the problem Is some how the jar's that I'm t

  • Iphone 4s trying to restore contacts from old iphone via itunes backup

    I recently upgraded my old iphone 3gs to a 4s. I know way behind the times. I backed up the 3gs to both the icloud and to my mac via itunes before I went to the store. Next day all my contacts are gone, try to sync to the icloud only to find out the

  • Unable to connect to external hard drive

    Have just switched from a macbook to macbook pro, transferred all data etc via firewire with no problem. I have recently purchased an extreme base station and have ben using this with an imac and the mac book. I have a usb external drive and a printe