Error: NullPointerException

HI All ,
Error : NullPointerException .
I have got this above error in the Reciever comm channel of JMS Adapter ,
Could anyone answer detailly .
Regards.
Syed Nayeem.

Umm, this is what my code looks like. I tried it, but it doesn't work.
import model.*;
import java.awt.*;
import java.awt.event.*;
import java.text.*;
import javax.swing.*;
public class ButtonPanel extends JPanel implements View
    private Prison prison;
    private LeftInputPanel leftInput = new LeftInputPanel(prison);
    private DaysPanel days;
    private MonthsPanel months;
    private YearsPanel years;
    private CrimePanel crime;
    private AllocateListener aListener = new AllocateListener();
    public ButtonPanel(Prison prison)
        this.prison = prison;
        setup();
        build();
    public void setup()
    public void build()
        JButton button = new JButton("Allocate Cell");
        Dimension size = new Dimension(240, 70);
        button.setPreferredSize(size);
        button.setMinimumSize(size);
        button.setMaximumSize(size);
        button.addActionListener(aListener);
        add(button);
        update();
    public void update()
        leftInput.update();
private class AllocateListener implements ActionListener
    public void actionPerformed(ActionEvent e)
        Criminal criminal = new Criminal(leftInput.name());
        Period period = new Period(days.days(), months.months(), years.years());  //nullPointerException here
        criminal.set(new Crime(crime.getCrime()));
        prison.add(criminal);
}Edited by: karen.tao on Oct 24, 2009 6:11 AM

