SQL exception occurred during PL/SQL upload  (Web ADI)

Hi,
I am having issue loading data using Web ADI, I am getting "SQL exception occurred during PL/SQL upload" error, I tried to restart Apache, also looked into the BNE.log file for the exact error but I am still not sure about this exception, can anyone please help?
bne:text="SQL exception occurred during PL/SQL upload."
bne:cause="Database insert error"
RDBMS: 11.2.0.3.0
Oracle Applications: 12.0.6
Thanks,
Bharat

I am having issue loading data using Web ADI, I am getting "SQL exception occurred during PL/SQL upload" error, I tried to restart Apache, also looked into the BNE.log file for the exact error but I am still not sure about this exception, can anyone please help?Please rename the log file, reproduce the issue and check the log file then.
bne:text="SQL exception occurred during PL/SQL upload."
bne:cause="Database insert error"Please see these docs.
R12 Uploading Intercompany Transactions Shows SQL Exception Occurred During PL/SQL Upload [ID 1234063.1]
Batch Element Entry (BEE) Spreadsheet Interface > 10 Rows Fails with Error: 'SQL exception occured during PL/SQL Upload.' [ID 388012.1]
How Do You Setup An AGIS Transaction That Has Several Transaction Lines For The Same Transaction [ID 946499.1]
FCH: Error: "The upload process has completed with errors. Please Close to return to the document and fix the errors. - No rows uploaded - <999> rows were invalid" During WebADI Data Upload [ID 553025.1]
R12: Legal Entity Name must be < 31 characters. [ID 472505.1]
Oracle Payroll 'Batch Element Entry ( BEE )' Frequently Asked Questions ( FAQ ) [ID 1353021.1]
Thanks,
Hussein

