Forum Suggestion: Applications Forum

Could we have a forum for general discussion about applications? Topics for this forum would include:
*) configurations (e.g."[vsftpd] Need help with multi-user setup",  "[foo] Post your configs")
*) requests (e.g. "Does anyone know of an application similar to x but which can do y and z?")
*) polls and queries (e.g. "[poll] Which foo do you prefer and why?", "Is anyone else using tmux?" <-- real example )
*) discussion about upstream  (e.g. "[foo] Does anyone know when foo will support bar?")
As it is right now it seems that these topics are mostly posted in "GNU/Linux" and "Workstation User". I know that topic categorization isn't very strict here (generally a good thing) but sometimes I just don't know where to post some threads. "Workstation User" seems to be geared more towards resolving overall system issues and "GNU/Linux" by name would only be a subset of the intended scope.
If there already is a forum intended for this, perhaps it should be made a bit clearer.
If this is a stupid idea, remind me not to post when I'm tired.

> If this is a stupid idea, remind me not to post when I'm tired.
I think it's a decent idea, you should post more when you're tired :-)
I use RSS to keep up w/ what's going on on the forum so I don't really care about a new forum category. To me there exists just a pool named "Arch Forum". No - not a pool: a fountain of wisdom. That's better. I'm going to take my medication (coffee) now.

