Applescript to create subfolders in a new folder

Hi there,
I have a bit of programming experience, but none with Applescript.  I've tried to see if I can find someone else looking to do something similar, but so far haven't been able to.
Anyways!  I am wanting to create an AppleScript --> Folder Action that will watch a folder, say, folder "ABC".  Anytime a new folder is created within "ABC", let's call it "XYZ", I want the script to create a series of predetermined folders within "XYZ".  Sounds simple enough, right?
Any help would be greatly appreciated.  Thanks!
Justin

Ok, so the "More Like This" thing on the right did a better job of searching than I did...
I managed to find something similar enough to what I was looking for.  Here's what I came up with:
property folder_names : {"Folder One", "Folder Two", "Folder Three"}
set thepath to "Macintosh HD:Users:justin:Desktop:test"
set project_name to text returned of (display dialog "Project code?" default answer "")
tell application "Finder"
          set main_folder to (make new folder at thepath with properties {name:project_name})
          repeat with this_name in folder_names
  make new folder at main_folder with properties {name:this_name}
          end repeat
          set current view of container window of main_folder to list view
end tell
You would think that after how ever many years of searching I would have been able to find this earlier!

Similar Messages

  • Creating copies onto a new folder?

    Can someone help me?
    I have a folder of 135 photos and I want to make a virtual copy of each folder and at the same time have that virtual copy placed into a new folder instead of side by side of the original.
    Is this possible?
    Any help would be great. Thanks!

    why??
    try making a new folder and moving the VCs  into that folder. (??)

  • Cannot save a bookmark to NEW folder - FF wants me to rename EXISTING parent folder

    I cannot save a bookmark to a new folder. This is the path I am taking from the main menu:
    Bookmarks | Bookmark This Page
    Click the drop-down arrow to the right of Folder
    Select Choose
    Scroll to the parent folder in which I would like a new subfolder
    Click New Folder
    Then, instead of creating a new folder as it always did in the past, it highlights the parent folder for editing. If I type in a new folder name, the parent folder is changed to that new name. A new subfolder is created with the name New Folder.
    Things I have already tried that did *not* resolve the problem:
    - Deleting and then restoring bookmarks from a saved bookmark backup file.
    - Running the Add-On "Places Maintenance"
    - Rebuild "Places" database
    I have not yet reset Firefox or created a new profile but can try that if you gurus think that would help.
    I am using FF 32.0.2 on Win XP SP3.
    I have hundreds and hundreds of bookmarks, but from what I have read, there is no max size limit.
    Thank you in advance!
    Carol

    Cor-el, thank you very for your reply.
    I started Firefox in Safe Mode. The problem still occurs in Safe Mode. My understand is if the problem persists in Safe Mode, it is *not* being caused by an extension, theme or hardware acceleration. Other possible causes could be plugins or changes made to Firefox preference settings, which are not disabled in Safe Mode.
    As you suggested, I did check Add-ons > Appearance. (I don't think I have ever had any Appearance other than the default theme.) It was and still is set at Default 32.0.2 By Mozilla. Since the bookmarks problem persists in Safe Mode, I think we can rule out this as the cause anyway.
    All of my Plug-Ins are up-to-date except iTunes Application Detector 1.0.1.1. Status is "unknown". I have all Plug-Ins set to "Ask to Activate" or "Never Activate". None of them are set to "Always Activate".
    My cache, cookies and history have been cleared. I have rebooted my computer.
    Per your instructions, I did *not* reset Firefox. Should I reset Firefox or reinstall Firefox?
    The bookmarks problem still occurs.
    Thank you so much!
    Carol

  • Use Automator to create new subfolders in a selected folder

    This seems like it should be easy to accomplish, but I have had no luck.
    I want to be able to select a folder, and then run an Automator Service to create a specific set of subfolders within the selected folder.
    I am able to set up automator to create the subfolders, but it does so in the folder containing the selected folder.
    Any suggestions on how to accomplish this simple task?

    Which type of variable should I choose? I tried "text" but there's no way to set it to "input"? There are many Variables in the Library.
    Here's how I have things set up now, I thought the "Service receives selected 'folders' in 'Finder'" (at the very top of the workflow area) would pull in the selected folder.
    Thanks!

  • Apple Script won't create new folder

    Hi all,
    First of all, let me explain that in no particular way I am any good with applescript. I find it confusing at the best of times. I've got a bit of code that will check to see if a new folder is created in a specific location. If a new folder is created, then it will copy the name of the folder and create a new folder with the same name in a different place. The reason for this is that I separate my file types (I'm a photographer) and I keep my RAW files in one folder, my PSD files in another, my JPEGs in another and so on. The current code I have worked up until I installed Yosemite as well as Server on my mac mini. Here's the code:
    on adding folder items to this_folder after receiving added_items
         set p to POSIX file "/Volumes/Projects/1. Raw"
         try
              tell application "Finder"
                   repeat with item_ in added_items
                        if kind of item_ is "Folder" then --if its a folder then make another in Ra
                             make new folder at p with properties {name:item_}
                        end if
                   end repeat
              end tell
         on error
              display dialog "Error occurred"
              return
         end try
    end adding folder items to
    The action is set to the JPEG folder, where an application automatically adds a folder (for this example, I'll use "z. test").
    z. Test is detected in the JPEG folder, and then the folder is replicated across to the other separating folders ready for when any new files are added. Trouble is, the error occurred dialog box shows up. I have the appropriate permissions for the hard drives that the folders reside on, and are replicated to the subfolders too.
    Is there anyway of finding out what the error is that's occurring? Or am I missing something since upgrading to Yosemite/Server? Any help would be most appreciated!
    Ian
    Th

    Hi,
    You can't rename an item with an object (the item_  is an object of type alias), use the name of item_
    To know the error, use the parameter in on error block.
    Try this :
    on adding folder items to this_folder after receiving added_items
        try
            set p to "/Volumes/Projects/1. Raw" as POSIX file as alias
            tell application "Finder"
                repeat with item_ in added_items
                    if kind of item_ is "Folder" then --if its a folder then make another in Ra
                        set tName to name of item_
                        make new folder at p with properties {name:tName}
                    end if
                end repeat
            end tell
        on error err
            activate
            display dialog "Error occurred : " & err
        end try
    end adding folder items to

  • Creating & Bootstrapping a new Folder.

    At our design firm, we use an inhouse naming convention for organizing jobs. jobs are found in Clients/ClientName/CN100/ CN being short for the Client's name and the job number). We make these folders a lot, and have to add the required subfolders by hand (Clients/ClientName/CN100/_concepts, _images, _print, etc.) and I was trying to set up an automator action to ask the user which client folder to create the job folder in, ask for the job number, and then create a job folder with the number with the subfolders already in place. Workflow would look like this:
    Choose a Client's Folder
    Ask for the Job Number
    Create a folder named the Job Number provided
    Create subfolder in that job folder for:
    _concepts, _print, _PDFs, _previousVersions, _images
    I can kind of do it with therecord feature, but it's kind of slow. The "Ask for Finder Items" doesn't give me a vriable to work with as a path for new folders.... any thoughts?

    this is very easy to do with a "run apple script action" but you can actually do it without any apple script using just automator variables.
    it should go something like this:
    1. get selected finder items (or ask for finder items). this will choose a client's folder.
    2. set value of variable "client's folder" (add a variable to the workflow for that)
    3. make new folder. (control-click on it and select "ignore input"). In this action click on options and check the box "show this action when the flow runs".
    For the location where to make this folder drag the variable you've just made. when the flow runs it will give you a popup to enter the name of the folder to be created. enter the job's number.
    4. set value of variable "job folder" ( make another variable for that) and it will be set to the output of the previous action.
    5. make new folder (again check the box to ignore input). for the location put the variable "job folder" and for name "_concepts".
    6,7,8 make new folder actions for trhe other subfolders of the "job folder".

  • Any reason NOT to create subfolders under user folder?

    I'm switching over from a 5+ year old MacBook Pro to a new one. I do a lot of audio recording and production work. On my old machine, which was my first Mac, I created a subfolder 'Recordings' under my user folder (let's say it's named "bob"). I don't remember why I did that. Probably I was thinking well, this stuff isn't documents.
    On the new machine, running Yosemite, I discovered that Apple in it's wisdom had made my "bob" user folder hidden, which meant I had to go figure out how to show it because there are some audio plugin settings files I needed to add manually from the old machine into my user/ Library area. Did that.
    BUT... I'm wondering if there is some reason why Apple changed the user folder to hidden (other than "you dumb users don't need to know about this stuff"), and specifically, if I should avoid creating any subfolders under my user folder? I would really rather not have my 'Recordings' folder  inside the Documents folder, but I guess I can if there's some good reason not to create subfolders under 'bob'.
    Thanks in advance.

    They didn't make it hidden (like the Library sub folder), but I believe it is no longer included in the sidebar by default. Probably for the reason you state. As you've found, you can add it back through Finder Preferences menu.
    Matt

  • Can you create a new folder and put several documents in it in Adobe?

    Can you create a new folder and put several documents in it in Adobe?

    Thank you for your help. Now I just want to expand on this a bit. To use the Applescript you have supplied me, how do I tell it to name the folder other than by date, and where to put it?
    Let me say, preferably, is it possible to make an action like this right-clickable? Instead of having to pick a script. Anything that slows this process down means I might as well do it all by hand. What I'd really love to do is this:
    Select a number of items. Right click to an action saying "create a new folder and put this items in it. Name the folder with the first item's name". Very simple and quick.
    Could this be accomplished? Through Automator? or something that can appear in the contextual menu? Folder actions?
    I'm just getting started with using these tools.

  • How to make applescript to select every 3rd file to move to new folder?

    I have an interesting 'problem' I think.
    As a result of a time-lapse experminent, I have a folder which holds several thousands of pictures from a fixed point, made over several days & nights.
    But there is one issue: the camera made 3 different exposures every 5 seconds.
    This resulted in every 3rd picture 'belonging' to each other. So these have to be selected for going in a seperate folder. Menaing: pictures 1 and 4 and 7 and 10 .... they must go in one folder. 2 and 4 and 8 and 11.. in the second folder. Finally 3 and 5 and 9 and 12 in a third folder.
    How to do this with software (to avoid injury) because of the thousands of pics.
    Is this do-able with applescript? How?
    Tnx

    Hello
    You may try something like the following script.
    Main part is written in shell script for performance sake. AppleScript is only used for user interface.
    Please see comments in script for its usage and behaviour.
    And please test the script first with small subset of your images.
    (Since the script will scan the source folder tree for image files, it is good idea not to create destination folders in source folder tree.)
    Minimally tested with OSX10.2 at hand but NO WARRANTIES of any kind.
    Make sure you have full backup of your images before applying this script.
    Hope this may help,
    H
    image file (jpg) sorter
    v0.2
    Script will let you choose two folders, i.e. -
    a) source folder where images reside (directory tree under the chosen folder is scanned),
    b) destination parent folder where three subfolders will be made (named '0', '1', '2').
    The file number i is obtained by removing extension and non-digts from file name.
    The file with number i (0-based) in source tree will be moved to (i mod 3)'th subfolder in destination.
    e.g.,
    IMG_1440.JPG -> '0' (i = 1440, i mod 3 = 0)
    IMG_1441.JPG -> '1' (i = 1441, i mod 3 = 1)
    IMG_1442.JPG -> '2' (i = 1442, i mod 3 = 2)
    IMG_1443.JPG -> '0' ...
    IMG_9997.JPG -> '1'
    IMG_9998.JPG -> '2'
    IMG_9999.JPG -> '0'
    IMG_0001.JPG -> '1'
    IMG_0002.JPG -> '2'
    IMG_0003.JPG -> '0'
    image file name convention : ZZZZ_9999.jpg
    set src to choose folder with prompt "Choose source folder."
    set src_ to (src's POSIX path's text 1 thru -2)'s quoted form
    set dst to choose folder with prompt "Choose destination parent folder."
    set dst_ to (dst's POSIX path's text 1 thru -2)'s quoted form
    set sh to "
    # source directory
    srcdir=" & src_ & ";
    # destination directories
    dstdir=" & dst_ & ";
    dest=("$dstdir"/{0,1,2});
    # make destinations
    mkdir -p "${dest[@]}";
    # let k = number of destination directories
    k=${#dest[@]};
    # sort files to destinations such that -
    # 1) number i is obtained by removing extension and non-digits from file name; and
    # 2) file with number i is stored in (i % k)'th destination, where i is zero-based.
    # e.g. Given xxxx_9999.jpg, k = 3;
    # i = 9999 and the file is sorted to destination 0 (= 9999 mod 3)
    find "$srcdir" -type f -iname '*.jpg' -print0 | while read -d $'\0' f;
    do
    leaf=${f##*/}; # get file name
    stem=${leaf%.*}; # remove extension
    i=${stem//[^0-9]/}; # remove non-digts from file name
    let i=0+10#$i; # to interpret, e.g., 010 as 10, otherwise 010 is treated as octal.
    # echo "$i $f ${dest[i % k]}"; # for testing
    mv "$f" "${dest[i % k]}"; # move file
    done
    do shell script sh
    display dialog "Done" with icon 1 giving up after 20

  • Create new folder and move items script

    Hello
    Im new to applescript and automator.
    I've been looking high and low for something and figured I should ask the pros here...
    I want the ability to have a "hot folder" that when ever anything is placed in the folder, a new folder is created in the top directory of that hot folder using the modified date as the new folders name and the contents of the hot folder are moved to the correct folder.
    My thought was to upload pictures to this folder (on an external drive) and have the script put them in the correct folder that was created by the script. I could use either "modified date" "created date"...
    Is this common? Possible?
    Any ideas how I could do this?
    Thanks All!!!

    a new folder is created in the top directory of that
    hot folder using the modified date as the new folders
    name
    Is that the modified date of the files that you
    dragged to the "hot folder"?
    If so, that would probably require AppleScript since
    Automator can't get that information from the files.
    For the rest of it-as a starting point
    New Folder
    Rename Finder Items (Add Date and Time)
    Save As Plugin- for Folder Action - attach to your
    hot folder.
    Note: You don't want to create the new folder in the
    hot folder, doing so will likely cause it to loop
    continuously.
    Yes I would like to pull the "created date" or "modified date" from the files I drop in the HOT Folder and use that date as the new folders name.
    So if I put 10 pictures in that Hot Folder and 5 had the same created date then those 5 would go to one newly created folder et cetera..
    And no, the new folder will be either above or along side the Hot folder. Not in it.. good catch!

  • Need help in creating multiple sub folders in new folder

    hi all,
    need to seek some expert advise.
    i need to create an automator work flow as once launch, it will show a dialog asking user for the new folder name to be created, and asking user how many sub folders to be created.
    i have done the following and got stuck...
    requirement is user ket in foldername upon dialog for example "test" and no of sub folders to create exp "5"
    it will create a folder call "test" on desktop n 5 subfolder as: test1 , test2, test3, test4, test5.
    Apple script

    Automator gets a bit unweildy when trying to vary things outside of what the actions provide.  Since you are already using an AppeScript in your workflow, might as well do the whole thing:
    set baseFolder to (path to desktop) -- the location to create the folder
    display dialog "Please provide a new folder name:" default answer "test"
    set folderName to text returned of the result
    repeat -- keep repeating until a number is returned
      display dialog "How many subfolders?" default answer "5"
      set theNumber to text returned of the result
        try -- test the result
          set theNumber to theNumber as integer
          exit repeat -- success
        end try
    end repeat
    tell application "Finder"
      try -- make new folder
        set newFolder to (make new folder at baseFolder with properties {name:folderName})
      on error number -48 -- skip errors if the folder is already there
        set newFolder to ((baseFolder as text) & folderName) as alias
      end try
      repeat with X from 1 to theNumber
        try -- make new subfolder
          make new folder at newFolder with properties {name:folderName & X}
        on error number -48 -- skip errors if the folder is already there
        end try
      end repeat
    end tell

  • A script to create a new folder and place selected items into it?

    I'd like to select a few items and have either an Apple script / contextual menu automatically create a new folder and place the selected items inside it.
    I have many, many to do—which is why I wanted to know if there is a script or automator or contextual menu thing available. Or if not, how can I create one?
    Can that be done? Thank you!

    Thank you for your help. Now I just want to expand on this a bit. To use the Applescript you have supplied me, how do I tell it to name the folder other than by date, and where to put it?
    Let me say, preferably, is it possible to make an action like this right-clickable? Instead of having to pick a script. Anything that slows this process down means I might as well do it all by hand. What I'd really love to do is this:
    Select a number of items. Right click to an action saying "create a new folder and put this items in it. Name the folder with the first item's name". Very simple and quick.
    Could this be accomplished? Through Automator? or something that can appear in the contextual menu? Folder actions?
    I'm just getting started with using these tools.

  • Error while creating a new folder in resource view of workbench.

    hi
    I am getting this error while creating a new folder from the resources view.
    Please help me in this regard.
    !ENTRY com.adobe.repository.ui.eclipse.forms 4 0 2009-02-19 18:18:36.340
    !MESSAGE REP-001-011: Problem creating a resource folder
    !STACK 0
    com.adobe.repository.ui.eclipse.IDERepositoryException: com.adobe.repository.bindings.dsc.client.ResourceRepositoryClientException: ALC-REP-106-000: Caught DSCException: ALC-DSC-012-000: com.adobe.idp.dsc.registry.ServiceNotFoundException: Service: RepositoryService not found.
    at com.adobe.repository.ui.eclipse.impl.dsc.IDERepositoryDSCImpl.createFolder(IDERepositoryD SCImpl.java:117)
    at com.adobe.repository.ui.eclipse.core.Repository.createFolder(Repository.java:522)
    at com.adobe.repository.ui.eclipse.actions.NewFolderActionDelegate.workspaceRun(NewFolderAct ionDelegate.java:91)
    at com.adobe.repository.ui.eclipse.actions.WorkspaceActionDelegateRunner$1.run(WorkspaceActi onDelegateRunner.java:76)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1737)
    at com.adobe.repository.ui.eclipse.actions.WorkspaceActionDelegateRunner.run(WorkspaceAction DelegateRunner.java:83)
    at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:254)
    at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionI tem.java:539)
    at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488)
    at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java :400)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3348)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968)
    at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1930)
    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1894)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:422)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at com.adobe.lcide.rcp.Application.run(Unknown Source)
    at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:92)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:68)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
    at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
    at org.eclipse.core.launcher.Main.run(Main.java:977)
    at org.eclipse.core.launcher.Main.main(Main.java:952)
    Caused by: com.adobe.repository.bindings.dsc.client.ResourceRepositoryClientException: ALC-REP-106-000: Caught DSCException: ALC-DSC-012-000: com.adobe.idp.dsc.registry.ServiceNotFoundException: Service: RepositoryService not found.
    at com.adobe.repository.bindings.dsc.client.ResourceRepositoryClient.writeResource(ResourceR epositoryClient.java:920)
    at com.adobe.repository.ui.eclipse.impl.dsc.IDERepositoryDSCImpl.createFolder(IDERepositoryD SCImpl.java:114)
    ... 31 more
    Thanks
    Ullas

    Thanks Jasmin I did as you told and was able to create folder. But while installing the Event-Dsc and the workflow-dsc I am getting some internal error as given below.
    !ENTRY com.adobe.DSC_Admin_UI 4 4 2009-02-24 15:41:34.984
    !MESSAGE install of C:\Adobe\LiveCycle8.2\deploy\adobe-event-dsc.jar failed
    !STACK 0
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal error.
    at com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl._install(ComponentRegistr yImpl.java:456)
    at com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl.install(ComponentRegistry Impl.java:254)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:615)
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionBMTAdapterBean.doBMT(EjbTran sactionBMTAdapterBean.java:197)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EJSLocalStatelessEjbTransactionBMTAdapter_ 3af08fdf.doBMT(Unknown Source)
    at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:95)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:109)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
    at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:118)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.invoke(AbstractMessageReceiv er.java:315)
    at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkEndpoint.invokeCall(SoapSdkEndpoint. java:138)
    at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkEndpoint.invoke(SoapSdkEndpoint.java :81)
    at sun.reflect.GeneratedMethodAccessor279.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:615)
    at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:397)
    at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:186)
    at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454)
    at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)
    at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:989)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:930)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
    at com.adobe.idp.dsc.provider.impl.soap.axis.InvocationFilter.doFilter(InvocationFilter.java :43)
    at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 190)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:761)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:673)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:498)
    at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:464)
    at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.jav a:90)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
    at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1433)
    at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:100)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:465)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink .java:394)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:274)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConn ectionInitialReadCallback.java:214)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitia lReadCallback.java:113)
    at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionLi stener.java:152)
    at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
    at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
    at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
    at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:195)
    at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:743)
    at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:873)
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1469)
    Caused by: java.lang.ClassNotFoundException: com.adobe.idp.event.bootstrap.EventBootstrapImpl
    at com.adobe.idp.dsc.DSContainerSearchPolicy.findClass(DSContainerSearchPolicy.java:178)
    at org.ungoverned.moduleloader.ModuleClassLoader.loadClass(ModuleClassLoader.java:161)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:561)
    at com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl._install(ComponentRegistr yImpl.java:403)
    ... 70 more
    As I am using the trial version so I have isnatlled all the products Workbench, Server and the application server in the same machine. My System has 2GB Ram.
    Any help in this will be of great help
    Regards
    Ullas

  • Creating a new folder sometimes drives me wonky

    Have any of you found a work around for this: When I'm in the hierarchical view in the finder and want to create a new folder in one of the panes, the OS can make it difficult. If the pane is completely filled with files or folders, when you control click to bring up the context menu, the OS assumes that you want to pick a choice dealing with whatever file you were hovering over at the time.
    In order to create a new folder in that pane, I either have to do something wonky like create the folder on the desktop and drag it in, or expand the window to get blank space at the bottom of the file list.
    Is there a way to create a folder directly in a filled pane?

    You can also right click on the top of a finder window choose customize from the contextual menu & drag the new folder icon to the top of the finder window.
    Also click on the action icon (gear icon) & choose new folder from the drop down menu.
    Message was edited by: Joe Salafia

  • Syncronising is creating a new folder in Outlook w...

    I have just got a N70 phone and syncronised fine a few times with Microsoft Outlook. All of a sudden i realised that when i syncronised again the phone created a new folder in Microsoft Outlook which I cannot access and cannot delete. As it is called the same as my actual calendar when I go to syncronise again the syn gets confused and doen't do it, getting error report in PC Suite. I tried posinting it to the right folder but it still gets confused!
    I spent a few hours with a very nice person who handles my email accounts to create a new mail account to get rid of the new folder. As soon as we finally managed to get rid of these corrupt folders I syncrnised and they appered in the new account again!
    Really not sure what to do now!

    I forgot to mention that I downloaded the latest version of PC Suite off your website and that the connection is via USB Cable

Maybe you are looking for