Similar Messages

  • SQL exception occurred during PL/SQL upload in WEB ADI Upload

    Hi All,
    I created Custom Integrator with META DATA as Update. This Integrator Downloads the data and will update the date. Once it is updated, I am uploading the same. For Quite Some Time, Everything is working fine and no issue.
    All of Suddenly , I am getting the error message 'SQL exception occurred during PL/SQL upload.' When I am trying to update and upload the values in the same custom integrator.
    My Oracle Apps and DB Version are
    RDBMS : 11.1.0.7.0
    Oracle Applications : 12.1.3
    Any Help is appreciated.

    I found the issue. If you check read only check box for the mandataory parameters that Package is using, then we get this issue. Try to avoid read only check box for mandatory parameters in th epackage.
    For Example.
    I am using hr_person_extra_info_api.update_person_extra_info API in my custom package, In this API, p_person_extra_info_id is the mandaory parameter.
    I am trying to download the data and updating the data and uploading the values with the custom WEB ADI. In the custom layout, I checked ready only box to parameter 'p_person_extra_info_id '. With this I am getting issue 'SQL exception occurred during PL/SQL upload in WEB ADI Upload'.
    again I unchecked the read only button to this 'p_person_extra_info_id ' Parameter. It is uplaoding and working with no issues.
    Thanks Guys for all your help.

  • Getting SQL Exception occurred during PL/SQL Upload instead of custom message in Web ADI excel.

    I am using procedure driven WEB ADI and want to do basic validation for the same.
    The code for validation is:
    BEGIN
             SELECT 'X'
               INTO V_X
               FROM DUAL
              WHERE P_FROM_DATE IS NOT NULL
                AND P_TO_DATE IS NOT NULL;
          EXCEPTION
             WHEN OTHERS
             THEN
                HR_UTILITY.SET_MESSAGE (800, 'PLEASE FILL THE DATES');
                HR_UTILITY.RAISE_ERROR;
          END;
    The error is fired as required, but the message is not the one which I want to show. In the message it says:
    SQL Exception occurred during PL/SQL Upload instead of 'PLEASE FILL THE DATES'.
    PFA the complete procedure for your consideration.
    Awaiting your quick reply.

    Can you please paste the complete error message(stack)
    better post sql, pl/sql ones in the below forum -
    PL/SQL

  • Sql exception occurred during pl/sql upload error in custom integrator

    Hi,
    I have modified custom integrator which was working fine. I have added one column in template and the lov is working fine.
    Issue is that when i upload the file to oracle it showing error as ''sql exception occurred during pl/sql upload".
    I have tried executing the same from back end but it was working fine from back end and inserting properly in interface table.
    Kindly suggest for the issue.
    Regards,
    Gk

    Hi,
    You can get the error message in excel sheet itself by using the following piece of code.
    FND_MESSAGE.CLEAR;
    FND_MESSAGE.SET_NAME ('APPLICATION', 'APPLICATION_MESSAGE_NAME');
    FND_MESSAGE.SET_TOKEN ('ERROR_TOKEN', ERROR MESSAGE);
    FND_MESSAGE.RAISE_ERROR;
    Create an excpetion block and include the above piece of code whilde catching the exception.
    APPLICATION- The applicatio in which you create message
    APPLICATION_MESSAGE_NAME-  The message Name
    ERROR_TOKEN- You must create a token in application message
    ERROR MESSAGE- You can see the  error using SQLERRM.
    Thanks,
    Vinoop

  • Exception occured during processing of a Web Dynpro application

    Hi,
    When I deploy the WD application on to the WAS Engine 6.40, am getting message Dployed succefully. But when I run the application am getting the following message in trace file.
    <b>The requested deployable object 'local/<componentname>' and application '<applicationname>' are not deployed on the server. Please check the used URL for typos.".</b>
    Any suggestions as to whatz happening here...
    JCO connections tested and working perfectly
    SLD configuration done

    Hi,
    If your NWDS version is 7.0.0 and you are deploying it in  WAS 7.0.0 ..
    it should work.
    Deploy your project once again.
    Error while deploying a composite application
    Regards,
    Mithu

  • Ng An exception occurred during the execution of the current web request.

    An exception occurred during the execution of the current web request. Please contact the administrator to review the stack trace in the event log for more information about the error.
    this error occured while making changes to the mapings, there was "&" in the source account and some test also loaded in the text,
    the versio n of FDM is 11.1.2.0
    I understand that because of loading & in the source account it is causing this issue,
    How to delete this invalid char from database, which table and column will contain this information, Please advise me how to proceed on this.
    thanks,
    msr

    This TSQL will do the trick. It's not the cleanest as I just wrote it, but it will dynamically remove the & from the data mapping tables and replace any invalid entries with the phrase INVALID.
    --Remove && from Data Maps
    --Charles Beyer ([email protected])
    --NOTES : 'Hackish' version for demonstration purposes
    -- Declare working variables
    DECLARE @strTableName varchar(255)
    DECLARE @strSql Nvarchar(500)
    -- Create cursor to iterate through each Data Map table.  Look in special table sysobjects to get a list of the tables.
    DECLARE crsDataMapTables Cursor For
       select name
          from sysobjects
          where name like 'tdatamap%'
             and xtype = 'U'
    Open crsDataMapTables
    Fetch Next from crsDataMapTables Into @strTableName  --Get the name of the first Data Map table and place it into working variable
    While @@FETCH_STATUS = 0 Begin  --While records (table names) exist, execute loop logic
    print 'Cleaning table : ' + @strTableName
      --Multi-pass updates to check the SrcKey, TargKey, and WhereClauseValue fields for the invalid character
      --Dynamic SQL is used below so that we can use the Table Name from the cursor..
      Set @strSQL = 'UPDATE ' + @strTableName + ' set SrcKey = ''Invalid'' where SrcKey like (''%&%'')'
      exec (@strSQL)
      Set @strSQL = 'UPDATE ' + @strTableName + ' set TargKey = ''Invalid'' where TargKey like (''%&%'')'
      exec (@strSQL)
      Set @strSQL = 'UPDATE ' + @strTableName + ' set WhereClauseValue = ''Invalid'' where WhereClauseValue like (''%&%'')'
      exec (@strSQL)
      Fetch Next from crsDataMapTables Into @strTableName
    End
    --Dispose of Cursor as we are done.
    Close crsDataMapTables
    Deallocate crsDataMapTables
     

  • N unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    some one can help me please
    i have no idea what i must to do.
    an unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    The Exception Handler gave all the info that you need. No need to print the whole stack trace.
    The exception handler says
    Exception Details: java.lang.IllegalArgumentException
    TABLE1.NAME
    Look in the session bean (assuming that is where your underlying rowset is). Look in the _init() method for statements similar to the following:
    personRowSet.setCommand("SELECT * FROM TRAVEL.PERSON");
    personRowSet.setTableName("PERSON");
    What do you have?

  • Exception occurred during event dispatching:java.lang.NoSuchMethodError

    Hello,
    We have upgraded to the latest Oracle Application Server version 10.1.2.3.0 and the webutil version is 1.0.6.
    But we face the following error while accessing the web link. Following message captured from Java Console.
    Please suggest if you have any solutions/idea about this error. Thanks !
    Oracle JInitiator: Version 1.3.1.22
    Using JRE version 1.3.1.22-internal Java HotSpot(TM) Client VM
    Maximum size: 50 MB
    Compression level: 0----------------------------------------------------
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Downloading http://si02938.in.irt.com:7778/forms/java/frmall_jinit.jar to JAR cacheDownloading http://si02938.in.irt.com:7778/forms/java/frmwebutil.jar to JAR cacheDownloading http://si02938.in.irt.com:7778/forms/java/jacob.jar to JAR cacheDownloading http://si02938.in.irt.com:7778/forms/java/FileInformation.jar to JAR cacheDownloading cacheproxyHost=nullproxyPort=0connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.3
    Exception occurred during event dispatching:java.lang.NoSuchMethodError     at oracle.forms.webutil.common.VBeanCommon.init(VBeanCommon.java:281)     at oracle.forms.handler.UICommon.instantiate(Unknown Source)     at oracle.forms.handler.UICommon.onCreate(Unknown Source)     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)     at oracle.forms.engine.Runform.processMessage(Unknown Source)     at oracle.forms.engine.Runform.processSet(Unknown Source)     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)     at oracle.forms.engine.Runform.onMessage(Unknown Source)     at oracle.forms.engine.Runform.processEventEnd(Unknown Source)     at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)     at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)     at java.awt.Component.dispatchEventImpl(Unknown Source)     at java.awt.Container.dispatchEventImpl(Unknown Source)     at java.awt.Component.dispatchEvent(Unknown Source)     at java.awt.EventQueue.dispatchEvent(Unknown Source)     at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)     at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)     at java.awt.EventDispatchThread.pumpEvents(Unknown Source)     at java.awt.EventDispatchThread.run(Unknown Source)
    Edited by: user12233243 on Nov 16, 2009 10:28 PM
    Edited by: user12233243 on Nov 16, 2009 10:29 PM

    hi
    read the following configuration i hope it will help u.
    How to get up and running with WebUtil 1.06 included with Oracle Developer Suite 10.1.2.0.2 on a win32 platform
    Solution
    Assuming a fresh "Complete" install of Oracle Developer Suite 10.1.2.0.2,
    here are steps to get a small test form running, using WebUtil 1.06.
    Note: [OraHome] is used as an alias for your real oDS ORACLE_HOME.
    Feel free to copy this note to a text editor, and do a global find/replace on
    [OraHome] with your actual value (no trailing slash). Then it is easy to
    copy/paste actual commands to be executed from the note copy.
    1) Download http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip
    and extract to a temporary staging area. Do not attempt to use 1.7 or 1.9.
    2) Copy or move jacob.jar and jacob.dll
    [JacobStage] is the folder where you extracted Jacob, and will end in ...\jacob_18
    cd [JacobStage]
    copy jacob.jar [OraHome]\forms\java\.
    copy jacob.dll [OraHome]\forms\webutil\.
    The Jacob staging area is no longer needed, and may be deleted.
    3) Sign frmwebutil.jar and jacob.jar
    Open a DOS command prompt.
    Add [OraHome]\jdk\bin to the PATH:
    set PATH=[OraHome]\jdk\bin;%PATH%
    Sign the files, and check the output for success:
    [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\frmwebutil.jar
    [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\jacob.jar
    4) If you already have a schema in your RDBMS which contains the WebUtil stored code,
    you may skip this step. Otherwise,
    Create a schema to hold the WebUtil stored code, and privileges needed to
    connect and create a stored package. Schema name "WEBUTIL" is recommended
    for no reason other than consistency over the user base.
    Open [OraHome]\forms\create_webutil_db.sql in a text editor, and delete or comment
    out the EXIT statement, to be able to see whether the objects were created witout
    errors.
    Start SQL*Plus as SYSTEM, and issue:
    CREATE USER webutil IDENTIFIED BY [password]
    DEFAULT TABLESPACE users
    TEMPORARY TABLESPACE temp;
    GRANT CONNECT, CREATE PROCEDURE, CREATE PUBLIC SYNONYM TO webutil;
    CONNECT webutil/[password]@[connectstring]
    @[OraHome]\forms\create_webutil_db.sql
    -- Inspect SQL*Plus output for errors, and then
    CREATE PUBLIC SYNONYM webutil_db FOR webutil.webutil_db;
    Reconnect as SYSTEM, and issue:
    grant execute on webutil_db to public;
    5) Modify [OraHome]\forms\server\default.env, and append [OraHome]\jdk\jre\lib\rt.jar
    to the CLASSPATH entry.
    6) Start the OC4J instance
    7) Start Forms Builder and connect to a schema in the RDBMS used in step (4).
    Open webutil.pll, do a "Compile ALL" (shift-Control-K), and generate to PLX (Control-T).
    It is important to generate the PLX, to avoid the FRM-40039 discussed in
    Note 303682.1
    If the PLX is not generated, the Webutil.pll library would have to be attached with
    full path information to all forms wishing to use WebUtil. This is NOT recommended.
    8) Create a new FMB.
    Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
    There is no need to Subclass the WebutilConfig object.
    Attach the Webutil.pll Library, and remove the path.
    Add an ON-LOGON trigger with the code
    NULL;
    to avoid having to connect to an RDBMS (optional).
    Create a new button on a new canvas, with the code
    show_webutil_information (TRUE);
    in a WHEN-BUTTON-PRESSED trigger.
    Compile the FMB to FMX, after doing a Compile-All (Shift-Control-K).
    9) Under Edit->Preferences->Runtime in Forms Builder, click on "Reset to Default" if
    the "Application Server URL" is empty.
    Then append "?config=webutil" at the end, so you end up with a URL of the form
    http://server:port/forms/frmservlet?config=webutil
    10) Run your form.
    If its Correct/Helpful please mark it thanks.
    Sarah

  • Exception occured during invocation of JCA binding ORA-01403: no data found ORA-06512: at line 1

    Dear Legends,
    My requirement is to call store procedure from BPEL. So for I created a BPEL with 2 assign activity and 1 Invoke activity to Invoke the DB adapter. After Deploying I tested the process but it shows the following error:
    <bpelFault><faultType>0</faultType><bindingFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>Exception occured when binding was invoked.
    Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'DB_SBL_SPROCS1' failed due to: Interaction processing error.
    Error while processing the execution of the SIEBEL.PORTAL_SPROCS.ACP_CONREGISTRATIONLOOKUP_WRAP API interaction.
    An error occurred while processing the interaction for invoking the SIEBEL.PORTAL_SPROCS.ACP_CONREGISTRATIONLOOKUP_WRAP API. Cause: java.sql.SQLException: ORA-01403: no data found
    ORA-06512: at line 1
    Check to ensure that the XML containing parameter data matches the parameter definitions in the XSD.  This exception is considered not retriable, likely due to a modelling mistake.  To classify it as retriable instead add property nonRetriableErrorCodes with value "-1403" to your deployment descriptor (i.e. weblogic-ra.xml).  To auto retry a retriable fault set these composite.xml properties for this invoke: jca.retry.interval, jca.retry.count, and jca.retry.backoff.  All properties are integers.
    The invoked JCA adapter raised a resource exception.
    Please examine the above error message carefully to determine a resolution.
    </summary></part><part name="detail"><detail>ORA-01403: no data found
    ORA-06512: at line 1
    </detail></part><part name="code"><code>1403</code></part></bindingFault></bpelFault></fault><faultType>
    <message>0</message></faultType></messages></details></event><event sid="BpPrc0.1" cat="2" n="16" date="2013-08-08T05:39:39.121-04:00" type="4"><message>"BPELFault" has not been caught by a catch block.</message></event><event sid="BpPrc0.1" cat="2" n="17" date="2013-08-08T05:39:39.270-04:00" type="3"><message>The transaction was rolled back. The work performed for bpel instance "960968" was rolled back, but the audit trail has been saved for this instance.If this is a sync request, please resubmit the request from the client. If it is an async request, please recover from the recovery console by resubmitting the invoke message.</message></event></audit-trail>
    What does the above error says?
    1. Whether concern Grant or Execute Privileges is not properly provided to the user?
    2. Is there any Dangling Privileges are prevailing?
    3. Is that the Store Procedure to be Handled with an Error Handling by means of Exception?
    4. Is that I have been giving wrong test data?
    5. Is that No data being existing in the Procedure?
    6. Is that anything related to XA and NON-XA Data Source?
    Any kind of help would be much appreciated. Thanks in Advance.
    Thanks,
    Karthik

    Can you check the following ?
    a. Hopefully the when you execute the procedure using sql tool it works fine and returns data.
    b. Is there any input parameter available for procedure ?
    c. IF yes, is the parameter is mapped with the procedure parameter and populated with value before calling the procedure ?
    d. In the audit trial, you can see from the invoke activity to see whether the parameter is populated with value or not ?
    e. Check the input parameter by executing the procedure with sql tool to see whether this request is receiving any data in return or not ?
    Thanks,
    Vijay

  • EJB Exception occurred during invocation from home or business:

    Friends,
    I have ejb application deployed in weblogic 10.3 with cluster environment. I have configured the following ejb-jar.xml
    <session>
    <ejb-name>PartSL</ejb-name>
    <home>com.gm.tm.ejb.session.part.PartSLHome</home>
    <remote>com.gm.tm.ejb.session.part.PartSL</remote>
    <ejb-class>com.gm.tm.ejb.session.part.PartSLBean</ejb-class>
    <session-type>Stateless</session-type>
    <transaction-type>Container</transaction-type>
    <ejb-ref>
    <ejb-ref-name>ejb/PartBM</ejb-ref-name>
    <ejb-ref-type>Entity</ejb-ref-type>
    <home>com.gm.tm.ejb.entity.partbm.PartHome</home>
    <remote>com.gm.tm.ejb.entity.partbm.Part</remote>
    <ejb-link>PartBM</ejb-link>
    </ejb-ref>
    <resource-ref>
    <description></description>
    <res-ref-name>jdbc/ToolMoveDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </session>
    Sometimes when user doing some manupulation, this object getting disapper and getting the error as EJB Exception occurred during invocation from home or business: com.gm.tm.ejb.session.part.PartSL_ex1s88_HomeImpl@175f214 threw exception: javax.ejb.EJBException: nested exception is: javax.naming.LinkException: [Root exception is javax.naming.NameNotFoundException: Unable to resolve 'PartBM'. Resolved '' [Root exception is javax.naming.NameNotFoundException: Unable to resolve 'PartBM'. Resolved '']; remaining name 'PartBM']; Link Remaining Name: 'PartBM'>
    JNDI tree is clusterable but is incompatible. Make sure all the servers in the cluster use the identical copy of object.
    Pls let me know if anyone know the root cause and i am new to EJB too. So pls help if anyone know better solution for this

    Yes exactly..Let me explain clearly. assume its deployed now and user started using that particular module. It works fine. Later point time like after few days or after few simultenous navigation of that particular ejb jndi object from the application, this exception comes. So for the short time fix, i restart the server and it will work fine and then after few hours/days , this exception comes and i need to restart again. So i need a permanent solution to avoid this issue.

  • Exception occurred during event dispatching:java.security.AccessControlExce

    Hi,
    I' m getting an error while connecting to database ORACLE 9i.
    I'm using JDK 1.6.0
    Actually the code is about how an Japplet connects to database ORACLE 9i
    when i was connecting using normal program i had got the connection easily .
    When i used this JApplet ,i'm getting this error.
    CODE:
    import java.awt.*;
    import javax.swing.* ;
    import java.sql.*;
    import java.awt.event.*;
    import java.util.*;
    /*<applet code="jln" width=400 height=400></applet>*/
    public class jln extends JApplet
    public void init()
    JTabbedPane jtp=new JTabbedPane();
    jtp.addTab("View Marks",new VmPanel());
    getContentPane().add(jtp);
    try {
    Class.forName("oracle.jdbc.driver.OracleDriver");
    } catch (Exception e)
    {              e.printStackTrace();
    System.out.println("Failed to load driver.");
    class VmPanel extends JPanel implements ActionListener
    JButton b1,b2;
    TextArea ta1;
    JTextField jtf1;
    Connection con=null;
    public VmPanel()
    b1=new JButton("ok!");
    b2=new JButton("clear");
    ta1=new TextArea();
    jtf1=new JTextField(10);
    add(jtf1);
    add(b1);
    add(b2);
    add(ta1);
    b1.addActionListener(this);
    b2.addActionListener(this);
    public void actionPerformed(ActionEvent ae)
    String str1=ae.getActionCommand();
    if(str1=="ok!")
    try
    con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:jlngbldb", "scott", "tiger");
    Statement stmt = con.createStatement ();
    String ht=jtf1.getText();
    System.out.println("\nHello\n");
    ResultSet rs = stmt.executeQuery("SELECT * FROM jln WHERE ht='"+ht+"'");
    while(rs.next())
    ta1.setText ("");
    ta1.setText("Name:"+rs.getObject("name")+"HallTicket:"+rs.getObject("ht")+"C.G:"+rs.getObject("cg")+"C.D:"+rs.getObject("cd")+"UNIX:"+rs.getObject("unix")+" S.T.M:"+rs.getObject("stm")+"N.N:"+rs.getObject("nn")+"I.S:"+rs.getObject("ins"));
    rs.close();
    stmt.close();
    con.close();
    catch(SQLException ex)
    System.err.println("SQLException: " + ex.getMessage());
    if(str1=="clear")
    ta1.setText("");
    jtf1.setText("");
    if(str1==null)
    ta1.setText ("");
    ta1.setText("Please enter Hall Ticket Number above....");
    }//action performed close
    }//panel closed
    AND THE ERROR IS:
    Exception occurred during event dispatching:
    java.security.AccessControlException: access denied (java.util.PropertyPermissio
    n oracle.jserver.version read)
    at java.security.AccessControlContext.checkPermission (AccessControlConte
    xt.java:321)
    at java.security.AccessController.checkPermission(AccessController.java:
    546)
    at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
    at java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:12
    85)
    at java.lang.System.getProperty(System.java:627)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va:433)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:314)
    at java.sql.DriverManager.getConnection(DriverManager.java:548)
    at java.sql.DriverManager.getConnection(DriverManager.java :180)
    at VmPanel.actionPerformed(jln.java:60)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:18
    63)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.jav
    a:2183)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
    .java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased (BasicButtonL
    istener.java:234)
    at java.awt.Component.processMouseEvent(Component.java:5921)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3316)
    at java.awt.Component.processEvent (Component.java:5686)
    at java.awt.Container.processEvent(Container.java:1960)
    at java.awt.Component.dispatchEventImpl(Component.java:4360)
    at java.awt.Container.dispatchEventImpl(Container.java :2018)
    at java.awt.Component.dispatchEvent(Component.java:4194)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4222
    at java.awt.LightweightDispatcher.processMouseEvent (Container.java:3886)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3816)
    at java.awt.Container.dispatchEventImpl(Container.java:2004)
    at java.awt.Component.dispatchEvent (Component.java:4194)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:592)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThre
    ad.java:270)
    at java.awt.EventDispatchThread.pumpEventsForFilter (EventDispatchThread.
    java:198)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:171)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:166)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:158)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:119)
    I'm getting this error when i pressed the OK! JButton.
    PLEASE ! help me by correcting this error.
    Thank You.

    Presumably you are running this via a browser where the applet is served from the server.
    Applets can only connect back to the origination server and using the name that the origination server was accessed with.
    And that has nothing to do with JDBC, all connections work that way.
    Your driver uses a connection thus it will not work unless it attempts to connect to the server that originated the applet.
    Solutions
    1. Connect to the server
    2. Sign the applet
    3. Modify the policy file of each client that will run the applet. This is not a good idea in an unsecure network.
    Note as well that in an unsecure network is most often a bad policy to have an applet directly accessing a database regardless.

  • Unhandled exception occurred during the execution of the workflow instance

    I had a workflow and library working with no issues, but had to move the library and export the workflow to another subsite (though on the same web site/collection).  I followed these how-tos:
    http://msdn.microsoft.com/en-us/library/office/jj819316%28v=office.15%29.aspx
    http://technet.microsoft.com/en-us/library/ee428301%28v=office.15%29.aspx
    Anyway, I've stripped all actions from the workflow and only have an Assign Task, but get this below:
    An unhandled exception occurred during the execution of the workflow instance. Exception details: System.ArgumentException: ContentTypeId at Microsoft.Activities.Hosting.Runtime.Subroutine.SubroutineChild.Execute(CodeActivityContext context) at System.Activities.CodeActivity.InternalExecute(ActivityInstance
    instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)
    To troubleshoot, I removed all library columns, removed then re-added the Custom Content type the New Document uses, and still the same error - with the workflow going into Suspended mode.
    I also tried the removal of the file from /Relationships%20List/allitems.aspx and de-activating then re-activating the SharePoint Publishing feature, also that didn't work.
    I've gone into ULS, but unable to find anything definitive, so not sure what to try next?
    Thank you,
    Chad

    Hi Chad,
    Glad to hear the issue is resolved. Content types could be used for multiple lists in SharePoint site at the same time.
    However, I'm not quite sure why you said the resolution is for a "bug". I read the article per your link:
    http://www.andrewconnell.com/blog/SP2013-Workflow-Custom-Task-Outcomes
    The article is showing how to create custom outcomes buttons in task forms. As I understand, the issue you encountered is that workflow migrated from the other site shows the suspended status.
    Please be more specific on the issue if assistance is needed. If this is the second question, I’d recommend you open another thread in the relevant forum and provide specific information about the issue. In order to avoid confusion and keep track of troubleshooting
    steps, we usually troubleshoot one issue per thread in order to find a resolution efficiently.
    Thanks for the understanding.
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • An exception occurred during the call of a business method

    An unexpected exception occurred during the call of a
    business method...Im calling the business object thru the business Delegate.Im calling the business method with an argument as hash table .. And Im using Oracle 9i application server.. Hash table contains data packed in the form of xml...
    The exception thrown is
    java.lang.IndexOutOfBoundsException int java.io.ObjectInputStream.read(byte[], int, int) ObjectInputStream.java:1808 void oracle.xml.io.XMLObjectInput.ensureCapacity(int) XMLObjectI nput.java:347 byte oracle.xml.io.XMLObjectInput.peekByte() XMLObjectInput.java :163 void oracle.xml.parser.v2.XMLNode.readChildNodes(oracle.xml.io.XM LObjectInput, oracle.xml.comp.CXMLContext) XMLNode.java:1800 void oracle.xml.parser.v2.XMLNode.readChildNodes(oracle.xml.io.XM LObjectInput, oracle.xml.comp.CXMLContext) XMLNode.java:1797 void oracle.xml.parser.v2.XMLNode.readChildNodes(oracle.xml.io.XM LObjectInput, oracle.xml.comp.CXMLContext) XMLNode.java:1797 void oracle.xml.parser.v2.XMLNode.readChildNodes(oracle.xml.io.XM LObjectInput, oracle.xml.comp.CXMLContext) XMLNode.java:1797 void oracle.xml.parser.v2.XMLElement.readExternal(java.io.ObjectI nput) XMLElement.java:1574 int java.io.ObjectInputStream.inputObject(boolean) ObjectInputS tream.java:1212 java.lang.Object java.io.ObjectInputStream.readObject(boolean) ObjectInputSt ream.java:386 java.lang.Object java.io.ObjectInputStream.readObject() ObjectInputStream.ja va:236 void java.util.Hashtable.readObject(java.io.ObjectInputStream) H ashtable.java:799 java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) native code boolean java.io.ObjectInputStream.invokeObjectReader(java.lang.Objec t) ObjectInputStream.java:2214 int java.io.ObjectInputStream.inputObject(boolean) ObjectInputS tream.java:1411 java.lang.Object java.io.ObjectInputStream.readObject(boolean) ObjectInputSt ream.java:386 java.lang.Object java.io.ObjectInputStream.readObject() ObjectInputStream.ja va:236 java.lang.Object com.evermind.server.ejb.EJBUtils.cloneObject(java.lang.Objec t, com.evermind.server.ejb.AbstractEJBHome)

    Carol,
    The file is not being read by the programmer.
    The problem seems to be coming when the code tries to return from an ejb call A hashtable is returned while coming back. In this hashtable, the data is present in the form of XML DOM Object(oracle implmentation, because oracle xml development kit is used). I think this exception is coming when EJB tries to serialise the object to send it back.
    So, this exception is compeletely stemming from internal classes of Oracle
    The code is part of a web project.
    regards,
    Amol Behrani

  • JBO-26000: A Generic exception occurred during loading Customizations

    Hi All,
    i created a application with oracle adf when deploy it in oc4j it works properly but in JBoss I have following exception:
    19:17:50,515 ERROR [[Faces Servlet]] Servlet.service() for servlet Faces Servlet threw exception
    oracle.jbo.JboException: JBO-26000: A Generic exception occurred during loading Customizations.
    at oracle.jbo.uicli.mom.JUMetaObjectManager.loadFromXML(JUMetaObjectManager.java:918)
    at oracle.jbo.mom.DefinitionManager.loadLazyDefinitionObject(DefinitionManager.java:579)
    at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:441)
    at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:374)
    at oracle.jbo.uicli.mom.JUMetaObjectManager.defExists(JUMetaObjectManager.java:306)
    at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:548)
    at oracle.adf.model.BindingRequestHandler.initializeBindingContext(BindingRequestHandler.java:339)
    at oracle.adf.model.BindingRequestHandler.beginRequest(BindingRequestHandler.java:133)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:161)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:182)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:262)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
    at java.lang.Thread.run(Thread.java:619)
    ## Detail 0 ##
    java.lang.NullPointerException
    at oracle.jbo.uicli.mom.JUApplicationDefImpl.loadSessions(JUApplicationDefImpl.java:265)
    at oracle.jbo.uicli.mom.JUApplicationDefImpl.loadContainees(JUApplicationDefImpl.java:573)
    at oracle.jbo.mom.ContainerDefImpl.loadFromXMLFile(ContainerDefImpl.java:354)
    at oracle.jbo.uicli.mom.JUApplicationDefImpl.loadFromXMLFile(JUApplicationDefImpl.java:350)
    at oracle.jbo.uicli.mom.JUApplicationDefImpl.createAndLoadFromXML(JUApplicationDefImpl.java:531)
    at oracle.jbo.uicli.mom.JUMetaObjectManager.loadFromXML(JUMetaObjectManager.java:886)
    at oracle.jbo.mom.DefinitionManager.loadLazyDefinitionObject(DefinitionManager.java:579)
    at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:441)
    at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:374)
    at oracle.jbo.uicli.mom.JUMetaObjectManager.defExists(JUMetaObjectManager.java:306)
    at oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(JUMetaObjectManager.java:548)
    at oracle.adf.model.BindingRequestHandler.initializeBindingContext(BindingRequestHandler.java:339)
    at oracle.adf.model.BindingRequestHandler.beginRequest(BindingRequestHandler.java:133)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:161)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:182)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:262)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
    i will be grateful if you help me in this case

    Hi,
    MDS requires Fusion Middleware and for this reason - other than personalization for user session - is not expected to work for servers where there is no FMW suport. Not sure this is your issue too, but this is what caused the thread in 2010 to fail
    Frank

  • BEA-010051 EJB Exception occurred during invocation from home:

    Hi,
    I am getting this exception (below)in the production env. the process is every night my application would load the data which is present in a perticular folder in to the database. After this process has continued for some days this error comes. This error started comming after i did some code changes where in i log all the actions which take place while loading into the database.
    It would be of great help if someone could help me out here.
    weblogic log:
    ####<14-Mar-2007 18:00:00 o'clock GMT> <Info> <Log Management> <dygwt01> <managed1_caprprd> <ExecuteThread: '1' for queue: 'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-170018> <The log file has been rotated to managed1_caprprd.log00300. Log messages will continue to be logged in /wls_domains/caprprd/logs/bea/managed1_caprprd.log.>
    ####<14-Mar-2007 18:00:00 o'clock GMT> <Info> <null> <unknown> <unknown> <ExecuteThread: '1' for queue: 'weblogic.kernel.Default'> <null> <null> <000000> <LogRotation trigger for logfile /wls_domains/caprprd/logs/bea/managed1_caprprd.log>
    ####<15-Mar-2007 04:21:04 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-20908C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:21:05 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-20928C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:21:19 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-209A8C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:21:20 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-209C8C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:21:31 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-20A18C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:21:31 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-20A38C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:21:31 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-20A58C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:21:41 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-20AC8C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:22:48 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-20D38C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:22:58 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-20D98C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:23:08 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-20DB8C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:23:10 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-20DD8C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:23:12 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-20DF8C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:23:19 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-20E58C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:23:22 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-20E78C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 04:23:47 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-21008C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<15-Mar-2007 05:36:53 o'clock GMT> <Info> <Security> <dygwt01> <managed1_caprprd> <ExecuteThread: '0' for queue: 'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-090067> <User lockout expired, unlocking user 602054364 in security realm myrealm.>
    ####<15-Mar-2007 05:45:21 o'clock GMT> <Notice> <Security> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-090078> <User 602054364 in security realm myrealm has had 5 invalid login attempts, locking account for 30 minutes.>
    ####<15-Mar-2007 06:31:03 o'clock GMT> <Info> <EJB> <dygwt01> <managed1_caprprd> <ExecuteThread: '11' for queue: 'weblogic.kernel.Default'> <<anonymous>> <BEA1-221A8C95ED2F2185AF9E> <BEA-010051> <EJB Exception occurred during invocation from home: com.bt.pe.capreg.serv.ejb.WebService_auhh9w_HomeImpl@1ba3c1f threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
         at com.bt.pe.capreg.serv.ejb.WebServiceBean.getBlobBytes(WebServiceBean.java:1068)
         at com.bt.pe.capreg.serv.ejb.WebService_auhh9w_EOImpl.getBlobBytes(WebService_auhh9w_EOImpl.java:5026)
         at com.bt.pe.capreg.serv.ejb.WebService_auhh9w_EOImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:166)
         at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:290)
         at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:247)
         at com.bt.pe.capreg.serv.ejb.WebService_auhh9w_EOImpl_814_WLStub.getBlobBytes(Unknown Source)
         at com.bt.pe.capreg.web.action.GetBlobAction.execute(GetBlobAction.java:29)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1194)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.bt.pe.capreg.web.servlet.TargetNameSpaceFilter.doFilter(TargetNameSpaceFilter.java:48)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.bt.pe.capreg.web.servlet.AuthorizationFilter.doFilter(AuthorizationFilter.java:22)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.bt.pe.capreg.web.servlet.SMHeaderFilter.doFilter(SMHeaderFilter.java:21)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.opensymphony.module.sitemesh.filter.PageFilter.doFilter(PageFilter.java:39)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:326)
         at com.bt.pe.capreg.web.servlet.BlobServlet.doGet(BlobServlet.java:19)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.bt.pe.capreg.web.servlet.TargetNameSpaceFilter.doFilter(TargetNameSpaceFilter.java:45)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.bt.pe.capreg.web.servlet.AuthorizationFilter.doFilter(AuthorizationFilter.java:22)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.bt.pe.capreg.web.servlet.SMHeaderFilter.doFilter(SMHeaderFilter.java:21)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.opensymphony.module.sitemesh.filter.PageFilter.doFilter(PageFilter.java:39)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6724)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    >

    Hi Sai,
    Below are the observation
    In Weblogic 8.1 sp6
    User : system
    Group Assigned : Administrators and OSSTrmi
    Group OSStrmi have assigned under Administrators as well
    In Weblogic 10.3.3
    User : system
    Group Assigned : Administrators
    Group OSSTrmi  is not assigned under Administrators
    Difference in assignment. here it seems. Please suggest
    Thx
    Sudip

Maybe you are looking for

  • Regarding line feed in sap script

    hi i had a long if statement. it is extending more than one line. IF &REGUH-RZAWE& = '2' AND ( &REGUH-LAUFI0(1)& EQ 'E' OR &REGUH-LAUFI0(1)& EQ 'G' ) IF i use '=' Extended line  the statement in that line is printing as it is. If i use '/:' this comm

  • Approval Workflow Forwarding issue

    Hi Gurus, I am facing a unique problem. We are using SRM5.0 with ECC6.0 as backend. We have a n-step BADI workflow implemented for approval of shopping carts. Let us say, I created a shopping cart which is to be approved by X and then by Y. Now, if t

  • Change password in squirrelmail?

    I had a addon for squirrelmail that made you able to change the users password when you where logged in. Is anyone using that under leopard? Does it still work?

  • AA - Post Derived Area

    Hi everybody. I need your help.  We have 4 depreciation areas. 1. 01  Book of depreciation area 2. 36  IFRS 3. 50  Group currency 4. 55 ( derived area )   is   36 - 50. We need the area 55 be posted, In the transaction OADB i put this area like 'Area

  • HELP my ipad won`t connect or turn on

    my ipad lost all power and i charged it all night but it still won`t turn on or connect with my computer