Similar Messages

  • Deploy given EAR file having application.xml and change context-root

    hi
    Please consider deploying a given EAR file on WebLogic Server 10.3.5 (part of JDeveloper 11.1.1.6.0) and changing the context-root for its web-module.
    For example an EAR file with only a web-module (ReviewContextRootFirstApp.ear [1]) or an EAR file with a web-module and an ejb-module (ReviewContextRootSecondApp.ear [2]).
    Given documentation appendix B section "context-root" [3] saying
    "... A context-root setting in application.xml takes precedence over context-root setting in weblogic.xml. ..."
    and documentation section "Typical Deployment Configuration Workflows" [4] saying
    "Oracle does not support using a deployment plan to change the context-root in an application.xml file. However, if an application is deployed as a library, you can either change the context-root through an weblogic-application.xml file or use the deployment plan to change the context-root in an weblogic-application.xml file. "
    Some observed behaviour:
    - scenario (sc1) : deploy ReviewContextRootFirstApp.ear without deployment plan, results in context-root "/rcrfaweb" (as in application.xml)
    - scenario (sc2) : deploy ReviewContextRootFirstApp.ear with deployment plan fa-plan.xml (tries to configure "/rcrfaweb11"), results in context-root "/rcrfaweb" (as in application.xml)
    - scenario (sc3) : deploy ReviewContextRootSecondApp.ear without deployment plan, results in context-root "/rcrsaweb" (as in application.xml)
    - scenario (sc4) : deploy ReviewContextRootSecondApp.ear with deployment plan sa-plan.xml (tries to configure "/rcrsaweb21"), results in context-root "/rcrsaweb" (as in application.xml)
    The blog post "Defining the context root of a web application in Oracle WebLogic server" [5] by Silviu Leahu in its section "Defining the context root in deployment plan" suggests to
    "Remove the META-INF/application.xml DD from the EAR"
    - scenario (sc5) : remove application.xml from ReviewContextRootFirstApp.ear (e.g. using Ant target "remove.application.xml.from.ear") and deploy with deployment plan fa-plan.xml, results in context-root "/rcrfaweb11" (as in fa-plan.xml)
    - scenario (sc6) : remove application.xml from ReviewContextRootSecondApp.ear (e.g. using Ant target "remove.application.xml.from.ear") and deploy with deployment plan sa-plan.xml, results in context-root "/rcrsaweb21" (as in sa-plan.xml)
    One could expect that using a deployment plan (like in scenario's (sc2) and (sc4)) would allow to configure/change the context-root, whithout having to make changes to the EAR file to make this possible. (Somewhat like "Figure 4-2 Single Deployment Plan Workflow")
    Only in scenario's (sc5) and (sc6) I see something close to what I would like to achieve, but there the application.xml file has been removed from the EAR file.
    So ...
    - (q1) Is it impossible to change the context-root at deploy-time for a web-module in a given EAR file that includes an application.xml file, without changing the EAR file?
    - (q2) Is working with EAR files that don't have an application.xml file a supported approach (to change the context-root at deploy-time)?
    Seems like a simple goal, but I must be missing something that is required to achieve it.
    - [1] ReviewContextRootFirstApp/deploy/ReviewContextRootFirstApp.ear in the ZIP file
    at http://www.consideringred.com/files/oracle/2012/ReviewContextRootApps-v0.01.zip
    - [2] ReviewContextRootSecondApp/deploy/ReviewContextRootSecondApp.ear in the (same) ZIP file
    at http://www.consideringred.com/files/oracle/2012/ReviewContextRootApps-v0.01.zip
    - [3] http://docs.oracle.com/cd/E21764_01/web.1111/e13712/weblogic_xml.htm#WBAPP623
    - [4] http://docs.oracle.com/cd/E21764_01/web.1111/e13702/config.htm#DEPGD172
    - [5] http://blog.leahu.net/it/2011/01/04/defining-the-context-root-of-a-web-application-in-oracle-weblogic-server/
    many thanks
    Jan Vervecken

    Thanks for your reply René van Wijk.
    René van Wijk wrote:
    You can use deployment plans in order to change the context-root ...That is what I tried and describe in scenario's (sc2), (sc4), (sc5) and (sc6) in this forum thread.
    Because the application.xml file (in the "given EAR file"), added by JDeveloper 11.1.1.6.0 when deploying to an EAR file, doesn't have id attributes on its application/module elements, I first tried a different XPath expression:
    "/application/module/web[web-uri/text()="WebProject.war"]/context-root"
    But, that didn't work.
    Although the "given EAR file" does not have the suggested id attributes, I tried adding a deployment descriptor application.xml file that does have such id attributes [2], allowing an XPath expression like the one suggested:
    "/application/module[id="WebProject"]/web/context-root"
    - scenario (sc7) : deploy ReviewContextRootFirstApp.ear (in ReviewContextRootApps-v0.02.zip) with deployment plan fa-plan-application-xml-with-id.xml (tries to configure "/rcrfaweb14"), results in context-root "/rcrfaweb" (as in application.xml)
    - scenario (sc8) : deploy ReviewContextRootSecondApp.ear (in ReviewContextRootApps-v0.02.zip) with deployment plan sa-plan-application-xml-with-id.xml (tries to configure "/rcrsaweb24"), results in context-root "/rcrsaweb" (as in application.xml)
    So, it does not seem to work.
    ... you have to use a variable assignment in the right part of the deployment plan (in this case the application.xml) ...My observations I describe above (that it does not seem to work) seem to confirm the Oracle documentation [1] I referred to in this forum thread before:
    "Oracle does not support using a deployment plan to change the context-root in an application.xml file. ... "
    ... By using an xpath expression, you can define which part of the xml has to be changed. ...The values for the deployment-plan xpath elements seem to be "peculiar".
    Although it should not be a problem in an XPath expression, using single quotes (like module[id='WebProject'] ) instead of double quotes (like module[id="WebProject"] ) results in:
    "java.lang.AssertionError: Attributes must be defined as name value pairs, eg, name="value" -- [id='WebProject']"
    Because an XPath predicate expression would use an "@" to refer to an attribute, I also tried to replace what you suggested module[id="Web"] with something like module[@id="Web"] but that also did not make a difference.
    - [1] http://docs.oracle.com/cd/E21764_01/web.1111/e13702/config.htm#DEPGD172
    - [2] http://www.consideringred.com/files/oracle/2012/ReviewContextRootApps-v0.02.zip
    regards
    Jan Vervecken

  • I have a collection of movies on Excel (Windows) that I want to transfer to my Mac. What would be the best software to use. Should I buy Numbers 09 or should I use another application?  Is the transfer easy? Thank you for your help.

    I have a collection of movies on Excel (windows) that I want to transfer on my Imac .  What would you suggest I suse for application? Numbers 09 or any othe suggested application?  Is the transfer easy to do?

    Hello Claude,
    The free Open Office...
    http://porting.openoffice.org/mac/download/index.html
    Can read Excel & Word files.

  • In Need of an Application Launcher

    Does anyone know of an application launcher that will launch multiple applications simultaneously and remember their window state (size, position and desktop)? I'm running OS X Mavericks so I'm looking specifically for an application that was released no earlier than October 22, 2013. Also, what I mean by window size, position, and desktop is that windows can be resized to our liking and positioned on our screens where we put them, and ever since a few OS X releases ago we could assign applications to launch in certain desktops and these desktops can be managed using what is now called Mission Control. I really need an application that can do all of this. I thought of using Automator but I’m not sure how to get it to remember window size and position.
    Thanks!

    I have zero experience with Applescript, but perhaps what I'm looking for can work using Applescript. I will consider it after any suggested applications fail to offer what I need.
    I've viewed features of several application launchers, but the closet I've seen to offering what I need are those that will allow the user to save specific applications in a list or menu, but the applications still must be launched individually. Personally, I see no advantage to that as I can launch individual applications using Spotlight, Finder, or Launchpad.
    Thanks for your suggestion Barney-15E.

  • Why are applications not listed in System Profiler?

    Hi Apple Support Community,
    System Profiler -> Software -> Applications displays "No information found." instead of the expected list of 64bit / 32bit applications installed.  What could cause this and how can I get System Profiler to rescan the applications installed?
    Thank you,
    System Version:          Mac OS X 10.6.8 (10K549)
    Kernel Version:          Darwin 10.8.0
    64-bit Kernel and Extensions:          Yes

    Discussion thread http://discussions.apple.com/message.jspa?messageID=11077939 suggests Applications are not displayed in System Profiler because I purposefully disabled Spotlight for performance reasons and the indexing of external drives.

  • Adobe Air download - "Couldn't write the application to the hard disk. Please verify the hard disk is available and try again" message. Been at this for days. Tried every suggested solution on multiple forums. Anyone come across a reliable fix?

    I have a subscription to Adobe Story Plus. I have been attempting to download the desktop version for over a week with no luck. I've read every forum I can find and attempted every suggested solution with no luck.
    Things I have done:
    - downloaded adobe air directly from website.
    - refreshed adobe story after air download and retried story download.
    - restarted computer
    - attempted download on multiple internet browsers.
    ***One thing that I have noticed is that I cannot actually find the adobe air application on my pc. The installer is present and every time I try to open it I am told that air is already installed and updated.
    Any help would be greatly appreciated. I'm no computer expert, but I am capable enough to usually troubleshoot my own problems. This one has gotten away from me though and I'm out of ideas.
    Thank you in advance.
    Adam

    Does these steps help?
    - Download Adobe AIR from https://get.adobe.com/air
    - Double click on the downloaded file and install it.
    - After installation, download the Adobe Story installer directory from https://story.adobe.com/AIR/AdobeStory.air
    - Double click on the downloaded installer to install it.

  • Please help! itunes has stopped working. I followed all of the forum suggestions, deleted apple application support, all itunes files, downloaded the itues 64setup, uninstalled itunes & application supportrestarted, downloaded itunes, nothing. Same crash:

    Problem Event Name:
    BEX
      Application Name:
    iTunes.exe
      Application Version:
    10.5.3.3
      Application Timestamp:
    4f14cc3d
      Fault Module Name:
    CoreFoundation.dll
      Fault Module Version:
    1.630.15.0
      Fault Module Timestamp:
    4eb09717
      Exception Offset:
    000c4cd8
      Exception Code:
    c0000005
      Exception Data:
    00000008
      OS Version:
    6.1.7601.2.1.0.768.3
      Locale ID:
    2057
      Additional Information 1:
    b08f
      Additional Information 2:
    b08f00221970bd29782630deacc7f037
      Additional Information 3:
    2df0
      Additional Information 4:
    2df0972e5dbb33da1d2354bb8f3a48bc

    Go to support.microsoft.com/fixit
    In section 2 click on: Install or upgrade software or hardware
    Then click on the title in section 3: Fix problems with programs that cannot be installed or uninstall
    This link may get you there:  http://support.microsoft.com/mats/Program_Install_and_Uninstall/
    Let it run and then try to download it again

  • Problem in configuring mysql with JBoss 4

    Hello Forum
    I m having following exceptions while invoking my session bean from servlet
    java.rmi.ServerException: RuntimeException; nested exception is: java.lang.NullPointerException I have put mysql-ds.xml file in :\jboss-4.0.3SP1\server\default\deploy directory and mysql-connector-java-3.1.10-bin.jar in :\jboss-4.0.3SP1\server\default\lib directory.
    my mysql-ds.xml code is (which I take from connector-j doc)
    <datasources>
        <local-tx-datasource>
            <!-- This connection pool will be bound into JNDI with the name
                 "java:/MySQLDB" -->
            <jndi-name>MySQLDB</jndi-name>
            <connection-url>jdbc:mysql://localhost:3306/student</connection-url>
            <driver-class>com.mysql.jdbc.Driver</driver-class>
            <user-name>root</user-name>
            <password>pakistan</password>
            <min-pool-size>5</min-pool-size>
            <max-pool-size>20</max-pool-size>
            <idle-timeout-minutes>5</idle-timeout-minutes>
            <exception-sorter-class-name>com.mysql.jdbc.integration.jboss.ExtendedMysqlExceptionSorter</exception-sorter-class-name>
            <valid-connection-checker-class-name>com.mysql.jdbc.integration.jboss.MysqlValidConnectionChecker</valid-connection-checker-class-name>
        </local-tx-datasource>
    </datasources>and my session bean code is:
    imports ....
    public class JBSessionBean implements javax.ejb.SessionBean, JBSession.JBSessionRemoteBusiness {
        private javax.ejb.SessionContext context;
        public void ejbCreate() { }
        public java.sql.ResultSet setDbConnection()
            InitialContext ctx ;
            String jndiName = "java:/MySQLDB";
            DataSource ds = null;
            Connection conn = null;
            ResultSet rs = null;                
            String query = "SELECT * FROM stdinfo";
            try
                ctx = new InitialContext();
            catch (NamingException e)
                System.out.println (e.toString());
            //Lookup the data source
            ctx = null;
            try
                ds = (DataSource) ctx.lookup(jndiName);
            catch(NamingException e)
                System.out.println (e.toString() + "Error in Creating the DataSource");
            try
                conn = ds.getConnection();
            catch(SQLException e)
                System.out.println (e.toString() + "Error in Creating Connection");
            try
                Statement stmt = conn.createStatement( );
                System.out.println("got statmnet");
                rs= stmt.executeQuery( query ) ;
                System.out.println("got rs");     
            catch(SQLException e)
                System.out.println (e.toString() + "Error in Creating statement n query");
            return rs;
    }and my servlet code is
    public class JBossWeb extends HttpServlet {
        protected void processRequest(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
            response.setContentType("text/html;charset=UTF-8");
            PrintWriter out = response.getWriter();
            ResultSet rSet = null;
            JBSessionRemote remoteRef = lookupJBSessionBean();
            try {
               rSet =  remoteRef.setDbConnection();
            } catch (RemoteException ex) {
                out.println(ex.toString());
            } catch (SQLException ex) {
                out.println(ex.toString());
            } catch (Exception ex){
                out.println(ex.toString());
            out.println("<html>");
            out.println("<head>");
            out.println("<title>Servlet JBossWeb</title>");
            out.println("</head>");
            out.println("<body>");
            out.println("<h1>Servlet JBossWeb</h1>");
            out.println(remoteRef.printTemp());
            if (rSet == null)
                out.println("Resultset null");
            out.println("</body>");
            out.println("</html>");
            out.close();
        private JBSession.JBSessionRemote lookupJBSessionBean() {
            try {
                javax.naming.Context c = new javax.naming.InitialContext();
                Object remote = c.lookup("java:comp/env/ejb/JBSessionBean");
                JBSession.JBSessionRemoteHome rv = (JBSession.JBSessionRemoteHome) javax.rmi.PortableRemoteObject.narrow(remote, JBSession.JBSessionRemoteHome.class);
                return rv.create();
            catch(javax.naming.NamingException ne) {
                java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ne);
                throw new RuntimeException(ne);
            catch(javax.ejb.CreateException ce) {
                java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ce);
                throw new RuntimeException(ce);
            catch(java.rmi.RemoteException re) {
                java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,re);
                throw new RuntimeException(re);
    }I m using NetBeans IDE 5. Am I missing anything regarding more configuration in JBoss regarding mysql?
    I could not found why I got exception, please tell me after reviewing my code.
    hope I will got solution from u ppl
    Thanx in advance

    dear dvohra09
    it still giving me the same exception
    java.rmi.ServerException: RuntimeException; nested exception is: java.lang.NullPointerException as u suggested
    <application-policy name = "MySqlDbRealm">
    <authentication>
    <login-module code = "org.jboss.resource.security.ConfiguredIdentityLoginModule" flag = "required">
    <module-option name ="principal"></module-option>
    <module-option name ="userName">root</module-option>
    <module-option name ="password">pakistan</module-option>
    <module-option name ="managedConnectionFactoryName"> jboss.jca:service=LocalTxCM,name=MySQLDB
    </module-option>
    </login-module>
    </authentication>
    </application-policy>but still I didnt able to connect my database to JBoss
    any idea...???

  • RIO - Channel to channel skew

    This has been a difficult query to answer through my usual routes, so I'm hoping this finds a domain expert in the likes of Spex or similar.
    I use a lot of R series and RIO devices for test and measurement systems. Mostly, the requirements for these are in the analogue domain, with relatively low speed requirements (10, 20 MHz) in the digital domain. My current favourite device is the sbRIO 9636, which is perfect for my sort of industrial processes - I can integrate it into a rackmount system without worrying about bulky cables, and usually it's able to do most of what I'm hoping it can.
    I have a new process coming up which will require a greater channel count in order to accommodate analogue and digital DUTs. In addition, the digital clocked outputs it will have to measure will be more like 50 MHz max. Because I'd like to stick to the sbRIO if I can, my ideal solution would be similar to a 9626 with a 9693 with additional C-Series modules, but with access to additional DIO on the RMC. And yes, I'm aware of what that system will look like (without the need for a custom RMC ) I'm pretty sure that even at RMC digital inputs, I can probably get to 44 MHz (with no headroom for Nyquist, which isn't so much of a problem). I know RIO devices often quote 80 MHz as the input speed, but I'm also aware that most advice seems to suggest applications beyond 5 to 10 MHz carefully consider timing.
    Previously, I discounted using a cRIO with 9403s for the high speed digital because of uncertainty over the channel-to-channel skew and propagation between the input pin and the FPGA. If I could be guaranteed a fixed latency between pin to FPGA with a finite but small skew, I would be comfortable with that, as I care most about missing edges and synchronisation between mutiple inputs from the same device. These days, especially with the newer Zynq chassis making them more attractive, it's worth revisiting...but still those questions remain about channel-to-channel skew.
    For what it's worth, PCI/PCIe devices are out due to a compatibility issue with other hardware. USB devices are out due to a lack of robustness within my test environment (whether due to lack of strain relief on most USB connections or because Windows likes killing USB devices from time to time). I can't justify moving to FlexRIO due to cost either. With access to a variety of R series and RIO devices, I know I can benchmark some of this, but it'd be nice to hear from someone vaguely in the know.
    So, after a long ramble, my questions:
    1. What's the channel-to-channel skew like on board level IDC DIO for sbRIO devices (4x on 9626, 28 on 9636)?
    2. What's the channel-to-channel skew like on C-Series modules through an RMC (e.g. a 9403 connected to a 9693)?
    3. What's the channel-to-channel skew like on C-Series modules through a cRIO chassis (e.g. a 9403 through a 9068)?
    4. Are there any other options I'm missing?
    I'd be happy to explain more about my process requirements away from the fora, if helpful.

    Whoops, had meant to use 9402 rather than 9403!
    Propagation delay is usually the latency between input pin to FPGA. If this is constant, this isn't a particular problem for edge counting / quadrature decoding - I just know that when my FPGA registers inputs as being high on A and low on B, that was what they were some time ago. In the case of the 9402, the spec is 17 ns typical, 55 ns max (although I've also seen 50 ns somewhere). This might be an issue if you're trying to synchronise with some other process, such as a high speed analogue measurement, but if it's constant you can account for the phase introduced.
    You should find, if you shove a 9402 or 9403 into a cRIO, that you can get in acquiring data at frequencies higher than 1/55n or 1/7u respectively - just that if you had an accurate way of measuring, you'd see level changes on those channels at some delay from the pin on the front of the module seeing a change.
    What's more important for quadrature decoding is that the channel-to-channel skew for a device is short, typically of the order of nanoseconds. If you look at a typical line receiver, like the Texas Instruments SN65LBC175A or the Maxim MAX3095 etc, you'll notice their channel-to-channel and device-to-device skews are indicated. For an encoder measurement, this affects the maximum frequency you can count edges for. I know I can use one quad SN65LBC175A RS-485 receiver to receive four channels to within 1 ns of each other, and I can use a second and it will be within 2 ns of the other device. The propagation errors are an order of magnitude greater, but in the main this isn't an issue for most people trying to just count edges as per a counter application.
    So...
    - Propagation delays don't stop you sampling faster (I believe a 9402 can be driven to 80 MHz, as can a 9403)
    - A constant propagation delay for a single device is acceptable, as I can usually adjust for the phase that this introduces if I really care about it
    - Channel-to-channel skew is the main limiting factor for measurements of count edges...but this isn't routinely published data for C-series modules or RIO devices
    If I could do everything straight into an RMC-mounted DIO or straight into the board level IO on an sbRIO, I'd probably be happy, but it would still be nice to know what the channel-to-channel skew is! As I've said, there's always the option of benchmarking any of the R-series/RIO combinations I own myself...but it would be nice to find the answer on a spec sheet somewhere.
    I've opened a SR before and not really received much in the way of an answer, but short of spamming certain members of the FPGA team on the forum I don't know if it's answerable at all?

  • .dmg created in 10.6 doesn't open in 10.4

    I made a .dmg from a folder using Disk Utility in 10.6.2, then uploaded it to Dropbox (using the latest beta version that supposedly handles resource forks correctly, if that has anything to do with this issue). My friend downloaded the .dmg onto his 10.4 Mac and when he double-clicks on the .dmg file he gets the "application not found" dialog. Is the 10.6 method of handling creator info at fault here? Any tips for getting this to work is appreciated.

    I'll ask him but, the times my Mac has done this the "suggested" application is blank.
    I am giving up on this, I think. I just downloaded the same file on my old G4 Powerbook running 10.4.11, using the same link to the Dropbox file, and it worked just fine. My friend is computer-illiterate and my attempts to help him are usually frustrating. Looks like I am going to burn the files on a CD and he's going to drive 1.5 hours to pick it up (he needs it tonight)! So much for modern technology!

  • Bit Locker Drive Encryption of Windows Vista

    Have just downloaded the Bios Upgrade version 2.2 (QG40 BIOS_W220.exe), but I inadvertently omitted to turn the 'Bit Locker Drive Encryption of Windows Vista' off first, as Toshiba had advised.
    Is there any corrections I can make to rectify this omission and ensure the G40 and the software operate correctly?

    Thanks for your prompt reply Jeka-Nn. But I have several further questions before going too far with the suggestions as I am not familiar with software modifications.
    1. What am I actually trying to do overall by downloading and using the suggested application.? Can you give me some overall picture of what I am trying to do?
    2. Does this fix the problem without me having to make choices--is it self sufficient/self-installing?
    3. Will it return the system to its correct operational settings before I downloaded the Bios upgrade?
    4. I have downloaded the application suggested, but when I try to open the file it sends up a message that reads:
    Error; this installer does not contain any compressed files. To create a self extracting installation package (with embedded files) run:
    "TrueCrypt Setup.exe" /p
    When I press OK, it simply reverts to the downloaded list which has the TrueCrypt v7.0 included, but nothing else happens.
    What do I need to do to fully install the application?
    5. Are there any other steps /inclusions that I need to make to fully correct my 'stupidity'?
    Sorry about all these questions but you can see I am a raw beginner at this work.
    With thanks, rons

  • Why is the finished DVD so low quality despite having chosen best quality for Pal. Compared to Pro Show Gold its rubbish !

    I am VERY disapointed with the quality of a finished DVD. As a proffesional weddig photographer the program quality is just not proffesional in quality. Compared to Pro Show Gold by Photodex which unfortunately is not available in MAC format. Can anyone offer advice and proove me wrong for deciding on MAC over PC !
    I have chosen the best quality and burnt using Toast 11

    Hi Nigel.
    nigelfromlewes wrote:
    What can I add other than I followed the instruction to the letter and have purchased a suggested
    Application Toast11 .
    You can add plenty (and probably remove a bit as well  ).  As you recompose your question(s), keep in mind:
    the respondents on this site are just users helping other users.  Apple sponsors the site (for its own ends) but does not participate in any of the discussions or provide any compensation of any kind to any participants.
    whining and threatening (typically: "Lightroom is looking better and better", but your "proove me wrong for deciding on MAC over PC !" is up there) lower your chance of receiving helpful advice.
    no one here knows what you are trying to do, what you have done, what the result was, how that differed from what you expected, or anything about your current software and hardware set-up other than what you tell us.  Being pointed and specific is a very good way to help us help you.
    What were you trying to do?
    What specific steps did you take to achieve it?
    How did the result differ from what you expected?
    What steps have you taken to achieve a different outcome?
    Did that work?
    What hardware and software are you using?

  • How to exchange big files between mac users through the internet?

    How can we send and receive big files between Mac users (apart from Dropbox) ?

    If you aren't on the same local network (which I assume you aren't), then the easiest solution is to use Google.
    If you simply google "sending large files" you will get hundreds of suggestions/applications.
    Ie Dropbox, Google, YouSendIt, FTP, etc

  • Finding and Eliminating Duplicates

    I'm sure there has already been discussion on this topic and I really did try to find something that specifically addrssed my issue but could not find any.
    So, with that being said: How do I find and eliminate duplicates in my iTunes?

    It is too tedious to go through a delete all the duplicates, one by one.
    Especially since to delete is not just a single click or key stroke.
    I am sure that I have read about or used a program that will do it automatically.
    Can anyone help me to remember the name of that program or suggest applications that will do this. I have thousands of duplicates and even many quadruplicates.

  • EPMA Communication Error

    HI John,
    I have created an EPMA application,validated and deployed successfully.After couple of minutes I clicked on the application(Finplan) in the Application Library, it throws a "Communication Error". I logged off from Workspace, logge in again and opened Application Library. Didn't even try to click on the Application and this time it shows the same error. The error is as below:
    Communication error:
    http://ibm:19000/calcmgr/conf/CalcMgrConfig.xml <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
    <html><head>
    <title>503 Service Temporarily Unavailable</title>
    </head><body>
    <h1>Service Temporarily Unavailable</h1>
    <p>The server is temporarily unable to service your
    request due to maintenance downtime or capacity
    problems. Please try again later.</p>
    <hr>
    <address>Apache/2.0.61 (Win32) mod_jk/1.2.25 Server at ibm Port 19000</address>
    </body></html>
    Please suggest what might be the reason for this error.
    Thanks in Advance

    Great John,
    Thanks for your quick response. Yes, Calc Manager was not up and started that. NOw it got no error.
    One more small doubt-> When I click Validate on the application in the application library it doesn't throw any error, where as when I click validate "ALL" it throws the below error.
    Is this also because of calc manager not runinng?? Please suggest
    "Application validation has been aborted.Could not Validate Calc Manager rules either the application is not deployed
    or connection to calc manager machine could not be established"
    Regards,
    Madan

Maybe you are looking for

  • How to execute a search by a click on a custom button (without the find dialog)

    Hello. Yesterday I've tried to create a custom search-dialog in a tabbed palette for Adobe Bridge. I need this custom dialog in a tabbed palette because I use Bridge as an image-database where I often need to search for keyword-combinations. It is no

  • Excel Services Reports v/s SSRS Reports Performance

    Hello All, I have used SSRS Reporting services to render Dashboard in PWA.  I have added the Report directly to the web page and then navigating to various SSRS reports with multiple data queries to multiple datasets.  This is making my Dashboard ext

  • Did an install of Flash Player for FF

    ... and much to my surprise it installed a 'Macaffee, screw your computer app'. I hate anything they provide because they assume everyone is stupid and try to control your system, ultimately leading to system instability. I hope Adobe stops this stup

  • Using different logins as per  the user

    if there are two officers then  a  screen heading should change dynamically and allow the user to give their comments depending upon which user has login into the sytsem.plz tell me if there is any code aur any navigation method for this type of requ

  • New external hard drive

    Hi. I'm looking to get my first external hard drive, and I'm considering this: http://www.newegg.com/Product/Product.aspx?Item=N82E16822186032 . Does this look o.k. for use with my iBook? Is Iomega a reliable brand? If not to either, could somebody p