Create Archive with Automator without folders in path

I am using Automator to create an Archive.
Using "Get Specified Finder Items" to get
NAME                                       PATH
a.jar                                          Macintosh HD -> Builda -> a.jar
b.jar                                          Macintosh HD -> Buildb -> b.jar
Then using "Create Archive"
Save as "c"
Where:  'D'
In folder 'D' there is a zip file 'c.zip'
In 'c.zip'  there are 2 folders:
Folder 'Builda' which contains a.jar
Folder 'Buildb' which contains b.jar
I don't want the Folders.
I want just 'c.zip' containing 'a.jar and 'b.jar'
Can anyone help?

Get Specified Finder Items
Get Folder Contents
Copy Finder Items
--To: tempfolder
Create Archive
Trash tempfolder when you're done.

Similar Messages

  • How do I create text with Automator

    I am trying to create a very simple macro, or text substation. I would like to hit 5 on my keyboard, and have a long text message appear, like a signature line at the end of an email. When I use record in Automator, it works. However, I cannot get the macro itself to execute.
    Thanks in advance for your help.

    AppleScripts do not, typically, trigger based on arbitrary events (such as a keypress), so there's no direct way to invoke your script in the way you describe.
    (notwithstanding, of course, that your proposal would prevent you from ever typing '5' again).
    If you want simple text substitution then check Keyboard preferences (System Preferences -> Keyboard -> Text) and create a new shortcut that the OS will automatically replace with a block of text.
    If you want more involved actions then you may need some external app such as Keyboard Maestro or QuicKeys, both of which can perform actions based on specific keystrokes.

  • How to create directories with same name in different schemas

    I have two schemas on the same database.
    I am trying to create directories with same name, but different paths in both the schemas.
    When i created the directories in second schema, the directory paths of the first schema are automatically changed to the second path.
    Is there any solution to create directories with same name, but different path in two different schemas on the same database.
    Thanks,
    Sridhar.

    Hi,
    >>When i created the directories in second schema, the directory paths of the first schema are automatically changed to the second path.
    If you have removed the REPLACE clause of your create statement, then you would see that is not possible.
    SYSTEM> connect scott/tiger
    Connected.
    SCOTT> create directory mydir as '/tmp';
    Directory created.
    SCOTT> connect legatti/pwd
    Connected.
    LEGATTI> create directory mydir as '/tmp';
    create directory mydir as '/tmp'
    ERROR at line 1:
    ORA-00955: name is already used by an existing object
    LEGATTI> select owner,object_name,object_type,created
      2  from dba_objects where object_name='MYDIR';
    OWNER     OBJECT_NAME    OBJECT_TYPE         CREATED
    SYS       MYDIR          DIRECTORY           19/12/2007Cheers
    Legatti

  • I want to create an applescript/automator tool to launch the "Add to library" command in iTunes with a specific path. Need process under the hood

    I want to create an applescript/automator tool to launch the "Add to library" command in iTunes with a specific path. I need to know what process is run under the hood to create such a script.
    To put you in context, I have an NFS mount point with all my music and with the "add to library" command, I can add more music to the folder and update iTunes without dragging the individual folders or the whole mount point and avoid having the songs show up as doubles.
    Anyone know what OS/Unix process is being called for such a command?

    I want to create an applescript/automator tool to launch the "Add to library" command in iTunes with a specific path. I need to know what process is run under the hood to create such a script.
    To put you in context, I have an NFS mount point with all my music and with the "add to library" command, I can add more music to the folder and update iTunes without dragging the individual folders or the whole mount point and avoid having the songs show up as doubles.
    Anyone know what OS/Unix process is being called for such a command?

  • Help with Automator - create workflow to move files to dated folders

    If anyone could help me, I'd greatly appreciate it.
    I have no idea how to use Automator, but I think it'd be perfect for this job.
    I want to take a folder of files (images) and move them to separate folders which are named for the dates that the files were created on. So, for instance, I have a folder of ten images. Five were created on November 1st and the other five were created on November 2nd. I want to create two folders on the desktop with the dates in the name (like 20071101 & 20071102) and take the five images from 11/1 and move them to the 20071101 folder and the five images from 11/2 and move them to the 20071102 folder (sorry for the run-on sentence).
    Is this possible with Automator? Is this an easy thing to do?
    Thanks,
    Antonio

    I'm trying to do something very similar. I need to open an image sequence in QuickTime and export them to a mov file. Easy enough, but I would also like to create a new Finder folder and name it with today's date and save the mov file to that new folder.
    What frustrates me is that it doesn't appear you can name Finder folders in any way other than using the Rename Folder action. I was hoping to use today's date that I had copied to the clipboard. Also, I have no experience using AppleScript, so hoping to avoid anything advanced there.

  • How to import a complex mp3  folder strucutr in itunes and automated create playlists namend after this folders?

    Hi to all,
    I have a Problem. I organised since years my mp3 music in folders with subfolders and so on. I didnt create any playlists. Now i want to use itunes and ipod/ipone. How can i import a the complex mp3  folder strucutr in itunes and automated create playlists namend after this folders?
    I understood how to import the music in the media library but i dont want to creat hundreds of playlists by hand.
    Maybe someone has a tip?
    Thank to all
    Andy

    iTunes doesn't take any notice of your folder structure or provide any automatic way to use any information that might be coded in the path. Can you describe the current layout in a bit more detail and explain what you hope to achieve. It may be possible to use tools in other program's such as MediaMonkey or custom scripts to get the data from the file paths into something that iTunes can work with. The most important thing at this stage is not to import media to iTunes without first making sure under Edit > Preferences > Advanced that Keep iTunes Media folder organized and Copy to iTunes Media folder when adding to library are turned off otherwise iTunes may destroy your existing structure.
    tt2

  • UnZipping an archive with folders inside

    Hello, everyone.
    A friend of mine asked me to create him an "auto-downloader" type of program, to download a ZIP archive, then extract the information to the user's computer (no, it is not harmful).
    Anyways, I've been trying mutliple ways, and I've come pretty far with the one I'm currently using. The only problem is, I'm using user.home as the file location for the zip, and creating a folder in there seems to just not want to work. This is the only way I could think of doing it, but I'm sure there are easier ways.. here's what I'm using:
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.io.BufferedInputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.URL;
    import java.net.URLConnection;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipInputStream;
    import javax.swing.JFrame;
    import javax.swing.JProgressBar;
    public class Updater extends Thread {
         private String name;
         public void get(String url, String fileName) {
              name = fileName;
              JFrame frame = new JFrame(name.replaceAll(".zip", "") + " update");
              frame.setLocationRelativeTo(null);
              frame.setLayout(new BorderLayout());
              frame.setPreferredSize(new Dimension(500, 80));
              frame.setResizable(false);
              frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
              Client client = new Client();
              ClassLoader cl = getClass().getClassLoader();
              try {
                   URLConnection connection = (new URL(url)).openConnection();
                   String f[] = url.split("/");
                   File file = new File(f[f.length - 1]);
                   int length = connection.getContentLength();
                   InputStream instream = connection.getInputStream();
                   try {
                        new File(updatedDirectory()).mkdir();
                   } catch (Exception e) {
                        e.printStackTrace();
                   FileOutputStream outstream = new FileOutputStream(updatedDirectory() + file);
                   int size = 0;
                   int copy = 0;
                   JProgressBar bar = new JProgressBar();
                   bar.setStringPainted(true);
                   bar.setMaximum(length);
                   frame.add(bar, "Center");
                   frame.pack();
                   frame.setVisible(true);
                   while ((copy = instream.read()) != -1) {
                        outstream.write(copy);
                        size++;
                        int percentage = (int) (((double) size / (double) length) * 100D);
                        bar.setValue(size);
                        bar.setString("Updating your " + name.replaceAll(".zip", "") + " - " + percentage + "% complete");
                   if (length != size) {
                        instream.close();
                        outstream.close();
                   } else {
                        instream.close();
                        outstream.close();
                        unzip();
                        //System.exit(0);
                        frame.setVisible(false);
              } catch (Exception e) {
                   System.err.println("Error connecting to update server.");
                   e.printStackTrace();
         private void unzip() {
              try {
                   System.out.println(updatedDirectory() + "animations\\raw");
                   InputStream in = new BufferedInputStream(new FileInputStream(updatedDirectory() + name));
                   ZipInputStream zin = new ZipInputStream(in);
                   ZipEntry e;
                   //new File(updatedDirectory() + name.replaceAll(".zip", "")).mkdir();
                   if (!new File(updatedDirectory() + "animations\\raw").exists()) {
                        if (new File(updatedDirectory() + "animations\\raw").mkdir()) {
                             System.out.println("worked");
                        } else {
                             System.out.println("nope");
                   while ((e = zin.getNextEntry()) != null) {
                        unzip(zin, updatedDirectory() + e.getName());
                   zin.close();
              } catch (Exception e) {
                   e.printStackTrace();
         private void unzip(ZipInputStream zin, String s) throws IOException {
              FileOutputStream out = new FileOutputStream(s);
              byte[] b = new byte[1024];
              int len = 0;
              while ((len = zin.read(b)) != -1) {
                   out.write(b, 0, len);
              out.close();
         public final String updatedDirectory() {
              //File file = new File(System.getProperty("user.home") + "\\info\\");
              File file = new File("..\\");
              if (file.exists() || file.mkdir()) {
                   //return System.getProperty("user.home") + "\\info\\";
                   return "..\\";
              return null;
    }Here's the ZIP archive I'm trying to download: http://www.2shared.com/file/Qu1cSWcl/cache.html
    If what I've said before doesn't make sense (mind you me, it's 4 am and I'm about to crawl into bed), then I'll try to sum it up in a few short words below.
    I'm trying to extract a ZIP archive with folders, every time I do, it stops halfway through and throws an error similar to this:
    invalid cache index specified
    ..\animations\raw
    java.io.FileNotFoundException: ..\animations\raw (The system cannot find the pat
    h specified)
            at java.io.FileOutputStream.open(Native Method)
            at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
            at java.io.FileOutputStream.<init>(FileOutputStream.java:70)
            at Updater.unzip(Updater.java:99)
            at Updater.unzip(Updater.java:90)
            at Updater.get(Updater.java:64)
            at Client.main(Client.java:2548)
    Press any key to continue . . .I'm just trying to be able to extract cache (ZIP ARCHIVE) which has folders inside. I've tried creating a directory for the folder, but it seems to not work, hence the "?" in the above error (i printed that if the directory failed to create a new directory, as seen in my above code). Once again, sorry if this isn't as understandable as it should be, I'm not myself without sleep :)
    Also, do ignore the first print, 'invalid cache index specified', it's not related to the problem.
    Edited by: aeternaly on Jul 2, 2010 4:04 AM

    So your question is really about how to make a directory, then. Nothing at all to do with unzipping of archives.
    If you can't create a directory, then perhaps there is some permissions problem. You don't have the authority to create directories in some directory. Or perhaps you're trying to use a name which isn't a valid directory name in your system. Or... there are many other possibilities. But anyway I recommend tossing all of that unzipping business out of your program and just trying to write something which creates a directory. Debug that first.

  • How to use "create archive" on a list of folders to make separate archives?

    I have a folder of folders that I want to archive, but I don't want to create a big archive of the entire folder. I want to create archives of each folder underneath the top folder (each folder is a separate book). When I try to get the list of folders that I want to archive, and then archive them, it insists on making one large folder containing everything. Isn't there a way to make it loop over the folder results and archive each one individually?

    No loops in Automator yet... though the variable function in Leopard may allow them.
    Until then, you can use an AppleScript for that step. Post a question in the AppleScript forum if you need assistance writing the script.

  • Issue with folder action created with automator

    Hello all,
    I'm having an issue with folder actions that i created with automator and it's driving me crazy. Apple says they can't help with things created by the user so this is my only shot at figuring this out.
    Running a Mini 2.3G quad i7, 8GB ram on OSX Mavericks 10.9.2
    My goal is to set up an action to add text to the filename of a file placed into a particular folder. So I open automator and choose folder action. Then I choose the folder I want the action applied to at the top. Then I go to Files and Folders in the library and choose rename finder items and drag it over to the workflow. I select add text, then add the text I want added to the file name and choose before name because I want the added text to preceede the original filename text. I save it then go to the folder I applied it to and right clikc go to services then folder actions and verify that the service is attached to that particular folder and it is.
    Should work right? No. When I place a file in that folder the action runs and adds the text like I want it to... but then it starts to add it over and over again in an infinite loop. It also adds a file with the extension .ds_store to the folder that also has the name added over and over.
    I've tried deleteing all the folder actions and even deleteing all the folder actions themselves saved by the automator in the workflow file in the user library.
    I'm stumped... no idea what to do. A while ago I had used the automator to batch rename files and it worked perfectly. I tried the same steps i listed above to set this action up on a machine in an Apple retail store and it worked... so I know I have the set up right.
    Any help is greatly appreciated.
    Thanks,
    Justin

    Hi JK257
    This is why it happens:
    The folder action is looking for new items in the folder. You drop in a file called "File1". So it renames it "sometext File1". Then it sees this new file called "sometext File1" and thinks "Hey, this is a new file - I'll call it 'sometext sometext File1' because I have to rename every new file." Then it sees this new file called "sometext sometext File1" and thinks...
    You get the picture.
    (the .ds_store is a normally hidden database file which is getting revealed by the same process.)
    The solution is to move the files out of the renamer folder into a receiving folder after they have been renamed:
    Hope this helps,
    H

  • Pages creates archived folders on desktop

    Hello,
    I was wondering if anyone could help me figure out a bizarre quirk Pages has on my machine. Every single time I save a document, it creates an archived folder on my desktop (or wherever I save to) which is immediately unzipped by stuffit expander. It's very annoying. Working on a single document will fill my desktop with these useless folders quickly... as one is created every time I save. The folders are always named "documentname.pages.folder" and then "documentname.pages.folder1, 2, 3..." etc as it continues to create them.
    Anyone know what is going on here or how to stop it?
    Any information you could provide would be greatly appreciated.
    Ryan

    This tip was given several times in this forum.
    The available search tool is efficient … *_when we use it !_*
    The entry numbered 3 contains the wanted response.
    The one numbered 10 does the same with more details;
    http://discussions.apple.com/thread.jspa?messageID=11022608
    Yvan KOENIG (VALLAURIS, France) mercredi 28 juillet 2010 23:04:25

  • Hi everybody, I am trying to create a DVD pal without menu with the program iDVD from a .mov file. Any ideas? Thanks so much.

    Hi everybody, I am trying to create a DVD pal without menu with the program iDVD from a .mov file. Any ideas? Thanks so much.

    (From fellow poster Mishmumken: )
    How to create a DVD in iDVD without menu (there are several options):
    1. Easy: Drop your iMovie in the autoplay box in iDVD's Map View, then set your autoplay item (your movie) to loop continously. Disadvantage: The DVD plays until you hit stop on the remote
    2. Still easy: If you don't want your (autoplay) movie to loop, you can create a black theme by replacing the background of a static theme with a black background and no content in the dropzone (text needs to be black as well). Disadvantage: The menu is still there and will play after the movie. You don't see it, but your disc keeps spinning in the player.
    3. Still quite easy but takes more time: Export the iMovie to DV tape, and then re-import using One-Step DVD.
    Disadvantage: One-Step DVD creation has been known to be not 100% reliable.
    4. (My preferred method) Easy enough but needs 3rd party software: Roxio Toast lets you burn your iMovie to DVD without menu - just drag the iMovie project to the Toast Window and click burn. Disadvantage: you'll need to spend some extra $$ for the software. In Toast, you just drop the iMovie project on the Window and click Burn.
    5. The "hard way": Postproduction with myDVDedit (freeware)
    Tools necessary: myDVDedit ( http://www.mydvdedit.com )
    • create a disc image of your iDVD project, then double-click to mount it.
    • Extract the VIDEO_TS and AUDIO_TS folders to a location of your choice. select the VIDEO_TS folder and hit Cmd + I to open the Inspector window
    • Set permissions to "read & write" and include all enclosed items; Ignore the warning.
    • Open the VIDEO_TS folder with myDVDedit. You'll find all items enclosed in your DVD in the left hand panel.
    • Select the menu (usually named VTS Menu) and delete it
    • Choose from the menu File > Test with DVD Player to see if your DVD behaves as planned.If it works save and close myDVDedit.
    • Before burning the folders to Video DVD, set permissions back to "read only", then create a disc image burnable with Disc Utility from a VIDEO_TS folder using Laine D. Lee's DVD Imager:
    http://lonestar.utsa.edu/llee/applescript/dvdimager.html
    Our resident expert, Old Toad, also recommends this: there is a 3rd export/share option that give better results.  That's to use the Share ➙ Media Browser menu option.  Then in iDVD go to the Media Browser and drag the movie into iDVD where you want it.
    Hope this helps!

  • Associate "Create Archive" commnd with a Keyboard shorcut.

    Dear Mac Gurus:
    Please Help:
    On Tiger OS, If I select a folder on the Finder and control-click to access the drop-down Menu, I would see the command: "Create Archive of ....."
    How to create a keyboard shortcut, such as: "CONTROL"Key + "A", to associate with this command?
    Thanks!
    Max NYC

    Quite easily, because in the Finder's File menu you'll notice the same "Create Archive" command.
    To set and modify keyboard shortcuts in the menu bar, open System Preferences and then Keyboard & Mouse. You'll notice one of the tabs is named "Keyboard Shortcuts". It's pretty self explanatory from there, and there's even a question mark "?" button in the lower right corner.
    However, just to get you started, the plus and minus sign buttons under the table on the lower left are adding and removing your custom shortcuts (but not the defaults). You can deactivate any of the default shortcuts by unchecking their check boxes. When you add a custom shortcut, you'll have the option to add it for all applications or to choose a specific application.
    You can modify any shortcut at any time without having to remove it simply by clicking on the shortcut to the right of its name and pressing new keys.
    One other hint. If the the name had an ellipsis then you would need to type an ellipsis as part of its exact name. You can't use three dots. Instead, type it with Option-; by holding the Option key and then pressing the semi-colon key, on the US keyboard. Otherwise, use the Special Characters… menu item in the Edit menu to bring up the Character Palette. You can then type in the search field of the Character Palette the word ellipsis and it will return results as you type. Choose the "horizontal ellipsis" from the search results. Then you can then simply double-click the ellipsis and it will appear wherever you cursor happens to be, in this case the text field where you are specifying the exact name of a menu item in the Keyboard Shortcuts panel in System Preferences.
    For your request of a keyboard shortcut in Finder for "Create Archive", you might notice the name of the files selected or number of items are added to the name of the command. This doesn't matter. Just use the original name of the menu item when it hasn't been changed, i.e. Create Archive. I've tested this and it works fine. You will have to relaunch Finder before it notices the keyboard shortcut is there, just as you would have to for any other application that is open when you modify it's shortcuts. You can relaunch Finder by logging out and back in (Fast User Switching doesn't count). Or you can Option-right-click (or Option-Control-click if you don't have a secondary mouse button) the Finder icon in the dock and choose Relaunch. You can also use Force Quit… from the Apple menu in the upper left corner of the screen to choose the Finder and Relaunch it.
    Just to be clear, there is no ellipsis for the Create Archive menu item, I was just giving you a hint for when you meet up with a menu item that has one.

  • Creating Variable with Replacement Path to get value from ANOTHER Variable

    Hi all,
        Is anyone has created the Variable with Replacement Path to get the value from another User Entry Variable, PLEASE ? 
    First created the User Entry Variable (ZV_X) and it accepts the date range like '01/01/2009 - 01/31/2009'. Next created the Characteristic variable (ZV_Y) of Replacement Path for which source variable will be ZV_X and we should get the 'FROM Date' (01/01/2009) from the selection (ZV_X) into it (ZV_Y).
    While creating the Characteristic variable (ZV_Y) of Replacement Path, I didn't find my newly created ZV_X variable in the list of available variables under 'Variable' header in 'Replacement Path' tab and it is causing the error 'Source to replace variable ZV_Y is not defined'. How could I create the Characteristic variable of Replacement Path for my requirement, PLEASE ?
    The following is from help.sap..com:
    Replace with Characteristic Value
    Text and formula variables with the processing type Replacement Path can be replaced with a corresponding characteristic value. In the variable editor, on the General tab page, you specify under Reference Characteristic the characteristic that is to be referenced by the replacement. On the Replacement Path tab page, you can choose whether the variable is replaced with the From or the To Value and with the Key or the Name of the characteristic value. You can also specify the Offset Start and Offset Length for the output.
    Replace with Variable
    Characteristic value variables, hierarchy variables, text variables, and formula variables with the Replacement Path processing type can take their values from a different variable.
    The following prerequisites need to be fulfilled:
    Variable
    ●      The variable must not be input-ready
    ●      The variable must represent a single value
    Source Variable
    ●      The source variable must not be a hierarchy node variable
    ●      The source variable must be input-ready
    ●      The source variable must be available in the query
    ●      The source variable must represent a single value or an interval
    In the variable editor, on the Replacement Path tab page, you specify the source variable from which the value is to be determined. The value is either determined from the key, the external attribute of the key, the description, or the attribute value. You can specify an Offset Start and an Offset Length for the output here. The variable is replaced on the variable screen upon each data release.
    Thanks,
    Venkat.

    Hi Eve,
    It is possible to connect the 2 queries using a Replacement Path characteristic variable. You would need to create the variable on the char whose values you want to pass from Q1 to Q2. The variable will be of type replacement path and you will need to enter the name of Q1 from which it will get the values. Make sure that you include this char in the query definition of Q1 and Q2. In Q2 you will restrict the characteristic using this variable. DO not use this variable (replacement path) in Q1.
    In your query properties check if you have turned on the checkmark for Release for OLE DB for OLAP (3rd tab). If the check mark is there, then remove it.
    We are using the scenario in a couple of places, and it works very well.
    Hope this helps...

  • Is there any way to create a HTTP_AAE Receiver without a path in NW PO 7.31

    Hi ,
    Does anyone know how to create a HTTP_AAE Receiver without a path??
    We are in a phase of migrating Interfaces from PI 7.1 to PO 7.31(Java Only).
    For one of the Interface in PI 7.1 there is a RFC Destination for vendor communication through HTTPS connectivity  :
    TargetHost: IP Address
    Post: value
    Path Prefix: Blank
    During migration  requirment is to keep the Path field BLANK of the Communication Channel,however since  PO has mandatory path field   a "/" is been provided, because of which data post fails.
    PI:  https://IP:9443
    PO:  https://IP:9443/  (Since Path Prefix is mandatory)
    As per my understanding The data is supposted to be posted directly to the IP (https://IP:9443) however it is getting posted to (https://IP:9443/) where the service is not available. For Reference attached relevant screenshots.
    Is there any way to  create a HTTP_AAE Receiver without a path. Need ardent support and suggestions
    regarding this.
    Regards
    Riju

    Hi,
    For Service auto- PO from PR, you need to activate Automatic Purchase order creation for Service requisitions in ML91 t.code.
    Note:
    For material :automatic PO creation from PR, follow the steps.
    1) Material Master purchasing view tick automatic PO check box
    2) Vendor Master purchasing view tick automatic PO check box.
    3) Maintain Source list for Vendor & Material.(ME01)
    4) Maintain Purchase Info Record.(ME11)
    5) Create a Purchase Requisition.(ME51)
    6) Use T.Code: ME59 & execute for PR for vendor, you will be able to create automatic PO.
    During creation of PR , select check box of Source Determination in the 1st screen of ME51
    Ensure that Purchase Info Record should be there.
    If you have more than one vendor then fixes only one vendor in source list.
    Regards,
    Biju K

  • How to create a new Oracle OSB project automaticaly with script without IDE

    Hello,
    I want to create automatically an "Oracle service bus project" and an "Oracle service bus configuration project" with scripts (ANT or Maven or ...) without using IDE, without using workshop or Eclipse. I want to create automatically (ANT or Maven) just a skeleton of an OSB project witch i can use after in workshop.
    I want to create 1 "Oracle service bus configuration project" with many "Oracle service bus project" automatically (ANT or Maven or scripts) witch i can use after in workshop. How to create a new Oracle OSB project automaticaly with script without IDE ? How can i do this ?
    I'm using Oracle service bus 10.3.1
    Thank you for your help.

    Thank you for your response,
    I do not want to just create the services (proxy services and business services) but I want to create a template for 40 OSB project with the same scripts ANT/Maven.
    Template="Oracle service bus configuration project" + "Oracle service bus project" + services of 40 OSB projects
    The goal is that I have more than 40 projects to create and just the name of the projects that changes (when I say the name of the project ie the name of the OSB project, the name of proxy services and the name of business services ).
    So I want to give my script (ANT/Maven) the name of 40 OSB project and the script must generate the skeleton of the 40 projects at once time and after generation of skeleton of the 40 project, I will import them in the workshop to add manually mapping and routing and other things that differs from one project to another.
    So i want to generate automatically a skeletons of 40 OSB projects using a script (ANT / Maven) and I give to the script juste the names of the 40 projects.
    I want to create a "Oracle service bus configuration project" and "Oracle service bus project" automatically of 40 OSB projects (ANT or Maven or scripts) witch i can use after in workshop.
    I want to create one 'template' of all 40 projects in the same time, with the same directory structure (Transforlation, Business services, proxy services, WSDL .....) and all 40 project have the same transport, just the names of projects and services witch changes and i can give to the script all names of projects and services and i can give also all WSDL.
    Regards,
    Tarik

Maybe you are looking for

  • Memory upgrade on a macbook pro 13 mid 2012

    Hello all, I am a proud owner of a new MBP 13 2012 and the installed memory on it is 4gb. I would like to know if the max memory it supports is 8gb or 16gb. I have seen on this forum both options. The information on the Apple site states that the max

  • Trouble connecting Macbook to Samsung LCD TV

    Hello, I tried connecting my Macbook to my Samsung LCD TV (through a DVI to HDMI cable) but I only got a black screen and "No signal". The macbook detects the Samsung and even displays "SAMSUNG" as a detected display. I checked the TV manual and ther

  • How do I open a pdf file on my iPad with Adobe reader.

    I can't open a pdf file in an email with Adobe reader.

  • Photoshop CS6/Extended Issues

    Anyone know whats wrong with the Photoshop CS6/Extended Download? It starts and remains at 0.00MB and its not my internet. Ive downloaded other files just fine * Attempted * its just the CS6. ive tried on different computers at different IP's and sti

  • With ios6 the app store closes everytime i try and search for an app

    ok so everytime i try and search for an app on the app store through my itouch it closes out... it has only done it since i updated to ios6