OAException.ERROR is not throwing the error

Hi friends,

I am faced with a particular problem. I extended the oracle.apps.per.selfservice.specialinformation.webui.SitNavigationBarCO CO.

When the user clicks the next button, I perform a function and the return value and based on the return value that I throw the error. I am unable to call the function, and then, the function also returns a correct value. However I do not see the error message be lifted. I assume using OAException.ERROR the error pops up in the upper part and the user will not be able to navigate to the next page. Also, I enabled the logging and the function returns the value 'B '.

Here's the code. Any ideas what I am doing wrong help. Apps version is 12.1.3

Thank you

' Public Sub processFormRequest (OAPageContext oapagecontext, OAWebBean oawebbean)

{

super.processRequest (oapagecontext, oawebbean);

If (oapagecontext. GetParameter ("HrNext")! = null) {}

OAApplicationModule oaapplicationmodule = (oawebbean) oapagecontext.getApplicationModule;

OADBTransaction oadbTrans = oaapplicationmodule.getTransaction ((OADBTransaction));

String retValues = null;

try {}

userId int = oapagecontext.getUserId ();

String idFlexNum = "50425;

StringBuffer str = new StringBuffer();

Str.Append ("BEGIN");

Str.Append (": 1: = XX_CUSTOM_SIT.") VALIDATE_LOAN_REQUEST (»);

Str.Append ("p_user_id = >: 2," "");

Str.Append ("p_id_flex_num = >: 3" "");

Str.Append (»); «) ;

Str.Append ("END");

OracleCallableStatement oraclecallablestatement = (OracleCallableStatement) oadbTrans.createCallableStatement (str.toString (), 1);

oraclecallablestatement.setInt (2, userId);

oraclecallablestatement.setInt (3, Integer.parseInt (idFlexNum));

oraclecallablestatement.registerOutParameter (1, Types.VARCHAR);

oraclecallablestatement. Execute();

retValues = oraclecallablestatement.getString (1);

oapagecontext.writeDiagnostics (this, "retValues:" + retValues, 2);

} catch (Exception e) {}

throw OAException.wrapperException (e);

}

If (retValues.equals ("A")) {}

throw new OAException ("You are not eligible for loan based on your service", OAException.ERROR);

}

If (retValues.equals ('B')) {}

throw new OAException ("You can't apply for loan more than 2 times", OAException.ERROR);

}

If (retValues.equals ("C")) {}

throw new OAException ("Loan is false", OAException.ERROR);

}

}

Dear all,

This problem is solved after I put the following instructions.

oapagecontext.putDialogMessage (new OAException (message, OAException.ERROR));

oapagecontext.forwardImmediatelyToCurrentPage (null, true, null);

I thank Rakesh for the solution. Is the thread that helped me

https://forums.Oracle.com/message/3929589#392958

Thank you

Tags: Oracle Applications

