BAM - should it have its own server?

I thought I read somewhere that the BAM tool needs its own server.  Is this true?  What are the minimum system requirements?  I tried Google, but only ran through a document that says refer to a file on the "cd"-xls ;-)

Thank you

Elaine

No it's not. I do not have the system reqs handy but it is memory intensive. I have installed on my machine (so that the Setup program creates the ear for the deployment file). Then, I simply remove the ear file and redeploy themselves when necessary (I speak of a development/test environment of course). The file is Lava_Adobe.ear

Paul

Tags: Adobe LiveCycle

Similar Questions

  • Should each new page that I join my home page have its own style sheet?

    Each new page that I join my home page should have its own style sheet or should this simply go on the homepage one?

    cdeatherage wrote:

    Sometimes I break the CSS to the top, using a style sheet 'main' for those elements that are common to all pages and a sheet of styles that are unique to one or two inside pages. I find split styles as it makes them easier to develop my web pages and usually leave as stand-alone CSS.

    Yes, I do it as well, depending on the complexity of the design site is. If the layout varies very widely from one page to the other then this a good approach to take.

  • Thunderbird downloads emails from the mail server to its own server?

    Download Thunderbird and Horus email on its own server, or wiat for pull emails from my mail server until I have connect and download them?

    There is no 'server Thunderbird', so that solves the first part of your question.

    I don't know what you mean by "log in."

    Thunderbird, retrieves all in all, your messages from the server when you tell him, or you can configure it to do periodically.

    To access your messages, he must know the username of the e-mail account (very often all or part of your e-mail address) and the corresponding password. If you allow Thunderbird store the password, there is no need even to think of "connection" to the mail server.

    I said "basically" because with some IMAP servers, messages seem to be fed to Thunderbird as and when they become available, assuming he is alive and online.

  • When a subclass must have its own fields and when to use its super

    When a subclass must have its own fields and when to use fields of its superclass?


    Hi, thanks for reading this post!

    I would use a specific example to my question.

    public class BankAccount {
         private double accountBalance;
         
         public double getBalance() {
              return this.accountBalance;
         }
    }
    
    public class SavingsAccount extends BankAccount {
         private double accountBalance;
         
         public double getBalance() {
              return this.accountBalance;
         }
    }
    In the example of bank account, account Bank both SavingsAccount will have a getBalance() method. As a result, they
    both need an account balance field. My question is as getBalance() for both classes will occur exactly the same
    operation, when I should omit declaring the getBalance() method and the accountBalance in the subclass field, and
    When should I include them?

    My own thought is when we never instantiate a superclass object (for example, an abstract class), then we place
    common fields in the superclass abstract and subclasses have access to these areas via getter/Setter protected
    access the fields of the superclass. This is the principle of reuse.

    But if you do not need to instantiate a superclass and the superclass needs to maintain its own fields, then
    I would need to replicate the getBalance() accountBalance and field method in the subclass.

    Is my thinking correct or incorrect?

    Thank you in advance for your help!

    Eric

    Published by: er * August 22, 2011 20:19

    ER * wrote:
    If SavingsAccount inherits BankAccount.getBalance ()... getBalance () would return accountBalance bank account. This isn't the right result we want.

    In fact, I think that this is precisely what you want.

    We want getBalance() accountBalance bank account back when we use a BankAccount object and SavingsAccount accountBalance when we use a SavingsAccount object.

    I seriously doubt that. I think you are confused a bank account with a customer, who may have multiple accounts.

    In all the systems I've ever seen, a SavingsAccount IS - A BankAccount - that is to say, it is a subtype of real. Now, it can contain many other areas ('interest'?), that a normal account would not be 'balance' is not one of them.

    Winston

  • same 3 buttons & 3 different images, but each must have its own actionscript image?

    Here's my problem. I have 3 frames and 3 buttons. Each button will take you to their respected framework. However, I noticed that I can't have 1 keyframe of the actionsript read the same on these 3 images. Why? because if I jump from frame 1 to frame 2 or 3, then I can't go back. Instead, each image must have its own actionscript. The only thing that would change is the name of the method. I find it tedious. Is that what this is? It felt almost seem like it would be less tedious but even for 3 images, I have to change the name of each method as I build more pictures to navigate to. Check my example below:

    Old Actionscript (1 keyframe for 3 images does not have to go back any frame)

    frame1_btn.addEventListener (MouseEvent.CLICK, handlerFrame1);
    frame2_btn.addEventListener (MouseEvent.CLICK, handlerFrame2);
    frame3_btn.addEventListener (MouseEvent.CLICK, handlerFrame3);

    function handlerFrame1(event:MouseEvent):void {}
    gotoAndStop ("frame1");
    }

    function handlerFrame2(event:MouseEvent):void {}
    gotoAndStop ("frame2");
    }

    function handlerFrame3(event:MouseEvent):void {}
    gotoAndStop ("frame3");
    }

    New Actionscript (3 images key and it works):

    Framework 1

    frame1_btn.addEventListener (MouseEvent.CLICK, handlerFrame1);
    frame2_btn.addEventListener (MouseEvent.CLICK, handlerFrame2);
    frame3_btn.addEventListener (MouseEvent.CLICK, handlerFrame3);

    function handlerFrame1(event:MouseEvent):void {}
    gotoAndStop ("frame1");
    }

    function handlerFrame2(event:MouseEvent):void {}
    gotoAndStop ("frame2");
    }

    function handlerFrame3(event:MouseEvent):void {}
    gotoAndStop ("frame3");
    }

    Frame 2

    frame1_btn.addEventListener (MouseEvent.CLICK, handlerFrame,4);
    frame2_btn.addEventListener (MouseEvent.CLICK, handlerFrame,5);
    frame3_btn.addEventListener (MouseEvent.CLICK, handlerFrame,6);

    handlerFrame4function (event: MouseEvent): void {}
    gotoAndStop ("frame1");
    }

    function handlerFrame5(event: MouseEvent): void {}
    gotoAndStop ("frame2");
    }

    handlerFrame6function (event: MouseEvent): void {}
    gotoAndStop ("frame3");
    }

    Frame 3

    frame1_btn.addEventListener (MouseEvent.CLICK, handlerFrame,7);
    frame2_btn.addEventListener (MouseEvent.CLICK, handlerFrame,8);
    frame3_btn.addEventListener (MouseEvent.CLICK, handlerFrame,9);

    function handlerFrame7(event: MouseEvent): void {}
    gotoAndStop ("frame1");
    }

    function handlerFrame8(event: MouseEvent): void {}
    gotoAndStop ("frame2");
    }

    function handlerFrame9(event: MouseEvent): void {}
    gotoAndStop ("frame3");
    }

    You must not have code in all three settings.  The first bit of code that show you should be sufficient under normal circumstances.  If you have the code on a layer that only has a single keyframe and the buttons on a layer that has a key frame, then the buttons will remain functional.  It is only when you create new instances (keyframes) buttons that you must assign new for them event listeners, but even then the same event handler functions can be shared for each of them as a layer actions extends the length needed for all the buttons.

  • Move the database on its own server Vcenter 4

    My current Vcenter Server 4.0 has the Vcenter Server and database SQL 2005 on the same computer. My performance is EXTREMELY slow, as in there more than 15 minutes for the client to connect, Vsphere load inventory and discover plugins until I'm able to use it. Once loaded, clicking on the servers and things within the client is very slow. So I think that by moving the database of its own machine, it will increase the performance of the vcenter server. I was looking in the vcenter admin section, and I can't find a way to 'clear' to tell him to look for the database on a different server.

    Does anyone have any documentation on how to move the vcenter database to another server?

    Thank you!

    Lex

    Take a look on:

    http://KB.VMware.com/kb/7960893

    André

  • Workstation have its own Exchange method, or does IT exploit the windows pagefile?

    I would like to run more VM guests that physical memory will allow, so I'm choosing to use the workstation "allow some VM memory to swap.  It is, where it is traded?  Should I use windows swap files (which means that I have to increase the size of the windows swap file), or Workstation has his own trading method that does not use the paging file windows (which means I should minimize the size of the windows swap file)?

    Yes - VMware using the Windows swap file - so you should make sure that it's enough - big and put it on a fast drive

    You can also use a memory file in each directory of virtual machines, but this is not so good that using the real RAM + pagefile

    ___________________________________

    VMX-settings- WS FAQ -[MOAcd | http://sanbarrow.com/moa241.html]- VMDK-manual

  • How can I make each file have its own specific view and a provision in windows Explorer (windows 7)?

    in previous versions, I was able to have a unique view for each folder, but in windows 7, when I make a change in view, it changes everything.

    In addition, the "apply to all folders' is always greyed out, which is probably part of the problem?

    changes to the 'read only' boxes only returns without modification.  does anyone have solutions?

    View and arrangements that make you to folders in Windows 7 are retained and are specific to this folder.

    However, view and arrangements that you make within a view of the library from a folder will affect the entire library.  This is because a library is, essentially, a view of files search result.  When you change the display, you change the view of this area of research.

    To set your own point of view, follow these steps:

    1 - click Start, and then click on your name at the top right.

    2 - Go to the folder for which you want to define a view

    3 - Set your point of view and to close the file.  The setting is preserved.

    If it solves your problem, click on the link "Propose as answer" below and vote as useful by clicking on the green triangle for the lelft. Thank you!

  • I want that my second acc't of e-mail to have its own name in the address book and contacts list and to rename the address book

    I don't want to mix the personal contacts with business contacts. I like a second tab addresses to show when I have my business address opened in 'inbox '.

    The personal book and collected books are the books of two default cannot be deleted, and suggested DO NOT rename them.

    When you select this option to add a contact to an address book by clicking the star next to the address it will add to the personal address book. You can click on the star again to open the dialog box modify and change to place the contact in the address book.

    The collected book collects addresses for outgoing messages.

    There is no function by default to collect addresses of incoming e-mail.

    Just to keep the terminology straight, Thunderbird has address books and mailing lists.
    You can create new address books in the address book window by selecting file-new-address book.

    You can create mailing lists within address books to use for distribution groups. The contact must exist in the address book where the mailing list is created to be added to the list. You create a mailing list by clicking on the button new list.

  • When the Carplay will have its own forum?

    Hello, I wonder when Apple will have a forum dedicated to Carplay. Anyone know?

    When they realize that they must create, unless they have decided that there are not enough messages on Carplay to create a specific section dedicated to it.

    I reported your message to ensure that the forum Admins know is needed for this. We'll see.

    See you soon

    James

  • I lag so that I have my own server on host pc games.

    Hey. I just started hosting servers the other day and I egan to notice theres a jump in my lag all trolling cuaseing. Ping jump over 2000. My router is a router in trendnet tew 432brb. I am forwarding ports to this topic. To make it work people can join witch is great. But this gap does not make fun for everyone including me. Simply, it turns off when he wants to. If anything I can do to avoid this or calm the offset? Thank you

    Hi bravo95

    Thanks for posting on Microsoft Answers.
    I suggest you to contact your ISP, as you host the game.
    If you are not hosting the network then I suggest you check with the router configuration.

    Best regards, Niranjan | Microsoft Answers Support Engineer

  • New Oracle Database 12 c Maximum availability Certified Expert Certification does NOT have its own review?

    Hello

    Someone told me that there is a new Oracle 12 c availability maximum expert certification exam.

    But I don't see any number of review for her.

    Thank you Roger

    It is not a review of these credentials.  It is a 'bonus' credential you receive if you get three other certifications:

    12 c of Oracle Certified Professional database administrator

    Oracle Certified Expert 12 c Data Guard Administration

    Oracle Certified Expert 12 c RAC and grid Infrastructure of Administration

    More info on:

    https://blogs.Oracle.com/certification/entry/1152_07

  • My husband doesn't like the itunes account is under my name.  I have a way that he can have his own name and sign on with her and still exist on the family account?

    My husband doesn't like the itunes account is under my name.  I have a way that he can have his own name and sign on with her and still exist on the family account?  Also, have we HAVE two-step verification?   It's a real pain.

    Yes it can have its own ID and share your content via the family sharing, he needs to sign out of your ID and to create his own, then one of you needs to invite another family sharing.

    You don't need to use 2 verification step, if you want you can disable to my Apple ID

  • FireFox will never produce its own webmail program?

    Just ask the question if we can expect Firefox to have its own webmail.

    You can read the page of 'Mission' of Mozilla here: http://www.mozilla.org/en-US/mission/

    Personally, I don't think be in an e-mail service provider would fit.

  • I need to connect a card its own irq.

    OK, it's really simple.  I have a PCI firewire 400 having IRQ conflicts and forcing my external audio interface to stop working.

    This CANNOT happen.  I do not what else is this card must have its own IRQ - IRQ sharing.  period.

    switching of the PCI slots has not worked.  turn off nonessential hardware in Device Manager has failed.

    I could manually IRQ in all previous versions of windows.  How can I do this on vista?

    Hello ikediggety,

    There are ways with which you will be able to assign the IRQ in Windows Vista. However, it requires editing the registry and is not a recommended solution. Editing registry without an indication of the manufacturer could be dangerous. If there is real device conflicts, Windows 7 allows you to change the IRQ resources in Device Manager. But you don't have that sharing legitimate, conflict.

    It involves registry IRQ priority creating. There are several third-party Forums talking.

    I suggest that you search using your favorite search engine if you understand the risk and want to do it again.

    I suggest that you connect it to a different PCI slot and if it continues to come into conflict, it would be a hardware problem. I suggest that replace you it with a USB port.

    I hope this information helps.

    Thank you
    Irfan H, Engineer Support Microsoft Answers. Visit ourMicrosoft answers feedback Forum and let us know what you think.

Maybe you are looking for

  • Compatibility SE TracFone and iPhone?

    I noticed that Apple iPhone 6s can be used on Tracfone (good to know). But I want to know why the new iPhone IS not is not supported? I have more interest in buying an iPhone 4 "small SE but won't phone operators to get one. Anyone know if this will

  • Cannot access my router through the Explorer configuration page

    I need to do a port forwarding on my router. My internet connection works (even if she falls occasionally) and I can also connect to other computers on my network. However, I cannot access my router through IE page (I get a message saying: page not f

  • IPF in nonpaged area blue screen Win 7 64

    To run Win 7 64 BSOD delivery bit and got with error message Page Fault in non paged area. Recommended that I try Safe Mode. Then turned PC on again, came back to a screen which recommended repair or Normal startup. I have authorized the default sett

  • Tcannot figure out how to download AppWorld blackberry app

    Hello I just had my first application with eclipse, the blackberry to connect! I went to add the new app on my blck berry account.  It says on the page to download the app On the new version, it has this negative if you have a ZIP file containing the

  • BlackBerry Smartphones VERY disappointed after upgrade to 5.0

    My phone won't stop freezing!  I do about 20 battery tire/day and it gets worse.  Verizon has had two wipes, restoration and reinstallation of 5.0 but nothing works.  In addition to all this, I lost ALL my third-party applications.  Yes, I know that