Similar Messages

  • Xrpcc tool error: NullPointerException

    im trying Hello class example.
    //interface claas defination is
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    import javax.xml.rpc.server.ServiceLifecycle;
    public class HelloClass implements HelloInterface, ServerLifecycle{
    public String mystring = "i am server";
    public void init(Object context){
    public String CallMe(String StringPassed){
         return(mystring+StringPassed);
    // interface class defination is
    public interface HelloInterface extends Remote{
    public String CallMe(String PassedString) throws RemoteException;
    //config.xml file as
    <configuration xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
    <service targetNamespace="http://sunreg.org/wsdl"
              typeNamespace="http://sunreg.org/wsdl"
                        name="HelloService"
              packageName="Hello">
    <interface name="HelloInterface"
    servantName="HelloClass"/>
    </service>
    </configuration>
    on running xrpcc tool it is giving error
    error:NullpointerException
    any idea why it error is giving

    To get more info, try using the -verbose and -Xprintstacktrace options
    on xrpcc. Also, xrpcc is being deprecated, you should start using wscompile which if functionally equivalent to xrpcc.

  • Inbound File Adapter Error - NullPointerException

    Hi,
    We are on XI 3.0.  We have a scenario of input file via inbound file adpater to R/3 using proxies.
    When activating the communication channel (file adapter), an error is raised in the adapter monitor.  The error states, "Error: Module Exception 'com.sap.aii.af.mp.processor.ModuleProcessorException' found, cause: java.lang.NullPointerException".
    Does anyone have any ideas on this error?
    Thanks in advance.
    Best Regards,
    Doo

    Hi,
    Can you check the communication channel - "Module" tab. A module processor has to be specified here. For the File Adapter the default value for the Module Processor should be "localejbs/CallSapAdapter" and the Type will be "Local Enterprise Bean".
    Warm regards,
    Venki.

  • Java error : NullPointerException while system copy

    Hi All,
    system: windowsNT 2003 with SQL 2005
    error while heterogeneous backup of system (CRM system ABAP + Java)
    SAPinit_dev.log
    SEVERE: Error during export of EP_ATTR_HEADERS
    Sep 29, 2010 7:22:32 PM com.sap.inst.jload.Jload logStackTrace
    SEVERE: java.lang.NullPointerException
         at com.sap.sql.jdbc.mss.MssSQLExceptionAnalyzer.getCategory(MssSQLExceptionAnalyzer.java:112)
         at com.sap.sql.services.core.CoreServices.isDuplicateKeyException(CoreServices.java:133)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.processSQLException(DirectPreparedStatement.java:1189)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:285)
         at com.sap.sql.jdbc.common.CommonPreparedStatement.executeQuery(CommonPreparedStatement.java:185)
         at com.sap.inst.jload.db.DBTable.unload(DBTable.java:192)
         at com.sap.inst.jload.Jload.dbExport(Jload.java:179)
         at com.sap.inst.jload.Jload.executeJob(Jload.java:395)
         at com.sap.inst.jload.Jload.main(Jload.java:621)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81
    Reply soon
    jattxxx

    Hi Jattxxx,
    Which JDBC driver are you using?
    There was a similiar problem when using the Microsoft SQL Server 2005 Driver for JDBC version 1.1 or an older version 1.2. Therefore, if you're using the MSSQL 2005 JDBC driver, I would recommend to replace it by a newer one of version 1.2 (*).
    Best regards,
    Guenther
    The file "Microsoft SQL Server 2005 Driver for JDBC version 1.2" can be downloaded from:                                                            
    http://service.sap.com/swcenter-3pmain
    -> MS SQL Server -> JDBC Drivers and Tools.

  • Internal Server Error (NullPointerException) when invoking a Web Service

    I'm using SOA suite 10.1.3.3 (incl the latest patch set) on Windows XP.
    I've created 3 web services using the wizard interface out of 3 existing WSDL files. The Java code inside the web services is just dummy code.
    I'm testing the web services using the Test Web Service functionality in Oracle Enterprise Manager's Application Server Control.
    The moment I fill in the data and press invoke, I get back the following fault:
    <env:Body>
    <env:Fault>
    <faultcode>env:Server</faultcode>
    <faultstring>Internal Server Error (Caught exception while handling request: java.lang.NullPointerException)</faultstring>
    </env:Fault>
    </env:Body>
    I know that control never reaches inside the services themselves.
    I've even followed the online demo that shows users how to create, deploy and test a Web Service in JDeveloper to make sure that I wasn't doing anything silly.
    What could be wrong? Please help.
    Thanks in advance.

    Seems to be a problem in serialization??? What do I do?
    When I invoke the web service from a web proxy client, this is the stack trace:
    QueryGDSAsiaPackage.SearchAirline_fault: java.lang.NullPointerException
         at QueryGDSAsiaPackage.runtime.SearchAirline_fault__LiteralSerializer.doDeserialize(SearchAirline_fault__LiteralSerializer.java:71)
         at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.internalDeserialize(LiteralObjectSerializerBase.java:250)
         at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.deserialize(LiteralObjectSerializerBase.java:159)
         at QueryGDSAsiaPackage.runtime.QueryGDS_Asia_PortType_searchAirline_Fault_SOAPSerializer.deserializeDetail(QueryGDS_Asia_PortType_searchAirline_Fault_SOAPSerializer.java:56)
         at oracle.j2ee.ws.common.encoding.SOAPFaultInfoSerializer.doDeserializeSOAP11(SOAPFaultInfoSerializer.java:132)
         at oracle.j2ee.ws.common.encoding.SOAPFaultInfoSerializer.doDeserialize(SOAPFaultInfoSerializer.java:94)
         at oracle.j2ee.ws.common.encoding.ObjectSerializerBase.deserialize(ObjectSerializerBase.java:180)
         at oracle.j2ee.ws.common.encoding.ReferenceableSerializerImpl.deserialize(ReferenceableSerializerImpl.java:147)
         at oracleesb.QueryGDA_Asia_proxy.runtime.QueryGDS_AsiaSOAP_Stub._readBodyFaultElement(QueryGDS_AsiaSOAP_Stub.java:346)
         at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:321)
         at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:112)
         at oracleesb.QueryGDA_Asia_proxy.runtime.QueryGDS_AsiaSOAP_Stub.searchAirline(QueryGDS_AsiaSOAP_Stub.java:155)
         at QueryGDSAsiaPackage.QueryGDS_AsiaSOAPClient.searchAirline(QueryGDS_AsiaSOAPClient.java:43)
         at QueryGDSAsiaPackage.QueryGDS_AsiaSOAPClient.main(QueryGDS_AsiaSOAPClient.java:30)
    Process exited with exit code 0.

  • ISA Error NullPointerException

    Hi Experts!
    i am facing a big issue. I have built a custom application for ISA B2B and suddenly I am not able to log in anymore because i get the following error:
    500   Internal Server Error
      SAP J2EE Engine/7.00 
      Application error occurred during request processing.
      Details:   java.lang.NullPointerException: null
    Exception id: [001A643650EE0075000000320000183000044F54BEB6F030]
    I haven't done anything differnet from the usual process of deployment via NWDI to the CRM DEV server.
    Can anybody help? it is urgent!

    HI Sateesh -
    i am following the procedure, but when i try to create re build and deploy i get hte following errors:
    java.lang.NullPointerException
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.resync(DevelopmentComponentNode.java:963)
         at com.sap.ide.eclipse.component.provider.actions.dc.DcCreateProjectAction$1.syncSelectedDCs(DcCreateProjectAction.java:456)
         at com.sap.ide.eclipse.component.provider.actions.dc.DcCreateProjectAction$1.execute(DcCreateProjectAction.java:237)
         at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:71)
         at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1595)
         at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:85)
         at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:101)
    Can you help?

  • Build error = NullPointerException - RaveWebActionProvider.invokeAction

    Whoa,... can't build my simple project in Studio Creator 2 Update 1 without getting this exception shown below.
    Environment is:
    Studio Creator 2 Update 1 (build 060823)
    IDE Version: IDE/1 spec=5.9.1.3 impl=060823
    Windows XP v5.1
    Java 1.5.0_06
    Could use some advice...
    Thank you, Roger
    *********** Exception occurred ************ at 5:40 PM on Sep 11, 2006
    java.lang.NullPointerException
    at com.sun.rave.jsf.project.ext.RaveWebActionProvider.invokeAction(RaveWebActionProvider.java:212)
    at org.netbeans.modules.project.ui.actions.MainProjectAction.actionPerformed(MainProjectAction.java:90)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
    at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
    at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1000)
    at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1041)
    at java.awt.Component.processMouseEvent(Component.java:5488)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
    at java.awt.Component.processEvent(Component.java:5253)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3955)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1774)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    [catch] at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

    David,
    I've got it fixed. Here's what happened...
    1) I uninstalled JSC and removed 'C:\Program Files\Sun\..., 'C:\Documents and Settings\<my_login_name>\.creator...', and 'C:\Documents and Settings\<my_login_name>\My documents\Creator\...
    2) Downloaded and installed the Sun Download Manager and used it to download a new copy of the Studio Creator package. This was to make sure i had good JSC code to start with.
    3) Several reinstalls failed after this as well. I was back to the "new project" issue described before. I found that i was clicking through an install error message that was telling me to rename 'C:\windows\system\productregistry'. This was seen as part of a previous install and was causing any subsequent installs to fail.
    4) I cleaned up all the directories again, renamed 'C:\windows\system32\productregistry' and found the next install to be successful. I created a new test project and the build worked without error, which was my original problem.
    Thank you very much for taking the time to help me David.
    Sincerely, Roger

  • Array Running Error NullPointerException

    I m trying to create a class that will have an overload constructor which will passing a parameter of an Object array.....
    public class Standings
              private Team [] footBall;
              /* public Standings()
                   footBall = footBall;     
              public Standings( Team [] footBallArray )
                        for(int i = 0; i < footBallArray.length; i++)
                                  footBall[i] = footBallArray;                    
    Then test it wit a prog which will create an object array then use the overload constructor...Team [] array = new Team[5];
         array[0] = new Team("Alabama", 6, 6);
         array[1] = new Team("Georgia", 7, 4);
         array[2] = new Team("Tennessee", 8, 3);
         array[3] = new Team("Vanderbilt", 4, 8);
         array[4] = new Team("Mississippi", 1, 6);
         // now instantiate the team calling the overloaded constructor
         Standings temp = new Standings(array);
    but it alway give me a NullPointerException... cuold some1 show me why... Thankx                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Obviously the footBall[] is not instantiated
    public Standings( Team [] footBallArray )
              for(int i = 0; i < footBallArray.length; i++)
                   //------>footBall[i] = footBallArray;                    
    modify your code add this statement be for the for looppublic Standings( Team [] footBallArray )
    this.footBall = footBallArray;
    for(int i = 0; i < footBallArray.length; i++)
    OR you could try add these code before and inside the for loop public Standings( Team [] footBallArray )
    this.footBall = new Team[footBallArray.length] //before for loop
    for(int i = 0; i < footBallArray.length; i++) {
    this.footBall[i] = new Team(); // inside the for loop but before your statement

  • Strange error (nullPointerException)

    i have a strange problem!
    imports...
    public class one
    public one() {}
    public Vector[] jpt()
    Vector[] r = new Vector[2];
    r[0] = new Vector();
    r[0].addElement(new String("aaaa"));
    r[0].addElement(new String("bbbb"));
    r[1] = new Vector();
    r[1].addElement(new String("cccc"));
    return r;
    public class two
    public two()
    one o = new one();
    Vector[] r;
    r = o.jpt(); //this give nullPointerException
    if I change public Vector[] jpt() to public static Vector[] jpt() then the code works fine
    and also, if I put the method jpt() into class two and access it like this then the code works fine
    public class two
    public two()
    Vector[] r;
    r = jpt(); //this give nullPointerException
    public Vector[] jpt()
    Vector[] r = new Vector[2];
    r[0] = new Vector();
    r[0].addElement(new String("aaaa"));
    r[0].addElement(new String("bbbb"));
    r[1] = new Vector();
    r[1].addElement(new String("cccc"));
    return r;
    does anybody know whats happening??? :(

    Please use [ code ] tags and stick with the Java naming conventions.
    If "static" makes the NPE go away, it means that despite of what you claim what the code is, o is uninitialized.

  • Runtime Error  - NullPointerException

    I am not quite sure where to start
    but I will do my best to not have it turn into ramble.
    First I want to check for an "old" open DB connection
    and close it if there is one open
    Now where my error occurs:
    Then in the while (connected == false)
    loop, I delete all of the data out of the tables
    because I do not want stale data appearing on the GUI.
    For some reason this is where is throws my error.
    If I take them out it runs fine.
    The real strange deal is I have another program
    set up to read from a processor the same way
    and that one throws no errors at all.
    So I am thinking (okay hoping) its just something small I am missing
    Thank you very much for all of your time
    January
    import java.net.*;
    import java.sql.*;
    import java.util.*;
    import java.io.*;
    public class Example{
    //SOMEWHWER AT THE BEGINNING OF THE CLASS
    static PreparedStatement psDELtblRtFields;
      static PreparedStatement psVIP_Connection_Down;
       static PreparedStatement psDELETE_tblRtFieldsMsgBlkHeaders;
      static PreparedStatement psDELETE_tblRtFieldsType1;
    public static void processing_loop() {
         //constants read from a config file
        ServerSocket echoServer = null;
        Socket clientSocket     = null;
        String IP_ADDRESS       = VIP_IP_ADDRESS;  // VIP computer
        int SOCKET_NUMBER       = VIP_DATA_SOCKET_NUMBER; //constants read from a config file
        boolean connected       = false; //variable to help robustness of connection
        boolean socket_error    = false;
        //  Writing to MySql Database declarations
        java.sql.Connection conn = null;
       String DELETE_tblRtFields = "UPDATE tblRtFields SET gps_sow=0, " +
             "gps_week=0, intVipMode=0,DblOutputPower=0,     DblFrequency=0, intVipBit=0, intTxFail=1," +
             "intMonFail=1, intVote_mismatches=0, intVip_voter_fault=1, intAti_error_count=0," +
             "intAti_fault=1, intMystery_msg_count=0, intMystery_msg_fault=1, "+
             "intMissed_msg_count=0, intVip_mer_fault=1, intVip_no_xmit_fault=1, " +
             "strTx_status=0, intTx_outrange=0, intVip_Tx_power_fault=1, intVip_Tx_power_offset=0, "+
             "intMon_bit_results=1, intTx_bit_results=1, dblCurrent_Temp=0, intTemp_color=1, dblMon_power=0, " +
             "strMon_status=0 WHERE ID = 1";
        //DONE 12-17-04
        String DELETE_tblRtFieldsType1     =     " UPDATE tblRtFields SET gps_sow = 0, " +          //DONE 12-17-04
                   "gps_week=0, intModz=0, intNum_of_meas=0, intMeas_type=0 "+
                   "WHERE ID=1";
                   //5 total entries
         String DELETE_tblRtFieldsMsgBlkHeaders = "UPDATE tblRtFields SET gps_sow=0, "+  //DONE 12-17-04
                   "gps_week=0, strStation_id=0 "+
                   "WHERE ID=1";
              // 3 total entries
        String VIP_Connection_Down = "UPDATE tblIcs SET connection_up=0 WHERE connection_id=19";
        // main processing starts here
        try {
          // register Database driver
          Class.forName(SQL_DRV);
        } catch(java.lang.ClassNotFoundException e) {
          System.err.print("ClassNotFoundException: ");
          System.err.println(e.getMessage());
        } finally {
          try {
            conn.close();
          } catch
            (Exception e) {}
        } // end finally
        while ( true ) {  // this is the forever loop
          if ( connected == true ) { //old connection - close it
            try{
              clientSocket.close();
              connected = false;
              System.out.println("Closing socket");
            } catch (IOException ey){
              System.out.println(ey);
              continue;
            }//end try
          } //end if connected == true
          //IT THROWS THE ERROR HERE, IF I TAKE ALL OF THE STUFF OUT
          //(i.e. all of the prepared statements in that 2nd try block)
          //THEN IT WORKS FINE.
          while ( connected == false ) {
            try{
                   try{
                        psDELtblRtFields.executeQuery();
                        psDELETE_tblRtFieldsType1.executeQuery();
                        psDELETE_tblRtFieldsMsgBlkHeaders.executeQuery();
                        psVIP_Connection_Down.executeQuery();
                   catch(SQLException ex){
                        System.err.println("SQLException for Blanking tblRtFields: " + ex.getMessage());
                        ex.printStackTrace();
              // Connect to socket and listen to it
              //CONSTANTS read from a config file
              clientSocket = new Socket(IP_ADDRESS,SOCKET_NUMBER);
              connected = true;
            } catch (IOException e) {
              System.out.println("Exception caught at line 2211 " + e);
              System.out.println("Attempting to make new connection");
             try{
                Thread.currentThread().sleep(2000);
              } catch (InterruptedException es){
                //System.out.println(es);
              if ( killFile.exists() ) {
                System.out.println("VDL killed");
                //WrapperManager.stop(0);
                System.exit(0);
              //continue;
            }//end try socket connection
          } //end while connected == false
          while ( connected == true ) {
            // the following code is simply to detect when the socket goes down
            if ( socket_error == true ) {
              socket_error = false; // initialize for next time
              //break out of this loop
              break;
            try{
            conn = DriverManager.getConnection(SQL_URL, USERNAME, PASSWORD);
            //SQL statements
                        psVIP_Connection_Down = conn.prepareStatement(VIP_Connection_Down);  //DONE 10-21-04
                        //RtFields
                        psDELtblRtFields = conn.prepareStatement(DELETE_tblRtFields);  //DONE 10-21-04
                      psDELETE_tblRtFieldsType1 = conn.prepareStatement(DELETE_tblRtFieldsType1);
                      psDELETE_tblRtFieldsMsgBlkHeaders = conn.prepareStatement(DELETE_tblRtFieldsMsgBlkHeaders);
              try{
                // make input stream
                is = new BufferedReader
                  (new InputStreamReader(clientSocket.getInputStream()));
                 try{  //get timeout seconds from maintConfigData file
                        clientSocket.setSoTimeout(SOCKET_TIMEOUT);  //If no data is received from the socket in x amt of seconds...
                    catch (SocketException se){
                         System.err.println ("Unable to set socket option SO_TIMEOUT");
                //OKAY ALL THE CRAP FROM HERE DOWN TO END OF LOOP IS JUST STUFF.............
                // As long as we receive data, keep reading
                while (true) {
                 try{
                        //Code here to read from socket and store data
                  } catch (RuntimeException ex){
                    System.out.println("RuntimeException ex: " + ex);
                    socket_error = true;
                    ex.printStackTrace();
                    break;
                } // end while True
              } catch (IOException e) {
                System.out.println(e);
                //e.printStackTrace();
                break;
              }//end try make input stream
              }catch (SQLException ex){
                   System.err.println(
              "SQLException: 2175" + ex.getMessage());
          } //end while connected == true
        } //end while true Main Loop
      }//end processing_loop()
    public static void main(String args[]){
         Example ex = new Example();
         ex.processing_loop();
    }

    The null pointer exception should be providing you with a stack trace. That tells you the exact line that the problem is on.
    Note also that your code is doing to much. You should have code (a class) that does the database stuff all by itself. And then other code that does the socket stuff (a class).
    You are also catching exceptions and then continuing down the same path that would have happened if the exception had not occurred. That is problematic.

  • Unmarshal( ) method failing Error: NullPointerException

    Hi,
    I am trying to use Java Class Generator version 9.2.0.4.0. I am able to use the class generator to generate classes based on dtd and creating the XML document in java code. But now when I am trying to use the unmarshal method() to bind a XML document to create elements object, thats where it is failing. It is returning null objects from the Root element. Can any one please help me with this error.
    Thanks

    hi,
    please look in to the Login.java file and in that line no 603
    there you are trying not handling Null pointer Exception i.e., you might be trying to access that arraylist which has no elements.
    look in to that
    if you are still struck please go thruogh the API of Java Docs.
    thnx & regards
    Reddy

  • NullPointerException while sending signed XML via SOAP to Axis webservice

    Hello,
    I was wondering if it was possible to change the behavior of Apache XML Security libraries and delete "ds:" namespaces while digitally signing XML files.
    We are trying to send signed XML to a local chilean IRS, as a part of an automatic autentication process. The steps to authenticate are quite straightforward and involve:
    1. Obtain from webservice 1 a "seed", which is a random number representing temporal session opened
    2. Sign this seed (in XML format) using our certificate
    3. Send signed XML to another webservice 2, which should validate it and open a permanent session, returning a "token", which is an alphanumeric string
    What happens is that steps 1 and 2 are completed without problems, while we cannot pass step 3. The webservice (as far I know mounted on Apache Axis) fails with ugly error "NullPointerException".
    The IRS says that our signed XML, although valid, seems strange to them, as it contains those "ds:" added by Apache Xml Security libraries while signing the file.
    So here comes the question: is it possible to obtain valid signed XML without those "ds:"? What other reasons may result in that NullPointerException error?
    We use simple Java class and VeriSign certificate stored in Java keystore to sign XML files, and Apache Xml Security 1.2.0 jars.
    For any clues that could help us thank you in advance.
    Jack

    Hi,
    Few months ago we had also problems with "locked user" in XI, in our case XIAPPLUSER was sometimes (b)locked.
    Perhaps note:
    721548 Changing the passwords of the XI 3.0 service users
    will help you.
    We removed and entered the service users again, with the password in CAPITALS and language blank.
    After that our problem was solved, I hope yours too.
    Regards
    Jack

  • Error in upload file

    Hello,
    I have tried all thread regarding upload file on tomcat server.
    but still i dont get proper solution on that.
    In my project I want to send mail with attachment in jsp. Email sending
    is working properly but attachment is not still send.
    It gives nullpointerException error.
    for that I hv tried upload a file but my file is not uploading properly.
    So plz tell me step wise procedure for that with sample code
    Plz!!!!!!!!!!!!!!!!!!!!!!!!
    Reply me urgent

    I have tried below code but its giving me error
    NullPointerException
    After runnning following code file will be copied in specify folder.
    I also dont know how to invoke following code to attach file code
    Plz send me reply urgently with stepwise
    NewUpload.jsp
    <%@ page import="java.util.*,java.io.*"%>
    <%
    String path=request.getParameter("filename");
    String newPath="";
    int count=0;
    if(path!=null)
    ArrayList arr=new ArrayList();
    StringTokenizer st=new StringTokenizer(path,"\\");
    while(st.hasMoreTokens())
    arr.add(count,st.nextToken());
    count++;
    // create ur own path
    out.println(path);
    newPath="d:\\Shilpa\\" + arr.get(count-1);
    out.println(newPath);
    int c;
    FileInputStream fis=new FileInputStream(path);
    FileOutputStream fos=new FileOutputStream(newPath);
    while((c=fis.read())!=-1)
    fos.write((char)c);
    out.println("Thanks for using");
    out.println("<br>");
    out.println("<br>");
    out.println("1.File1 Uploaded from :: "+path);
    out.println("<br>");
    out.println("<br>");
    out.println("2.Uploaded File1 is Saved in :: "+newPath);
    %>
    Up;oadFile.html
    <!--Html Code for Browsing Purpose-->
    <html>
    <head>
    <form action="NewUpload.jsp" name="upform" enctype="multipart/form-data">
    <table width="60%" border="0" cellspacing="1" cellpadding="1" align="center" class="style1">
    <tr>
    <td align="left"><b>Select a file to upload :</b></td>
    </tr>
    <tr>
    <td align="left">
    <input type="file" name="filename" size="50">
    </td>
    </tr>
    <tr>
    <td align="left">
    <input type="hidden" name="todo" value="upload">
    <input type="submit" name="Submit" value="Upload">
    <input type="reset" name="Reset" value="Cancel">
    </td>
    </tr>
    </table>
    </form>
    </body>
    </html>

  • JDK6 SwingUtilities NullPointerException when user try to open Popup Window

    When user clicks first time, the popup menu displayed without any error. User clicks again approx. 4-6 times to open the same popup screen and the popup menu will be displayed with the NullPointerException error. After NullPointerException user is not able to clikc on any button. Swing GUI is hanging & not recognizing the event selected by user in GUI Window and failing with the error NullPointerException.
    JVM Version (Tested with the Latest JDK version):-
    jdk1.6.0_35
    jdk1.6.0_37
    Code:-
    ( (JPopupMenu)popupMenuView ).show( JTree, location.x, location.y );
    Error:-
    java.lang.NullPointerException
    at javax.swing.SwingUtilities.getWindowAncestor(SwingUtilities.java:120)
    at javax.swing.Popup.dispose(Popup.java:113)
    at javax.swing.Popup.hide(Popup.java:105)
    at javax.swing.ToolTipManager.hideTipWindow(ToolTipManager.java:322)
    at javax.swing.ToolTipManager.mouseExited(ToolTipManager.java:555)
    at java.awt.AWTEventMulticaster.mouseExited(AWTEventMulticaster.java:293)
    at java.awt.AWTEventMulticaster.mouseExited(AWTEventMulticaster.java:292)
    at java.awt.Component.processMouseEvent(Component.java:6303)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3275)
    at java.awt.Component.processEvent(Component.java:6062)
    at java.awt.Container.processEvent(Container.java:2039)
    at java.awt.Component.dispatchEventImpl(Component.java:4660)
    at java.awt.Container.dispatchEventImpl(Container.java:2097)
    at java.awt.Component.dispatchEvent(Component.java:4488)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4575)
    at java.awt.LightweightDispatcher.trackMouseEnterExit(Container.java:4356)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4218)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4166)
    at java.awt.Container.dispatchEventImpl(Container.java:2083)
    at java.awt.Window.dispatchEventImpl(Window.java:2489)
    at java.awt.Component.dispatchEvent(Component.java:4488)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:668)
    at java.awt.EventQueue.access$400(EventQueue.java:81)
    at java.awt.EventQueue$2.run(EventQueue.java:627)
    at java.awt.EventQueue$2.run(EventQueue.java:625)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
    at java.awt.EventQueue$3.run(EventQueue.java:641)
    at java.awt.EventQueue$3.run(EventQueue.java:639)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:638)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

    Sounds like s concurrency issue. does your code respect Swing's single threaded rule?
    http://docs.oracle.com/javase/tutorial/uiswing/concurrency/index.html
    db

  • ADF NullPointerExceptions in Migrated 11g

    We have a ADF web application programmed in JDeveloper 11g (11.1.2.4.0), which was migrated over from a 10g (10.1.3.5.0) project.
    The application will run fine for 5 minutes or so, then regardless of activity, it'll return a 500 error nullpointerexception.
    When navigating it'll return the following error:
    java.lang.NullPointerException
    at oracle.adfinternal.controller.application.AdfcViewScopeProvider.getViewScope(AdfcViewScopeProvider.java:43)
    at oracle.adfinternal.view.faces.context.AdfFacesContextImpl.getViewScope(AdfFacesContextImpl.java:320)
    at oracle.adfinternal.view.faces.component.AdfViewRoot._getCurrentViewMap(AdfViewRoot.java:133)
    at oracle.adfinternal.view.faces.component.AdfViewRoot.getViewMap(AdfViewRoot.java:62)
    at com.sun.faces.application.NavigationHandlerImpl.clearViewMapIfNecessary(NavigationHandlerImpl.java:229)
    at com.sun.faces.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:179)
    at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:92)
    at org.apache.myfaces.trinidadinternal.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:50)
    at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
    at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:157)
    at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:752)
    at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.java:928)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ApplyRequestValuesCallback.invokeContextCallback(LifecycleImpl.java:1519)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:372)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:202)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:508)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at mil.stratis.servlet.StratisSessionExpiryFilter.doFilter(StratisSessionExpiryFilter.java:44)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:125)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    When clicking on a button, it returns the following:
    ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase RENDER_RESPONSE 6
    java.lang.NullPointerException
    at oracle.adfinternal.controller.debug.ActivityBreakpointFacadeImpl$1.afterPhase(ActivityBreakpointFacadeImpl.java:111)
    at oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper.afterPhase(ADFLifecycleImpl.java:530)
    at oracle.adfinternal.controller.lifecycle.LifecycleImpl.internalDispatchAfterEvent(LifecycleImpl.java:120)
    at oracle.adfinternal.controller.lifecycle.LifecycleImpl.dispatchAfterPagePhaseEvent(LifecycleImpl.java:168)
    at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$PhaseInvokerImpl.dispatchAfterPagePhaseEvent(ADFPhaseListener.java:131)
    at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:74)
    at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.afterPhase(ADFLifecyclePhaseListener.java:53)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:447)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:236)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:509)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at mil.stratis.servlet.StratisSessionExpiryFilter.doFilter(StratisSessionExpiryFilter.java:44)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:125)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    This error is driving us crazy. Thanks.

    Hi, I removed the Filter (it checked for Session Expiration and would redirect) and it gave the same error.
    java.lang.NullPointerException
    at oracle.adfinternal.controller.application.AdfcViewScopeProvider.getViewScope(AdfcViewScopeProvider.java:43)
    at oracle.adfinternal.view.faces.context.AdfFacesContextImpl.getViewScope(AdfFacesContextImpl.java:320)
    at oracle.adfinternal.view.faces.component.AdfViewRoot._getCurrentViewMap(AdfViewRoot.java:133)
    at oracle.adfinternal.view.faces.component.AdfViewRoot.getViewMap(AdfViewRoot.java:62)
    at com.sun.faces.application.NavigationHandlerImpl.clearViewMapIfNecessary(NavigationHandlerImpl.java:229)
    at com.sun.faces.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:179)
    at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:92)
    at org.apache.myfaces.trinidadinternal.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:50)
    at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
    at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:157)
    at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:752)
    at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.java:928)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ApplyRequestValuesCallback.invokeContextCallback(LifecycleImpl.java:1519)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:372)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:202)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:508)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:125)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

Maybe you are looking for

  • When I plug in my iPod I get this message. Why?

    Hello! I've just wiped my hard drive and reinstalled my operating system from scratch. I now have Mountain Lion. This is the message I receive when I now plug in my iPod Touch.  http://i47.tinypic.com/35cmqyu.jpg I've not yet clicked on the 'Erase an

  • Making a loaded swf-file loading images into the movie..

    Trying to convert my problem from norwegian into english isn't always that easy... :) Anyway.. I've created som cool buttons that I want to be loaded into a movie (let's call i MainMovie.swf) and from there I want the buttons to be able to load image

  • Fitting photos on an a4 page

    Im such a noob lol. I took some photos with a pretty good camera and opened them in illustrator and there pretty big, i need them to fit on an a4 page perfectly. I tried scaleing them down but it wasnt qwite the right size of the page. how can i get

  • I cannot find anywhere the BASIC DRIVER ONLY for the Officejet 7410xi for Windows 7 32-bit system.

    Does anyone know where it is? Basic driver only, win 7 32-bit. I do not want the full feature becuase the installation has repeatedly fatal errored during installation

  • Apple and ebay doesn't get along :(

    Hi all, Is there hostility between Apple and ebay? I love safari but it still does not work properly with ebay and most recently paypal. On ebay's "live help" feature, certain key strokes does not work. And paypal which is owned by ebay, the "next or