Best way to pack templates in WAR ?

Hi all,
I want to deploy a war file on to a bunch of different tomcat servers. There are java class files within my war file that need to read from templates (eg. emails, xml files, html pages, whatever).
What is the best way to do this? Where should the template files be? How do I call them in for reading from within my java code?
I understantd that calling File f = new File("abc") looks for the file called "abc" in the directory that admin was in when the tomcat server was started so this is no solution! And having an absolute path is also no solution coz who knows which path tomcat will be on.
Any leads would be fantastic!
Sean

Shouldn't be using File to read files like these.
Better to use servlet context and getResourceAsStream to access them.
That way you can read them even if they're in a WAR file. As long as they're in the CLASSPATH (e.g., under WEB-INF/classes) the class loader for your app will be able to find them.

Similar Messages

  • Best way to create template

    Can anyone suggest from experience, the best way to create VM templates (Golden Images for the organization) from existing VMs. I tried using the "clone" feature in VM Manager but looks like I will have to manually configure networking (IPs etc.) on the VMs created using these clones. I can write a script to do so but just wondering if there is better way out there. Something similar to the templates provided from Oracle that allow configuring IPs etc. on the first boot. I noticed there is a "Template Builder" product out there but not sure if it's a better option.
    Edited by: user10016990 on Jan 29, 2013 9:10 AM

    sebastian:
    first thing you could look for is the canned motion "replace me" graphics. they're grey with numbers in circles (1, 2, 3, etc) kinda like you'd see in an old movie countdown. they shoudl be buried somewhere in the Motion graphics content libraries. i'd use these as your placeholder graphics, name them "replace me #1" in the layer view.
    second, if the sizing is important, you might have to place a pre-sized rectangular mask on each of the replacement objects. otherwise, when you drag an object onto layer object to replace it, the object will be resized to match the incoming object's aspect ratio and ruin your alignments.
    PowerMac G5 2.5GHz   Mac OS X (10.4.5)  

  • What's the best way to pack a small website for the iPad?

    I have my little personal archive in HTML and images and a few audio & video clips. Let's say it is 10GB. I want to pack it into an App for offline viewing. Any suggestions? I'm will to do a lot of glue translation hacking to make something good.
    Or is there and glue format that can reference iPhoto images from a different app?
    Thanx for any input!  -jch

    If you're planning on doing some programming as part of that packing, then I'd head over to the developer forums with this question.  (If you're creating an app for iOS, then you have that access.)  Another option is one of the iOS-related mailing lists (maybe Cocoa-Dev).   And yes, APIs for accessing photos are available.
    A somewhat left-field option is the iBook Author tool.
    Or are you looking for an app that does this?

  • Dw, css, and a template, what is the best way to create a 20 page website with a different header in each page?

    dw, css, and a template, what is the best way to create a 20
    page website with different header content on each page? i am
    trying to insert a specific image and background color for each
    header on every page. what is the easiest or best way to do this?
    thanks, bryan

    "mediastream13" <[email protected]> wrote in
    message
    news:f47bes$9om$[email protected]..
    > ok, murray, here is the site.
    http://www.helphotline.org
    > in I.E. 6 i can't see the background color behind the
    header images,
    I'm seeing a hot pink background (which is my browser default
    - so that I do
    remember to declare a background color). You need to add:
    body { background-color: white;} to your stylesheet, or into
    the imbedded
    styles on your page.
    In Firefox, the very top black section, #headertop is hidden
    behind the
    header image.
    > background of the date/time isn't stretching the full
    length of the
    > screen, and
    > the margins aren't working in the main content area. how
    can i put a
    > background
    > color behind the header images?
    I can see the header image stretching right across the page..
    so not sure
    what color is missing there.
    > is there anyway to download i.e. six on my computer if i
    already have
    > i.e.7? i
    > just want to be able to preview the site before i upload
    the changes. it
    > seems
    > everything works in i.e. 7.
    Yes, I used this and it works really well.
    http://tredosoft.com/Multiple_IE
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au

  • Best way to mix multiple songs with same template?

    From what I gathered, I know I can save a particualar session as a "user" template, that way I can mix another song retaining all the same EQ, comp... etc, as well as arrange layout. Is this the best way to accomplish what I aim for? I've finished one song, now i am using a song from the same recording session, (same mic placement, and track assignment). Now, I want to start fresh with another song, using different effects and such, but I'd like to keep the same basic EQ and such.......
    Let me know my Logic gifted friends!
    -Mike

    From the Manual 272:
    Channel Strip Settings Menu
    If you click on the word Insert on any channel strip, the Channel Strip Settings menu
    opens. This menu allows you to load and save the entire routing configuration of a
    single channel strip, including all loaded plug-ins and settings.
    The ability to save an entire routing configuration can be used in a number of ways,
    such as:
    • Setting up and storing complex multi-effect configurations—on any type of channel.
    • Similarly, the configuration of a particular routing configuration for use with multi-
    output software instruments.
    • Copying a routing or effect configuration between Projects.
    • The rapid creation of new Templates.
    The Channel Strip menu offers the following items:
    • Next/Previous Channel Strip Setting: Loads the next or previous Channel Strip
    Setting in the list.
    • Copy/Paste Channel Strip Setting: Allows to you to copy and paste Channel Strip
    Settings between channels or Projects.
    • Save Channel Strip Setting as: Saves the Channel Strip Setting, and allows you to
    name it.
    • Once you have created one or more Channel Strip Settings, a list of settings will be
    shown below the menu functions. The active Channel Strip Setting is denoted by a
    bullet.
    So it recalls all the inserts and settings in 1 convenient preset (as well as if the track is M or S) but where it is routed or sends info is not recalled - nor Pan or fader, though there is a gain plug.
    J

  • Best way to design jsp/template structure

    I am trying to create one page comprising of multiple pages without using frames.
    My thought was to create a template.jsp, which has the following includes:
    <jsp:include page="<%=header%>"></jsp:include>
    <jsp:include page="<%=menu%>"></jsp:include>
    <jsp:include page="<%=content%>"></jsp:include>
    <jsp:include page="<%=footer%>"></jsp:include>Here is an example of the question that arises...
    In the HTML code of the 'menu' included page, I have a link to some other page (ex. 'abc.jsp' )
    When clicking on this link, I would like to call the template.jsp with 'abc.jsp' being inserted where the 'content' tag is.
    So, what is the best way to do this without frames?
    Do I have every link call a controller servlet which stores the links in a request. Then the controller servlet calls the template.jsp with the link as a request parameter?
    Is there a built in function in JSP that does this w/o any extra code?
    Any other suggestions/practices that are more common or easier to implement?
    Also, Is there major overhead on including 4 pages each call? Or after it compiles with the included page, the overhead is negligable, until a new page is swapped in place of an existing included page?
    Thank you

    A thought:
    <%
    String content = request.getParameter("content");
    %>
    <jsp:include page="<%=header%>"></jsp:include>
    <jsp:include page="<%=menu%>"></jsp:include>
    <jsp:include page="<%=content%>"></jsp:include>
    <jsp:include page="<%=footer%>"></jsp:include>
    Once everything is compiled, the overhead is in executing the pages. If you pass in a page that hasn't been compiled yet, obviously that would have to be compiled. I haven't tried dynamic includes like that - does it work?

  • Best way to create a Template, and create "replace" where imported items ..

    I would look to create a Template where I have photos that will be dropped into precreated "replace" areas and once imported, they will automatically be resized at a predetermined size I have chosen. I also want to preset all alignemnts: align top, distribute space horizontally. I am looking for the best way to create a drag & drop Template. I will make sure all images are the same size before importing them into Motion 2, if this helps.
    As alwways thank you for reading and reply to my post,
    Sebastian

    sebastian:
    first thing you could look for is the canned motion "replace me" graphics. they're grey with numbers in circles (1, 2, 3, etc) kinda like you'd see in an old movie countdown. they shoudl be buried somewhere in the Motion graphics content libraries. i'd use these as your placeholder graphics, name them "replace me #1" in the layer view.
    second, if the sizing is important, you might have to place a pre-sized rectangular mask on each of the replacement objects. otherwise, when you drag an object onto layer object to replace it, the object will be resized to match the incoming object's aspect ratio and ruin your alignments.
    PowerMac G5 2.5GHz   Mac OS X (10.4.5)  

  • When I send a webpage via email, some of my recipients are unable to see it properly. The website was made with iWeb, and a Mac person advised me this was the best way to do an email campaign with iWeb, but it's not working for a lot of my customers - why

    I have recently created a website for my family's business. When we bought the Macbook the guy in Apple said the best way to send an email campaign to our mailing list was to publish a hidden page, find it in the browser on Safari, then share it via email, so that is what I do. For most of my customers this works fine, however I have a number of people each month who cannot see any of the content of the email. I have added an 'If you can't see this email properly...' link at the top of the page, with no shapes or images etc near it, but even that does not appear for them.
    I am a self-taught novice unfortunately, so haven't a clue what the problem is. I'm not sure of the operating system, but we bought the Macbook in May and it has all the recent updates installed. I have just had a new baby so can't get into the store fdor a one-to-one, so if anyone could explain why this happens / what I can do about it, I would be very grateful! Thanks!

    If you think getting your web pages to appear OK in all the major browsers is tricky then dealing with email clients is way worse. There are so many of them.
    If you want to bulk email yourself, there are apps for it and their templates will work in most cases...
    http://www.iwebformusicians.com/Website-Email-Marketing/EBlast.html
    This one will create the form, database and send out the emails...
    http://www.iwebformusicians.com/Website-Email-Marketing/MailShoot.html
    The alternative is to use a marketing service if your business can justify the cost. Their templates are tested in all the common email clients...
    http://www.iwebformusicians.com/Website-Email-Marketing/Email-Marketing-Service. html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • Custom Report : What is the best way ?

    Hi!
    My customer doesn't like native TestStand 's report layout. He would prefer something like the example enclosed to this post.
    What is the best way to achieve this ?
    XSL customizing (seems heavy work) ?
    Using the report generation toolkit  and a Word template ?
    Any other idea ?
    Attachments:
    Report Style.JPG ‏115 KB

    Have you examined all of the examples found in the TestStand help:

  • What is the best way to double buffer in this case and how to do it....

    currently I have
    public class Frame1 extends JFrame{
    //inside this class I call up circle class, rectangle class, etc.... to draw
    }I am making a "paint" program, and I have individual classes to handle the paint methods heres an example:
    abstract public class Shape {
        public Shape() {
        public abstract void draw(Graphics g, Color c, int x, int y, int width,int height);
    }and then....
    public class Circle extends Shape{
        public Circle() {
        public void draw(Graphics g, Color c, int oldx, int oldy, int newx, int newy) {
            g.setColor(c);
            g.drawOval(Math.min(oldx, newx), Math.min(oldy, newy), Math.abs(oldx - newx), Math.abs(oldy - newy));
    }There is also a Rectangle class, line class.... etc! So my question to you is the following... what is the best way to implement double buffer in the individual classes? And how to do it?? And also.... the drawings should be kept inside a jPanel.
    Any bit of help is much appreciated Thank you!!

    You don't need to do double-buffering. Swing
    components are double-buffered by default. Just make
    sure you override paintComponent() and not paint().
    And even if you had to, why would there be any
    difference in implementation for your classes whether
    they paint to on- or off-screen graphics?I need to override paintComponent()? what if I don't...
    I am using JBuilder2005 and they automate somethings for me. So thats how they did it when they created the application they did this....
    public class Frame1 extends JFrame{
    /*** all my code here***/
    public class Application1 {
        boolean packFrame = false;
         * Construct and show the application.
        public Application1() {
            Frame1 frame = new Frame1();
            // Validate frames that have preset sizes
            // Pack frames that have useful preferred size info, e.g. from their layout
            if (packFrame) {
                frame.pack();
            } else {
                frame.validate();
            // Center the window
            Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
            Dimension frameSize = frame.getSize();
            if (frameSize.height > screenSize.height) {
                frameSize.height = screenSize.height;
            if (frameSize.width > screenSize.width) {
                frameSize.width = screenSize.width;
            frame.setLocation((screenSize.width - frameSize.width) / 2,
                              (screenSize.height - frameSize.height) / 2);
            frame.setVisible(true);
            try {
                jbInit();
            } catch (Exception ex) {
                ex.printStackTrace();
         * Application entry point.
         * @param args String[]
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    try {
                        UIManager.setLookAndFeel(UIManager.
                                                 getSystemLookAndFeelClassName());
                    } catch (Exception exception) {
                        exception.printStackTrace();
                    new Application1();
        private void jbInit() throws Exception {
    }

  • What is the best way to deploy an application ??

    Hi,
    Please advise me how to automate in a best way to Deploy 10 different applications(.ear/.war)
    to 10 different Clusters(containing 40 Managed servers) in wls6.1......and that
    too in a Production environment.
    I know that we can use weblogic Console to deploy an application BUT if i have
    2 unix boxes and each box contains 4-4 clusters(each containing 16-20 managed
    servers) .....then i have to open up 2 Admin server consoles to deploy each of
    the respective applications and that too deploying these application to 8 clusters.....OR
    i can use deploy commad to do the same.
    AND if i have like 100 clusters .....then i would have to "deploy" 100 times ......
    is there any way that we can BEST AUTOMATE this process.
    Thanks a lot.
    -sangita

    Thanks Tommy. but i would like to know a very important point here: this is using
    the weblogic.utility that you just talkd about.
    Suppose iam having an ADMIN server that has say 10 clusters and 50 managed servers
    underneath to take care.
    1 cluster each = 5 managed server
    now iam deploying a simple .war file to say a single managed server, i have found
    out that it takes a looot of time to get the application deployed.
    what do you say about this situation ?
    what is the best approach ??????
    -sangita
    "Tomy Mathew" <[email protected]> wrote:
    >
    >
    To deploy the application from the command prompt in WebLogic 6.1 you
    use the
    following command
    $JAVA_HOME/bin/java -cp $WL_HOME/weblogic.jar weblogic.deploy -port $WEBLOGIC_PORT
    -host $WL_HOST_IP $WEBLOGIC_CMD $WEBLOGIC_PWD -component $WL_Server_NAME:$WL_Server_NAME
    $WL_APPLICATION_NAME YourApplication.war
    $WEBLOGIC_CMD sould be DEPLOY for the first time deployment and UPDATE
    for redeployment
    For deploying in a cluster you better create a shell script which call
    the above
    command with different cluster ip address as a parameter.
    Tomy
    "sangita" <[email protected]> wrote:
    Thanks Rob for your expertise advise. I would check to see wls8.1's
    ANT tasks.....for
    wls6.1, i would guess shell scripts to be a better option for us.
    thanks again.
    Rob Woollen <[email protected]> wrote:
    If you're using 8.1, then it's pretty nice to use ant for
    configuration/deployment/starting and stopping servers etc. There's
    a
    wlconfig task to do configuration, wldeploy to deploy applications,
    wlserver to start/stop servers.
    For 6.1, it's probably not a huge win to use ant. It's up to you.
    If
    you're more comfortable using shell scripts, that's certainly a
    reasonable route.
    -- Rob
    sangita wrote:
    Thanks Rob.
    But all the stuff that ANT can do for me FOR DEPLOYMENT (ONLY) .....ican do it
    from a simple shell script too.
    And i understand of ANT's cross-platform environment and usage of
    JAVA
    .....but
    can i use ANT to do something like CONFIGURING my wls6.1 managed
    servers/clusters/creating
    managed servers/db connection pools ......and all the other configurationthat
    i do from wls console(or manually) ....????
    and if yes, do you know of any examples, suggestions, ideas ?????
    basically, if i need to sell(?) ANT to my juniors ......what are
    the
    basic reasoning
    i can put forward....keeping in mind that these guys use wls6.1 &
    wls8.1......and
    these guys do CONFIGURATION and DEPLOYMENT only.
    sorry for asking, may be these silly questions.
    thanks, sangita
    Rob Woollen <[email protected]> wrote:
    sangita wrote:
    Thanks Rob.
    Rob, do you still consider or suggest using ANT for deploying say
    20
    applications
    on a 10 clustered environment.Yes
    do you see any advantages using [ANT + weblogic.deploy]..... over
    simply
    using
    weblogic.deploy utility ???Yes. ANT essentially gives you a cross-platform environment that
    allows
    extensibility through java. It's very powerful.
    -- Rob
    -sangita
    Rob Woollen <[email protected]> wrote:
    sangita wrote:
    Rob,
    I have found the answer for my question #1 ...this is the URL:
    http://edocs.bea.com/wls/docs81/admin_ref/ant_tasks.html
    iam still hoping to hear back from you for #2, #3
    thanks a ton.
    "sangita" <[email protected]> wrote:
    Thanks Rob.
    quick question:
    1) do you know of any example which illustrates the use of ANT
    wrapper....or
    please
    direct me to a URL where i can find some documentation about
    it.
    2) does this ANT wrapper has any advantages over using weblogic.Deployer
    utility
    ??If you're doing deployment via ant, then it's a bit more convenientto
    use <wldeploy> rather than invoking a raw <java> process, but
    fundamentally it's just a wrapper around weblogic.Deployer
    3) i would certainly check to see weblogic.deploy for wls6.1
    ....can
    i use ANT
    for deployment purpose in wls6.1 ?You'll just need to wrap it in a <java> task
    See:
    http://ant.apache.org/manual/CoreTasks/java.html
    -- Rob
    Rob Woollen <[email protected]> wrote:
    If you were using WLS 7.0 or later, you could use weblogic.Deployer.
    If
    you were using 8.1, you could use wldeploy which is an ant task
    wrapper
    for weblogic.Deployer.
    In WLS 6.1, you'll have to use weblogic.deploy which is a bit
    cumbersome, but it's still certainly possible to script deployment.
    -- Rob
    sangita wrote:
    Hi,
    Please advise me how to automate in a best way to Deploy
    10
    different
    applications(.ear/.war)
    to 10 different Clusters(containing 40 Managed servers) in
    wls6.1......and
    that
    too in a Production environment.
    I know that we can use weblogic Console to deploy an application
    BUT
    if i have
    2 unix boxes and each box contains 4-4 clusters(each containing
    16-20
    managed
    servers) .....then i have to open up 2 Admin server consoles
    to
    deploy
    each of
    the respective applications and that too deploying these applicationto 8 clusters.....OR
    i can use deploy commad to do the same.
    AND if i have like 100 clusters .....then i would have to "deploy"100 times ......
    is there any way that we can BEST AUTOMATE this process.
    Thanks a lot.
    -sangita

  • What's the best way to save on a (sort-of) network?

    We are a small town newspaper moving from paste-up to full pagination in InDesign. We have two ladies who design ads. We have an editor who writes copy and several others who type copy and do stuff like obits, etc. For the last zillion years every single thing is printed, cut-out and pasted up on page sheets.
    We are moving into In-Design. Whatever each of us creates, we save on our machines. We have just setup not really a server, but a device (a LaCie) that we can all see.
    I have designed a folder system on the Lacie and just this week we are starting to place our completed documents up to it. This is also where the page templates will go.
    My question is about the ads and the page templates. Those all have links. Those links are back on the machines of the creator.
    So, Bonnie creates ads, she will want to put her ads on the page templates and then we will put the copy around the ads.
    How is the best way to resolve the issue of links and fonts? Should we package each ad to put it up on the LaCie? What about fonts? I went to another (even smaller) newspaper and they have a font folder on their server. I assume that all fonts draw from it.
    Is my question clear?

    Thanks for everyone's thoughts on the subject. A consultant would be nice but, keep in mind, weekly newspapers are very small potatoes and on very small budgets. I am the technical end of the business, coming from a school district where I coordinated education related technical issues. So, I don't know much (yet) about all the ins and outs of ID. We have CS3.
    I think the two ladies (who have worked here 20+ years) would QUIT if I moved all of their graphics to someplace other than their own machines where they know where everything is. Their new machines got a clone of their old machines and then we added OSX and CS3.
    All copy has identical fonts and paragraph styles. We will put all news photos that will appear on the page in a network folder. So those will be easily placed. It's just the ads that will cause the problems. And there are a zillion of them in varying sizes. And those ads are the money makers so they are the most important thing.
    We are going to experiment with how we go about doing this. I know that there will be 4 different people opening the page templates and adding "stuff". The problem would be resolved if the ads went on last, but they go on first and (as our editor says) that "crap" he writes just pads the ads.

  • What's the best way to (re)install Logic Studio? Need Help.

    I bought Logic Studio a few months ago and installed it on my new MacBook Pro 2.4Ghz with 2G Ram, 160G hard drive @ 7200 rpm. Being new to Logic, at install, I just put all 40+ gigs of content on the computer. After a while I considered putting the Apple Loops (roughly 12gigs) onto an external hard drive to save space on my computer, just to see if it would work, then consider moving more content over later. After doing this the Logic application couldn't find the Apple Loops, and I couldn't find a way to help it see the new path, so my Apple Loops were essentially rendered useless (since I had already deleted them from the computer). So I stopped right there, and haven't done anything else. Just worked with Logic without using Loops, which I have to say is still an incredible program.
    What also seemed strange was this: In moving the Apple Loops, the available disk space on the computer didn't seem to change much. It went down a few gigs, but not the 12 or so I was expecting. Not sure why that is. It seems like Logic and all the content is actually taking up around 50 gigs or so on my computer (and the Apple Loops are supposedly gone or not available). What is that about?
    Feeling like I had really fouled things up, I called Apple Care. They said that the content of Logic is stored in many places in the computer's libraries and system folders, but it was really confusing trying to locate all of it, because the info they sent was from Logic 7 and older versions of GarageBand. I guess Logic 8 is too new for them to have anything on it. There is no uninstall for Logic Studio. But they strongly recommended that I perform an Erase and Install, and then re-install all my software including Logic, and then assign the hard drive I wanted the content in. That would open up a lot of the computer's hard drive space, they said. It seemed like an extreme measure to take for such a small blunder, and I haven't tried it yet, but will if it's the best option.
    If I do this, is running Logic content (i.e. Loops, Impulse Responses, Jam Packs, etc.) from an external hard drive (and the one I have to use is 5400rpm--is that too slow or am I getting too picky?) the best way to go, or should I have all Logic material coming from the same machine? How do I get some of my hard drive space back?
    Ugh.
    Has anyone out there experienced this too? Is there anything documented about where the content is stored for Logic Studio? Is Erase and Install really the best thing to do in this situation?
    So many questions...
    Thanks.

    Hey Blue,
    Let me see if I can help you a bit.
    Logic Studio has 28+ gb of loops. Almost 23 for STP and 6 for the Jam Packs, etc. They should be located in /Library/Audio/Apple Loops/Apple (that's the default install loc.). Copy them to an external drive and then delete them from your main drive. Go to /Library/Audio/Apple Loops Indexes and delete those text files. Now go to /Library/Preferences/Soundtrack Pro and delete those text files, too (more Loop Indexes).
    Now open Logic Pro and it will say 'No Apple Loops found'. Click 'OK' and then open your Loop Browser. Drag all the Jam Pack folders, STP folder, etc. that you want to use onto the Loop Browser. Logic will ask you if you want to 'Copy to Loops Folder' or 'Current Location'. Choose 'Current Location'. Logic will now index the loop folders.
    NOTE: You can change the names of the folders to suit your liking. For example: I added the 2, 3, 4, 5 after the Jam Pack names to make it look smoother on the popup menu and changed iLife Sound Effects to Sound Effects - iLife and Apple Loops for STP to STP. Now the Jam Packs 1-5 come up first on the popup menu and the FX stay at the bottom. I likee!!
    Now, if you like you can take your EXS Factory Samples and Ultrabeat Samples, 3.35 & .889 gb respectively, and copy them to an external drive. I have mine in the same place as my Jam Packs, etc. You can find these files in /Library/Application Support/Logic. Toss out the originals and put ALIASES from the external drive back into the /Lib/App Sup/Logic folder.
    Also, if you open STP and click the Search tab in the right pane you will see a button that says 'Setup' next to it. Click that and you can use the checkboxes in the window to activate/deactivate any of the loop folders available.
    A clean install is the best IMO if you have a little time because a) you DO NOT have to install GB at all (that saves the .aif file size - Logic Studio uses .caf files at half the size of the originals) b) Logic Studio will install the extra GB or Logic 7 content if you need it at it's reduced size. It will basically get rid of all the old clutter that you do not need. Only install what JP's you want and move the bigger stuff to an external.
    Rock up Logic and it should all be in place. That procedure saved me 32.5 gb on my main drive.
    NOTE #2: You have another 12 gb (if you installed all Jam Packs) that reside in the /Library/Application Support/GarageBand/Instrument Library/Sampler. These are the Jam Pack Instruments & Sampler files for World, Symphony, etc. They cannot be moved from the startup HD (as far as I can tell). So keep that in mind if you don't want a certain JP.
    Hope that helps,
    Dave

  • I need to know best way to edit MXF files, with least rendering, is that converting the MXF or Log and Transfer? the end product is dvd, but I have lots and lots of these projects to do.

    I am about to comence my Edit, and was told of Mpeg Streamclip, however this doesn't seem to work with my Canon XF305 Clips, the reason I was told to use it was so I wouldn't have to Render in Final Cut Pro all the time.. I do have the Canon Disc with the Plug in Utility and the update from their site.
    Is it best to Convert these MXF files first and import them into FCP or use 'Log and Transfer', so far I am unable to do either!!
    The projects on the timeline will have introduction .Movs already on it as a Template to re-use again and again with the new Footage ( MXF Files ) to be added and edited with transitions etc..This process is repeated again and again but with different MXF clips each time.
      I am looking for the quickest and best way for workflow as there are 80 or more projects to do, each with 10 or so clips to be added to the timeline and Exported for DVD...Will I have to then Compress to fit onto DVD's??
    I know Streamclip is an Mepeg 2 app but I thought the Canon XF305 Shot as mpeg2....
    Is Log and Transfer my only Option?
    Basically I need to know the quickest for Render purposes, and of course, the best way so the files aren't so huge etc etc.
    Please, any suggestions would be greatly received....

    We only work with PR422 files in FC7.  We use Shane's workflow with all 5D & MXF footage.
    Make your life easier and stick to the ProRes family for your footage and edit sequences. Avoid H264 & convert any you have to ProRes.
    Unless you are considering Blu-Ray the only way to deliver video on a DVD is to convert it to SD.
    Depending on the length of your show you can make a Blu-Ray in Compressor but you have very limited authoring options when compared to DVD Studio Pro.
    Compressor can also convert your HD to SD mpg-2 & Ac3 files. The best results usually come from setting the frame controls in the mpg-2 setting of Compressor to best. Depending on the the length of the show and your Qmaster settings this can take quite a while.
    I personally find Compressor's HD to SD DVD conversion varies. Sometimes it is wonderful and sometimes not so much. I prefer the following as it is usually is faster and very consistent.
    Export a quicktime movie (not QT conversion) of your final sequence
    Import the exported HD file back into FC.
    Create a SD 16x9 sequence and then drop in the recently exported HD seq and render. Rendering the sequence basically has FC doing the HD to SD conversion. Export the SD sequence and then convert to mpg-2 & ac3 in Compressor. While this does take time I still find it faster than Compressor with Qmaster utilizing all cores.
    Another option is using jobs in Compressor
    http://pixelcorps.cachefly.net/macbreak-154-540p-h264.mov
    In this workflow you would have Compressor convert the HD file to SD and then through jobs convert the SD file to mpg2 & Ac3. 
    In theory the jobs version could be faster (based on a number of variables- length, Qmaster, etc) but I haven't had time to compare the two. 

  • Best way to develop a BI Publisher Report

    Dear All,
    which is the best way to develop a XML/BI publisher report?
    1) Using a RDF for fetching data using data group
    2) Using a Data Template
    3) Writing PLSQL code
    4) Using BI Publisher Enterprise
    In R12 , all seeded reports are XML using PLSQL coding. Why oracle did not create RDF based XML reports? Are RDF s going to be obsolete??
    Please clear my confusion
    Thanks in Advance
    Raj

    Pl see your duplicate post here - Best way to develop a BI Publisher Report
    Srini

Maybe you are looking for

  • JavaFX Update Line Chart on Tab pane

    Hi all, I am wondering can anybody help with this problem. I have an application that can create a new tab when the LineChart FXML view is called by way of onMouseClicked event from a bar graph (using scenebuilder). However, I need this Line chart to

  • VGA output problem and catalyst control start up link

    I do not know whether the problems are linked or whether I have made things worse.  It started with an error message on start uo saying that there was a problem with Catalyst Control failing to start.  It still alowed me to run normally until, in fro

  • Wix Hyperlinks Won't Open in 'Same Page' - iWeb 09

    I recently built a flash intro for my personal website (www.justinmiller.info) using Wix. It's basically some photos of me that you can hover over; the photo expands and you can click on it to be directed to one of the pages on my site. I have embedd

  • I can't view the run time browser in LR11.5

    I'm using LR11.5 and I found there is no "During Replay" section in Tools, I wanna see the broswer during replay, but I can't found the configuration. but in LR11.52 and the previous version of LR, I can found this setting. could you help? In LR11.52

  • Career Help Needed

    Hii everybody- My friend has worked as ABAP Trainee in a software company in Bangalore till June 30th and moved to Hyderabad (HYD is native place) because of personal reasons. She is finding it extremely difficult to get the job with her one year exp