payment service application freeze / no responsa

I had a problem that payment service application freezes...

This similar problem

http://supportforums.BlackBerry.com/T5/native-development/is-it-possible-to-use-PaymentService-with-...

but this thread told it you have a problem with the screen...

and I have test my screen snap of...

int
setup_screen()
{
    screen_buffer_t buff;
    int buffer_size[2];
    int usage = SCREEN_USAGE_NATIVE;
    int attribs[1] = {SCREEN_BLIT_END};
    int dirty_rects[4] = {0, 0, buffer_size[0], buffer_size[1]};
    if (screen_create_context(&screen_ctx, SCREEN_APPLICATION_CONTEXT) != 0) {
        return EXIT_FAILURE;
    }

    if (screen_create_window(&screen_win, screen_ctx) != 0) {
        screen_destroy_context(screen_ctx);
        return EXIT_FAILURE;
    }

    if (screen_create_window_group(screen_win, get_window_group_id()) != 0) goto fail;

    if (screen_set_window_property_iv(screen_win, SCREEN_PROPERTY_USAGE, &usage) != 0) goto fail;

    if (screen_create_window_buffers(screen_win, 1) != 0) goto fail;

    if (screen_get_window_property_pv(screen_win, SCREEN_PROPERTY_RENDER_BUFFERS, (void**)&buff) != 0) goto fail;

    if (screen_get_buffer_property_iv(buff, SCREEN_PROPERTY_BUFFER_SIZE, buffer_size) != 0) goto fail;

    if (screen_fill(screen_ctx, buff, attribs) != 0) goto fail;

    if (screen_post_window(screen_win, buff, 1, (const int*)dirty_rects, 0) != 0) goto fail;

    return EXIT_SUCCESS;

fail:
    screen_destroy_window(screen_win);
    screen_destroy_context(screen_ctx);
    return EXIT_FAILURE;
}

and it's called when a button clicked ads...

My function... to paymentservice_purchase_request does it freeze / no responsa... I can't go to the next step...

void  MainMenuScene::Ads_Click()
{
    bps_initialize();
    if (setup_screen() != EXIT_SUCCESS) {
       fprintf(stderr, "Unable to initialize screen.");
       exit(0);
    }
    int exit_application = 0;
    navigator_request_events(0);
    paymentservice_request_events(0);
    paymentservice_set_connection_mode(true);

    const char* digital_good_id = "25180877";
    const char* digital_good_name = "BuyTK";
    const char* digital_good_sku = "AppTK-1";
    const char* metadata = "something";
    const char* purchase_app_icon = "something";
    const char* purchase_app_name = "TKAppPurchase";

    unsigned request_id = 0;
    if (paymentservice_purchase_request(digital_good_id, digital_good_sku, digital_good_name,metadata, purchase_app_name, purchase_app_icon, get_window_group_id(), &request_id) != BPS_SUCCESS) {
         fprintf(stderr, "Error: purchase request failed.\n");
    }
    fprintf(stderr,"pass payment service request");
    while (!exit_application) {
            bps_event_t *event = NULL;
            bps_get_event(&event, -1);

            if (event) {
                if (bps_event_get_domain(event) == paymentservice_get_domain()) {
                          if (SUCCESS_RESPONSE == paymentservice_event_get_response_code(event)) {
                              if (PURCHASE_RESPONSE == bps_event_get_code(event)) {
                                  onPurchaseSuccess(event);
                                  unsigned request_id = 0;
                                  if (paymentservice_get_existing_purchases_request(false, get_window_group_id(), &request_id) != BPS_SUCCESS) {
                                     fprintf(stderr, "Error: get existing purchases failed.\n");
                                  }
                              } else
                                  onGetExistingPurchasesSuccess(event);
                          } else {
                              failureCommon(event);
                          }
                      }
                if (bps_event_get_domain(event) == navigator_get_domain()) {
                        if (NAVIGATOR_EXIT == bps_event_get_code(event)) {
                            exit_application = 1;
                        } else if (NAVIGATOR_SWIPE_DOWN == bps_event_get_code(event)) {
                            if (paymentservice_purchase_request(digital_good_id, digital_good_sku, digital_good_name,
                                    metadata, purchase_app_name, purchase_app_icon, get_window_group_id(), &request_id) != BPS_SUCCESS) {
                               fprintf(stderr, "Error: purchase request failed.\n");
                            }
                        }
                   }
            }
    }

    bps_shutdown();
    screen_destroy_window(screen_win);
    screen_destroy_context(screen_ctx);
}