Similar Questions

  • Program do not throw the previous run data

    Hi all

    I'm having some trouble with my program. The problem is that the program works perfectly in the first inning, creating a table of data that are received from the serial port and writes on a worksheet. However, when the program is run again without closing the window or change anything in the block diagram, the new table is written to the worksheet as well as old an undesirable, this time in two columns.

    If something in the block diagram is moved that the program works perfectly on the next run. Does anyone know why these data are stuck in mwemory somewhere and how get rid of it without having to reopen the program every time?

    Any help is welcome

    The entrance to initialize on the knot of the thread.

  • Persist does not throw an exception in a JUnit test

    I implement a JUnit test by using Toplink JPA provider. I must be missing something because I try to keep twice the same entity and no exception is thrown. PersistenceException, nor any other type of exception. The code can not be easier:


    @Test
    Public Sub testAddExistingTeam() throws Exception {}

    Team = new Team ("team2");

    try {}

    EntityManagerFactory emf =
    Persistence.createEntityManagerFactory ("Fisher");
    EntityManager em = emf.createEntityManager ();

    em.getTransaction () .begin ();

    EM. Persist (Team);
    EM. Persist (Team);

    em.getTransaction () .commit ();
    EM. Close();
    }
    catch (Exception e) {}
    e.printStackTrace ();
    }

    }

    Note the two em.persist (team).

    This code does not enter into the catch block or produce any kind of exception. On the other hand, I checked after the first
    EM. Persist (Team); the team is really successful.

    The relevant parts of the team following class definition:

    @Entity
    @Table (name = 'TEAM')
    Team/public class implements Serializable {}
    @Id
    @Column (name = "NAME")
    private String name;

    @ManyToOne
    @JoinColumn (name = "CLUB_NAME", referencedColumnName = "NAME")
    Club private;
    category private;
    private String email;

    @ManyToMany (mappedBy = "teams")
    list < competition > competition private;


    public Team (String name) {}
    myIdName = name;
    This.Club = null;
    This.competitions = new ArrayList < competition > ();
    }

    more than builders...getters/setters...and.
    }

    I'm really intrigued by this problem. Could someone help? I would be really grateful!


    Josepma

    This is expected behavior as persist is a no - op if called on one managed entity (other than to the waterfall on relationships with cascade. Persist), and the first call to persist makes the past in team managed entity.

    Try calling em.flush (); and em.clear (); between calls persist to get an exception.
    The first flush will ensure that the team is inserted into the database, while that clear it peel while the second call persist will attempt to insert the team. JPA providers should not throw the entityExistsException persist - it can be delayed until the transaction either emptied or committed, then you are likely to get a PersistenceException validation instead of EntityExistsException to persist.

    Best regards
    Chris

  • Can not stop the process after throwing the error in the OPS

    Dear Experts,

    I am oaf extension co page. I want to stop the process when getting the error after click on apply. I have written logic for error message

    if(vRowCount!= 0)

    {

    pageContext.writeDiagnostics (this, "vrowcoun t! 0 ", 1);

    throw new OAException ("xxThe number already exists", OAException.ERROR);

    }

    It throws the error as an exception, so that it continues the process. I would through error message and stop the process.

    Could someone explain to me how can I solve this problem?

    JDeveloper version: 10.1.3.3.0

    Thanks in advance.

    Here's the code extended co.

    package xxxpai.oracle.apps.ar.hz.components.address.webui;

    import java.sql. *;

    Import oracle.apps.ar.hz.components.address.webui.HzPuiAddressCreateUpdateCO;

    Import oracle.apps.fnd.common.MessageToken;

    Oracle.apps.fnd.framework import. *;

    Import oracle.apps.fnd.framework.server.OADBTransaction;

    Import oracle.apps.fnd.framework.webui.OADialogPage;

    Import oracle.apps.fnd.framework.webui.OAPageContext;

    Import oracle.apps.fnd.framework.webui.beans.OAWebBean;

    Import oracle.apps.fnd.framework.webui.beans.message.OAMessageLovInputBean;

    public class xxHzPuiAddressCreateUpdateCO extends HzPuiAddressCreateUpdateCO

    {

    public xxHzPuiAddressCreateUpdateCO()

    {

    }

    ' Public Sub processRequest (pageContext OAPageContext, OAWebBean webBean)

    {

    super.processRequest (pageContext, webBean);

    }

    ' Public Sub processFormRequest (pageContext OAPageContext, OAWebBean webBean)

    {

    If (PageContext.GetParameter ("Apply")! = null)

    {

    OAApplicationModule am2 = pageContext.getRootApplicationModule ();

    Connection con = pageContext.getApplicationModule (webBean) .getOADBTransaction () .getJdbcConnection ();

    pageContext.writeDiagnostics (this, "entered button1", 1);

    OAViewObject arvo = (OAViewObject) am2.findViewObject ("HzPuiPartySiteVO");

    String abtype = null;

    int vRowCount = 0;

    OAMessageLovInputBean vLOV = (OAMessageLovInputBean) webBean.findChildRecursive ("partySiteInformation0");

    If (vLOV! = null)

    {

    abtype = vLOV.getValue (pageContext) m:System.NET.SocketAddress.ToString ();

    pageContext.writeDiagnostics(this,_(new_StringBuilder()).append ("xxx view object is not null, abtype") .append (abtype) m:System.NET.SocketAddress.ToString (), 1);

    }

    pageContext.writeDiagnostics(this,_(new_StringBuilder()).append ("attribute is") .append (abtype).append("_").toString(), 1);

    Try

    {

    String s1 = (new StringBuilder()).append("").toString ().append("SELECT_no_active_plots_FROM_XXPAI_REF_PLOTS_CONTRCT_VW_where_ref_number_=").append (abtype);

    PreparedStatement vpreparedsatement = con.prepareStatement (s1);

    ResultSet vresultset = vpreparedsatement.executeQuery ();

    pageContext.writeDiagnostics(this,_(new_StringBuilder()).append ("Select is instruction") .append (s1) m:System.NET.SocketAddress.ToString (), 1);

    If (vresultset. Next())

    {

    vRowCount = vresultset.getInt (1);

    pageContext.writeDiagnostics (this, "vRowCount value is" + vRowCount, 1);

    vresultset. Close();

    vpreparedsatement. Close();

    }

    }

    catch (System.Exception e)

    {

    throw OAException.wrapperException (e);

    }

    pageContext.writeDiagnostics(this,_(new_StringBuilder()).append ("vRowCount xxxx") .append (vRowCount) m:System.NET.SocketAddress.ToString (), 1);

    If (vRowCount! = 0)

    {

    pageContext.writeDiagnostics (this, "vrowcoun t! 0 ", 1);

    throw new OAException ("xxThe number already exists", OAException.ERROR);

    }

    }

    super.processFormRequest (pageContext, webBean);

    }

    }

    Hi, I found the solution, I used chips by using the following code.

    MessageToken chips [] = {new MessageToken("ATTRIBUTE3","abtype")};

    OAException errorMessage = new OAException("AR","XX_CUSTOMER_PAGE",tokens,OAException.ERROR,null);

    pageContext.putDialogMessage (errorMessage);

    pageContext.writeDiagnostics(this,_(new_StringBuilder()).append ("xxx before you throw new OAException') .append (vRowCount) m:System.NET.SocketAddress.ToString (), 1);

    pageContext.writeDiagnostics (this, "error message is" + errorMessage, 1);

    pageContext.forwardImmediately ("OA.jsp?page=/oracle/apps/ar/cusstd/acctSite/webui/ArAcctSiteOverviewPG",

    NULL,

    OAWebBeanConstants.KEEP_MENU_CONTEXT,

    NULL,

    NULL,

    true,

    OAWebBeanConstants.ADD_BREAD_CRUMB_NO);

    But, here, I want to update the record already exists, its getting eror

  • Process page not throwing no data found error when you remove the item in a table

    Hi guys,.

    I'm trying to run a process page just before the process of MRU in tabular form and it is throwing an error no data found . Here is my code:
    BEGIN
         
         for i in 1..apex_application.g_f02.count LOOP     
              
              IF apex_application.g_f01(i) is not null THEN
                   
                   UPDATE STOCK
                        SET PRODUCT_QUANTITY = PRODUCT_QUANTITY+apex_application.g_f08(i)
                   WHERE site_id = :P21_SITE_ID and product_id = apex_application.g_f02(i);
                   COMMIT;
                   
              END IF;
         END LOOP;
    END;
    F01 here is the checkbox column and the if statement is the cause of the problem because if I get rid of the update statement (leaving just the commit) then it still throws the error.

    When I click on a checkbox, and hit the Remove button what fires off times this process and then the MRU, I get the error not found data .

    Would appreciate it if someone could shed some light on this. Thank you very much.

    Published by: taepodong on July 1, 2012 07:54

    Hello

    >
    I'm trying to run a process page just before the process of MRU in tabular form and he throws no data were found error. Here is my code:

    BEGIN
    
         for i in 1..apex_application.g_f02.count LOOP     
    
              IF apex_application.g_f01(i) is not null THEN
    
                   UPDATE STOCK
                        SET PRODUCT_QUANTITY = PRODUCT_QUANTITY+apex_application.g_f08(i)
                   WHERE site_id = :P21_SITE_ID and product_id = apex_application.g_f02(i);
                   COMMIT;
    
              END IF;
         END LOOP;
    END;
    

    Here f01 is the column of the box and the if statement is causing the problem because if I get rid of the update statement (leaving just the commit) then it still throws the error.

    When I click on a checkbox and click on Remove button that triggers both this process and then MRU, I get the no found error of data.
    >

    You iterate over the f02 and seeking f01 not null. It's the misuse of the checkbox element. Please see these links. in particular the examples of process OnSubmit.
    http://docs.Oracle.com/CD/E23903_01/doc/doc.41/e21676/apex_item.htm#CHDDCHAF
    http://docs.Oracle.com/CD/E23903_01/doc/doc.41/e21676/apex_app.htm#AEAPI215

    Kind regards

    PS: That's what you need to understand
    >
    Note that the boxes displayed by using APEX_ITEM. CHECK box will only contain values in the APEX_APPLICATION tables for those lines that are checked. Unlike other elements (TEXT, TEXTAREA, and DATE_POPUP) that can contain an entry in the corresponding table of APEX_APPLICATION for all submitted ranks, a checkbox will be an entry in the APEX_APPLICATION table if this option is selected.
    >

    Published by: Dominique July 2, 2012 09:44

  • After upgrading to 5.5.0.46, % error: could not launch the ADE-OS shell. Full disk

    Hi guys

    I upgraded from 5.3.0.40.9 to 5.5.0.46 using the upgraded application that has especially good except that CLI SSH access to the ACS does not work now. It allows me to connect, however immediately throws an error:

    % Error: could not launch the ADE-OS shell. The disk is full.

    I get the same error with a separate administrator account, but one of my colleagues IS able to connect without any problems.

    Any ideas? Thank you.

    Rama

    We were see this question quite frequently in cases where client upgrade from previous versions to ACS 5.5 because in an upgrade process, it also moves the database view and fills the / opt. In your case, it seems to be 100%.

    If this is the case you need to install patch of the roots and then erase the old newspapers. To do this, you must contact TAC.

    Latest version of ACS 5 we have a simple 'cleandb replace acsview' command that actually do the same thing but we don't have an option to connect via SSH.

    http://www.Cisco.com/c/en/us/TD/docs/net_mgmt/cisco_secure_access_contro...

    Kind regards

    Jatin kone

    * Make the rate of useful messages *.

  • Classic report shows wrong "could not parse the SQL query: ORA-00942" error after migrating app to the new environment

    After migrating my APEX 4.1 application to a new environment, one classic report displays a "cannot parse the SQL query: ORA-00942: table or view does not exist" error when the page is displayed. Change the region to report SQL source to somehow (e.g., remove spaces, changing the order of the variables in the WHERE clause) immediately solves the problem, but by returning to the source of the region causes the report error again (the source region valid code without error, however).

    Throw the error message:

    Select v.id,

    v.Col1

    of view_vw v

    where (: P1_FILTER is null or)

    v.col2 = :P1_FILTER)

    Do not throw error:

    Select v.id,

    v.Col1

    of view_vw v

    where (:P1_FILTER is null or)

    v.col2 = :P1_FILTER)

    Changing the order of column in the report has the same effect; i.e. He arranges, but return back to the original column order causes the error to display.

    It's as if a cached result for the correct select statement used by the report is displayed. However, the application does not use the caching of page/region. Any ideas of what could be the cause?

    He solved. Ultimately, all that was necessary was to clear the DB cache using:

    alter system flush shared_pool;

  • DB Link error: ORA-12154: TNS: could not resolve the connect identifier specified

    Hi all

    We need to make an entry in the tnsname.ora file in a local database to connect to the remote database using db link?

    Here is my code: -.

    create the database link * _DBLINK

    connect to the USER IDENTIFIED BY 'user '.

    using '(DESCRIPTION =)

    (ADDRESS_LIST =

    (ADDRESS = (PROTOCOL = TCP) (HOST = *. *. *. *)(PORT = 1521))

    )

    (CONNECT_DATA = (SERVICE_NAME = REM)

    )';

    After the creation of the DB connection when I'm trying to run select 1 of dual@***_DBLINK

    He throws me an error ORA-12154: TNS: could not resolve the connect identifier specified

    Am I expected to do an entry in the file tnsname.ora for "REM". I don't remember making any changes in the file tnsname.ora for the creation and access of the remote database via dblink.

    Help, please.

    Thanks in advance.

    2925917 wrote:

    Hi all

    We need to make an entry in the tnsname.ora file in a local database to connect to the remote database using db link?

    Here is my code: -.

    create the database link * _DBLINK

    connect to the USER IDENTIFIED BY 'user '.

    using '(DESCRIPTION =)

    (ADDRESS_LIST =

    (ADDRESS = (PROTOCOL = TCP) (HOST = *. *. *. *)(PORT = 1521))

    )

    (CONNECT_DATA = (SERVICE_NAME = REM)

    )';

    After the creation of the DB connection when I'm trying to run select 1 of dual@***_DBLINK

    He throws me an error ORA-12154: TNS: could not resolve the connect identifier specified

    Am I expected to do an entry in the file tnsname.ora for "REM". I don't remember making any changes in the file tnsname.ora for the creation and access of the remote database via dblink.

    Help, please.

    Thanks in advance.

    I've learned to trust in your obfuscation you covered something important, or you are showing some apples and oranges.  Error to declare you come from not being able to find referenced in tnsnames.ora entry, but the way you say you created your link db, you hardcoded the entire connection, so he never users tnsnames.ora.

    I would change the definition of db_link

    create the database link * _DBLINK

    connect to the USER IDENTIFIED BY 'user '.

    using "REM."

    Then create an entry in your tnsnames.ora

    REM =

    (DESCRIPTION =

    (ADDRESS_LIST =

    (ADDRESS = (PROTOCOL = TCP) (HOST = *. *. *. *)(PORT = 1521))

    )

    (CONNECT_DATA = (SERVICE_NAME = REM)

    )

    )

    Also, use server name instead of the HOST = IP address

    The closer looks that you can miss brackets final closing on your original definition.

  • Throw the error on a popup message

    Hello

    12.1.3 Jdev

    I have to implement the change password functionality in one of my page. I created a link on my page saying 'Change Password '. When I click on this link a new window comes up with 2 password fields. When I click OK, it calls the method in the managed Bean. Everything works fine.

    But I wanted to throw, and the error message when the entered password will not match. How can I throw the error message in the popup window without closing the popup.

    I tried the codes, but what's going on here is the original popup is closed and a new popup comes up with the error message.

    JboException ex = new JboException("Passwords are different. !!!!!"); 
               BindingContext bctx = BindingContext.getCurrent();
               ((DCBindingContainer)bctx.getCurrentBindingsEntry()).reportException(ex);
    

            FacesContext context = FacesContext.getCurrentInstance();
            FacesMessage facesMessage = new FacesMessage(FacesMessage.SEVERITY_INFO, "Password are different.", "");
            context.addMessage(null, facesMessage);
    

    I wanted are the popup Window with the password window should remain, an error message to show. (in another pop-up window or on the same pop-up window.)

    Popup window code:

      <af:popup childCreation="deferred" autoCancel="disabled" id="popupPwd">
                                                <af:dialog id="d2" title="Change Password"
                                                           dialogListener="#{pageFlowScope.profileBean.changePassword}">
                                                    <f:facet name="buttonBar"/>
                                                    <af:panelFormLayout id="pfl4">
                                                        <f:facet name="footer"/>
                                                        <af:inputText label="New Password" id="it2" secret="true"
                                                                      value="#{pageFlowScope.profileBean.newPassword}"/>
                                                        <af:inputText label="Re-enter New Password" id="it12"
                                                                      secret="true"
                                                                      value="#{pageFlowScope.profileBean.newPassword1}"/>
                                                    </af:panelFormLayout>
                                                </af:dialog>
                                            </af:popup>
    

    See you soon

    AJ

    Check this blog Blog of the ADF (Application Development Framework) that shows how to do this.

    Timo

  • HTTPS webservcie call forwarding Apache2 for weblogic throws the error message

    Dear Sir.

    I have a prob in invoking webservice deployed on WLS 10.3.4 via Apache2 server.

    Below is configured on machine apache httpd-dist file.

    < VirtualHost 10.xx.xx.18:443 >

    ....

    < IfModule weblogic_module >

    WebLogicCluster 10.xx.xx.30:8013

    Debugging now

    WLProxySSL OFF

    DynamicServerList WE

    WLLogFile /tmp/weblogic_ssl.log

    WLTempDir/tmp

    WLIOTimeoutSecs 1800

    DebugConfigInfo WE

    < / IfModule >

    < location TestApp >

    SetHandler weblogic-Manager

    < / location >

    < /TestWebService location >

    SetHandler weblogic-Manager

    < / location >

    < / VirtualHost >

    ProxyPreserveHost on

    ProxyRequests off

    SSLProxyEngine on

    The web application (TestApp) works very well when you call the https protocol.

    But for the service (TestWebService) web when calling using the https protocol, it throws the below error:

    AxisFault

    faultCode: {http://schemas.xmlsoap.org/soap/envelope/} Server

    faultSubcode:

    faultString: weblogic.wsee.server.ServerURLNotFoundException: cannot resolve a URL for http/https

    faultActor:

    faultNode:

    faultDetail:

    {java.io} string: java.lang.RuntimeException: weblogic.wsee.server.ServerURLNotFoundException: cannot resolve a URL for http/https

    weblogic.wsee.server.ServerURLNotFoundException: cannot resolve a URL for http/https

    weblogic.wsee.server.ServerURLNotFoundException: cannot resolve a URL for http/https

    at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:221)

    at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:128)

    at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)

    at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(AbstractSAXParser.java:601)

    at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(XMLDocumentFragmentScannerImpl.java:1782)

    to com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$ FragmentContentDriver.next (XMLDocumentFragmentScannerImpl.java:2938)

    at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImpl.java:648)

    at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(XMLNSDocumentScannerImpl.java:140)

    at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:511)

    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:808)

    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:737)

    at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:119)

    at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1205)

    to com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$ JAXPSAXParser.parse (SAXParserImpl.java:522)

    at javax.xml.parsers.SAXParser.parse(SAXParser.java:395)

    at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)

    at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)

    at org.apache.axis.Message.getSOAPEnvelope(Message.java:424)

    at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke (MustUnderstandChecker.java:62)

    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)

    at org.apache.axis.client.Call.invokeEngine(Call.java:2765)

    at org.apache.axis.client.Call.invoke(Call.java:2748)

    at org.apache.axis.client.Call.invoke(Call.java:2424)

    at org.apache.axis.client.Call.invoke(Call.java:2347)

    at org.apache.axis.client.Call.invoke(Call.java:1804)

    When access us the WSDL url using the protocol https, it returns the wsdl XML properly. Just call to the method on the Web service throws the error.

    Here's the log of apache for ssl request errors.

    = New request: [HTTP/1.0 POST/TestWebService/TestService] =.

    Kills Sep 27 10:11:42 2013 < 655913775839021 > INFO: SSL is not configured

    Kills Sep 27 10:11:42 by 2013 < 655913775839021 > TestWebService/Uri/TestService

    Kills Sep 27 10:11:42 2013 < 655913775839021 > after trimming path: "TestWebService/TestService".

    Kills Sep 27 10:11:42 2013 < 655913775839021 > the string of final demand is "TestWebService/TestService".

    Kills Sep 27 10:11:42 2013 < 655913775839021 > host extracted serverlist is [10.xx.x.30]

    Kills Sep 27 10:11:42 lastIndex Initializing 2013 < 655913775839021 > = 0 to get a list of length = 1

    Kills Sep 27 10:11:42 2013 < 655913775839021 > getListNode: creates a new node for the server: id ='10.xx.x.30:8013 ' server_name ='10.xx.xx.18 ', port = "443"

    Kills Sep 27 10:11:42 will 2013 < 655913775839021 > get the data of publication of size = 388 clength = 0

    Kills Sep 27 10:11:42 2013 < 655913775839021 > try #0 out of a maximum of 5

    Kills Sep 27 10:11:42 2013 < 655913775839021 > attempts a connection grouped to '10.xx.xx.30/8013/8013 '.

    Kills Sep 27 10:11:42 2013 < 655913775839021 > getPooledConn: no more connections in the pool for Host [10.xx.xx.30] Port [8013] SecurePort [8013]

    Kills Sep 27 10:11:42 2013 < 655913775839021 > General list: try to connect to ' 10.xx.xx.30'/8013/8013 on line 2724 for "TestWebService/TestService".

    Kills Sep 27 10:11:42 2013 < 655913775839021 > INFO: new URL NON - SSL

    Kills Sep 27 10:11:42 2013 < 655913775839021 > Connect returns-1 and error no game to 150, msg '' ongoing Operation. ''

    Kills Sep 27 10:11:42 2013 < 655913775839021 > EINPROGRESS at connect() - selection

    Kills Sep 27 10:11:42 Port Local 2013 < 655913775839021 > of the socket is 37994

    Kills Sep 27 10:11:42 2013 < 655913775839021 > Remote Host 10.xx.xx.30 remote Port 8013

    Kills Sep 27 10:11:42 2013 < 655913775839021 > General list: created a new connection to ' 10.xx.xx.30'/8013 for 'TestWebService/TestService', port: 37994 Local

    Kills Sep 27 10:11:42 2013 < 655913775839021 > URL::parseHeaders: CompleteStatusLine set to [HTTP/1.1 500 Internal Server Error]

    Kills Sep 27 10:11:42 2013 < 655913775839021 > URL::parseHeaders: StatusLine value [500 Internal Server Error]

    Kills Sep 27 10:11:42 2013 < 655913775839021 > analyzed all headers OK

    Kills Sep 27 10:11:42 2013 < 655913775839021 > sendResponse(): r-> status = "500"

    Kills Sep 27 10:11:42 2013 < 655913775839021 > free old srvrList, id = [10.xx.xx.30:8013], [10.xx.xx.18] = server_name, server_port = [443]

    Kills Sep 27 10:11:42 Parsing 2013 < 655913775839021 > list cluster:-2116126659! 174266130! 7003! -1 | 1098407374! 174266142! 7013! -1

    Kills Sep 27 10:11:42 2013 < 655913775839021 > parseJVMID: analysis JVMID '-2116126659! 174266130! 7003! -1 | 1098407374! 174266142! 7013! -1 '

    Kills Sep 27 10:11:42 2013 < 655913775839021 > parseJVMID: in fact the analysis '-2116126659! 174266130! 7003! -1 '

    Kills Sep 27 10:11:42 2013 < 655913775839021 > ServerInfo struct to JVMID '-2116126659' populous '.

    Server details are:

    OrigHostInfo [10.99.23.18]

    isOrigHostInfoDNS [0]

    Host [10.99.23.18]

    Port [7003]

    SecurePort [0]

    Kills Sep 27 10:11:42 2013 < 655913775839021 > parseJVMID: analysis JVMID ' 1098407374! 174266142! 7013! -1 '

    Kills Sep 27 10:11:42 2013 < 655913775839021 > parseJVMID: in fact the analysis ' 1098407374! 174266142! 7013! -1 '

    Kills Sep 27 10:11:42 struct ServerInfo 2013 < 655913775839021 > for JVMID people ' 1098407374'

    Server details are:

    OrigHostInfo [10.99.23.30]

    isOrigHostInfoDNS [0]

    Host [10.99.23.30]

    Port [7013]

    SecurePort [0]

    Kills Sep 27 10:11:42 lastIndex Initializing 2013 < 655913775839021 > = 0 to get a list of length = 2

    Kills Sep 27 10:11:42 2013 < 655913775839021 > # a got a new list of server of length 2 #.

    Kills Sep 27 10:11:42 2013 < 655913775839021 > # #Response #: Srvr # [1] = [10.99.23.18:7003:0]

    Kills Sep 27 10:11:42 2013 < 655913775839021 > # #Response #: Srvr # [2] = [10.99.23.30:7013:0]

    Kills Sep 27 10:11:42 2013 < 655913775839021 > canRecycle: conn = 1 table = 500 = 0 clen = - 1 = 0 isCTE isKA

    Kills Sep 27 10:11:42 2013 < 655913775839021 > closeConn: URL.canRecycle () returns false, removal of URL "10.xx.xx.30/8013".

    Kills Sep 27 10:11:42 2013 < 655913775839021 > [TestWebService/TestService] processed

    Kindly help me to solve this problem,

    Zia

    Hello

    I solved this issue by disabling the option 'WebLogic plug-in enabled' field > Cluster > (select the clustrer) and Configuration > general tabe > advanced option.

    By disabling this option my webservice is working porperly. Re Apache runs correctly.

  • System DSN throw the code system error 126

    Hello

    When I tried to Configure DSN set up the system throwing the error below

    Oracleinstantclient10_2 ODBC driver installation routines pourraient not loaded because the system 126 error code. followed by
    Unable to load a whole library or a translator.

    Operating system: xP

    Oracle Database: 10 g

    The content: (C:\Oracle\instantclient10_2) dir
    --------------------------------------------------------------
    BASIC_README
    classes12.jar
    OCI.dll
    ocijdbc10.dll
    Ociw32.dll
    ODBC_IC_Readme_Win.html
    odbc_install.exe
    odbc_uninstall.exe
    ODBCRelnotesUS.htm
    ojdbc14.jar is
    orannzsbb10.dll
    oraocci10.dll
    oraociei10.dll
    sqora32.dll
    SQORA.chm
    sqoras32.dll
    sqresus.dll


    TNS file content:

    YourTNSName = sery

    (DESCRIPTION =

    (ADDRESS_LIST =

    (ADDRESS = (PROTOCOL = TCP)(HOST =localhost) (PORT = Default1521 >))

    )

    (CONNECT_DATA =

    (SID = Seya)

    (SERVER = DEDICATED)

    )

    Please advise me on this.

    user12994238 wrote:
    Hi schavali,

    Thanks a lot, now I got a different error

    While I created the DNS set up the system throws the message below

    Unable to connect
    SQLState = 08004

    DNS Set Up for system instantclient(win32-10.2.0.4) throw as ORA-12154; AMT: could not resolve identified the specified connection.

    operationg system: xp

    path dir: C:\Oracle\instantclient10_2

    Thank you
    Sery

    ORA-12154: TNS: could not resolve the connect identifier specified

    This error means one thing and one thing only. The customer couldn't find the entry specified in the tnsnames.ora file being used.

    Following this statement, remember that when you use a dblink, the database that defines the link acts as a client to the database that is the target of the link. So in this case, the tnsnames.ora on the host of your source file must have an entry for your db target, as defined in the db_link.

    And for the umpteenth time... This error has nothing to do with the status of a listener. The connection request never got far enough to reach a listener. If someone tells you to check a listener, they do not pay attention, or do not understand how works the TNS. This error is equivalent to not be able to place a phone call because you do not know the number of the part you want to reach. You would not debug this situation by going to the home of the other guy and test his phone, or by accessing the phone company and the standard test. And you are debugging an ORA-12154 by checking the listener. If I had a list of ten albums of 'Incredibly Simple Concepts (tm)' which must be burned in the brain of anyone claiming to be an Oracle DBA, it would include "ORA-12154 has nothing to do with the listener.
    =====
    Suppose you have the following in your tnsnames.ora:

    larry =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = myhost)(PORT = 1521))
        )
        (CONNECT_DATA =
          (SERVICE_NAME = curley)
        )
      )
    

    Now, when you issue a connect, say like this:

    $> sqlplus scott/tiger@larry
    

    TNS will appear in your tnsnames.ora for an entry called "larry". Then, tns sends a request to (PORT = 1521) on (HOST = myhost) to aid (PROTOCOL = TCP), requesting a connection to (SERVICE_NAME = curley).

    Where's (HOST = myhost) on the network? When the request is passed to tns to the next layer in the network stack, the name "myhost" resolves to an IP address, either via a file 'hosts' local, through DNS, or possibly other mechanisms being used less. Alternatively, you can hard-code the IP (HOST = 123.456.789.101) in the tnsnames.ora.

    Then, the request arrives at port 1521 myhost. If all goes well, there is a listener on myhost configured to listen on port 1521, and this listener knows SERVICE_NAME = curley. If so, you'll be connected.

    A few important points.

    First, the listener is a process only server-side . It's all in life seeks applications for reception for connections to the databases and set up these connections. Once the connection is established, the listener is out of the picture. It creates the connection. Is not maintain the connection. A listener, linking an oracle of the House, listening on a single port, use multiple instances of database in several versions of several houses. It is unnecessary complexity to try to have several headphones. It's like the telephone company, to build a separate table for each customer.

    Secondly, the tnsnames.ora file is a problem on the client side . Its purpose is to resolution addressess - the equivalent of the 'hosts' file tns further to the bottom of the network stack. The only reason it exists on a host computer is because this machine also can run client processes.

    What can go wrong?

    First, there may not be an entry for 'larry' in your tnsnames file. In this case, you get "ORA-12154: TNS: could not resolve the connect identifier specified" no need to go looking for a problem on the host, with the listener, etc.. If you cannot place a phone call because you do not know the number (cannot find your phonebook (tnsnames.ora) or can not find the party looking for listed in it (no entry for larry)) you don't look at problems at the switchboard.

    Perhaps the entry for larry was found, but myhost could not be resolved to an IP address (for example there is no entry for myhost in the local hosts file). This will mean by "ORA-12545: Connect failed because target host or object does not exist.

    Maybe there is an entry for MyServer in the local hosts file, but it specified a bad IP address. This will mean by "ORA-12545: Connect failed because target host or object does not exist.

    Maybe the INVESTIGATION period was good, but there is no listener running: "ORA-12541: TNS:no listener.

    Maybe the INVESTIGATION period was good, there is a listener to myhost, but he is listening on a different port. "ORA-12560: TNS:protocol adapter error.

    Maybe the INVESTIGATION period was good, there is a listener to myhost, listening on the specified port, it's unknown SERVICE_NAME = curley. "ORA-12514: TNS:listener is not currently of service requested in connect descriptor.

  • I uninstalled flash on my mac now youtube videos will not play. the error says safari does not recognize the video formats available.

    I uninstalled flash on my mac now youtube videos will not play.

    the error says safari does not recognize the video formats available.

    Reinstall the Flash Player... Why did you remove it?

    Barry

  • I get a JavaScript Application error: "setTimeout" called on an object that does not implement the interface Window for Firefox.

    I get a pop up box with the message: Application JavaScript error: "setTimeout" called on an object that does not implement the interface Window for Firefox.

    But it seems to appear when I go to Amazon.com. Then he opens with this message and the OK option? But as fast as I can click OK, another box appears. After all a half dozen, she disappears - until what I move to another part of Amazon! I uninstalled - reinstalled and then - Firefox and BA. I do not understand this!

    (And of course, there is always the possibility that it is not only attacking me on Amazon... There may be a lot of other sites that also trigger, and I just haven't been there yet.)

    Hello

    Try Firefox Safe mode to see if the problem goes away. Firefox Safe mode is a troubleshooting mode that temporarily disables hardware acceleration, restores some settings and disables add-ons (extensions and themes).

    If Firefox is open, you can restart Firefox Safe mode in the Help menu:

    • In Firefox 29,0 and above, click on the menu button

      click Help

      then select restart with disabled modules.

    • In previous versions of Firefox, click on the Firefox button in the upper left of the Firefox window and click help (or click on help in the Menu bar, if you do not have a Firefox button) and click on restart with disabled modules.

    If Firefox is not running, you can start Firefox in Mode safe mode as follows:

    • On Windows: Hold down the SHIFT key when you open the desktop Firefox or shortcut in the start menu.
    • On Mac: Hold the option key during the startup of Firefox.
    • On Linux: Exit Firefox, go to your Terminal and run firefox-safe-mode
      (you may need to specify the installation path of Firefox for example/usr/lib/firefox)

    When the Firefox Safe Mode window appears, select "start mode safe."

    If the problem is not present in Firefox Safe Mode, your problem is probably caused by an extension, theme or hardware acceleration. Please follow the steps described in the section Troubleshooting extensions, themes and problems of hardware acceleration to resolve common Firefox problems to find the cause.

    To exit safe mode of Firefox, simply close Firefox and wait a few seconds before you open Firefox for normal use again.

    When find you what is causing your problems, please let us know. This might help others with the same problem.

  • What do I do about this error? -Server does not support the RFC 5746, see CVE-2009-3555

    I get this message to both cox.pop and a verizon.pop of servers
    When it occurs, TB connects and he's there, without having to download the messages. I can send them however.
    It is an intermittent problem. It is not always the case.

    Thank you in advance.
    Jack

    This is a warning and harmless, if bulky to the error console.
    It is not your problem, whatever it is. It is a warning that your server doesn't support security. But is nothing important in the world of ISPS who refuse to do security as it complicates things and increases their support costs.

    As an indicator, perhaps it indicates your anti virus having a fit. Try disabling anti virus scanning email and see if the error Stops. I have a suspicion it will be.

  • I have a My Passport to the top by car and I get error messages on this to be ejected (although it was still connected). Now my computer does not recognize the drive. All solutions?

    I have a My Passport to the top by car and I get error messages on this to be ejected (although it was still connected). Now my computer does not recognize the drive. All solutions?

    Drive, interface in the crankcase of training controller, or the USB port or the cable may be faulty.

Maybe you are looking for