Publish problem, and a special request

Hi,
I'm having some problems publishing my app. I made my first
RIA using php and mysql for the first time. If I test the app
within flash, everything works great, but when I test it from the
browser not all data gets to mySQL. The weird thing is that
sometimes it works, sometimes it doesn't. I can't understand if
it's somenthing wrong with my flash code, or php side, or if it's
some option I'm missing in the publish settings. I was wondering if
any of the gurus around here could check my code. I'm not really a
programmer and I would love to have some feedback from someone who
really knows how to write this stuff, not only in order to fix this
little problem I have (I'm sure it's something really stupid), but
also to understand if I'm my coding is ok (i'm completely
self-taught). I prefer not to post the code online, because it's a
project that hopefully will be used in my college and I don't want
it to go around (even though I bet that no one would really be
interested in my app). So, if anyone out there is so kind to help
me, I can send the files I'm working with. I wish I could offer
some money, but I'm not getting paid for this work, I'm just doing
it for the glory. Thank you for your time.
-Luca

Where exactly in the code does the error occur? That would help determine much better where the error is originating.
Also, it doesn't look like you have all the code where you instantiate these methods (in particular, the quicksort2 method). Could you provide these, or at least a dumbed-down version that doesn't include anything that might be proprietary?

Similar Messages

  • Problem with Non JSF Request to JSF Page

    Hi All,
    I am working on dynamic controls generation based on the request come from non jsf page
    For the first request, pageworks perfectly. but when we go for second request, it is not rendering and I am getting same old page.
    What I have identified is if I have 2 pages as JSF, application is not giving any problem.
    For this I have written small test application contains both JSF pages only.
    page1 contains 3 submit buttons.
    When submit buttons are clicked based on the request, I get, am able to see the dynamic controls.
    SO there is no problem with JSF PAGE to JSF Page Communication
    Now I have done some changes in First JSF page. Instead of submitting directly I am submitting the page through JavaScript which is nonb JSF request. There I am facing the problem and based on requested qaction I am not able to see correct rendered page based on the requested action.
    Any Idea why it is giving problem for non JSF requests??
    Thanks
    Sudhakar

    For Your Convenience in understanding the problem
    I am pasting entire test code
    Page 1 -- (here page2 is Page1 and Page1 is page2 - some naming convention errors :) )
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page">
        <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
        <jsp:text><![CDATA[
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    ]]></jsp:text>
        <f:view>
            <html lang="en-US" xml:lang="en-US">
                <head>
                    <meta content="no-cache" http-equiv="Cache-Control"/>
                    <meta content="no-cache" http-equiv="Pragma"/>
                    <title>Page2 Title</title>
                    <link href="resources/stylesheet.css" rel="stylesheet" type="text/css"/>
                </head>
                <body style="-rave-layout: grid">
                    <h:form binding="#{Page2.form1}" id="form1">
    <!-- Non JSF REquests -->
                        <h:commandButton action="#{Page2.button1_action}" binding="#{Page2.button1}" id="button1" style="left: 48px; top: 48px; position: absolute" value="Submit" onclick="document.forms['form1'].action='faces/Page2.jsp?id=1'; document.forms['form1'].submit(); return false;"/>
                        <h:commandButton action="#{Page2.button2_action}" binding="#{Page2.button2}" id="button2" style="left: 48px; top: 96px; position: absolute" value="Submit" onclick="document.forms['form1'].action='faces/Page2.jsp?id=2'; document.forms['form1'].submit(); return false;"/>
                        <h:commandButton action="#{Page2.button3_action}" binding="#{Page2.button3}" id="button3" style="left: 48px; top: 144px; position: absolute" value="Submit" onclick="document.forms['form1'].action='faces/Page2.jsp?id=3'; document.forms['form1'].submit(); return false;"/>
    <!-- this  is JSF request -->
                        <!--
                        <h:commandButton action="#{Page2.button1_action}" binding="#{Page2.button1}" id="button1" style="left: 48px; top: 48px; position: absolute" value="Submit" />
                        <h:commandButton action="#{Page2.button2_action}" binding="#{Page2.button2}" id="button2" style="left: 48px; top: 96px; position: absolute" value="Submit" />
                        <h:commandButton action="#{Page2.button3_action}" binding="#{Page2.button3}" id="button3" style="left: 48px; top: 144px; position: absolute" value="Submit" />-->
                    </h:form>
                </body>
            </html>
        </f:view>
    </jsp:root>Page1 Bean
    * Page2.java
    * Created on June 25, 2005, 11:08 AM
    * Copyright user
    package webapplication8;
    import javax.faces.*;
    import com.sun.jsfcl.app.*;
    import javax.faces.component.html.*;
    import javax.faces.context.ExternalContext;
    import javax.faces.context.FacesContext;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    public class Page2 extends AbstractPageBean {
        // <editor-fold defaultstate="collapsed" desc="Creator-managed Component Definition">
        private int __placeholder;
        private HtmlForm form1 = new HtmlForm();
        public HtmlForm getForm1() {
            return form1;
        public void setForm1(HtmlForm hf) {
            this.form1 = hf;
        private HtmlCommandButton button1 = new HtmlCommandButton();
        public HtmlCommandButton getButton1() {
            return button1;
        public void setButton1(HtmlCommandButton hcb) {
            this.button1 = hcb;
        private HtmlCommandButton button2 = new HtmlCommandButton();
        public HtmlCommandButton getButton2() {
            return button2;
        public void setButton2(HtmlCommandButton hcb) {
            this.button2 = hcb;
        private HtmlCommandButton button3 = new HtmlCommandButton();
        public HtmlCommandButton getButton3() {
            return button3;
        public void setButton3(HtmlCommandButton hcb) {
            this.button3 = hcb;
        // </editor-fold>
        public Page2() {
            // <editor-fold defaultstate="collapsed" desc="Creator-managed Component Initialization">
            try {
            } catch (Exception e) {
                log("Page2 Initialization Failure", e);
                throw e instanceof javax.faces.FacesException ? (FacesException) e: new FacesException(e);
            // </editor-fold>
            // Additional user provided initialization code
        protected webapplication8.ApplicationBean1 getApplicationBean1() {
            return (webapplication8.ApplicationBean1)getBean("ApplicationBean1");
        protected webapplication8.SessionBean1 getSessionBean1() {
            return (webapplication8.SessionBean1)getBean("SessionBean1");
         * Bean cleanup.
        protected void afterRenderResponse() {
        public String button1_action()  throws Exception{
            // TODO Following code was replaced by static navigation
           getSessionBean1().setId(1);       
          /* ExternalContext ctx=(ExternalContext)FacesContext.getCurrentInstance().getExternalContext();
           HttpServletRequest req=(HttpServletRequest)ctx.getRequest();
           HttpServletResponse res=(HttpServletResponse)ctx.getResponse();
           res.sendRedirect("http://localhost:18080/webapplication8/faces/Page2.jsp");
           return null;*/
            return "case1";
        public String button2_action()  throws Exception{
            // TODO Following code was replaced by static navigation
                getSessionBean1().setId(2);
          /*  ExternalContext ctx=(ExternalContext)FacesContext.getCurrentInstance().getExternalContext();
           HttpServletRequest req=(HttpServletRequest)ctx.getRequest();
           HttpServletResponse res=(HttpServletResponse)ctx.getResponse();
           res.sendRedirect("http://localhost:18080/webapplication8/faces/Page2.jsp");
           return null;*/
            return "case2";
        public String button3_action() throws Exception{
            // TODO Following code was replaced by static navigation
                getSessionBean1().setId(3);
            /*    ExternalContext ctx=(ExternalContext)FacesContext.getCurrentInstance().getExternalContext();
           HttpServletRequest req=(HttpServletRequest)ctx.getRequest();
           HttpServletResponse res=(HttpServletResponse)ctx.getResponse();
           res.sendRedirect("http://localhost:18080/webapplication8/faces/Page2.jsp");
            return null;*/
            return "case3";
    }page 2
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page">
        <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
        <jsp:text><![CDATA[
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    ]]></jsp:text>
        <f:view>
            <html lang="en-US" xml:lang="en-US">
                <head>
                    <meta content="no-cache" http-equiv="Cache-Control"/>
                    <meta content="no-cache" http-equiv="Pragma"/>
                    <title>Page1 Title</title>
                    <link href="resources/stylesheet.css" rel="stylesheet" type="text/css"/>
                </head>
                <body style="-rave-layout: grid">
                    <h:form binding="#{Page1.form1}" id="form1">
                        <h:panelGrid binding="#{Page1.gridPanel1}" id="gridPanel1" style="left: 96px; top: 48px; position: absolute"/>
                        <f:selectItems binding="#{Page1.radioButtonList1SelectItems1}" id="radioButtonList1SelectItems1"/>
                        <h:commandButton action="#{Page1.button1_action}" binding="#{Page1.button1}" id="button1"
                            style="left: 384px; top: 120px; position: absolute" value="Submit"/>
                        <h:commandButton action="#{Page1.button1_action}" binding="#{Page1.button1}" id="button1" style="left: 384px; top: 72px; position: absolute" value="Submit"/>
                        <h:outputLink binding="#{Page1.hyperlink1}" id="hyperlink1" style="left: 480px; top: 216px; position: absolute" value="http://www.sun.com/jscreator">
                            <h:outputText binding="#{Page1.hyperlink1Text}" id="hyperlink1Text" value="Hyperlink"/>
                        </h:outputLink>
                        <h:commandLink binding="#{Page1.linkAction1}" id="linkAction1" style="left: 456px; top: 264px; position: absolute">
                            <h:outputText binding="#{Page1.linkAction1Text}" id="linkAction1Text" value="Link Action"/>
                        </h:commandLink>
                    </h:form>
                </body>
            </html>
        </f:view>
    </jsp:root>page2 bean
    * Page1.java
    * Created on June 25, 2005, 10:52 AM
    * Copyright user
    package webapplication8;
    import javax.faces.*;
    import com.sun.jsfcl.app.*;
    import com.sun.jsfcl.data.DefaultSelectItemsArray;
    import java.util.Vector;
    import javax.faces.component.UIComponent;
    import javax.faces.component.UISelectItems;
    import javax.faces.component.html.*;
    import javax.faces.context.ExternalContext;
    import javax.faces.context.FacesContext;
    import javax.faces.el.ValueBinding;
    import javax.faces.model.SelectItem;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public class Page1 extends AbstractPageBean {
        // <editor-fold defaultstate="collapsed" desc="Creator-managed Component Definition">
        private int __placeholder;
        private HtmlForm form1 = new HtmlForm();
        public HtmlForm getForm1() {
            return form1;
        public void setForm1(HtmlForm hf) {
            this.form1 = hf;
        private HtmlPanelGrid gridPanel1 = new HtmlPanelGrid();
        public HtmlPanelGrid getGridPanel1() {
            return gridPanel1;
        public void setGridPanel1(HtmlPanelGrid hpg) {
            this.gridPanel1 = hpg;
        private HtmlCommandButton button1 = new HtmlCommandButton();
        public HtmlCommandButton getButton1() {
            return button1;
        public void setButton1(HtmlCommandButton hcb) {
            this.button1 = hcb;
        private HtmlOutputLink hyperlink1 = new HtmlOutputLink();
        public HtmlOutputLink getHyperlink1() {
            return hyperlink1;
        public void setHyperlink1(HtmlOutputLink hol) {
            this.hyperlink1 = hol;
        private HtmlOutputText hyperlink1Text = new HtmlOutputText();
        public HtmlOutputText getHyperlink1Text() {
            return hyperlink1Text;
        public void setHyperlink1Text(HtmlOutputText hot) {
            this.hyperlink1Text = hot;
        private HtmlCommandLink linkAction1 = new HtmlCommandLink();
        public HtmlCommandLink getLinkAction1() {
            return linkAction1;
        public void setLinkAction1(HtmlCommandLink hcl) {
            this.linkAction1 = hcl;
        private HtmlOutputText linkAction1Text = new HtmlOutputText();
        public HtmlOutputText getLinkAction1Text() {
            return linkAction1Text;
        public void setLinkAction1Text(HtmlOutputText hot) {
            this.linkAction1Text = hot;
        // </editor-fold>
        public Page1() {
            // <editor-fold defaultstate="collapsed" desc="Creator-managed Component Initialization">
            try {
                ExternalContext ctx=(ExternalContext)FacesContext.getCurrentInstance().getExternalContext();
                HttpServletRequest req=(HttpServletRequest)ctx.getRequest();
                HttpServletResponse res=(HttpServletResponse)ctx.getResponse();
                String id=req.getParameter("id");
                if(id!=null)
                    getSessionBean1().setId(Integer.parseInt(id));
                if (getSessionBean1().getId()==1) {
                    addTextBox();
                else if (getSessionBean1().getId()==2) {
                    addCheckBox();
                    addRadio();
                else if (getSessionBean1().getId()==3) {
                    addRadio();
                   // addCheckBox();
            } catch (Exception e) {
                log("Page1 Initialization Failure", e);
                throw e instanceof javax.faces.FacesException ? (FacesException) e: new FacesException(e);
            // </editor-fold>
            // Additional user provided initialization code
        protected webapplication8.ApplicationBean1 getApplicationBean1() {
            return (webapplication8.ApplicationBean1)getBean("ApplicationBean1");
        protected webapplication8.SessionBean1 getSessionBean1() {
            return (webapplication8.SessionBean1)getBean("SessionBean1");
         * Bean cleanup.
        protected void afterRenderResponse() {
        private void addRadio() {
            HtmlPanelGrid gridPanel = new HtmlPanelGrid();
            UIComponent parent = gridPanel1;
            HtmlOutputText outputText = new HtmlOutputText();
            outputText.setValue("Some Desc");
            outputText.setId("somedesc2");
            HtmlSelectOneRadio checkBox = new HtmlSelectOneRadio();
            checkBox.setBorder(0);
            checkBox.setLayout("pageDirection");
            checkBox.setId("a3");
            UISelectItems items = new UISelectItems();
            DefaultSelectItemsArray objArray =new DefaultSelectItemsArray();
            vectDefaultSelectItemsArray.add(objArray);
            arrays=(DefaultSelectItemsArray[])vectDefaultSelectItemsArray.toArray(new DefaultSelectItemsArray[vectDefaultSelectItemsArray.size()]);
            int size =arrays.length;
            arrays[size - 1].clear();
            for (int i =0;i<10;i++) {
                arrays[size - 1].add(new SelectItem(""+i+"",""+i));
            // array.setItems(new String[] {"Yes","No" });
            items.setValueBinding("value",getValueBinding("#{Page1.arrays["+(size-1)+"]}"));
            checkBox.getChildren().add(items);
            gridPanel.getChildren().add(outputText);
            gridPanel.getChildren().add(checkBox);
            parent.getChildren().add(gridPanel);
        private void addCheckBox() {
            HtmlPanelGrid gridPanel = new HtmlPanelGrid();
            UIComponent parent = gridPanel1;
            HtmlOutputText outputText = new HtmlOutputText();
            outputText.setValue("Some Desc");
            outputText.setId("somedesc1");
            HtmlSelectManyCheckbox checkBox = new HtmlSelectManyCheckbox();
            checkBox.setBorder(0);
            checkBox.setLayout("pageDirection");
            checkBox.setId("a2");
            UISelectItems items = new UISelectItems();
            DefaultSelectItemsArray objArray =new DefaultSelectItemsArray();
            vectDefaultSelectItemsArray.add(objArray);
            arrays=(DefaultSelectItemsArray[])vectDefaultSelectItemsArray.toArray(new DefaultSelectItemsArray[vectDefaultSelectItemsArray.size()]);
            int size =arrays.length;
            arrays[size - 1].clear();
            for (int i =0;i<10;i++) {
                arrays[size - 1].add(new SelectItem(""+i+"",""+i));
            // array.setItems(new String[] {"Yes","No" });
            items.setValueBinding("value",getValueBinding("#{Page1.arrays["+(size-1)+"]}"));
            checkBox.getChildren().add(items);
            gridPanel.getChildren().add(outputText);
            gridPanel.getChildren().add(checkBox);
            parent.getChildren().add(gridPanel);
        private void addTextBox() {
            HtmlPanelGrid gridPanel = new HtmlPanelGrid();
            UIComponent parent = gridPanel1;
            HtmlOutputText outputText = new HtmlOutputText();
            outputText.setValue("Some Description for Control Text Box");
            outputText.setId("somedesc");
            HtmlInputText textField = new HtmlInputText();
            //  textField.setId("textField_"+control.getId());
            textField.setId("a1");
            HtmlOutputText outputText1 = new HtmlOutputText();
            hyperlink1Text.setValue(" ");
            hyperlink1Text.setStyleClass("bodyText");
            textField.setStyleClass("frmObjects");
            gridPanel.setColumns(3);
            gridPanel.getChildren().add(outputText);
            gridPanel.getChildren().add(hyperlink1Text);
            gridPanel.getChildren().add(textField);
            parent.getChildren().add(gridPanel);
        private DefaultSelectItemsArray array = new DefaultSelectItemsArray();
        public DefaultSelectItemsArray getArray() {
            return array;
        public void setArray(DefaultSelectItemsArray dsia) {
            this.array = dsia;
        private Vector vectDefaultSelectItemsArray = new Vector();
        private DefaultSelectItemsArray[] arrays = new DefaultSelectItemsArray[10];
        public DefaultSelectItemsArray[] getArrays() {
            return arrays;
        public void setArrays(DefaultSelectItemsArray[]dsia) {
            this.arrays = dsia;
        private UISelectItems radioButtonList1SelectItems1 = new UISelectItems();
        public UISelectItems getRadioButtonList1SelectItems1() {
            return radioButtonList1SelectItems1;
        public void setRadioButtonList1SelectItems1(UISelectItems uisi) {
            this.radioButtonList1SelectItems1 = uisi;
        private ValueBinding getValueBinding(String expression) {
            return     FacesContext.getCurrentInstance().getApplication().createValueBinding(expression);
        public String button1_action() {
            // TODO Replace with your code
            return "case1";
    }my navigation.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
                                  "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config>
        <navigation-rule>
            <from-view-id>/Page2.jsp</from-view-id>
            <navigation-case>
                <from-outcome>case1</from-outcome>
                <to-view-id>/Page1.jsp</to-view-id>
            </navigation-case>
            <navigation-case>
                <from-outcome>case2</from-outcome>
                <to-view-id>/Page1.jsp</to-view-id>
            </navigation-case>
            <navigation-case>
                <from-outcome>case3</from-outcome>
                <to-view-id>/Page1.jsp</to-view-id>
            </navigation-case>
        </navigation-rule>
        <navigation-rule>
            <from-view-id>/Page1.jsp</from-view-id>
            <navigation-case>
                <from-outcome>case1</from-outcome>
                <to-view-id>/Page2.jsp</to-view-id>
            </navigation-case>
        </navigation-rule>
    </faces-config>my managed beans xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
                                  "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config>
        <managed-bean>
            <managed-bean-name>Page1</managed-bean-name>
            <managed-bean-class>webapplication8.Page1</managed-bean-class>
            <managed-bean-scope>request</managed-bean-scope>
        </managed-bean>
        <managed-bean>
            <managed-bean-name>SessionBean1</managed-bean-name>
            <managed-bean-class>webapplication8.SessionBean1</managed-bean-class>
            <managed-bean-scope>session</managed-bean-scope>
        </managed-bean>
        <managed-bean>
            <managed-bean-name>ApplicationBean1</managed-bean-name>
            <managed-bean-class>webapplication8.ApplicationBean1</managed-bean-class>
            <managed-bean-scope>application</managed-bean-scope>
        </managed-bean>
        <managed-bean>
            <managed-bean-name>Page2</managed-bean-name>
            <managed-bean-class>webapplication8.Page2</managed-bean-class>
            <managed-bean-scope>request</managed-bean-scope>
        </managed-bean>
        <managed-bean>
    </faces-config>

  • Have published iweb site for five years with no problems and just opened a new site and get - 404: Page not found  This error is generated when there was no web page with the name you specified at the web site.-is the problem with iweb or with hosting?  T

    I am sorry if thie is republished-My first time doing this and I am not sure what goes where and where to hear feedback.
    Have published iweb site for five years with no problems and just opened a new site and get -
    404: Page not found 
    This error is generated when there was no web page with the name you specified at the web site.-
    Troubleshooting suggestions:
    Ensure the page you are linking to exists in the correct folder.
    Check your file name for case sensitivity . Index.htm is not the same as index.htm!
    Temporarily disable any rewrite rules by renaming your .htaccess file if it exists
    is the problem with
    iweb or with hosting?
    One Apple tech started to fix Iweb and had to end session and the next said problem with hosting at Network Solutions as it published
    to local folder. NWS has checked sttting a few times-
    Any help would be extremely appreciated as trying to fix this for about five weeks
    Thanks VG
    <Email Edited by Host>

    It's a really bad idea to post your email address - it's an invitation to spam - and I've asked the Hosts to remove it. (Even though I've now noticed you mis-spelled it! - anyway, never post your address in a forum.)
    You have a site here: http://virginiagordon.com/www.virginiagordon.com/WELCOME.html
    If that's not the page you are having trouble with, what is that page's URL?

  • Spanish Dictionary and problems with spanish special characters

    I need a spanish dictionary, with all spanish words. I know that your priority are france, spanish, germany and Italy. So, the component has problems with spanish special words, this problem was notified before.
    Have you ready something? A new version?
    Thank you for your time.

    For the special character issue, you can check the reference:
    http://forums.adobe.com/message/2430501

  • I have never used my mac for desktop publishing before and am having some problems.  This sounds really dumb, but I can't figure out how to put a border around a text box.  Also, how do you edit the border, i.e. border color, thickness, etc. Help!

    I have never used my mac for desktop publishing before and am running into some real problems.  How do you put a border around a text box?  Can you edit the border - color, thickness, etc.?  Help!

    I think the best solution is to read Pages documentation, go to Help and you have a long list of options. Pages is capable of quite sophisticated things, some features are above Nisus or Mellel, so it is not so simple to summarize things in a few lines.

  • I HAVE A BIG PROBLEM I HAVE NOT BEEN ABLE TO RECOVER THE ANSWERS OF SECURITY SINCE THE MAIL THAT APPEARS TO DO THIS MEAN I NEED TO CHANGE THE OTHER SHOULD I DO FOR THE TRUTH WILL MAKE A PURCHASE AND ME THE REQUESTS, AS IS A NEW PHONE EXPECT AN ANSWER

    I HAVE A BIG PROBLEM I HAVE NOT BEEN ABLE TO RECOVER THE ANSWERS OF SECURITY SINCE THE MAIL THAT APPEARS TO DO THIS MEAN I NEED TO CHANGE THE OTHER SHOULD I DO FOR THE TRUTH WILL MAKE A PURCHASE AND ME THE REQUESTS, AS IS A NEW PHONE EXPECT AN ANSWER PROMPT AND POSITIVE
    so I get looks but that is not my email recovery can help you reset your security information by sending a message to your email recovery: j ••••• @ mail.com

    You need to ask Apple to reset your security questions; this can be done by clicking here and picking a method, or if your country isn't listed, filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (111384)

  • HT201210 When I try to restore my ipod, I get a dialogue box that pops up that says the restore has failed because the requested resource cannot be found. What is the problem, and how can I fix it?

    When I try to restore my ipod, I get a dialogue box that pops up that says the restore has failed because the requested resource cannot be found. What is the problem, and how can I fix it?

    Hi IG viper,
    Placing your iPod into recovery mode should allow you to successfully restore the device.
    You might see these error messages if any of these are true:
    Your device has a beta version of iOS.
    You're trying to install an earlier version of iOS (downgrading).
    Your device has unauthorized modifications to iOS, also called "jailbreaking."
    Use recovery mode to restore your device to the latest version of iOS.
    Resolve iOS update and restore errors
    http://support.apple.com/en-us/TS3694
    Sincerely,
    Allen

  • HT201412 My ipad has a software problem and does not work, request that it is loaded the software and there is no way that the operating system loads, is not restored. WHAT SHOULD I DO?

    My ipad has a software problem and does not work, request that it is loaded the software and there is no way that the operating system loads, is not restored. WHAT SHOULD I DO?

    This is an iPad user to user forum, so you are not addressing Apple. Depending on how many user helpers are on-line, it may take several hours, or longer, to get a response.
    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased.
    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    Home button not working or unresponsive, fix
    http://appletoolbox.com/2013/04/home-button-not-working-or-unresponsive-fix/
    Fixing an iPad Home Button
    http://tinyurl.com/om6rd6u
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
     Cheers, Tom

  • Problem in opening 'Find Service Request' and 'Create Service Request' HTML forms

    Hi,
    I  am working on creating some date for EBS Service, and I am unable to open 'Find Service Request' and 'Create Service Request' HTML forms.
    I keep getting the error message :
    Oracle error - 20001: ORA-20001: APP-FND-02902: Multi-Org profile option is required. Please set either MO: Security Profile or MO: Operating Unit profile option. has been detected in MO_GLOBAL_INIT.
    I have min knowledge of EBS set up and configuration. We just use EBS as a source system for our ETLs.  Please suggest any workaround to get resolve the issue.
    Thanks,
    Kishore

    Navigate to System Administrator responsibility > Profile > System. Search for the profile MO: Operating Unit and under responsibility field, put in the responsibility name you are using for creating the service request, click OK and enter the desired operating unit value in the next window. It pulls up all operating units defined and you can chose the desired one.
    Thanks
    Shree

  • T500 Problems and experiences with Lenovo's technical support / EZServ

    After some issues and numerous calls to Lenovo's Technical Support, I just thought I would share my experiences here.
    First off, I currently own a ThinkPad T500, which was designed to be a replacement for my older ASUS laptop.
    While the ASUS laptop is still running okay, I have had a hard time trying to get the company to properly warranty the laptop. (they would make falsified claims that nothing is wrong with the laptop, so that they would not have to replace any parts - and when they do replace parts, they would simply create another problem and totally ignore the described problem.) The experiences were so stressful and disgusting such that I am sick of arguing with the company any further. My decision on the ThinkPad was based on that IBM/Lenovo is designed to serve business class customers and theoretically should have "business-class support". For this very reason, I have added the best warranty service they was offered to me at the time (3yr onsite + accidental). I am just guessing at that time I just wanted to get away from small companies and go to a company that would back their customers' laptops.
    As soon as I got my hands on a T500, however, I have noticed that something is wrong with the card reader. Apparently the reader on the machine would not read SDHC cards (it does read SD cards, however.) This is a problem because I only use SDHC cards and the machine was not able to read any of them. As the card reader controller is manufactured by the same manufacturer (Ricoh) and my older ASUS laptop was able to read SDHC cards, I thought something odd was going on with my machine. This was also based on the evidence that other T500 owners were able to read SDHC just fine.
    In addition to the card reader, I was also having troubles in which the machine would freeze whenever Nero Burning ROM (a CD/DVD authoring software) is used.
    My first support call to Lenovo was not that pleasant, given that I was placed on hold for 20 minutes when the rep was looking up specs for SHDC compatibility. The rep also said that they would not troubleshoot 3rd party software and would not help me on the issue. I was also told that I should also call back during "regular business hours (apparently until 5pm EST, or 2pm PST (my time)" (despite that the technical support hotline is open 24/7) so that a supervisor can handle my case. This makes it very difficult for me to get to someone with any authority as I am usually busy throughout the day until late afternoons (~4pm PST -> 7pm EST).
    Nevertheless, my second call to Lenovo was much more pleasant. The rep handled my case in a timely fashion and promptly provided replacement parts indicated by my problem. (Onsite motherboard replacement for the card reader, and a separate shipment for the DVD-RW drive). Turns out that the motherboard replacement did fix the SDHC issue, although the freezing problem was not caused by hardware failures, but rather a faulty driver that was corrected after Lenovo released an update months later on the Intel SATA controller drivers.
    Five months later, after having to use a broadband WWAN card for my work, I also started to notice there is something wrong with the broadband WWAN card. The card used is the Ericsson F3507g card (or the AT&T broadband WWAN option). Not only would the connection be very flaky, it would also drop connections fairly frequently. It seems that a SIM card pull to another card would result in a perfect connection and ever since I have been using an addon card instead to use the Internet. When I confronted Lemovo with the problem, the experience was worse than the first one. I have made at least six service calls to Lenovo and everytime the reps will waste my time with basic troubleshooting which I told them repeatedly that I have already done (I have even reinstalled the OS but it seems that it does not matter to the reps). Here are some things that are repeated over and over:
    1) Can you uninstall the Power Manager Driver and the Wireless WAN drivers and reinstall them?
    2) Can you go on to our website and download the WWAN drivers (document ID: MIGR-70000 - I even remembered this number since it was repeated so many times) - and the Power Manager Driver and reinstall it?
    3) Can you go to Device Manager (the rep would go step by step to it even though I told him I already know how to get there), and see if there are any "bangs" (exclamation marks) on any of the devices?
    4) Since you were able to connect to the AT&T network, then from the hardware standpoint there is nothing wrong with your card. This indicates there is a software configuration or a driver problem. (I have been trying to acquire the latest drivers but what I have was already the latest)
    5) Since your card could connect to the network, you should contact your provider for help. (AT&T blames it on the card)
    6) I'm sorry but there is nothing I can do to help you. You should contact your provider about the card (despite that I acquired the card from Lenovo and not from them)
    7) Are you sure that your card is activated properly? It doesn't show in our systems that the card has been activated properly. You will need to call both AT&T and the Lenovo activation hotline (whatever this is) to have your card work properly. (I have never heard of this before)
    Despite telling these reps I have an addon card that works perfectly and that I have done all the basic troubleshooting already, none of them are really willing to give me a replacement card. They would either request that I send my computer back to the depot (which I do not want to do since I use this laptop everyday and that's why I have onsite warranty), fail to help me, or transfer me to someone else that makes me do all the troubleshooting all over again. (Every call I made to Lenovo can be said to be composed of at least 20 minutes of basic troubleshootings with the end result of not being able to help)
    After having the case escalated to a team leader, I was told that someone would give me a call within a few hours since their team leader is with another customer. Result? No callbacks. Not within a day, nor two.
    Called Lenovo again, they apologized, but samething happened - supervisor on the line - promised another callback by a supervisor - but nothing, nada!
    Called Lenovo a third time - was again told the same thing, but I am not falling for that anymore - the rep finally agreed to give me a replacement, as well as as to send out a technician that would fix the LCD cover that is starting to get loose on one side.
    At that time, I was so frustrated and this reminds me of the pain I have went through with my old ASUS laptop and their grumpy customer service. It just seems to me that it has to be that difficult to have anything resolved or fixed. (What is especially frustrating is that the basic reps do not have any authority to make any decisions, 90% of the time I will need to be transferred to a supervisor of some sort before my case can be handled successfully - which is hard at times given that I only have until 2pm PST to call them)
    Received replacement, but did not fix issue. I have noticed that the GPS (which was part of the WWAN card) also has problems getting adequate signals for a 3D Fix. I have once again called Lenovo, this time raising the concerns with the GPS and seeking for help. Along with the basic troubleshooting, here is what Lenovo has to say about the GPS issue which frustrates me even more:
    1) uh, G..P..S? what GPS? (most reps I call say this, shows me that they either don't know what a GPS is or know that there is a dedicated GPS builtin on the Ericsson module. Perhaps they don't even know that ThinkVantage GPS existed)
    2) You will need to have active service in order to use GPS (I do have active service, but nevertheless that statement is false since a 3D fix can be successfully acquired with a dummy card - I guess the rep has no idea what he/she was talking about)
    3) That's a software issue - you need to call AT&T and tell them about the problem (Again, I guess the rep has no idea that the GPS is not linked to AT&T's networks - there is a dedicated GPS on the card that allows the ThinkVantage GPS tool to acquire proper GPS signals) (Also, why would AT&T troubleshoot a tool that Lenovo made called ThinkVantage GPS? - I don't get it)
    4) You need to uninstall, and then reinstall the Power Manager driver and also the latest WWAN drivers. (I did that, did not work - I have told them I even reinstalled the OS from scratch)
    5) You need to go uninstall, and then reinstall the Wireless LAN drivers (although I am talking about wireless WAN, not LAN)
    6) There are two wireless adapters in your laptop? Are you sure about this?
    7) LAN, or WAN? What are you referring to? (I guess some reps are not aware what WWAN means)
    After dealing with the numerous reps that have no idea what I was talking about, I have decided that I would just take the machine into depot, which would give me a chance to explain the other issues I have with the machine as well.
    Here are some of the issues I am having with my T500 right now (please comment if you have the same issues or perhaps have a possible solution/workaround for it)
    1. The left side of the LCD cover has a pressure point, which causes the cover to dislodge from the rest of the panel slightly when pressure is applied from the back side of the cover. (Could be caused by closing the lid, for example) - IBM technician applied some adhesive to the inside, which helped it from dislodging, although the left side is still a little filmsy compared to the right.
    2. This error randomly pops up at infrequent intervals: "Display driver igfx stopped responding and has successfully recovered."
    The latest GFX driver is installed and all updates have been installed. OS has been reinstalled but problems still occurs infrequently.
    3. This error also pops up at infrequent intervals: "Active protection is not functioning as system detected the abnormal sensor status. To diagnose the sensor device, run PC DOCTOR DOS - HDD Active Protection Test and if it still shows, contact Help and Service for repair." The only problem is, my laptop only came installed with PC Doctor 5 for Windows and when I run it"
    I ran a sensor check in DOS using the diagnostic CD and the sensor checked out okay. This error seems to happen mostly after I changed a setting in the Active Protection System software. (ex. changing the suspend time, etc)
    4. By default, the internal microphone does not work. In order for the internal microphone to work, the Advanced multi-stream mode must be enabled in the SmartAudio control panel. If both redirection options are enabled, the internal microphones and the speakers would then work normally. However, the hotkey controls on the ThinkPad would not control the right device when headphones are plugged in (since headphones are classified as its own device when the Advanced stream mode is enabled) - Mute and volume controls thus only controls the internal speakers' volume, and have no control whatsoever when headphones are plugged in.
    5. The brightness on the T500 is rather dim. I am not sure if that's how the monitor is, but I can hardly see anything unless the display brightness is close to the max setting. I have the 1680x1050 matte screen.
    6. The WWAN card does not make a stable connection to the network and ThinkVantage GPS does not acquire a 3D Fix even when under direct sky for >20 minutes. What is interesting though is that if I turn off the monitor screen (Fn+F3) or close to lid, the WWAN connection will be very stable and GPS will function normally (acquire fix usually within 2-3 minutes). If the monitor/screen is turned back on after a GPS Fix is acquied, the signals will quickly deteriorate and the updates will either become delayed/inaccurate or a fix will be lost. The brighter the screen, the harder it is to get a fix or a stable connection. (At the max setting it is almost impossible to get a fix while at the lowest brightness a very weak fix can be acquired - this is the case even many sattelites have been detected) Perhaps something with power consumption? Or the LCD drawing too much power?
    7. Although it does not happen very frequently, pressing Fn+F3 to turn off the display might cause the LCD to flicker on and off non-stop.
    8. This used to happen more with the older version of the Lenovo Fingerprint Software - but sometimes the software tends to get stuck at the welcome screen after returning from sleep/suspend/standby mode. The screen will remain at Please Wait forever and a hard restart will be required to get back into Windows.
    9. At frequent intervals the sound from the internal speakers would stop working and only the headphones would work. The sound might, however, come back if I leave the headphones plugged in long enough and unplug them. Restarting the Windows Audio service will temporarily restore audio but the same issue tends to happen again soon after that. Driver issue? (I am not sure if it's relevant, but I tend to put my computer to sleep instead of shutting it down)
    I have explained all of these issues on a piece of paper that I have included in my shipment to Flextronics. I have also included in big letters to make sure that they do not send the laptop to the address where they originally sent the "box" to. This is because I am only at that address a few days during the year and I don't plan to be there most days during the year.
    On the first day, it seemed that the status changed from "Machine being repaired" to "Hold for customer information".
    Apparently I missed a call from a number with an area code of 901 (which is Memphis, TN - I assume this is Lenovo's support center, since this is where the package was sent to). No messages were left on the voicemail. Called the number back, but was however told that I dialed the wrong number and no one has ever called me on this number (the lady on the phone was quite rude too) I then called the 800 EZServ number instead, turns out that they wanted one of my passwords which I gave them.
    The evening after I saw that the machine was successfully repaired and that it is being shipped back to me. However, no tracking number was provided. (There still isn't a tracking number on the EZServ status page)
    Hoping that my machine was repaired in good condition, I took a day off so I would be able to wait for UPS to deliver my laptop.
    Such that I have something to work with, I called the EZServ # and see if they had a tracking number for my shipment. At the same time, I asked what components were replaced and/or what components were installed to the system. To my surprise, they reimaged the whole system and I was not even informed about this at all! (I do understand I checked the Yes box in the problem description page, but I felt that it was important that the repair center let their customers know before their data will be destroyed - luckily I imaged my laptop right before I shipped it out so I have a copy of my data) In addition, it also seemed that they did not read any of the pages I enclosed in the shipment since nothing about the WWAN card was ever mentioned, despite special emphasis placed on this when I called Lenovo to have my computer sent back. It seemed that the rep only recorded one of the problems I listed above, which was unsatisfactory.
    The repair process was disappointing, as I have included in my problem description that I have previously tried reinstalling the whole OS from scratch and the problems did not go away. Reimaging the system will also probably have no effect on the problems I have described in the problem description.
    What is more surprising to me though was that they totally skipped the notation I put on to have the notebook shipped to an alternate address relative to the box address. To make this impossible to miss, I miss drew a big * and circled it many times so that anyone would see it if they were reading the sheet. I found out shortly after checking on the UPS website that the city the package was being shipped to was that of the wrong address, and not the city of that of the alternate address. I was horrified after knowing that the package would not arrive today but yet I still took a day off work. (How disappointing?!)
    Again and again, I called EZServ to see if I can have the package intercepted so it can be delivered to the right address. An intercept was placed on the package, although I received a call 30 minutes later from UPS saying that the intercept failed since the package has already been delivered. UPS also told me there is no way the people living there can simply return it and continue on with the intercept. Not happy with what I am hearing, I called EZServ and see if they can set up a pickup request to have the package delivered to my address. The first rep hanged up on me shortly she answered. The second rep called UPS, placed me on hold for more than 20 minutes, then hanged up on me. The third rep called UPS, and told me that they have esculated the case and that "UPS will handle everything", whatever that means. (she refused to disclose any more details). She told me that I would be receiving a call from her shortly on the details on the upcomings and promised that I would be receiving my laptop back. As with Lenovo, I didn't receive any callbacks. I called EZServ once more, and all they would say is tell me to wait. Sick and tired of waiting and calling and not getting anywhere, I drove 100 miles to where they shipped my laptop and picked it up there. I just don't know whether to trust the EZServ people anymore....
    As far as the laptop goes, I didn't have time to open the box or to test it yet. But I will let you all know once I have taken a look at the results.
    While the past experiences have been painful, I haven't lost all hope in Lenovo yet - although I really think that the customer service can really improve on certain levels.
    Please give me advices on what to do next!
    Thanks for reading this!
    Message Edited by swg0101 on 04-04-2009 11:02 AM

    Swg0101
    Thanks for sharing your details - it seems like we should focus on recovery of your system at this point.
    I've sent you a PM - I'll look for your private message response with your contact information and case details so we can look into this and get you some help.
    Best regards,
    Mark
    ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
    Mark Hopkins
    Program Manager, Lenovo Social Media (Services)
    twitter @lenovoforums
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Any one have issues w/ XML publisher Administrator and OPP???

    We recently used the administrator to create font definitions for templates, once we did that the OPP process kept failing when we would run any of the reports that automatically pick up the template assigned to that report. Invoices for instance…
    However, running the XML Report Publisher and supplying the request ID, Template, etc etc etc... Would work just fine.
    I'm wondering if there is any correlation between the 2? I would just remove the font definition, but I think that is they way you have to do it w/ version 5.6.1, adding the font via the custom properties tab didn't work out.
    I've logged a tar on the issue... but as TAR's go... it's going slow like tar.
    Wondered if anyone else had any info?

    Well... in case you ever do run into this... the OPP log file will have a null point error in it.
    And applying Patch #5024026 should/will fix the problem.

  • Problems and solutions for 9i DB R2 install on Redhat Linux AS 2.1

    Installing 9iDB R2 9.2.0.1.0 on Redhat Linux Advanced Server 2.1 (aka Redhat Enterprise Linux (AS))
    and applying patchset 2 (9.2.0.3.0)
    This is a certified platform but I hit many problems getting the install to work. Here are the problems I hit and how I solved them.
    Note: This is not intended to be a install for dummies but just an account of all my problems and how I overcame them. I spent 10 hours on this certified install (mostly looking for solutions to the problems I was having)
    I had a Intel Pentium 3 with 512 Meg RAM. (test machine)
    1. Install Redhat Linux
    2. Install Sun JDK 1.3.1 (this is not actually required for this install. I installed it as I was planning to install 9iAS after this)
    3. Install binutils-2.11.90.0.8-13 (also not required. I installed it for 9iAS)
    All other components were ok on my Redhat Linux install (i.e. kernel version, glibc)
    4. Create oracle user with dba group
    5. Create oracle home and oracle base directories. Ensure these are owned by oracle with rwx
    6. Set kernel parameters and make sure that they are initialized every startup:
    I managed to locate this script in the Redhat document called
    "Deploying Oracle9iTM on Red Hat Enterprise Linux AS"
    create a file called oracle.sh in /etc and give it execute permissions
    oracle.sh
    #!/bin/bash
    # configures kernel and system parameters for Oracle9i R2
    # File handles
    echo 65536 > /proc/sys/fs/file-max
    ulimit -n 65536
    # Shared memory
    # The default SHMMAX value is too low and likely to cause a failure during
    # database creation. SHMMAX should be equal to half of your system's physical
    # RAM.
    # The default is for 512 MB of RAM. Replace the default value as appropriate
    # for the amount of memory in your system, i.e.,
    # 512 MB : 268435456
    # 1 GB : 536870912
    # 2 GB : 1073741824
    # 4 GB : 2147483648
    echo 268435456 > /proc/sys/kernel/shmmax
    # It is generally safe to leave these next two values as they are
    echo 4096 > /proc/sys/kernel/shmmni
    echo 2097152 > /proc/sys/kernel/shmall
    # Semaphores
    echo 250 32000 100 128 > /proc/sys/kernel/sem
    # Sockets
    echo 1024 65000 > /proc/sys/net/ipv4/ip_local_port_range
    # Processes
    ulimit -u 16384
    ----EOF---------
    then...
    # chmod +x /etc/oracle.sh    # make executable
    # . /etc/oracle.sh # apply changes now
    edit /etc/rc.local to ensure this is run on startup
    append to /etc/rc.local
    # configure system for Oracle9i R2
    bash /etc/oracle.sh
    --------EOF--------------------
    7. create a generic oracle environment setup script for all users to run
    create the file /etc/profile.d/oracleenv.sh
    be sure to change the variables to your environment (ORACLE_BASE, ORACLE_HOME and ORACLE_SID)
    oracleenv.sh
    # Configures the user's environment for Oracle9i R2
    ORACLE_BASE=/opt/oracle
    ORACLE_HOME=$ORACLE_BASE/product/9.2.0.1.0
    ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
    ORACLE_SID=orcl
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    PATH=$ORACLE_HOME/bin:$PATH
    export ORACLE_BASE ORACLE_HOME ORA_NLS33 ORACLE_SID LD_LIBRARY_PATH PATH
    ----EOF---------
    chmod 755 /etc/profile.d/oraclenv.sh
    This file will run when a user logs in.
    8. Install oracle DB
    This took me quite a few attempts.
    The first Install I did I received the error jre was not found. This issue seemed to be relating to the fact I was not installing on a Pentium 4. Oracle was looking for the jre in oracle.swd.jre/bin/i686 (and .../lib/i686) when some of the files were placed in i386 and java was looking in i386. This created a real mess. I had encountered a similar problem on a previous install on a different platform. I found articles of people that tried to just link the directories with symbolic links but this never worked. I tried my own version but also failed.
    The solution that worked for me was to de-install, remove all the oracle directories created by the install (this part I had always done) AND also delete the file /etc/oraInstl.loc. This makes the Installer truly believe this is the first time Oracle has been installed on this box. My jre problem disappeared after that. (I don't know why it just didn't work in the first place...)
    The next error I received was an ORA-03113 when creating the database (in the dbca). (It was actually at this point that I found the document from redhat as mentioned in my set 6 above) I also noticed that when running the install of the database, the default was for Oracle's SGA to use 70% of the available memory on my machine (I have 512M so that's 360M). Oracle instructed me to set shmmax to around 240M. This may be why the database creation failed as I thought the shmmax parameter needed to be larger that SGA. Anyway, I reduce the SGA to 50% and it worked.
    This error may also have been caused by the kernel parameters not being set properly after a reboot so if you implementing stop 6 above. You may never get this problem, hopefully.
    8. Install the universal Installer 2.2.0.18.0 (a prerequisite for installing the patchset 2)
    You will need this to install the patchset 2. You can get it from metalink by searching for the bug number in the patch area. Search for bug/patch number 2878462 in patches. (37Meg for linux intel)
    (Did you know that when oracle refer to a bug number, you should treat this as a patch number? General the bugs are not available for public viewing but oracle create a patch of the same number as a placeholder. So don't search for the bug in the site search or by doc id, go straight to the "patches" area and enter the bug number as a patch number, you'll have more success. - I only found that out today after struggling with metalink for the last 4 years)
    9. Install the patchset 2
    I downloaded patchset 2 (which will bring my DB version to 9.2.0.3.0) (220Meg). There is a special symbolic link command you'll need so make sure you remember to do this.
    i.e.
    $ cd $ORACLE_BASE/oui/bin/link
    $ ln -s libclntsh.so.9.0 libclntsh.so
    10. Migrate your database
    I could not get this to work. The docs says I need at least 150M shared_pool_size and 150M Java_pool_size before running the startup migrate. As I only have 512Meg RAM (and shmmax set to 230M) I did hold much hope that this would work. I started my DB without the migrate option just to see if it would actually open with 300M in my pools. It did, so I shut it down and restarted with the migrate option. After 5 minutes of heavy processing (I still have an empty database) my server appeared to hang. I decided to restart the machine and just re-create my DB with the new patchset already applied. I delete my $ORACLE_BASE/oradata/<sid> directory and remove the entry from /etc/oratab and re-created my DB. This worked fine :)
    I hope this document helps you for your install. Please drop me line if it does help and I'll endevour to write more documents like this one.
    Please drop me a quick line at [email protected] even just to say "thanks".
    I will include a few keywords here to help the searches find this document. (mainly the keywords I searched on and failed to find a doc like this one)
    ORA-03113 ORA-3113 03113 3113 jre was not found jre not found i686 i386 i586 9iDB R2 9.2.0.1.0 9.2.0.3.0 Redhat Advanced Server 2.1 AS Enterprise Linux (AS) RH install error installation errors oui dbca problem issue
    Good luck,
    Tim Daniell.

    The trick that worked for me was on a 2nd attempt. I installed once, let it fail with "jre was not found", de-install through the installer, delete all directories and files under $ORACLE_BASE (including $ORACLE_HOME), and also delete /etc/oraInst.loc.
    I don't know why it fixes itself with this. Oracle say this is an unresolved bug 2726268 that lies in the installer. This is still unresolved by Oracle (as at 02-June-03) therefore it is not a published bug/patch. If this doesn't work, I suggest you open an iTAR and see if Oracle has any more suggestions for you.
    Cheers,
    Tim.

  • Saposcol.exe encountered a problem and needed to close.

    Some days ago I successfully installed trial version 7.02 on a virtual Windows XP: Host Windows 7 professional 64 bit.
    Immediately after installation I created SAPLOGON, started the system using SAPMMC and logged on as BCUSER in client 001. I did some work and everthing was fine.
    Two days later there is an error message when XP mode has started:
    saposcol.exe encountered a problem and needed to close.
    If I try to start the system using SAPMMC it turns to green but shortly after that it is yellow.
    Syslog shows following messages:
    Info:  SAP Basis System: Buffer SCSA     Generated with Length      4096
    Info:  SAP Basis System: Start Msg Server,  1 times since system startup. PID     2996
    Info:  SAP Basis System: Start SAP System, SAPSYSTEM 00, Dispatcher Pid     3004
    Info:  SAP Basis System: Active ICU Version    3.4; Compiled With ICU    3.4; Unicode Version    4.1
    Info:  SAP Basis System: Connection to message server (on                  VXP) established
    Info:  SAP Basis System: MsgServer Hardware ID Was Determined
    Info:  SAP Basis System: Start Workp.   0, Pid     2276
    Info:  SAP Basis System: Start Workp.   1, Pid     3112
    Info:  SAP Basis System: Start Workp.   2, Pid     3120
    Info:  SAP Basis System: Start Workp.   5, Pid     3148
    Info:  SAP Basis System: Start Workp.   7, Pid     3164
    Info:  SAP Basis System: Start Workp.   6, Pid     3156
    Info:  SAP Basis System: Start Workp.   3, Pid     3128
    Info:  SAP Basis System: Start Workp.   4, Pid     3140
    Info:  Communications data: SAP Gateway Started (PID:       2304)
    Error:  Communications data: Service initialization failed
    Info:  SAP Basis System: ICM started on host VXP (PID: 2300)
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON 
    Database: > Connection failed (RTE:[5] database not running)  
    Error: SAP Basis System: Initialization           DB-Connning:ect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON  
    Database: > Connection failed (RTE:[5] database not running)
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON
    Database: > Connection failed (RTE:[5] database not running)
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON
    Database: > Connection failed (RTE:[5] database not running) 
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON   
    Database: > Connection failed (RTE:[5] database not running) 
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON 
    Database: > Connection failed (RTE:[5] database not running)
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON
    Database: > Connection failed (RTE:[5] database not running) 
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    there are more messages and I stop to give them all.
    Does anybody have an idea how I can solve my problems? Why does the saposcol error occur when I start XP?
    Thanks
    Otto

    Hi Nirmal,
    this is the error signature of saposcol.exe:
    szAppName: saposcol.exe   szAppVer: 7200.71.18.26355  szModName: unknown
    szModVer: 0.0.0.0     offset: 00020005
    Sorry Nirmal it is not possible to send all three log files in one message because it extends maximum message length,
    the two other logfile are in a separate message
    this is logfile dev_w0:
    trc file: "dev_w0", trc level: 1, release: "720"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      00
    M sid        NSP
    M systemid   560 (PC with Windows NT)
    M relno      7200
    M patchlevel 0
    M patchno    70
    M intno      20020600
    M make       multithreaded, Unicode, optimized
    M profile   
    VXP\sapmnt\NSP\SYS\profile\NSP_DVEBMGS00_VXP
    M pid        3396
    M

    M Thu Feb 03 21:29:33 2011
    M  kernel runs with dp version 129000(ext=118000) (@(#) DPLIB-INT-VERSION-129000-UC)
    M  length of sys_adm_ext is 588 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workp. 0 3396) [dpxxdisp.c   1330]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpIPCInit2: read dp-profile-values from sys_adm_ext
    M  DpShMCreate: sizeof(wp_adm)          20000     (2000)
    M  DpShMCreate: sizeof(tm_adm)          4323912     (21512)
    M  DpShMCreate: sizeof(wp_ca_adm)          32000     (64)
    M  DpShMCreate: sizeof(appc_ca_adm)     32000     (64)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/556056/556064
    M  DpShMCreate: sizeof(comm_adm)          556064     (1104)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (96)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (80)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1792)
    M  DpShMCreate: sizeof(wall_adm)          (40056/34360/64/192)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: sizeof(j2ee_adm)     3920
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 094A0040, size: 5055296)
    M  DpShMCreate: allocated sys_adm at 094A0048
    M  DpShMCreate: allocated wp_adm_list at 094A2F28
    M  DpShMCreate: allocated wp_adm at 094A3020
    M  DpShMCreate: allocated tm_adm_list at 094A7E48
    M  DpShMCreate: allocated tm_adm at 094A7E70
    M  DpShMCreate: allocated wp_ca_adm at 098C78C0
    M  DpShMCreate: allocated appc_ca_adm at 098CF5C8
    M  DpShMCreate: allocated comm_adm at 098D72D0
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 0995EEF8
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated gw_adm at 0995EF50
    M  DpShMCreate: allocated j2ee_adm at 0995EF88
    M  DpShMCreate: allocated ca_info at 0995FEE0
    M  DpShMCreate: allocated wall_adm at 0995FEF8
    M  DpCommAttachTable: attached comm table (header=098D72D0/ft=098D72D8)
    M  DpRqQInit: use protect_queue / slots_per_queue 0 / 2001 from sys_adm
    M  rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE

    M Thu Feb 03 21:29:34 2011
    M  ThStart: taskhandler started
    M  ThInit: initializing DIA work process W0

    M Thu Feb 03 21:29:39 2011
    M  ThInit: running on host VXP

    M Thu Feb 03 21:29:40 2011
    M  calling db_connect ...
    B  Loading DB library 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' ...

    B Thu Feb 03 21:29:41 2011
    B  Library 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' loaded
    B  Version of 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' is "720.00", patchlevel (0.65)

    C  DBSDBSLIB : version 720.00, patch 0.065 (Make PL 0.70)
    C  MAXDB shared library (dbsdbslib) patchlevels (last 10)
    C    (0.065) Send wp type to the database (note 1340617)
    C    (0.062) Row counter limit set to 65535 (note 1340617)
    C    (0.054) ABAP: Return technical database PPMS information (note 1419552)
    C    (0.053) ABAP: Return technical database PPMS information (note 1419552)
    C    (0.047) Connection table corrected (note 1466271)
    C    (0.045) Unknown primary key (note 1459400)
    C    (0.039) Define your own command buffersize (note 1340617)
    C    (0.031) Dbm commands support added (note 1420733)
    C    (0.027) Count of records for bulk insert optimized (note 1340617)
    C    (0.021) Connect with special xuser key (note 1390464)


    C  Loading SQLDBC client runtime ...
    C  SQLDBC Module  : C:\sapdb\clients\NSP\pgm\libSQLDBC77.dll
    C  SQLDBC SDK     : SQLDBC.H  7.7.4    BUILD 009-123-173-450
    C  SQLDBC Runtime : libSQLDBC 7.8.1    BUILD 018-121-240-252
    C  SQLDBC client runtime is MaxDB 7.8.1.018 CL 240252
    C  SQLDBC supports new DECIMAL interface : 1
    C  SQLDBC supports VARIABLE INPUT data   : 1
    C  SQLDBC supports VARIABLE OUTPUT data  : 1
    C  SQLDBC supports Multiple Streams      : 1
    C  SQLDBC supports LOB LOCATOR KEEPALIVE : 1
    C  SQLDBC supports LOB LOCATOR COPY      : 1
    C  SQLDBC supports BULK SELECT with LOBS : 1
    C  INFO : SQLOPT= -I 0 -t 0 -S SAPR3
    C  Try to connect (DEFAULT) on connection 0 ...
    C  *** ERROR => Connect to database failed, rc = -10709 (Connection failed (RTE:[5] database not running))
    [dbsdbsql.cpp 139]

    B Thu Feb 03 21:29:42 2011
    B  ***LOG BV3=> severe db error -10709    ; work process is stopped [dbsh         1241]
    B  ***LOG BY2=> sql error -10709 performing CON [dblink       540]
    B  ***LOG BY0=> Connection failed (RTE:[5] database not running) [dblink       540]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1474]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   11060]

    M  Info for wp 0

    M    pid = 3396
    M    severity = 0
    M    status = 0
    M    stat = WP_NEW
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    req.req_info =
    M    req.tid = -1
    M    req.uid = 4294967295
    M    req.mode = 255
    M    req.len = 0
    M    req.rq_id = 65535
    M    req.rq_source =
    M    last_tid = 0
    M    last_uid = 0
    M    last_mode = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM

    M  ThIErrHandle: current request:

    M  -IN-- sender_id ?                 tid  -1    wp_ca_blk   -1      wp_id -1
    M  -IN-- action    -                 uid  -1    appc_ca_blk -1      type  -   
    M  -IN-- new_stat  NO_CHANGE         mode 255   len         0       rq_id -1

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server VXP_NSP_00 on host VXP (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Thu Feb 03 21:29:42 2011
    M  *  RELEASE     720
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        11337
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrBtcCallLgCl< for event BEFORE_DUMP
    M  ThCallHooks: hook >ThrBtcCallLgCl< o.k.
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   779]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  303]
    M  ThCallHooks: hook >ThrSaveSPAFields< o.k.
    M  ThIErrHandle: entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workp. 0 3396) [dpnttool.c   339]
    Thanks a lot  for your support
    Otto

  • Adobe Flash CS5 has encountered a problem and needs to close

    Hi,
    I have two laptops. I have installed Adobe Flash CS5 in my first laptop (Windows XP). When I start the application, it shows the following message:
    "Adobe Flash CS5 has encountered a problem and needs to close"
    I have installed the Flash CS5 in my second laptop and it worked fine.
    Error signature:
    AppName: flash.exe AppVer: 11.0.0.485 ModName: updaternotifications.dll
    ModVer: 1.0.0.64 Offset: 0006a8dc
    Can anybody help?
    Thanks.
    Housea

    try this also
    1. Reset preferences:
    To reset on Windows, delete:
    C:\Documents and Settings\username\Local Settings\Application Data Adobe\Flash CS4\
    C:\Windows\system32\Macromed\Flash\FlashAuthor.cfg
    To reset on Mac OS X, delete:
    /Users/username/Library/Preferences/Flash CS4 Preferences
    /Users/username/Library/Preferences/Flash 10 MRU
    /Users/username/Library/Preferences/com.adobe.flsh-10.0.plist
    /User/%username%/Library/Application Support/Adobe/Flash CS4/
    /Library/Application Support/Macromedia/FlashAuthor.cfg
    2. Install the latest Flash update if available.
    3. Install the latest version of Flash.
    4. Install current Windows service packs and other updates.
    5.  Run Flash in a simplified mode (Windows). / Run Flash in safe mode (MAC  OS - Refer to http://kb2.adobe.com/cps/404/kb404936.html)
    Some  applications or services may cause system errors or freezes when  running concurrently with Flash. Services are specialized programs that  perform functions to support other programs. Before starting Flash,  disable other applications, including startup items (items that start  automatically), and services.
    To disable startup items and services, see "Disable startup items and services (Windows XP)" (TechNote kb404984).
    To re-enable startup items and services:
       1. Choose Start > Run, type msconfig, and click OK.
       2. Choose Normal Startup on the General tab, click OK, and restart the computer.
    Note: If unselected items were present on the Services or Startup tab, then you will need to unselect them again
    6. Install Flash from the desktop.
    7. Reinstall Flash in a simplified/safe (for MAC OS) mode.
    8. Run Flash in a new user account.
    9. Check for font problems.
    10. Optimize handling of temporary files by Windows XP.
    11. Set the virtual memory paging file to the default size.
    12. Repair and defragment hard disks.
    13. Scan the system for viruses.
    14. Identify the file that causes the problem.
    15. Install Adobe Flash CS4 on a different computer.

  • Adobe Acrobat 9.0 has encountered a problem and needs to close

    Hi!
    I'd like to start using Adobe Acrobat 9.0 with Acrobat.com, but I don't get very far before I get the error message "
    Adobe Acrobat 9.0 has encountered a problem and needs to close." This happens after I click "distribute form" and fill out the email addresses. It get to the point of starting to publish the response files and then the error message pops up and I can't go any further. I've made sure to uninstall older versions of Acrobat and I restarted my computer. I have a PC and am running Windows XP and IE 7. Help!

    Bill:
    Thanks for all the tips. Actually I already did most of this (multiple times) to no avail.
    ·         I’m running Win XP Pro SP3 on a Dell Latitude D630 laptop with 2GB memory.
    ·         I Bought Acrobat 7 Standard (it came bundled with my scanner) so I do have that CD and the key
    ·         I purchased the upgrade to Acrobat 9 Standard on-line for $99.
    ·         Actually, everything was working fine until I uninstalled ATM. (I did that because my laptop wouldn’t undock or hibernate and I read that ATM could be the cause.)
    ·         I’ve done several repairs from Control Panel. Didn’t help.
    ·         Finally, this morning I decided to uninstall everything and install a trial version of Adobe 9 PRO from their web site. That didn’t work either.
    ·         I notice that none of these actions has brought ATM back. On the other hand, I can’t find a place from where I can download ATM either.
    Here’s the really funny thing. Acrobat is not completely broken. I can actually get it to work for the first few seconds. And if I type real fast, I can even save the pdf file that it opens before it crashes! For example, if I click on a pdf file on a web page and it is small enough that it opens right away, I can click the save button and hit OK immediately (don’t mind where it saves the file, I can find and move it later) before I get the “Adobe Acrobat 9.0 has encountered a problem and needs to close.  We are sorry for the inconvenience.” message. The same happens if I just open Acrobat and let it sit. It doesn’t crash immediately. It takes about 5 seconds before it does.
    This should give a clue as to where/why it is crashing.
    Tomorrow I’m going to try and get Adobe on a chat line and have them take a look.
    Let me know if you get any other good ideas. Thanks for taking the time to reply.
    Thanks,
    Jamshed Mulla

Maybe you are looking for