"Unknown Source" errors

The application behind this code is generating a bunch of "Unknown Source" errors at runtime:
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at Polygon#MouseHandler.mousePressed(Polygons.java:95)
at java.awt.Component.processMouseEvent(Unknown Source), and so on...
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.ArrayList;
public class Polygons extends JPanel {
        protected static boolean shiftIsDown;
        public static void main(String[] args) {
                JFrame window = new JFrame("Polygons");
                Polygons content = new Polygons();
                content.addKeyListener( new KeyAdapter() {
                                        public void KeyPressed(KeyEvent evt) {
                                                int key = evt.getKeyCode();
                                                if(key == KeyEvent.VK_SHIFT)
                                                        shiftIsDown = true;
                window.setContentPane(content);
                window.pack();
                window.setLocation(100, 100);
                window.setResizable(false);
                window.setDefaultCloseOperation( JFrame.DISPOSE_ON_CLOSE );
                window.setVisible(true);
        } // End main()
        private static class PolygonData {
                int[] x;
                int[] y;
        public Polygons() {
        // Constructor.
                setBackground(Color.WHITE);
                MouseHandler listener = new MouseHandler();
                setPreferredSize(new Dimension(350, 350) );
                addMouseListener(listener);
                addMouseMotionListener(listener);
        private class MouseHandler implements MouseListener,
                MouseMotionListener {
                PolygonData polygon;
                private boolean dragging = false;
                private int vertices;
                private int x1, y1;   // First vertex point.
                private int x2, y2;   // Second vertex point.
                private boolean newPolygon = false; // Is the user drawing
                                                    // a new polygon?
                       public void mousePressed(MouseEvent evt) {
                                // If the user is within two pixels of the
                                // starting point, draw the polygon.
                                // Graphics g = getGraphics();
                                int tolerence = 2;
                                if(shiftIsDown);
                                x1 = evt.getX();
                                y1 = evt.getY();
                                vertices++;
                                if(newPolygon) {
                                        polygon = new PolygonData();
                                        x2 = x1;
                                        y2 = y1;
                                        polygon.x = new int[1024];
                                        polygon.y = new int[1024];
                                if(vertices == 1){
                                        polygon.x = new int[1024];
                                        polygon.y = new int[1024];
                                polygon.x[vertices] = x1;
                                polygon.y[vertices] = y1;
                                g.setColor(Color.BLACK);
                                g.drawPolygon(polygon.x, polygon.y, vertices);
                                // Did the user click near the starting point?
                                if( (polygon.x[0] - x1 <= tolerence)
                                        && (polygon.y[0] - y1 <= tolerence) ) {
                                                g.setColor(Color.RED);
                                                g.fillPolygon(polygon.x, polygon.y, vertices);                                }                                               
                       public void mouseMoved(MouseEvent evt) {
                                // Grab the graphics context.
                                Graphics g = getGraphics();
                                x2 = evt.getX();
                                y2 = evt.getY();
                                g.drawLine(x1, y1, x2, y2);
                                repaint();
                       // Required by the interfaces....
                       public void mouseReleased(MouseEvent evt) { }
                       public void mouseClicked(MouseEvent evt) { }
                       public void mouseEntered(MouseEvent evt) { }
                       public void mouseExited(MouseEvent evt) { }
                       public void mouseDragged(MouseEvent evt) { }
        } // End nested class Mousehandler
} // End class PolygonsSame goes for mouseMoved().... What's the fix?

flounder wrote:
if(newPolygon) {
polygon = new PolygonData();This is the probable cause. Since newPolygon is initially false, it will not execute the if statement and polygon will not be initialised. So later in your code when you attempt to use polygon it is null.That did it.
Thanks!

Similar Messages

  • Getting Unknown Source Error While Deploying the Planning Application

    Hi,
    Getting following error while trying to Deploy Planning Application from BPMA
    Started Time : Tuesday, January 08, 2008 5:43:40 PM
    Submitted Time : Tuesday, January 08, 2008 5:43:40 PM
    Last Updated Time : Tuesday, January 08, 2008 5:44:32 PM
    User Name : hpadmin
    Process Name :
    Thread : 0
    Server : DimServer
    Detail : App Creation failed with Exceptionjava.lang.RuntimeException: Exception occurred while creating the application. Check log for details     at com.hyperion.planning.appdeploy.HspAppDefinition.deployAppFromXML(Unknown Source)     at com.hyperion.planning.appdeploy.HspAppDefinition.access$000(Unknown Source)     at com.hyperion.planning.appdeploy.HspAppDefinition$1.run(Unknown Source)

    Hi,
    I am getting the same error:-
    Started Time : Tuesday, February 26, 2008 4:14:31 PM
    Submitted Time : Tuesday, February 26, 2008 4:14:31 PM
    Last Updated Time : Tuesday, February 26, 2008 4:15:39 PM
    User Name : hpadmin
    Process Name :
    Thread : 0
    Server : DimServer
    Detail : App Creation failed with Exceptionjava.lang.RuntimeException: Exception occurred while creating the application. Check log for details     at com.hyperion.planning.appdeploy.HspAppDefinition.deployAppFromXML(Unknown Source)     at com.hyperion.planning.appdeploy.HspAppDefinition.access$000(Unknown Source)     at com.hyperion.planning.appdeploy.HspAppDefinition$1.run(Unknown Source)
    1---Have created new user for new App as well datasource
    2-Bounced the EPMA as well planning server but no avail.
    how I can I get detail log ? or if is it possible to tell me which directory to look into
    thanks in advance
    Sanjay

  • Getting a java.awt.Window.pack(unknown source) error

    Hello,
    This is the exact error stack:
    ERROR: 10:48:21,503 - TcLogger$IC_PrintStream.println:?
    java.lang.NullPointerException
    java.lang.NullPointerException
         at com.teamcenter.rac.util.PropertyLayout.askRowPreferredSize(Unknown Source)
         at com.teamcenter.rac.util.PropertyLayout.preferredLayoutSize(Unknown Source)
         at com.teamcenter.rac.util.PropertyLayout.layoutContainer(Unknown Source)
         at java.awt.Container.layout(Unknown Source)
         at java.awt.Container.doLayout(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validate(Unknown Source)
         at java.awt.Window.pack(Unknown Source)
         at com.honda.ergo.pergo.ProcErgoJDialog.createProcErgoDialog(ProcErgoJDialog.java:789)
         at com.honda.ergo.pergo.ProcErgoJDialog.<init>(ProcErgoJDialog.java:328)
         at com.honda.cme.actions.ErgoAssessmentAppAction.run(ErgoAssessmentAppAction.java:139)
         at java.lang.Thread.run(Unknown Source)
    I'm sure it has something to do with the PropertyLayout (Layout Manager) that I'm using but I don't know what. It works fine on one system but does not work or another.
    Thanks,

    dumas9 wrote:
         at java.awt.Window.pack(Unknown Source)
         at com.honda.ergo.pergo.ProcErgoJDialog.createProcErgoDialog(ProcErgoJDialog.java:789)
         at com.honda.ergo.pergo.ProcErgoJDialog.<init>(ProcErgoJDialog.java:328)
         at com.honda.cme.actions.ErgoAssessmentAppAction.run(ErgoAssessmentAppAction.java:139)
         at java.lang.Thread.run(Unknown Source)It looks like you're not running the Swing GUI on the EDT and since your problem is intermittent it's a likely cause of the problem. Search on "java swing concurrency tutorial" for more information.

  • Cannot connect to oracle db with - ensureMemberAccess(Unknown Source) error

    Hi there!
    i'm trying to run a simple applet to check connection with the oracle db:
    import java.sql.*;
    import oracle.jdbc.driver.*;
    class JDBCVersion
    public static void main (String args [])
    throws SQLException
    // Load the Oracle JDBC driver
    DriverManager.registerDriver
    (new oracle.jdbc.driver.OracleDriver());
    System.out.println("registered!");
    Connection conn = DriverManager.getConnection
    ("jdbc:oracle:thin:@host:1521:sid","user","pass");
    // Create Oracle DatabaseMetaData object
    DatabaseMetaData meta = conn.getMetaData ();
    // gets driver info:
    System.out.println("JDBC driver version is " + meta.getDriverVersion());
    I'm not getting any errors during the compilation and my CLASSPATH is ok pointing to the ojdbc14.jar file, i'm running j2sdk1.2.4_12 and the error
    when I'm trying to load applet is:
    java.lang.IllegalAccessException: Class com.opera.PluginPanel can not access a member of class JDBCVersion with modifiers ""
         at sun.reflect.Reflection.ensureMemberAccess(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at com.opera.PluginPanel.run(PluginPanel.java:406)
         at java.lang.Thread.run(Unknown Source)
    What is wrong???
    Any help would be very appreciable...
    Thanx.

    thank you for your valuable reply, but could you add
    some more additional information?Since I don't write applets and don't know anything additional, no.
    You might try posting your question in a forum that deals with applets and/or the Java security model. Or maybe if you wait long enough, someone who knows both JDBC and applet security will happen along and decide to answer your question.

  • ReportPageViewer "Unknown Source" error

    I have a problem with JRC in WebSphere Portal 6.1.
    It does not work and returns the error below.
    Crystal Reports 11.8
    Java 5.0
    Java Server Faces 1.1
    regards
    E.
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R java.lang.NullPointerException
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at com.crystaldecisions.report.web.jsf.e.<init>(Unknown Source)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at com.crystaldecisions.report.web.jsf.UIReportPageViewer.if(Unknown Source)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at com.crystaldecisions.report.web.jsf.ViewerHtmlRenderer.encodeEnd(Unknown Source)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at com.ibm.faces.renderkit.DefaultAjaxRenderer.encodeEnd(DefaultAjaxRenderer.java:83)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:754)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at javax.faces.webapp.UIComponentTag.encodeEnd(UIComponentTag.java:630)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:553)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at com.ibm._jsp._test4View._jspx_meth_bocrv_reportPageViewer_0(_test4View.java:212)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at com.ibm._jsp._test4View._jspx_meth_h_form_0(_test4View.java:233)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at com.ibm._jsp._test4View._jspx_meth_hx_scriptCollector_0(_test4View.java:256)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at com.ibm._jsp._test4View._jspx_meth_f_view_0(_test4View.java:283)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at com.ibm._jsp._test4View._jspService(_test4View.java:152)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:87)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1096)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1037)
    [5/27/10 14:07:01:756 EEST] 00000047 SystemErr     R      at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:118)

    I really need this answer and I don't have another place to ask. I explain much more what I did herebelow.
    I created a portlet project and created a faces portlet. I created "report" folder under WEB-INF and put a report in it. The report can be previewed successfully. Then I  added Report Page Viewer to portlet. It asked file path of the report. I entered /test8/WebContent/WEB-INF/report/IPRPSD001.rpt. Then jsf page looks like below.
    I see that "reportWrapper" managed bean was created in faces_config.xml and points the report I selected.
    When I run this project following errors come:
    [5/28/10 9:53:42:664 EEST] 0000009f SystemErr     R java.lang.NullPointerException
    [5/28/10 9:53:42:664 EEST] 0000009f SystemErr     R      at com.crystaldecisions.report.web.jsf.e.<init>(Unknown Source)
    What's wrong with this code?
    Regards
    E.
    <
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <%-- jsf:pagecode language="java" location="/src/pagecode/Test8View.java" %><% /jsf:pagecode --%><%@taglib
         uri="http://java.sun.com/jsf/core" prefix="f"%><%@taglib
         uri="http://java.sun.com/portlet_2_0" prefix="portlet"%><%@taglib
         uri="http://www.ibm.com/xmlns/prod/websphere/portal/v6.1/portlet-client-model"
         prefix="portlet-client-model"%><%@taglib
         uri="http://www.businessobjects.com/jsf/crystalreportsviewers"
         prefix="bocrv"%><%@taglib uri="http://www.ibm.com/jsf/html_extended"
         prefix="hx"%><%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%><%@page
         language="java" contentType="text/html" pageEncoding="ISO-8859-1"
         session="false"%><portlet-client-model:init>
         <portlet-client-model:require module="ibm.portal.xml.*" />
         <portlet-client-model:require module="ibm.portal.portlet.*" />
    </portlet-client-model:init>
    <portlet:defineObjects />
    <link rel="stylesheet" type="text/css" title="Style"
         href='<%= renderResponse.encodeURL(renderRequest.getContextPath() + "/theme/stylesheet.css") %>'>
    <f:view><hx:scriptCollector id="scriptCollector1">
              <h:form styleClass="form" id="form1">
                   <p>Place content here.<bocrv:reportPageViewer
                        viewerName="CrystalViewer"
                        reportSource="#{reportWrapper.reportSource}"></bocrv:reportPageViewer></p>
              </h:form>
         </hx:scriptCollector>
    </f:view>
    >

  • URGENT URGENT: MySQL unknown source error

    Hi, need ur help again.
    I have a web application that uses mysql 4.1.1 as database and tomcat 4.1.29. This application connects to 5 databases.
    First database is main database for application.
    Second database is used to retrieve records for report generation only.
    Third and forth database do the same as second database.
    Fifth database uses for authentication, which is in different machine.
    NOTE that 1st, 2nd, 3rd and 4th database are on same machine.
    All the database connection work fine (can make connection and retrieve records) in windows platform (where the tomcat and database server are installed in window).
    However, when i test the application in linux platform (where the tomcat and database server are installed in linux), the connection to 2nd,3rd and 4th database fail. The log files shows that there are error known as 'Unknown source'.
    What can i do?

    Ok, i found the problem.
    There is a case-sensitve issue: the table name.
    thanks.

  • How Solve this iaik.pkcs.pkcs1.b.b(Unknown Source) Error.

    Hi Experts
    I am trying to decrypt the user login credentials while logging to SAP portal.  Bellow code is used.
      PrivateKey privKey = bean.getRandomKey();
      Cipher cipher = Cipher.getInstance("RSA");
      cipher.init(Cipher.DECRYPT_MODE,privKey);
      cipherData = cipher.doFinal(new BASE64Decoder().decodeBuffer(enPwd));
    But I am getting the error specified below, May I kindly request you please give me some approach to resolve this problem if you have come across the same issue earlier.
    iaik.pkcs.pkcs1.b.b(Unknown Source)
    iaik.pkcs.pkcs1.RSACipher.a(Unknown Source)
    iaik.pkcs.pkcs1.RSACipher.engineDoFinal(UnknownSource)
    javax.crypto.Cipher.doFinal(DashoA12275)
    We use SAP Portal version 7.01 SP12 and JDK 1.4.2_19.
    Configtool to set the path  of the cookie and domain of the cookie are Changed.
    "cluster-data" -> "Global Server Configuration" -> "services" -> "servlet_jsp"
    Please find the attached image.
    But Default setting are there that time it's working,But some security region that settings customized.the following way
    JSESSIONID.CookieDomain = SERVER (Default value)
    SESSIONID.CookiePath = APPLICATION(Custom values)
    SAPLB.CookiePath = APPLICATION(Custom values)
    SAPLB.CookieDomain = SERVER(Custom values)
    This below settings is there that time working fine.
    SESSIONID.CookiePath = / (Default values)
    SAPLB.CookiePath = / (Default values)
    SAPLB.CookieDomain = NONE(Default values)
    Please give your suggestion and Help...Solution is Required.
    Thank you && Regards,
    Durga Rao

    Dear Experts This is My Enter Error
    iaik.pkcs.pkcs1.b.b(Unknown Source)iaik.pkcs.pkcs1.RSACipher.a(Unknown Source)iaik.pkcs.pkcs1.RSACipher.engineDoFinal(Unknown Source)javax.crypto.Cipher.doFinal(DashoA12275)sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)java.lang.reflect.Method.invoke(Method.java:331)com.sapportals.htmlb.page.DynPage.doProcessCurrentEvent(DynPage.java:173)com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:119)com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)com.sapportals.portal.ume.component.logon.SAPMLogonCertComponent.doContent(SAPMLogonCertComponent.java:33)com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:235)com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:557)java.security.AccessController.doPrivileged(Native Method)com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:430)javax.servlet.http.HttpServlet.service(HttpServlet.java:853)com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1060)com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)java.security.AccessController.doPrivileged(Native Method)com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

  • JDBC Error - Unknown Source

    guys,
    plz.........can anyone tell me what this crazy unknown source error is.....
    came in try block 1
    sql error occured
    java.sql.SQLException: Failed to start database 'c:/Java DB/javadb/demo/databases/slicr', see the next exception for details.
         at org.apache.derby.impl.jdbc.SQLExceptionFactory.getSQLException(Unknown Source)
         at org.apache.derby.impl.jdbc.Util.newEmbedSQLException(Unknown Source)
         at org.apache.derby.impl.jdbc.Util.newEmbedSQLException(Unknown Source)
         at org.apache.derby.impl.jdbc.Util.generateCsSQLException(Unknown Source)
         at org.apache.derby.impl.jdbc.EmbedConnection.newSQLException(Unknown Source)
         at org.apache.derby.impl.jdbc.EmbedConnection.bootDatabase(Unknown Source)
         at org.apache.derby.impl.jdbc.EmbedConnection.<init>(Unknown Source)
         at org.apache.derby.impl.jdbc.EmbedConnection30.<init>(Unknown Source)
         at org.apache.derby.jdbc.Driver30.getNewEmbedConnection(Unknown Source)
         at org.apache.derby.jdbc.InternalDriver.connect(Unknown Source)
         at org.apache.derby.jdbc.AutoloadedDriver.connect(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at com.ibm.examples.server.ToppingServiceImpl.getAllToppings(ToppingServiceImpl.java:30)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:281)
         at com.google.gwt.user.server.rpc.RemoteServiceServlet.doPost(RemoteServiceServlet.java:167)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at com.google.gwt.dev.shell.GWTShellServlet.service(GWTShellServlet.java:248)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Unknown Source)
    thankyou in advance

    this is the only exception it keeps throwing......below is my code for connecting to Derby DB
    package com.ibm.examples.server;
    import java.sql.*;
    import java.util.ArrayList;
    import java.util.List;
    import com.google.gwt.user.server.rpc.RemoteServiceServlet;
    import com.ibm.examples.client.Topping;
    import com.ibm.examples.client.ToppingService;
    public class ToppingServiceImpl extends RemoteServiceServlet
    implements ToppingService {
         public static final String DRIVER ="org.apache.derby.jdbc.EmbeddedDriver";
         public static final String PROTOCOL = "jdbc:derby:c:/Java DB/javadb/demo/databases/slicr";
         public List getAllToppings() {
              try {
                   System.out.println("came in try block 1");
                   Class.forName(DRIVER).newInstance();
                   Connection con = DriverManager.getConnection(PROTOCOL);
                   System.out.println("came in try block 2");
                   Statement s = con.createStatement();
                   ResultSet rs = s.executeQuery("SELECT * FROM app.toppings ORDER BY name");
                   System.out.println(rs);
                   return ObjectFactory.convertToObjects(rs, Topping.class);
              } catch (Exception e) {
                   e.printStackTrace();
                   return new ArrayList();
              } finally {
         try {
         DriverManager.getConnection("jdbc:derby:;shutdown=true");
         } catch (SQLException ignore) {}
    }

  • Change database source error for CommandTables with CRJ-Runtime v2.0.2

    hello,
    -1
    INFO Befehl with FIELD: assek Type= StoredProcedureParameter
    INFO Befehl with FIELD: jahr Type= StoredProcedureParameter
    INFO Befehl with FIELD: monat Type= StoredProcedureParameter
    INFO org.sis.assekuradeur.base.srv.KassoServiceImpl Drucke Versicherer Abrechnung für Assek: 990000029
    ERROR CBR.sdk.JRCCommunicationAdapter  detected an exception: java.lang.NullPointerException
    at CDR.reportdefinition.ParameterFieldDefinition.qJ(Unknown Source)
    at CDR.reportdefinition.ParameterFieldDefinition.qL(Unknown Source)
    at CDR.dataengine.f.hH(Unknown Source)
    at CDR.dataengine.f.S(Unknown Source)
    at CDR.dataengine.f.hN(Unknown Source)
    at CDR.dataengine.DataSourceManager.int(Unknown Source)
    at CDR.dataengine.DataSourceManager.a(Unknown Source)
    at CDR.dataengine.DataSourceManager.if(Unknown Source)
    at CDR.dataengine.y.byte(Unknown Source)
    at CDR.dataengine.y.equals(Unknown Source)
    at CDR.dataengine.i.if(Unknown Source)
    at CDR.dataengine.i.do(Unknown Source)
    at CDR.dataengine.DataProcessor2.a(Unknown Source)
    at CDR.formatter.formatter.objectformatter.ObjectFormatter.(Unknown Source)
    at CDR.formatter.formatter.paginator.PageFormatter.a(Unknown Source)
    at CDR.formatter.export2.a.a(Unknown Source)
    at CDR.formatter.export2.ExportSupervisorEx.if(Unknown Source)
    at CDR.formatter.export2.ExportSupervisorEx.a(Unknown Source)
    at CBR.sdk.requesthandler.ReportViewingRequestHandler.a(Unknown Source)
    at CBR.sdk.requesthandler.ReportViewingRequestHandler.int(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter.do(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter.if(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter.a(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter$2.a(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter$2.call(Unknown Source)
    at CDR.common.ThreadGuard.syncExecute(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter.for(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter.int(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter.request(Unknown Source)
    at com.businessobjects.sdk.erom.jrc.a.a(Unknown Source)
    at com.businessobjects.sdk.erom.jrc.a.execute(Unknown Source)
    at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(Unknown Source)
    at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(Unknown Source)
    at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.ds.a(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.if(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    at org.sis.assekuradeur.utils.JRCHelper.print(JRCHelper.java:224)
    at org.sis.assekuradeur.base.srv.KassoServiceImpl.erzeugeProvisionsAbrechnungVersicherer(KassoServiceImpl.java:2014)
    ERROR com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: java.lang.NullPointerException---- Error code:-2147467259 Error code name:failed
    ERROR  at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.if(Unknown Source)
    ERROR  at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    ERROR  at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    ERROR  at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    ERROR  at org.sis.assekuradeur.utils.JRCHelper.print(JRCHelper.java:224)
    ERROR  at java.lang.Thread.run(Thread.java:595)
    ERROR Caused by: java.lang.NullPointerException
    ERROR  at CDR.reportdefinition.ParameterFieldDefinition.qJ(Unknown Source)
    ERROR  at CDR.reportdefinition.ParameterFieldDefinition.qL(Unknown Source)
    ERROR  at CDR.dataengine.f.hH(Unknown Source)
    ERROR  at CDR.dataengine.f.S(Unknown Source)
    ERROR  at CDR.dataengine.f.hN(Unknown Source)
    ERROR  at CDR.dataengine.DataSourceManager.int(Unknown Source)
    ERROR  at CDR.dataengine.DataSourceManager.a(Unknown Source)
    ERROR  at CDR.dataengine.DataSourceManager.if(Unknown Source)
    ERROR  at CDR.dataengine.y.byte(Unknown Source)
    ERROR  at CDR.dataengine.y.equals(Unknown Source)
    ERROR  at CDR.dataengine.i.if(Unknown Source)
    ERROR  at CDR.dataengine.i.do(Unknown Source)
    ERROR  at CDR.dataengine.DataProcessor2.a(Unknown Source)
    ERROR  at CDR.formatter.formatter.objectformatter.ObjectFormatter.
    Edited by: Markus Fieber on Aug 11, 2009 11:20 AM
    Edited by: Markus Fieber on Aug 11, 2009 11:37 AM

    I have solved the problem at last. Actually, I found lib of libstd_v2 for gcc can not be compatible with libocci. And I can not recomplie libocci with gcc. So I used aCC instead of gcc and all of things is ok now.

  • Pls help. unknown source position error. returnvalue == -12

    Hi,
     i have encouter a problem during debugging external Dll. some of times i receive a error. unknown source position. library function error( return value == -12) out of memory.
    however,  after you pressing continue in popup windowns . program can continue without any error .   so do someone recognize this error. ?
    B.R
    gerry
    Attachments:
    outofmemory.jpg ‏119 KB

    Gerry,
    Its difficult to say much without more information,  but when I have encountered this problem while debugging a dll, the program flow halts at the function returning the error.  Default behavior in CVI 2010 environment I believe is to break on library errors.  This can be verified/set in the Run->Break on->Library errors menu setting.  Also important, both the calling application AND the .dll must have been built in debug mode.  If that is true, and the "break on Library errors" mode is checked, when the program is executed, program flow will halt at the first occurrence of a library error, with a description in the Run-Time Errors box.  If the error is thrown within the .dll, then you will see execution stop there. 
    Once this happens, you can right click on the offending function to open the function panel, and use the built in help to determine what -12 means.
    If you need further help, please provide more information about the problem
    Regard,
    Ryk

  • Excel as a data source - Error when trying to create new univerise

    Hello,
    Running BO 4 Server (On Server Machine) and Client tools 4 (on my local laptop) . I have tried the following..
    Succesfully
    1. With the information tool  Created a project
    2.  Created a connection to  a excel file on a network drive as a source
    2. Published connection, created short cuts
    3. Created data foundation
    4. Creeated Business layers
    5. Linked all tables inserted summary etc (data can be viewed in the viewer)
    I publish everything above to the repository and everthing works perfectly.
    I have created the ODBC links to the excel file both on my local laptop and server using the 32 bit admin tool (ODBC) in windows.
    Current Issue
    When i log into the BI Launch pad and open web intellgence, i try to create new and use the univerise i have published. I receieve the following error.
    The dataSource cannot be generated for the specified dataSource name "zEmptyBusiness_Layer". (WIS 00000)
    com.businessobjects.sdk.core.server.CommunicationException$UnexpectedServerException: The dataSource cannot be generated for the specified dataSource name "zEmptyBusiness_Layer".
         at com.businessobjects.sdk.core.exception.ExceptionBuilder.make(ExceptionBuilder.java:144)
         at com.businessobjects.sdk.core.exception.ExceptionBuilder.make(ExceptionBuilder.java:101)
         at com.businessobjects.sdk.core.server.common.CommonRequestHandler.afterProcessing(CommonRequestHandler.java:127)
         at com.businessobjects.sdk.core.server.internal.AbstractServer.processIt(AbstractServer.java:178)
         at com.businessobjects.sdk.core.server.internal.AbstractServer.process(AbstractServer.java:133)
         at com.businessobjects.sdk.core.server.internal.InstanceServer.process(InstanceServer.java:94)
         at com.sap.sl.sdk.services.util.ServerRequestProcessor.processServerRequest(ServerRequestProcessor.java:49)
         at com.sap.sl.sdk.datasource.strategy.BuiltInDataSourceStrategyImpl.addDataProvider(BuiltInDataSourceStrategyImpl.java:99)
         at com.sap.sl.sdk.workspace.service.WorkspaceServiceImpl.addDataProvider(WorkspaceServiceImpl.java:77)
         at com.sap.sl.sdk.workspace.service.WorkspaceServiceImpl.addDataProvider(WorkspaceServiceImpl.java:60)
         at com.sap.webi.ui.context.managers.DataManager.addDataProviderFromDataSourceInfo(DataManager.java:382)
         at com.sap.webi.ui.tasks.workflows.AddDataProviderUITask.doIt(AddDataProviderUITask.java:106)
         at com.sap.webi.ui.tasks.workflows.AddDataProviderUITask.doIt(AddDataProviderUITask.java:19)
         at com.sap.webi.toolkit.ui.tasks.WebITask.doInBackground(WebITask.java:113)
         at javax.swing.SwingWorker$1.call(Unknown Source)
         at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
         at java.util.concurrent.FutureTask.run(Unknown Source)
         at javax.swing.SwingWorker.run(Unknown Source)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: com.businessobjects.sdk.core.server.ServerException: The dataSource cannot be generated for the specified dataSource name "zEmptyBusiness_Layer".
         at com.businessobjects.sdk.core.server.common.CommonRequestHandler.newServerException(CommonRequestHandler.java:260)
         at com.businessobjects.sdk.core.server.common.CommonRequestHandler.createAllServerExceptions(CommonRequestHandler.java:238)
         at com.businessobjects.sdk.core.server.common.CommonRequestHandler.afterProcessing(CommonRequestHandler.java:121)
         ... 18 more
    any help at all would be much appreciated

    Hi ,
    Go to : Control Panel - > Add / Remove Programs (or "Programs and Features" on win7) 
    looks for : SAP BusinessObjects BI Platform 4.0 Client Tool   <- that's the base install
    now look for an entry called   SAP BusinessObjects BI Platform 4.0 Client Tools  SP2  Patch2.8
    these are not automatic updates, it would require an installer be launched on your PC.
    Regards,
    H

  • Can't Export Movie - Unknown Compile Error - Help!

    I edited a 32 minute movie in Premiere Elements 10, and now I'm trying to export it.  At some point during the export, and it seems to vary, I get an unknown compile error.  I've been trying to export the movie for the past week and all I get is failure despite trying just about everything I've found written about how to solve this.
    I have Win 7 Ultimate SP 1 running on a Lenovo desktop machine with an Intel Core 2 Quad CPU at 2.67 GHz, 4GB of RAM, 32 bit proc.
    Premiere is installed on system C drive with 6 GB of free space.
    Project and scrach disks are on D drive with 165 GB of free space.
    Media files are on 2nd E drive with 50GB of free space.
    Project and most source material is NTSC DV -- there are quite a few photos with motion, plus some iPhone HD video on the timeline, hundreds of clips in all plus narration, a few titles, etc.
    Export destination folder is on D drive.
    Everything will render to green lines atop timeline (sometimes it quits during render and I have to keep hitting Enter to continue rendering, but eventually it's all green)
    So far I've tried:
    - Reinstalling PE 10
    - Reinstalling Quicktime
    - Copying all the photos to their own separate folder
    - Editing each photo slightly (outside of PE 10) and resaving to make sure none of the photos are corrupted
    - Emptying the temp folder
    - Deleting all the renders and cache files and letting them rebuild
    - Exporting small pieces of the timeline to try to identify a bad clip -- this is a maddening process and I did find one clip that would generate the error, but I managed to export that to AVI and reimport and replace on timeline.  It would be awfully nice if PE would just TELL ME which clip it doesn't like if in fact it's a clip error.
    - Turning off the shadow / highlight feature I had on some clips, but this wasn't the issue, smaller sections with these clips exported fine
    - Tried exporting to various formats: Vimeo SD, MPEG DV Standard, iPad Standard High Quality, AVI -- all result in the same error (the format I want by the way is Vimeo SD)
    - Rebooting the machine and turning everything off that might possibly consume memory
    This machine has never had problems exporting in the past.  One thing I did try that worked -- installed PE 10 on another (less capable) Win 7 machine, and fed it all the media via an external drive.  The other machine did the export fine (though it took a while given it is underpowered).  This is nothing more than a work around though as I don't normally have access to this machine and I'm not done editing.
    I'm at my wits' end!  What else can I do to get this movie file to export?
    Appreciate any help or clues you can provide to solve this mystery.

    Oh, that is tragic!
    I never had any issues with mine. Maybe it knew how respectful I was, having come from manual rewinds and a sync block? The Moviola was a godsend, at least for me. I am glad that I got to edit film, and on many setups, as some of that translated well to digital Video. Back when I was in film school, Video was 2" tape, and the only editing was by cutting at a 45 degree angle, and splicing the tape. There was not even deck-to-deck editing, way back then. Also, Video looked like crap, at least to my eyes. We could only use a switcher, to "edit," or do a feed to air. Looked like crap!
    As for the Lexus, I can imagine all sorts of problems. My new LX-570 requires me to "Accept," when I put it into reverse, on the rear-view monitor! At least my wife's MB does not require that, but it is a 2011 model, so maybe the 2013 models will require that the user sign off on all sorts of "stuff."
    Now, I can play Finding Nemo, for my rear-seat passengers, while driving, but the front-seat passengers cannot see it, which is just fine. When driving, I am not even a fan of hands-free calls, and declined most of the streaming stock quotes, etc. for XM/Sirius radio. NOT while I am driving. I will save that for reading the WSJ in the club at the airport.
    Some years ago, our driver in London got a new BMW 7-series, and it allowed the playing of DVD's, even in the front, while driving. Not sure that I would want that, but such is life. At least his seats' ventilation system was "well-chilled," where ours' are just air. He almost froze my bum, showing off his new auto.
    Now, working with PS, or PrE in an auto, or even on a mobile device, is just not something that I can wrap my old head around. I want a fast computer, with a big display, and cannot imagine editing Images, or Video, on any handheld (or auto) device.
    Hunt

  • Access denied error when Loading document library for "contribute" users : Unknown SPRequest error occurred. More information: 0x80070005

    Hi,
    We are facing a very strange issue on a SharePoint Publishing portal. Domain users (contribute level access) have access to document libraries under specific sub sites. Every morning if they try to access the document library pages, users complain about "Access Denied" issue on document library page. But if a SP Farm admin account login on site, and browse to document library page, access denied issue seems to disappear for end users also. For whole day it works fine. But next day access denied error occurs again. I am not sure why this is happening. I have looked into Event Log and SharePoint Logs, found following information useful, but not sure what to do next.
    Please help.
    Event log Details:
    Server: WFE01
    Event Type: Error
    Event Source: Office SharePoint Server
    Event Category: Publishing
    Event ID: 5169
    Date:  17/11/2009
    Time:  07:47:31
    User:  N/A
    Computer: SPWFE01
    Description:
    Console Configuration File Error: XML Exception: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    SP Log files:
    All logs are for process: w3wp.exe (0x031C)                        0x17F4 Windows SharePoint Services  
    ·     Begin OnLoad of XmlConsoleDataSource from file "EditingMenu".
    ·     Attempting to load XML from config file "EditingMenu".
    ·     PermissionMask check failed. asking for 0x00010000, have 0x00000000
    ·     Unknown SPRequest error occurred. More information: 0x80070005
    ·     Access Denied for /Projects/LFB/03 Bid Stage 1/Forms/AllItems.aspx.
    ·     StackTrace: Microsoft.SharePoint.Utilities.SPUtility:Void HandleAccessDenied(System.Exception), Microsoft.SharePoint.SPGlobal:Void HandleUnauthorizedAccessException(System.UnauthorizedAccessException), Microsoft.SharePoint.Library.SPRequest:Void OpenWeb(System.String, System.String ByRef, System.String ByRef, System.String ByRef, System.Guid ByRef, System.String ByRef, UInt32 ByRef, System.Guid ByRef, UInt32 ByRef, UInt32 ByRef, UInt32 ByRef, UInt16 ByRef, Boolean ByRef, Int16 ByRef, UInt32 ByRef, Int16 ByRef, Int16 ByRef, Int16 ByRef, Boolean ByRef, Int16 ByRef, UInt32 ByRef, Int16 ByRef, Int16 ByRef, Int16 ByRef, Int16 ByRef, Int32 ByRef, Boolean ByRef, System.String ByRef, System.String ByRef, Int32 ByRef, Int16 ByRef, ...
    ...System.String ByRef, System.String ByRef, System.String ByRef, System.String ByRef, System.String ByRef, System.String ByRef, System.String ByRef, System.String ByRef, System.String ByRef, System.String ByRef, System.Object ByRef, Boolean ByRef, UInt64 ByRef, Boolean ByRef, Boolean ByRef, System.Guid ByRef, System.Guid ByRef, Int32 ByRef, System.DateTime ByRef, System.DateTime ByRef, System.String ByRef), Microsoft.SharePoint.SPWeb:Void InitWeb(), Microsoft.SharePoint.SPWeb:Microsoft.SharePoint.SPSecurableObjectImpl get_SecurableObjectImpl(), Microsoft.SharePoint.SPWeb:Microsoft.SharePoint.SPRoleAssignmentCollection get_RoleAssignments(), Microsoft.SharePoint.Publishing.WebControls.ConsoleXmlUtilities:System.String ConfigurationXml(System.String, Boolean), Microsoft.SharePoint.Publishing.W...
    ...ebControls.ConsoleXmlUtilities:Microsoft.SharePoint.Publishing.WebControls.ConsoleNode GetConsoleNodeCollectionFromXmlFile(System.String, Boolean), Microsoft.SharePoint.Publishing.WebControls.XmlConsoleDataSource:Void LoadTreeFromConfigXml(), Microsoft.SharePoint.Publishing.WebControls.XmlConsoleDataSource:Void OnLoad(System.EventArgs), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Page:Vo...
    ...id ProcessRequestMain(Boolean, Boolean), System.Web.UI.Page:Void ProcessRequest(Boolean, Boolean), System.Web.UI.Page:Void ProcessRequest(), System.Web.UI.Page:Void ProcessRequestWithNoAssert(System.Web.HttpContext), System.Web.UI.Page:Void ProcessRequest(System.Web.HttpContext), System.Web.HttpApplication+CallHandlerExecutionStep:Void System.Web.HttpApplication.IExecutionStep.Execute(), System.Web.HttpApplication:System.Exception ExecuteStep(IExecutionStep, Boolean ByRef), System.Web.HttpApplication+ApplicationStepManager:Void ResumeSteps(System.Exception), System.Web.HttpApplication:System.IAsyncResult System.Web.IHttpAsyncHandler.BeginProcessRequest(System.Web.HttpContext, System.AsyncCallback, System.Object), System.Web.HttpRuntime:Void ProcessRequestInternal(System.Web.HttpWorkerReque...
    ...st), System.Web.HttpRuntime:Void ProcessRequestNoDemand(System.Web.HttpWorkerRequest), System.Web.Hosting.ISAPIRuntime:Int32 ProcessRequest(IntPtr, Int32),
    ·     Releasing SPRequest with allocation Id {E3BC24ED-F243-4DBD-8625-EE7CF9FDA039}
    ·     Exception: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
    ·     Console Configuration File Error: XML Exception: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
    ·     Releasing SPRequest with allocation Id {D1A87724-6FB6-4009-B6D1-D7E15918E213}
    Pryank Rohilla
    MCTS, MCAD

    Hi pryank,
    From the log, it seems that the users don’t have permission on this page:
    /Projects/LFB/03 Bid Stage 1/Forms/AllItems.aspx
    Does the sub site have unique permission instead of inheriting permission from the parent site? If no, you need to make the sub site to inherit permission from the site collection so that master page also inherits the right. If this is not allowed in your organization, please go to “Site Actions”à “Site Settings” à “Master Pages and Page Layouts” to give users permissions on this document library.
    Hope this helps.
    Lu Zou

  • In the middle of my last update it stopped updating in the because of an unknown source, and now my screen on my iphone is frozen with the apple logo and a loading bar. Help??

    in the middle of my last update it stopped updating in the because of an unknown source, and now my screen on my iphone is frozen with the apple logo and a loading bar. Help??

    Unknown "source"?  Do you mean unknown "error" followed by a number?
    http://support.apple.com/kb/TS3221
    Follow the instructions in the article.  When you connect your phone again, you may have to press both the home and sleep/wake buttons until the Apple logo reappears, then continue pressing the home button until iTunes detects the phone in recovery mode.

  • RMI: Unknown source problem with connection & security

    When I try to run the RMI server code, after I have granted all permissions in my policy, after compiling through RMIC generating my stub and skeleton classes, and finally after running the RMI registry, I receive an error. The error that I have been getting is pasted below. I have searched through several java forums trying to find an answer and have not found one. If you recognized this error, please let me know if you have suggestions. Thanks.
    TestRmiServer exception: access denied (java.net.SocketPermission 192.168.0.152:
    1099 connect,resolve) //note: I'm using the default RMI port
    java.security.AccessControlException: access denied (java.net.SocketPermission 1
    92.168.0.152:1099 connect,resolve)
    at java.security.AccessControlContext.checkPermission(Unknown Source)
    at java.security.AccessController.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkConnect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(Unknown S
    ource)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(Unknown S
    ource)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown Source)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source)
    at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source)
    at sun.rmi.server.UnicastRef.newCall(Unknown Source)
    at sun.rmi.registry.RegistryImpl_Stub.rebind(Unknown Source)
    at java.rmi.Naming.rebind(Unknown Source)
    at irad.nmi.services.util.testRmi.TestRmiServer.main(TestRmiServer.java:
    64)
    Anyway, a response would be welcome. Thanks.

    look at thread :
    http://forum.java.sun.com/thread.jspa?threadID=597299&tstart=0
    most likely you did not specify the -Djava.security.policy property properly.

Maybe you are looking for

  • Video will not display through DV deck anymore...any ideas?

    Hey all, At some point in the past several months, my playback signal stopped playing back through my DV deck to my NTSC monitor. I can only watch it on the preview and canvas windows on the Mac monitor. My A/V settings have not changed...still set t

  • Power button flashes three times in regular intervals!

    Everything works fine but the power button on my cinema display flashes three times in regular intervals over and over again. I'm going to have a seizure!

  • 9i import problem

    We use oracle 9i on windows 2000, now we want to migrate database to another server. when I export all tables, it success without error and warning. But when I import, each time there is one table I could not import, give the message IMP-00058 oracle

  • How to make a jframe or jdialog on top of all other applications

    I just want to know if there a way to make a jframe or jdialog on top of an application like games? Thanks in advance...

  • Fuzzy text characters on Tecra 9100 with low screen resolution

    When using the standard Toshiba S3 video drivers for Windows XP I seem to be experiencing problems with the display when the resolution is set to 1024 x 768 or lower. Any text on the screen is fuzzy / weird quality. If I select a higher resolution th