Thank God,
Finally, I resolve this problemm...
It's windows_group_id...

I use cocos2dx...
It is documented here
http://www.cocos2d-x.org/issues/1015

I hope it's useful for others who have the same problem...
Nice to share...

MaMom

Tags: BlackBerry Developers

Similar Questions

  • Payment Service weird problem

    Hi all

    I have an app freemium allowing users to unlock features Premium/Pro . I tried coding based on the tutorial on the docs of stunts on the payment Service.

    The problem is, I get the error code long of the answer-> errorCode();

    the code was 141004048

    Here is my code:

    void PurchasePage::purchase()
    {
        purchaseButton->setEnabled(false);
    
        paymentManager = new PaymentManager(this);
    
        // Get the window group ID and pass it to the PaymentManager instance.    const QString windowGroupId =Application::instance()->mainWindow()->groupId();    paymentManager->setWindowGroupId(windowGroupId);    //Request a purchase using the ID and SKU of the digital good.
        const PurchaseReply *purchaseReply = paymentManager->requestPurchase("244779xx", "ProVersion");
    
        // Connect the finished() signal to a slot to handle the purchase.
        QObject::connect(purchaseReply, SIGNAL(finished()), SLOT(handlePurchase()));
    }
    
    void PurchasePage::handlePurchase()
    {
        PurchaseReply *reply = qobject_cast(sender());
        Q_ASSERT(reply);
    
        // Check to see if the request finished.
        if (reply->isFinished())
        {
            //if there were errors.
            if (reply->isError())
            {
                showDialog("Purchase Error",QString::number(reply->errorCode())+"\n"+reply->errorText());
            }
            else//if there were no errors.
            {
                QString successString="Pro version is now activated.";
                showDialog("Purchase Succeed",successString);
    
                //set statusLabel text to Activated
                statusLabel->setText("Activated");
    
                purchaseButton->setEnabled(false);
            }
        }
        else
        {
            if (reply->isError())
            {
                showDialog("Purchase Error",QString::number(reply->errorCode())+"\n"+reply->errorText());
            }
        }
        reply->deleteLater();
    }
    

    How the app has been installed on the device (side loading, downloaded via the dev mode BlackBerry World etc.)?

    Never error code change? Or is it always 141004048?

    Also, looking at your code, it seems the app instantiates a new PaymentManager each time a purchase is made, you must have an instance of this, the call to purchase() should deal only with the logic of purchase requisition.

  • How to work on the Api payment Service in blackberry

    Hello

    I was creating an application to OS 5.0 with name AppPack. I had added the paymentapi jar file to it. The project to build successfully and as I open the app in the Simulator displays a dialog box with the following error

    «Error starting AppPack: error in the Module ' paymentapi;» not found ".

    I had downloaded this Internet payment service. Please help me to solve this error.

    Thanking you in advance!

    -Sam

    If you are using eclipse:

    1. in the course of your project, good clip--> go to properties

    2. build path Java

    3. Add the libraries

    4. add some external jars (add all the jars you need)

    5. go to the tab "order and export.

    6 and select all the pots you add.

    PS: Sorry for my English.

  • Error "ORA-04065:...» "APPS. AME_UTIL' "when submiting self-service application.

    Hello

    So that the introduction of any request for self-service, the system gives this error and notification is sent to sysadmin with this error:

    =========================================================
    Error page
    Details of the exception.
    oracle.apps.fnd.framework.OAException: java.sql.SQLException: ORA-04068: current state of packets rejected
    ORA-04065: not run, altered, or removed the stored procedure 'APPS. AME_UTIL ".
    ORA-06508: PL/SQL: called program unit is not found: 'APPS. AME_UTIL ".
    ORA-06512: at the 'APPS '. AME_DYNAMIC_APPROVAL_PKG', line 509
    ORA-04065: not run, altered, or removed the stored procedure 'APPS. AME_UTIL ".
    ORA-06508: PL/SQL: called program unit is not found: 'APPS. AME_UTIL ".
    ORA-06512: at line 1

    at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(OAException.java:996)
    at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:211)
    at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:133)
    at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:797)
    at oracle.apps.ame.dynamicapprovals.webui.ApprovalsCO.processRequest(ApprovalsCO.java:91)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:600)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:391)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1182)
    at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2607)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1940)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
    in OA. jspService(_OA.java:212)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
    in com.evermind.server.http.ServletRequestDispatcher.access$ 100 (ServletRequestDispatcher.java:51)
    to com.evermind.server.http.ServletRequestDispatcher$ 2.oc4jRun(ServletRequestDispatcher.java:193)
    at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
    at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
    at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
    in OA. jspService(_OA.java:221)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    to oracle.oc4j.network.ServerSocketReadHandler$ SafeRunnable.run (ServerSocketReadHandler.java:260)
    to com.evermind.util.ReleasableResourcePooledExecutor$ MyWorker.run (ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    # # 0 in detail
    java.sql.SQLException: ORA-04068: current state of packets rejected
    ORA-04065: not run, altered, or removed the stored procedure 'APPS. AME_UTIL ".
    ORA-06508: PL/SQL: called program unit is not found: 'APPS. AME_UTIL ".
    ORA-06512: at the 'APPS '. AME_DYNAMIC_APPROVAL_PKG', line 509
    ORA-04065: not run, altered, or removed the stored procedure 'APPS. AME_UTIL ".
    ORA-06508: PL/SQL: called program unit is not found: 'APPS. AME_UTIL ".
    ORA-06512: at line 1

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:202)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1005)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3550)
    at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4710)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
    at oracle.apps.ame.dynamicapprovals.server.ApprovalsAMImpl.getApprovers(ApprovalsAMImpl.java:573)
    at oracle.apps.ame.dynamicapprovals.server.ApprovalsAMImpl.queryApprovers(ApprovalsAMImpl.java:739)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
    at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:133)
    at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:797)
    at oracle.apps.ame.dynamicapprovals.webui.ApprovalsCO.processRequest(ApprovalsCO.java:91)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:600)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:391)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1182)
    at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2607)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1940)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
    in OA. jspService(_OA.java:212)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
    in com.evermind.server.http.ServletRequestDispatcher.access$ 100 (ServletRequestDispatcher.java:51)
    to com.evermind.server.http.ServletRequestDispatcher$ 2.oc4jRun(ServletRequestDispatcher.java:193)
    at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
    at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
    at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
    in OA. jspService(_OA.java:221)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    to oracle.oc4j.network.ServerSocketReadHandler$ SafeRunnable.run (ServerSocketReadHandler.java:260)
    to com.evermind.util.ReleasableResourcePooledExecutor$ MyWorker.run (ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    java.sql.SQLException: ORA-04068: current state of packets rejected
    ORA-04065: not run, altered, or removed the stored procedure 'APPS. AME_UTIL ".
    ORA-06508: PL/SQL: called program unit is not found: 'APPS. AME_UTIL ".
    ORA-06512: at the 'APPS '. AME_DYNAMIC_APPROVAL_PKG', line 509
    ORA-04065: not run, altered, or removed the stored procedure 'APPS. AME_UTIL ".
    ORA-06508: PL/SQL: called program unit is not found: 'APPS. AME_UTIL ".
    ORA-06512: at line 1

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:202)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1005)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3550)
    at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4710)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
    at oracle.apps.ame.dynamicapprovals.server.ApprovalsAMImpl.getApprovers(ApprovalsAMImpl.java:573)
    at oracle.apps.ame.dynamicapprovals.server.ApprovalsAMImpl.queryApprovers(ApprovalsAMImpl.java:739)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
    at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:133)
    at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:797)
    at oracle.apps.ame.dynamicapprovals.webui.ApprovalsCO.processRequest(ApprovalsCO.java:91)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:600)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:391)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1182)
    at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:968)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:935)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:659)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2607)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1940)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
    in OA. jspService(_OA.java:212)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
    in com.evermind.server.http.ServletRequestDispatcher.access$ 100 (ServletRequestDispatcher.java:51)
    to com.evermind.server.http.ServletRequestDispatcher$ 2.oc4jRun(ServletRequestDispatcher.java:193)
    at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
    at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
    at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
    in OA. jspService(_OA.java:221)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    to oracle.oc4j.network.ServerSocketReadHandler$ SafeRunnable.run (ServerSocketReadHandler.java:260)
    to com.evermind.util.ReleasableResourcePooledExecutor$ MyWorker.run (ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    =====================================================

    1 behavior happens to every free service (standard and custom) request.
    2. Since our configuration of SOUL self-service application use in its trust hierarchy, we test approval groups using direct transaction test case by "The responsibility of the analyst approval management system" and providing the current Transaction ID, the test result was valid and we could retrieve the string for the necessary approvals.
    3. after getting this error the transaction stored in the hr_API_transactions table status 'W' 'works under process ".
    4. State of the AME_UTIL and AME_DYNAMIC_APPROVAL_PKG packages is valid.

    Thank you
    Mohammed.

    HI Mohammed,.

    906610 wrote:
    A big thank you "AppsMasti" and Hussein. Problem is solved by implementing the fix of note ID 1163757.1

    Thank you
    Mohammed.

    Thanks for the update

    ;) AppsMAsti ;)
    Sharing is caring

  • How can I get the error "Unable to start the service" on attempts to run administrative tools (including the Services application) when logged in as an administrator?

    A large number of menu selections is affected, including the 'computer management', 'Event Viewer', 'Services' and 'System Configuration'.
     
    I tried to clean a computer that was thus invaded by unwanted applications and the services that it was unusable.  I applied several sets of Windows updates until it has been fairly stable, then lightened through the Services application services, changing many services 'automatic' to 'enabled' or 'disabled '.  I suspect that some service necessary for the performance of the foregoing has been inadvertently stopped.  (None that he was '' strongly recommended '' or '' recommended '' do not turn off or the description seemed to make a requirement, but...)  I don't know how to confirm this theory, identify the missing service or reactivate a service without the Services application.

    I got lucky.  I called a local, independent computer store.  Their support staff (after confirming that I had an appropriate Windows license) told me that if the computer came with a disk for Installation of Windows Vista, there is probably a partition to start installation on the hard disk, I could get to with a special touch at the beginning of the start-up phase of the BIOS.  It flashed by so quickly that I missed my chance, so I put off the power while trying to boot Windows.  On my next attempt, I missed again (even if I managed to spot the key combination - F11).  But when he arrived at the start-up phase of Windows, he offered me a chance to run the system restore which was banned when I was logged in with an administrator account.  I had to go back a ways, but I found one who would start and was able to complete cleaning of the machine and make it to a usable state.
     
    Thanks to all who responded.
     
    Oh, and it seems (according to my conversation with the service of the local computer store) that my fatal mistake was by disabling the service allowing you to promote its own security.  Apparently an administrator account is not the rights needed to perform most administrative functions without it; If disabling the service gets you into a nearly unrecoverable state.  A hint of that in the description of the service, or even a total ban on deactivation, would be a good idea.
     
    -Kevin

  • Professional in Flash CS6 payment services?

    I'm testing the PaymentServiceDemo.with Flash Professional CS6, as provided in the documentation for BlackBerry. The first error I get is the 'com.test.paymentapi' after the package in the .as file throws an error message. Removing it solves this problem. I added "framework.swc", 'rpc.swc', 'rpc_rc.swc', 'QNXDevice.ane', 'QNXNetwork.ane', 'QNXSensors.ane' and 'QNXSkins.ane' the path of the library. When I run the Flash project I get an error that the "SuccessEvent" is not recognized. I then added the "Blackberry.swc" in the folder/libs/blackberry to remove this error. Then, I have a long list of 'Label' unrecognized, etc. from the library for qnx. I add 'qnxui.swc' to the library, and you get the error that the Virtual Machine Java is short-term memory. The project opens with a blank white window.

    All those put in place with Flash CS6 payment Service? Help, please.

    And why all the documentation for Flash Builder? It's like the Flash Professional CS6 does not yet exist here.

    OK, you win.

    I move to Flash Builder. Hello World worked with the library of qnx and deploying WiFi won me over.

    In addition, Flash Builder opens the possibility of using the API Flash Professional ever could.

  • Compilation of the error using payment service.

    I took this documentation, but they do not compile in the PRC.  Someone else you have cascading payment service?

    Hello

    #include will fix this error.

  • Payment Service Local Test

    Hello

    I use of api payment Service 1.5 and cannot test local.

    "PaymentEngine.setConnectionMode (PaymentEngine.CONNECTION_MODE_LOCAL)" is found in api 1.0 but not availabe in 1.5 api. any suggestions would be very helpful.

    http://supportforums.BlackBerry.com/T5/Java-development/payment-service-SDK-1-5-testing/m-p/1336045#...

  • Services/applications for blackBerry Smartphones that I deleted back on reboot

    I rebooted just my camera, after that I had to reinstall BBM (that is another story), and I found that many services/applications that were on the device when I bought it I deleted are back. Desktop software takes no notice of them, so I think these services are on my SIM card and are loaded on every time I reload my camera.

    However, if I reboot my device after a prompt of the App World app, they don't come back, so there's obviously a few conflicts between the reboots after guests in the App World app, where such services do not return, and that it recharges after the guests of the device, where they come back.

    My question is: short to go to my nearest store of O2 and talk to them, is there a way I can permanently delete these services/applications, or prevent back?

    Services/apps that I mention are:
    Gameloft, who sends me to a website via WAP (which turns out to be retained; Gameloft is where buy you games for your mobile O2, so why I think that these services/applications are created on the SIM card)
    AIM, download Yahoo! Messenger, Google Talk, MySpace and WLM, which are links to their respective download pages, only those links have their own individual icons.

    Hi and welcome to the Forums!

    These icons are shortcuts 'teasers' pushed to you by your carrier. You can't really get rid of those nor can prevent you re-fill (if you check your contract in detail, I'll be there is some small print allowing your carrier to push them to you). On the contrary, what I do is to create a homescreen folder called "Alternative icons" (some call it "Junk") and to settle all these icons. In this way, they are out of the way.

    Good luck!

  • How to connect to an Adobe Javascript(Folder Level Script) SAP Web Service and retrieve the response in a table of the Adobe Javascript/AcroJS. Could you please it explain with an example. I have two required input parameters that must be filled.

    How to connect to an Adobe Javascript(Folder Level Script) SAP Web Service and retrieve the response in a table of the Adobe Javascript/AcroJS. Could you please it explain with an example. I have two required input parameters that must be filled.

    I s generic SOAP example/tutorial on my blog: get a serial number in a form using SOAP - KHKonsulting LLC

    The web service uses only a single parameter, but you should be able to adapt the code to two arguments without problems.

  • All applications freeze briefly and then decline to (HP DV6-6001SA)

    Hello, I recently restored my laptop using the Recovery Manager HP and now applications freeze for about 1-2 seconds then thaw. This happens with all applications that I use (Firefox, GOMplayer/WMP, games, MalwareBytes) I tried to run a memory diagnostic program and hard drive diagnostic program and they both found 0 errors. I tried to clean the registry, antivirus etc analysis I tried to reinstall the applications. I am currently using Windows 7 64 bit. Any help is greatly appreciated, thank you in advance.

    You reinstall all drivers after recovery? If you do not have...

    You can do it from the Recovery Manager.

    Choose the driver you want to install and click Next. You will need to do this for each driver until full. Start with the chipset and graphics driver.

  • My 'creative cloud' application freezes and does not download update - 'Installation update' freezes '0% '

    My 'creative cloud' application freezes and does not download update - 'Installation update' freezes '0% '

    In fact, I went to:

    www.Adobe.com/appsmanager/index.html

    and uploaded CC Desktop App from there.  Worked fine, thanks.

    Dennis

  • Difference between professional and self-service application

    Hi frntz,
    May I know the difference between business applications and self-service application in oracle E - biz. Why we can not be able to use both at the same time?

    Salvation;

    Please check below which could be useful for your question:
    http://download.Oracle.com/tech/blaf/specs/blafusers.html

    Respect of
    HELIOS

  • You try to run LCM make of error during the selection of shared Service application

    Has recently created a new app planning want to import artifacts from LCM in the app. When I click on the newly created in the Shared Services/Application folder application, I get this message.

    'Unable to connect "[new planning app]" to ensure that the application is running and the user has the necessary permissions to access this function'


    If I use the same logon ID to enter in Hyperion Planning I can view/edit the new application of planning.

    Search in Oracle/Middleware/user_projects for log files, but nothing to really stood

    JTS

    It is a new application:
    1. data source control to ensure that the information provided is accurate and if it still fails to attack, then check the logs and share the error message.
    2 try to create a new application, at the time where you receive a message in the planning of this application created successfully, you should have the application created in the EA.

    See you soon... !!!

  • Computer not keeps freezing, no response from the keyboard or mouse, all pages and windows stop loading

    Original title: Vista pc keeps freezing.

    Hello

    My pc keeps freezing, as in no response of the keyboard or mouse, all pages and windows stop loading etc.
    I have to hold the power button to re boot.
    After restarting, it might work correctly for hours or only 2 minutes!
    Seems to be ok in safe mode.
    Any ideas?

    Hi jamesbil,

    Thank you for keeping us posted.

    Method-

    I wish that you uninstall Service Pack 2, and then repeat the repair facility.

    See the article-

    How to uninstall Windows Vista service packs as a troubleshooting step

    http://support.Microsoft.com/kb/948537

    Note: A system restore will undo the changes on the computer. Earlier all applied settings will be lost.

    We know if you need help.

    Thank you.

Maybe you are looking for