Apps Patch application Help needed !

Hi guys
I have been asked a question that if i am applying a major patch family pack or roll up which after a considerable amount of time hangs/fails at a point . As a solution Oracle team suggest to apply another patch how should i proceed ?
pls help
thanks

First try resetting your iPHone, i.e., hold down the sleep and home buttons, ignore the off slider, wait for the Apple logo to appear and then let go.
If that does not work try acquiring a free app and see if the problem clears.
Finally, you may need to deauthorize your computer in iTunes, then Authorize it again and resync.

Similar Messages

  • Guys i need to get m itunes account unlocked its stopping mefor making in app purchases please help need to make a purchase within 30 minutes

    guys i need to get my itunes account unlocked its stopping mefor making in app purchases please help need to make a purchase within 30 minutes

    If you've tried to buy something and your've been charged for it (and it's not a temporary store holding charge) but haven't received it then try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • First Spring Application .Help needed.java.lang.ClassNotFoundException

    Hi
    i am new to this site and java Springs, I couldn't find seprate spring forum so i am posting my question here.
    i hope its not a problem.
    I am very new to Springs and struggeling through my first Spring MVC application. can any one help me here.
    Here is what i have done uptill now.
    WEB.XML
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
        <servlet>
            <servlet-name>HelloSpring</servlet-name>
            <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
            </servlet>
        <servlet-mapping>
            <servlet-name>HelloSpring</servlet-name>
            <url-pattern>*.htm</url-pattern>
        </servlet-mapping>
        <session-config>
            <session-timeout>      
                30
            </session-timeout>
        </session-config>
        <welcome-file-list>
         <welcome-file>
                index.jsp
            </welcome-file>
        </welcome-file-list>
    </web-app>
    HelloSpring-servlet.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN/EN" "http://www.springframework.org/dtd/spring-beans.dtd">
    <beans>
        <bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
            <property name="mappings">
                <props>
                    <prop key="/hello.htm">HelloSpringController</prop>
                </props>
            </property>
        </bean>
        <bean id = "HelloSpringController" class="HelloSpringController" />
    </beans>
    index.jsp
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>Hello Spring</title>
        </head>
        <body>
        <form action="hello.htm"  method="POST">
            What is your name?
            <input type="text" name="yourName" value="" />
        </form>
        </body>
    </html>
    welcome.jsp
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>Hello Spring</title>
        </head>
        <body>
        Hello <c:out value="${name}" />
        </body>
    </html>
    HelloSpringController.java (in default package)
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.springframework.web.servlet.ModelAndView;
    import org.springframework.web.servlet.mvc.Controller;
    public class HelloSpringController implements Controller {
        public HelloSpringController() {
        public ModelAndView handleRequest(HttpServletRequest httpServletRequest,
                                          HttpServletResponse httpServletResponse)
                                            throws Exception {
            String name = httpServletRequest.getParameter("yourName");
            return new ModelAndView("welcome.jsp", "name", name);
    }After Entering name in the text box of index.jsp, i am getting the following error.
    exception
    javax.servlet.ServletException: Servlet.init() for servlet HelloSpring threw exception
         org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
         org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
         org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
         org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
         org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
         java.lang.Thread.run(Unknown Source)
    root cause
    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'urlMapping' defined in ServletContext resource [/WEB-INF/HelloSpring-servlet.xml]: Initialization of bean failed; nested exception is org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [HelloSpringController] for bean with name 'HelloSpringController' defined in ServletContext resource [/WEB-INF/HelloSpring-servlet.xml]; nested exception is java.lang.ClassNotFoundException: HelloSpringController
         org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:451)
         org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:251)
         org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:156)
         org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:248)
         org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:160)
         org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:287)
         org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:352)
         org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:330)
         org.springframework.web.servlet.FrameworkServlet.initWebApplicationContext(FrameworkServlet.java:266)
         org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:236)
         org.springframework.web.servlet.HttpServletBean.init(HttpServletBean.java:126)
         javax.servlet.GenericServlet.init(GenericServlet.java:211)
         org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
         org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
         org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
         org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
         org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
         java.lang.Thread.run(Unknown Source)
    root cause
    java.lang.ClassNotFoundException: HelloSpringController
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1332)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1181)
         org.springframework.util.ClassUtils.forName(ClassUtils.java:201)
         org.springframework.beans.factory.support.AbstractBeanDefinition.resolveBeanClass(AbstractBeanDefinition.java:327)
         org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1066)
         org.springframework.beans.factory.support.AbstractBeanFactory.isBeanClassMatch(AbstractBeanFactory.java:1094)
         org.springframework.beans.factory.support.AbstractBeanFactory.isSingleton(AbstractBeanFactory.java:354)
         org.springframework.context.support.AbstractApplicationContext.isSingleton(AbstractApplicationContext.java:745)
         org.springframework.web.servlet.handler.AbstractUrlHandlerMapping.registerHandler(AbstractUrlHandlerMapping.java:255)
         org.springframework.web.servlet.handler.SimpleUrlHandlerMapping.registerHandlers(SimpleUrlHandlerMapping.java:125)
         org.springframework.web.servlet.handler.SimpleUrlHandlerMapping.initApplicationContext(SimpleUrlHandlerMapping.java:103)
         org.springframework.context.support.ApplicationObjectSupport.setApplicationContext(ApplicationObjectSupport.java:73)
         org.springframework.context.support.ApplicationContextAwareProcessor.postProcessBeforeInitialization(ApplicationContextAwareProcessor.java:72)
         org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:304)
         org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1168)
         org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:428)
         org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:251)
         org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:156)
         org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:248)
         org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:160)
         org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:287)
         org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:352)
         org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:330)
         org.springframework.web.servlet.FrameworkServlet.initWebApplicationContext(FrameworkServlet.java:266)
         org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:236)
         org.springframework.web.servlet.HttpServletBean.init(HttpServletBean.java:126)
         javax.servlet.GenericServlet.init(GenericServlet.java:211)
         org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
         org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
         org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
         org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
         org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
         java.lang.Thread.run(Unknown Source)Can anybody tell me what is am doing wrong .. it will be a greate help...
    thanks in advance

    vikash_sharma wrote:
    Thanks for another quick reply
    here is the folder structure of war.
    HelloSpring.war
    -----------Bin (empty)Wrong. No need for this. Remove it.
    ------------src/HelloSpringController.javaWrong. Source code doesn't go in WAR.
    ------------WEB-INF/classes(empty)there's your problem. the HelloSpringController.class has to be in there.
    /libWhere are the Spring JARs?
    /META-INF
    /tldDon't need /tld.
    ------------welcome.jsp
    ------------index.jspWhere's your web.xml? Where is the Spring configuration?
    You're still blank. Not even close to correct. You don't seem to know Java well enough to tackle this. You will NOT be able to accomplish this by asking questions here. Go back and learn more basics.
    %

  • E52 - Nokia SIP VoIP application - help needed

    Hi there,
    I am pretty new here.  I need the Nokia SIP VoIP application for my E52, something like SIP_VoIP_3_1_Settings_S60_3.... .sis
    Where can I get it?
    My problem is, that I can set up easily an VoIP service with my phone and it connects perfectly.  However, I can't use it with my E52 since I can't activitate it on my phone.  I would need the option:  > connection > Internet Tel. Settings   which is not there.
    I guess I need the Nokia SIP VoIP application, however I can't find a compatible version, and the SIP_VoIP_3_1_Settings_S60_5_x_v1_0_en.sis does not work.
    Thanx
    Caristeo

    Although I've never used it, I was able to install the SIP Settings program for my E73 (same OS and Feature Pack as your phone) from http://www.developer.nokia.com/info/sw.nokia.com/id/d476061e-90ca-42e9-b3ea-1a852f3808ec/SIP_VoIP_Se... .  (You need to make an account if you don't have one already.)  Download the "SIP VOIP 3.x" version.  I do have a Settings -> Connection -> SIP Settings option on my phone, as well as Control Panel -> Net Settings -> Advanced VOIP Settings.  Hope that helps.

  • Dreamweaver Patch Download - Help Needed

    Greetings - I desperately need to download the Dreamweaver
    8.0.2 Updater to resolve the IE issues with active content,
    rollovers, etc but can't get the download to work. I have tried RUN
    as well as SAVE and get either get a message saying something is
    wrong with the file and I need to try again OR I get problems with
    no signatures on the download.
    http://www.adobe.com/support/dreamweaver/downloads_updaters.html?pss=dw_8.0_win_en_full__D W_20040226#dw8
    I'm on XP with MSIE 7.0 (Friendly tip--if you didn't download
    7.0 yet DON'T DO IT!) if that's relevant.
    Any help would be greatly appreciated!
    Thanks!
    Scott

    Some people use a special application to manage their
    downloads and some
    times it is these that can cause an issue downloading from
    certain servers.
    Some examples of these manager would be like Download Studio,
    Internet
    Download Manager, or even AmazingDownload. If you are not
    using something
    like this then never mind.
    Have you cleared your browser's history and cache? I remember
    reading on
    these forums (think it may have been Murray) to try that and
    it did work for
    some. I may also be out of it right now and don't know what I
    am talking
    about. Recovering from some Diabetic related health issues.
    "OhioScott" <[email protected]> wrote in
    message
    news:eqlp9i$13j$[email protected]..
    > Baxter, Rob, thanks for the ideas. I had tried the
    download several
    > different
    > times and even turned off the virus protection, etc,
    during to see if that
    > helped. Each time, delete the download, try again. Tried
    both the 8.01 and
    > 8.02
    > with no better luck either time.
    >
    > Rob, I'm not sure I follow on not using a download
    manager... I think I
    > know
    > what you mean, but how would you get the download?
    >
    > I put a message in with support since I just bought the
    program but I'm
    > pretty
    > sure someone here will know the answer before support
    gets back to me.
    >
    > Thanks again!
    >
    > Scott
    >

  • Changing App Store Location - Help needed

    Hi, I have just been to USA and the App Store changed to the US and now I am back I am unable to update or download apps on my ipad as it says I have to switch to UK store.  I have tried the settings itunes and apps but I it states that it is UK store and to change i need to spend remaining £s from a gift card but unable to purchase anything as it is US store not UK, Any help will be appreciated.

    Change App Store
    1. Tap "Settings"
    2. Tap "iTunes & App Stores"
    3. Tap on your Apple ID
    4.Tap "View Apple ID"
    5. Enter your user name and password.
    6. Tap "Country/Region."
    7. Tap "Change Country/Region"
    8. Select the region where you are located.
    9. Tap "Done".

  • 'mymusic/itunes.exe is not a valid win32 application' **help needed** !!

    As i double click on the desktop shortcut to open itunes, i get an error message which is the following: 'mymusic/itunes.exe is not a valid win32 application'. I now cannot access itunes or any of my media/music!
    Background... I updated to the latest version of itunes, downloaded a few apps and music and re-synced my iPod touch. I then clicked on itunes store, and itunes just closed down and would then not reopen and now repeats the error message everytime.
    I have attempted to repair itunes by downloading the setup software again, i have also tried removing itunes from my pc with the intention to re-install all over again, however it wont let me uninstall itunes either!!
    Anybody have any suggestions?

    Can you open iTunes if you go to Program Files\iTunes and double click on iTunes.exe.
    If so, you can create a new short cut by right clicking on iTunes.exe and selecting Send to>>Desk top(create short cut)

  • Compiling Application Help Needed

    Ok, I try compiling with TextPad my first application from the application tutorial (http://developer.java.sun.com/developer/onlineTraining/new2java/divelog/part1) and i get this error:
    C:\Documents and Settings\Nancy Schott\My Documents\Matt's Stuff\Programming\Divelog\DiveLog.java:50: cannot resolve symbol
    symbol : class Welcome
    location: class divelog.DiveLog
    tabbedPane.addTab("Welcome", null, new Welcome(), "Welcome to Dive Log");
    (the error is at the new Welcome() spot)
    1 error
    but it is with all of the tabbedPane.addTab stuff. Could someone help me, because I can not figure it out and the troubleshooting thing at the end of it didn't help.
    I compile useing the default TextPad command. It is something like
    javac $FileDir $File
    which means that for this it is saying
    javac C:\My Documents\Matt's Stuff\Programming\Divelog DiveLog.java
    Please Help!! Thanks

    here is my code for divelog:
    package divelog;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class DiveLog
         private JFrame dlframe; //not assigned yet
         private JTabbedPane tabbedPane; //not assigned yet
         public DiveLog()
              // Create a frame object to add the application GUI components to.
              dlframe = new JFrame("A Java Technology Dive Log");
              // Closes from title bar
              //and from menu
              dlframe.addWindowListener(new WindowAdapter()
                   public void windowClosing(WindowEvent e)
                        System.exit(0);
         // Tabbed pane with panels for Jcomponents
         // Instantiate JTabbedPane with keyword new
         tabbedPane =new JTabbedPane(SwingConstants.LEFT);
         // Calls method to set color
         tabbedPane.setBackground(Color.blue);
         tabbedPane.setForeground(Color.white);
         populateTabbedPane();
         dlframe.getContentPane().add(tabbedPane);
         dlframe.pack();
         dlframe.setSize(765, 690);
         dlframe.setBackground(Color.white);
         dlframe.setVisible(true);
         }// Ends constructor
         // Method header
         private void populateTabbedPane()
              //creates tabs with titles
              tabbedPane.addTab("Welcome", null, new Welcome(), "Welcome to Dive Log");
              //tabbedPane.addTab("Diver Data", null, new Diver(), "Click here to enter diver data");
              //tabbedPane.addTab( "Log Dives", null, new Dives(), "Click here to enter dives");
              //tabbedPane.addTab("Statistics", null, new Statistics(), "Click here to calculate" + " dive statistics");
              //tabbedPane.addTab("Favorite Web Site", null, new WebSite(), "Click here to see a web site");
              //tabbedPane.addTab("Resources", null, new Resources(), "Click here to see a list " + "of resources");
         }//Ends populateTabbedPane method
         private void buildMenu()
              // Opens buildMenu method
              JMenuBar mb = new JMenuBar();
              JMenu menu = new JMenu("File");
              JMenuItem item = new JMenuItem("Exit");
              //Closes the application from the Exit menu item.
              item.addActionListener(new ActionListener()
                   // Opens addActionListener method
                   public void actionPerformed(ActionEvent e)
                        // Opens actionPerformed method
                        System.exit(0);
                   } // Closes actionPerformed method
              }); // Closes addActionListener method
              menu.add(item);
              mb.add(menu);
              dlframe.setJMenuBar(mb);
         } //Ends the buildMenu method
         public static void main(String[] args)
              DiveLog dl = new DiveLog();
    }//Ends Class
    And here is my welcome class
    package divelog;
    import javax.swing.*;
    import java.awt.*;
    public class Welcome extends JPanel
    { // Opens class
    } // Closes class

  • Installing Patch 9654983 help needed

    Hi I am trying to install patch 9654983.
    the read me says to take the following steps:
    unzip p9654983_11201_<platform>.zip
    cd 9654983
    opatch apply
    however ... when i try and run the command opatch apply, i get the following error:
    [matt@localhost 9654983]$ opatch apply
    bash: opatch: command not found
    Any ideas??

    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    Sorry im really new to both oracle and linux ... the following are the pre-installation instructions:
    2.3.1.1 Environments with ASM
    If you are installing the PSU to an environment that has Automatic Storage Management (ASM), note the following:
    For Linux x86 and Linux x86-64 platforms, install either (A) the bug fix for 8898852 and the Database PSU patch 9654983, or (B) the Grid Infrastructure PSU patch 9343627.
    For all other platforms, no action is required. The fix for 8898852 was included in the base 11.2.0.1.0 release.
    2.3.1.2 Environment Checks
    1.
    Ensure that the $PATH definition has the following executables: make, ar, ld, and nm.
    The location of these executables depends on your operating system. On many operating systems, they are located in /usr/ccs/bin, in which case you can set your PATH definition as follows:
    export PATH=$PATH:/usr/ccs/bin
    2.3.1.3 One-off Patch Conflict Detection and Resolution
    For an introduction to the PSU one-off patch concepts, see "Patch Set Updates Patch Conflict Resolution" in My Oracle Support Note 854428.1 Patch Set Updates for Oracle Products.
    The fastest and easiest way to determine whether you have one-off patches in the Oracle home that conflict with the PSU, and to get the necessary conflict resolution patches, is to use the Patch Recommendations and Patch Plans features on the Patches & Updates tab in My Oracle Support. These features work in conjunction with the My Oracle Support Configuration Manager. Recorded training sessions on these features can be found in Note 603505.1.
    However, if you are not using My Oracle Support Patch Plans, follow these steps:
    1.
    Determine whether any currently installed one-off patches conflict with the PSU patch as follows:
    unzip p9654983_11201_<platform>.zip
    opatch prereq CheckConflictAgainstOHWithDetail -phBaseDir ./9654983
    2.
    The report will indicate the patches that conflict with PSU 9654983 and the patches for which PSU 9654983 is a superset.
    Note that Oracle proactively provides PSU 11.2.0.1.2 one-off patches for common conflicts.
    3.
    Use My Oracle Support Note 1061295.1 Patch Set Updates - One-off Patch Conflict Resolution to determine, for each conflicting patch, whether a conflict resolution patch is already available, and if you need to request a new conflict resolution patch or if the conflict may be ignored.
    4.
    When all the one-off patches that you have requested are available at My Oracle Support, proceed with Section 2.3.2, "Patch Installation Instructions".
    1. im unaware if I have Automatic Storage Management (ASM),?
    2. how do i check to Ensure that the $PATH definition has the following executables: make, ar, ld, and nm.
    3. [matt@localhost 9654983]$ opatch prereq CheckConflictAgainstOHWithDetail -phBaseDir ./9654983
    Invoking OPatch 11.1.0.6.6
    Oracle Interim Patch Installer version 11.1.0.6.6
    Copyright (c) 2009, Oracle Corporation. All rights reserved.
    The argument "./9654983" does not exists.
    PREREQ session
    Argument(s) Error... Patch base location is not valid.
    Please check the arguments and try again.
    OPatch failed with error code 135
    [matt@localhost 9654983]$

  • Launching Browser From Swing Application - Help Needed

    Hi,
    I am opening a HTML file in Internet Explorer from my swing application.
    I am using the code given below
    private final static String WIN_FLAG = "url.dll,FileProtocolHandler";
    private final static String WIN_PATH = "rundll32";
    String cmd = WIN_PATH + " " + WIN_FLAG + " " + url;
    // url is HTML file Path
    Process p = Runtime.getRuntime().exec( cmd );
    The HTML file is opening up,but it always opens behind the swing application,that makes me every time to maximize the HTML file after it being opened up.
    I want to open it in front of the Swing Application.
    Any Help Please ?
    - Manikandan

    Browser Utility - Class to launch a URL in a web browser in
    a platform independent manner. Includes an optional swing
    GUI allowing user customization. [Open Source - GPL]
    http://ostermiller.org/utils/Browser.html
    BrowserLauncher - Open the system web browser with
    particular attention paid to various Macintosh systems.
    (Freeware)
    http://browserlauncher.sourceforge.net/
    Java World - With a little platform-specific Java code, you
    can easily use your system's default browser to display any
    URL in Windows or Unix.
    http://www.javaworld.com/javaworld/javatips/jw-javatip66.html
    JConfig - Class Libraries that allow a URL to be launched in
    a browser on Windows, Unix, or Macintosh. [Commercial]
    http://www.tolstoy.com/samizdat/jconfig.html
    Apple - MRJFileUtils.openURL() not implemented in Mac OS X.
    http://developer.apple.com/techpubs/macosx/ReleaseNotes/JavaGMWebReleaseNotes.html#MRJToolkit
    Apple - How one would open a URL in a web browser on a
    Macintosh.
    http://developer.apple.com/qa/java/java12.html

  • IPhoto broken - Empty window when I open the application - Help needed

    Hi Guys,
    Since my upgrade to Snow Leopard my iPhoto 09 has been completely broken. What I get when I start it up is an empty window. No pictures on the right pane and no menus on the left pane. I read many threads about iPhoto issues, and so I have tried to rebuild the library, reinstall iPhoto from the disk I got with my mac. Still the same problem: On startup, iPhoto opens with a completely blank window. All I have are the three buttons at the bottom left side of the window (+, info and enlarge). Only if I click "+" to add a new album the menus on the left pane (events, photos...) appear. A few clicks on these menus and iPhoto crashes. All this, done with a new, clean library. I moved the old one, and keep it for the day I'll get iPhoto to work again. Hope you guys can help. This is painfully frustrating.

    Thanks for help Terrence
    I am using Suitcase Fusion 2 and just activitating Helvetica Neue in Suitcase seemed to fix this problem I have had for several months.
    I highly recommend doing the activation in Suitcase instead of just droping it into the System Fonts folder. This will allow for Suitcase to activate or deactivate the font. If you put the font into one of your folders, Suitcase can not deactivate, which might be necessary if your job uses a different version of Helvetica Neue.

  • Database patch installation help needed

    Dear All,
    I have downloaded a patch (PHSS_37042) for HP-UX v3 for Oracle Database 11g r2. This patch is in text format instead of a tar. Kindly guide me how could I able to install this patch because there is no installation instruction available on the patch. (File attached)
    Regards,

    Its inside ur txt file (:
    Pretty simple
    1. Back up your system before installing a patch.
    2. Login as root.
    3. Copy the patch to the /tmp directory.
    4. Move to the /tmp directory and unshar the patch:
    cd /tmp
    sh PHSS_37042
    5. Run swinstall to install the patch:
    swinstall -x autoreboot=true -x patch_match_target=true \
    -s /tmp/PHSS_37042.depot
    By default swinstall will archive the original software in
    /var/adm/sw/save/PHSS_37042. If you do not wish to retain a
    copy of the original software, include the patch_save_files
    option in the swinstall command above:
    -x patch_save_files=false
    WARNING: If patch_save_files is false when a patch is installed,
    the patch cannot be deinstalled. Please be careful
    when using this feature.
    For future reference, the contents of the PHSS_37042.text file is
    available in the product readme:
    swlist -l product -a readme -d @ /tmp/PHSS_37042.depot
    http://forums13.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1307190307134+28353475&threadId=1414556

  • CPS patch upgrade help needed

    Hello,
    We are planning to upgrade CPS Version: Build: M26.8 to CPS Version: Build: M26.19.
    So if anybody who did this earlier can post the links, idea how to do this.
    It would be great help.........
    tks
    Anju

    Hi Anju,
    Deploying the new version using JSPM or SDM, that should do everything for you (stopping the current installation, upgrading the central installation and then starting everything again).
    Regards,
    Anton.

  • How to check whethere apps patch need downtime or not?

    hi,
    i am going to apply in Oracle 11i.how to that patch need down time or not?
    Plz help
    Thanks in advance

    Hi,
    Check the patch README file and it should tell you. For the application patches, you need to enable maintenance mode in general before applying any patch. You may use "options=hotpatch" to apply the patch online without enabling maintenance mode but it depends on what patch you are applying, the size of the patch, and modules it is affecting. For patchsets, family packs, minipacks, and AD/FND patches, it is better you enable maintenance mode before applying the patch. For small patches which only need to replace a package with a new one you can apply the patch online.
    The best practice is to try your patching on a TEST instance first and see how it works. Please remember you would need to shutdown the application services on Windows if relinking executable files is required, otherwise the patch will fail and you will have to run it again after stopping the services.
    Maintenance Mode
    http://forums.oracle.com/forums/search.jspa?threadID=&q=%22Maintenance+Mode%22&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    hotpatch
    http://forums.oracle.com/forums/search.jspa?threadID=&q=hotpatch&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • I am developing a flex web application which needs to access Other domain ,is there any other way other than cross domain policy available ? please help

    i am developing a flex web application which needs to access Other domain (Payment Gateway API),is there any other way other than cross domain policy available ? please help.
    we donot have access other domain thats why we want other solution..

    All the paths to CFCs are the same in my live production site.  Can you be more specific as to what you mean by "RemoteClass aliases in your AS Classes and CFCs (if any) are correct."?  How will the app know that the CFC is on http://myLiveSite.com instead of http://myDevSite.com?  The only line of code that I have noticed that points to a URL is the endpoint in a file called _Super_XXX.as.  And at the top of that file it says that the file is not meant for editting.
    To clarify...I see your app/code all exists on a server access via a web browser so I can understand that everything still works when deployed.  Mine is a mobile app so when I am developing and testing on my local computer the URL points to my local development machine.  However when I deploy it to a mobile device like a tablet and run the app, it needs to be able to access a cfc on a remote server via a different URL ie. my http://myLiveSite.com/myCFC.cfc instead of http://localhost/myCFC.cfc
    Thanks for your help!  I will now take a look at your thread.
    Message was edited by: ace0215

Maybe you are looking for

  • Just upgraded to PS CS5 from CS3 and LR will not recognize CS5 as external editor

    I just upgraded from PS CS3 to CS5 then uninstalled CS3.  LR 2.7 is not recognizing PS (CS5) as the default external editor and I don't get the "edit as smart object in PS", "Open as layers in Photoshop", etc- options  when I right-click an image and

  • Any way to sync hotmail with outlook on my mbp?

    any way to sync hotmail with outlook on my mbp?

  • Can Oracle 10g and Oracle 9i coexist and run together in one machine

    Dear Friends, I have installed Oracle 10g on my machine which already had Oracle 9i - 9.1.2.0 Release. Now the problem is that when i try to create a service name it gives me this error- ORA-12514: TNS:listener does not currently know of service requ

  • Mobile me email doesn't work for Find My IPhone app

    I've had an apple ID for years but never had an email address with me.com and my [email protected] doesn't work. In the settings for the mobile setup on my iPhone 4 it says it has to have me.com at the end. I dont know if i need to get an email setup

  • ICloud and Photos

    In a recent keynote address, Apple executives demonstrated MacOS X Yosemite, new features for iCloud, and Photos. My iPhoto library currently holds over 53,000 photos, totaling over 100 gigabytes in size. Apple's execs seem to be saying one could use