Error launching application after upgrading to 10.1.3 production

Our web structure looks like this:
+ web
    + bin             project jar files and client jar libraries
    + images
    + WEB-INF
       + conf        application property files
       + lib           project jar files and server jar libraries
       + logs
    + xml
+ META-INFWith previous versions of OC4J this web.xml would suffice:
<?xml version="1.0"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee  http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
         version="2.4">
  <display-name>ch_web</display-name>
  <description>web.xml file for Casthouse</description>
  <servlet>
    <servlet-name>afc.system.server.StartupServlet</servlet-name>
    <servlet-class>afc.system.server.StartupServlet</servlet-class>
    <init-param>
      <param-name>CONFIGURATION_HOME</param-name>
      <param-value>C:\oracle\JDeveloper10g\j2ee\home\applications\ch_web\ch_web\WEB-INF\conf\</param-value>
    </init-param>
    <init-param>
      <param-name>SERVLET_HOME</param-name>
      <param-value>/ch_web/servlet/</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet>
    <servlet-name>casthouse.analysis.server.spectro.AnalysisReceiverService</servlet-name>
    <servlet-class>casthouse.analysis.server.spectro.AnalysisReceiverService</servlet-class>
    <load-on-startup>2</load-on-startup>
  </servlet>
  <session-config>
    <session-timeout>30</session-timeout>
  </session-config>
  <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
  </mime-mapping>
  <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
  </mime-mapping>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
  </welcome-file-list>
  <login-config>
    <auth-method>BASIC</auth-method>
  </login-config>
</web-app> But after upgrading, the server side initializes allright, but the client cannot connect. I get a 404- page cannot be found when trying.
After adding the following to my web.xml...
   <servlet>
     <servlet-name>LoginServlet</servlet-name>
     <servlet-class>afc.login.server.LoginServlet</servlet-class>
   </servlet>
   <servlet-mapping>
     <servlet-name>LoginServlet</servlet-name>
     <url-pattern>/servlet/*</url-pattern>
   </servlet-mapping>The client did locate some code, but not all. From the java console, I discovered several exceptions due to servlets referred and not found. I tried to map some of the central servlets in our application, but stopped. I thought, this cannot be right. We have very many servlets in our application. It shouldn't be nescessary to map them all in our web.xml... Is it?
What am I missing?

Ok.. hmm, life was easier before...
I tried to add the http.webdir.enable="true" to the only orion-web.xml I could find (under j2ee\home\application-deployments\{web-root}\{context-root}\orion-web.xml
Don't know if this should be in another location, we do not deploy this. This is generated during deployment from our JDeveloper deployment profile). But after the container was restarted, the file was reverted to the old version without this attribute set. Frustrating...
45 servlets are now registered in our web.xml. That is 3 servlets which should be accessible to the user from the address bar in the browser, and 42 servlets accessible from either the client or the server programmatically.
But is it then nescessary to add both <servlet> tag and <servlet-mapping> tag for one servlet, or is the <servlet-mapping> tag only nescessary for those servlets, which should be available to the end user, and not directlly called from the application itself?
I still get an exception when trying to instanciate the application. Our application uses one or two properties files which it needs to read upon instanciation. They live in {context-root}\WEB-INF\conf\
OC4J doesn't seem to give access to this folder anymore. What do I have to include in our web.xml in order to give the appropriate read access to this folder? Should only be readable server side from a Servlet. Contents are communicated to the client through this servlet.

Similar Messages

  • ORA-01722: invalid number (Error in Application after upgrade to 3.0)

    Dear All,
    After upgrading to 3.0 I am no longer able to login to my application. The error I am seeing is:
    ORA-01722: invalid number
         Error      Could not process show_hide_memory.show_hide_collection_output procedure !
    Please help me pin-point the issue and fixed it.
    This happens in some applications but in others it doesn't...
    Regards,
    Pawel.

    I believe I have found the source of the problem!
    This is coming from the sample application which was used for the show/hide of regions example.
    The code behind the above procedure is:
    CREATE OR REPLACE
    PACKAGE show_hide_memory AS
    PROCEDURE show_hide_collection;
    PROCEDURE show_hide_collection_output;
    END;
    CREATE OR REPLACE PACKAGE BODY show_hide_memory AS
    PROCEDURE show_hide_collection AS
    l_arr apex_application_global.vc_arr2;
    l_found boolean := FALSE;
    l_collection_name VARCHAR2(255) := 'SHOW_HIDE_COLLECTION';
    BEGIN
    IF(wwv_flow_collection.collection_exists(p_collection_name => l_collection_name) = FALSE) THEN
    htmldb_collection.create_or_truncate_collection(p_collection_name => l_collection_name);
    END IF;
    l_arr := apex_util.string_to_table(p_string => v('TEMPORARY_ITEM'), p_separator => ']');
    -- If the array member count of l_arr < 3, then the following code will raise an exception
    FOR c1 IN
    (SELECT seq_id
    FROM apex_collections
    WHERE collection_name = l_collection_name
    AND c001 = l_arr(1)
    AND c002 = l_arr(2)
    AND c003 = l_arr(3))
    LOOP
    -- It exists, so delete it
    apex_collection.delete_member(p_collection_name => l_collection_name, p_seq => c1.seq_id);
    l_found := TRUE;
    END LOOP;
    IF l_found = FALSE THEN
    apex_collection.add_member(p_collection_name => l_collection_name, p_c001 => l_arr(1), p_c002 => l_arr(2), p_c003 => l_arr(3));
    END IF;
    COMMIT;
    END show_hide_collection;
    PROCEDURE show_hide_collection_output AS
    BEGIN
    htp.prn('<script type="text/javascript">' || CHR(10));
    htp.prn('<!--' || CHR(10));
    htp.prn('window.onload=function(){' || CHR(10));
    FOR c1 IN
    (SELECT c003
    FROM apex_collections
    WHERE collection_name = 'SHOW_HIDE_COLLECTION'
    AND c001 = wwv_flow.g_flow_id
    AND c002 = wwv_flow.g_flow_step_id)
    LOOP
    htp.prn('htmldb_ToggleWithImage(''' || c1.c003 || 'img'',''' || c1.c003 || 'body'');' || CHR(10));
    END LOOP;
    htp.prn('}' || CHR(10));
    htp.prn('//-->' || CHR(10));
    htp.prn('</script>' || CHR(10));
    END show_hide_collection_output;
    END;
    I guess now I have to find the bug in the above code !

  • Error launching PS after upgrading to Mac OS X 10.10 Yosemite

    I get this error now after installing Yosemite on my Macbook Air - "An unexpected and unrecoverable has occurred. Photoshop will now exit."
    Any ideas how to repair this issue?

    Basically the upgrade to Yosemite damages the Photoshop CS5 installation
    Photoshop CS5: “An unexpected and unrecoverable problem has occurred. Photoshop will now exit“ after updating to Yosemit…
    The answer is to reinstall CS5.
    Gene

  • I unable logon to application after upgrade to 11.1.1.2

    Hi,
    I have problem to logon to HFM application after upgrade from 9.3.1 version to 11.1.1.2.
    The application is "Classic Application".
    I upgraded SharedServices(HSS), Planning, AnaliticServices, Workspace and HFM. Everything is OK. I can logon to all components excluding HFM. Each component was configured and registred in HSS.
    When I try logon to HFM application via workspace I recive this error:
    An error has occured. Please contact your administrator.
    Error Code: -2147217900
    Details:
    Trace: Error Reference Number: {A82694E0-72E7-4199-8EA4-B1BD52AD559C}<BR>Num: 0x80040e14;Type: 0;DTime: 2009-09-09 12:41:53;Svr: PGFDEMO;File: CHsxServerImpl.cpp;Line: 1877;Ver: 11.1.1.2.0.2207;<BR>Num: 0x80040e14;Type: 0;DTime: 2009-09-09 12:42:02;Svr: PGFDEMO;File: CHsxServerImpl.cpp;Line: 2168;Ver: 11.1.1.2.0.2207;<BR>Num: 0x80040e14;Type: 0;DTime: 2009-09-09 12:42:02;Svr: PGFDEMO;File: CHsxServerImpl.cpp;Line: 3886;Ver: 11.1.1.2.0.2207;<BR>Num: 0x80040e14;Type: 0;DTime: 2009-09-09 12:42:02;Svr: PGFDEMO;File: CHsxServer.cpp;Line: 1451;Ver: 11.1.1.2.0.2207;<BR>Num: 0x80040e14;Type: 0;DTime: 2009-09-09 12:42:02;Svr: PGFDEMO;File: CHsxClient.cpp;Line: 2355;Ver: 11.1.1.2.0.2207;<BR>Num: 0x80040e14;Type: 0;DTime: 2009-09-09 12:42:05;Svr: PGFDEMO;File: CHFMwManageApplications.cpp;Line: 206;Ver: 11.1.1.2.0.2207;
    When I try logon via ClientConsole I recive this error:
    Unable to open the selected application.
    Details:
    Error Reference Number: {19299643-9192-4E69-AC34-D1489457ED4A}
    Num: 0x80040e14;Type: 0;DTime: 2009-09-09 12:45:03;Svr: PGFDEMO;File: CHsxServerImpl.cpp;Line: 1877;Ver: 11.1.1.2.0.2207;
    Num: 0x80040e14;Type: 0;DTime: 2009-09-09 12:45:06;Svr: PGFDEMO;File: CHsxServerImpl.cpp;Line: 2168;Ver: 11.1.1.2.0.2207;
    Num: 0x80040e14;Type: 0;DTime: 2009-09-09 12:45:06;Svr: PGFDEMO;File: CHsxServerImpl.cpp;Line: 3886;Ver: 11.1.1.2.0.2207;
    Num: 0x80040e14;Type: 0;DTime: 2009-09-09 12:45:07;Svr: PGFDEMO;File: CHsxServer.cpp;Line: 1451;Ver: 11.1.1.2.0.2207;
    Num: 0x80040e14;Type: 0;DTime: 2009-09-09 12:45:08;Svr: PGFDEMO;File: CHsxClient.cpp;Line: 2355;Ver: 11.1.1.2.0.2207;
    In system Evet Viewr/Application I have next error:
    Event Type:     Error
    Event Source:     Hyperion Financial Management
    Event Category:     None
    Event ID:     11
    Date:          2009-09-09
    Time:          12:45:01
    User:          PGFDEMO\Administrator
    Computer:     PGFDEMO
    Description:
    Error 11; Administrator; 09/09/2009 12:45:01; CHsvSQLFile.cpp; Line 836; <?xml version="1.0"?>
    <EStr><Ref>{B3E02DEC-686C-4370-9E10-B63DE76601E9}</Ref><AppName>EMEA</AppName><User/><DBUpdate>1</DBUpdate><ESec><Num>-2147217900</Num><Type>1</Type><DTime>2009-09-09 12:45:01</DTime><Svr>PGFDEMO</Svr><File>CHsvSQLFile.cpp</File><Line>836</Line><Ver>11.1.1.2.0.2207</Ver><DStr>SELECT LABEL,TIMESTAMP,BINARYFILE,TYPE FROM EMEA_BINARYFILES WHERE LABEL = N'SharedAppData' order by ENTRYIDX</DStr><PSec><Param>ORA-00904: "TYPE": niepoprawny identyfikator</Param></PSec></ESec></EStr>
    But when I create new ClassicApplication then I can logon.
    Has anyone any idea how to resolve my problem?
    Thanks for help.

    Hi there,
    interested to know if this was resolved and how? I am also receiving a similar message after running an upgrade/schema migration.
    Appreciated any assistance you can provide

  • Problem with ADF Application after upgrade to 10.1.2.3

    Hello,
    i have some problems with my ADF applications after upgrade of AppServer to 10.1.2.3.
    The only Excteption i got is in the application.log of the container:
    Error in errorPage /faces/pages/error/error404.jspx
    javax.servlet.ServletException
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:614)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:556)
         at pages.error._error404._jspService(_error404.java:682)
         at com.orionserver[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:356)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:498)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:402)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:674)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:341)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:230)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)
         at oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:157)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:674)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:341)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:230)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.EvermindHttpServletResponse.sendError(EvermindHttpServletResponse.java:1298)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.EvermindHttpServletResponse.sendError(EvermindHttpServletResponse.java:1428)
         at javax.servlet.http.HttpServletResponseWrapper.sendError(HttpServletResponseWrapper.java:162)
         at oracle.security.jazn.oc4j.JAZNServletResponse.sendError(Unknown Source)
         at oracle.adf.view.faces.webapp.ResourceServlet.doGet(ResourceServlet.java:169)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at oracle.adf.view.faces.webapp.ResourceServlet.service(ResourceServlet.java:135)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:674)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:341)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:816)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:231)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:136)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    Does anybody know how to handle it?
    Regards.
    Krystian.

    I am also getting the similar error if I enable a particular coloumn of a table to load into ORM , I am getting the following error,
    javax.servlet.jsp.JspException     at jsp.viewsinglerecord.throwError(_viewsinglerecord.java:31)     [SRC:/jsp/standardinclude.jsp:84]     at jsp.viewsinglerecord._jspService(_viewsinglerecord.java:1185)     [SRC:/jsp/displaymultiplerecords.jsp:461]     at com.orionserver[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:356)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:498)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:402)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:835)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:341)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:230)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.GetParametersRequestDispatcher.forward(GetParametersRequestDispatcher.java:257)     at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)     at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)     at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)     at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)     at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:835)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:341)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:816)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:231)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:136)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)     at java.lang.Thread.run(Thread.java:534)

  • Can't launch color after upgrading to OS 10.5

    I can't launch color after upgrading to OS 10.5. The message shows " Unable to initialize OpenGL. Make sure Video Desktop is disable." Can anyone help please?

    Click here and follow the instructions.
    (46092)

  • Hotsync error: SystemMgr.c, Line:4038, Error Launching Application

    When I try to hotsync, my plam displays this error message, and I must click "reset"- the screen goes blank, flashes the tungsten logo & music, and I set the date/time.
    I have not lost the info on my palm- I just need to sync it into my new computer.
    Please help!
    Thank you in advance.
    Post relates to: Tungsten E2

    I am having exactly the same problem on my LifeDrive. The entire message I get when I try to HotSync is:
    "A reset was caused on 11/30/06 at 1:09 am
    while running "":
    SystemMgr.c, Line:4038, error launching application"
    I also noted that, if I try to access "Files" from the launch window it also causes a reset, with the following information:
    "FileRegistry.c
    line:833
    can't open app DB"
    I hope that this additional information might help in recognizing a correcting the problem

  • Lost applications after upgrade.

    I have lost several applications including BBM applications after upgrade when I download it the system will say it is installed already but you can not see the icon.

    I have tried all the above but it is not working.

  • Unable to launch the application after upgrading Java to version 1.6.0_26

    After upgrading Java to version 1.6.0_26 in Windows XP my web start throwing Exception. It works fine in Ubuntu with Java 1.6.0_24 and in Windows with older versions of Java 1.6.
    Exception doesn't say anything:
    java.lang.NullPointerException
           at com.sun.javaws.Launcher.executeApplication(Unknown Source)
           at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
           at com.sun.javaws.Launcher.doLaunchApp(Unknown Source)
           at com.sun.javaws.Launcher.run(Unknown Source)
           at java.lang.Thread.run(Unknown Source)Same as java console ouput
    Java Web Start 1.6.0_26
    Using JRE version 1.6.0_26-b03 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\esod
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    m:   print memory usage
    o:   trigger logging
    p:   reload proxy configuration
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    0-5: set trace level to <n>
    #### Java Web Start Error:
    #### nullMy Jnlp file looks like this
    <jnlp spec="1.0+">
    <information>
       <title>Editor</title>
       <vendor>Comapny name</vendor>
       <homepage href="http://company_urll" />
       <description>Editor/description>
    </information>
    <resources>
       <j2se version="1.6+" />
       <property value="true" name="javaws.cfg.jauthenticator" />
       <jar href="http://192.168.79.33:7070/resources/applet/formeditor.jar" />
    </resources>
    <security>
       <all-permissions />
    </security>
    <application-desc main-class="pl.rdata.formeditor.FormEditor">
       <argument>[email protected]</argument>
       <argument>rLq3347491</argument>
       <argument>17</argument>
       <argument>
       http://192.168.79.33:7070/formeditor/formManagerService.service</argument>
       <argument>
       http://192.168.79.33:7070/formeditor/customDataTypeManager.service</argument>
       <argument>
       http://192.168.79.33:7070/formeditor/authorizationService.service</argument>
       <argument>2</argument>
    </application-desc>
    </jnlp>This application is self signed.
    When I download jar file to disk I can run it with command java -jar and it works fine.
    After downloading jar I made some tests changing line <jar href="http://192.168.79.33:7070/resources/applet/formeditor.jar" /> in Jnlp file.
    When I changed it to <jar href="formeditor.jar" />, and have jar in folder it works.
    When I changed it to <jar href="file:///C:/formeditor.jar"> it is not working (same exception).
    In every case jar is download correctly and it pass verifying.
    can anyone help?
    Regards
    Michal

    867322 wrote:
    When I changed it to <jar href="formeditor.jar" />, and have jar in folder it works.Okay, so you at least have a workaround.
    can anyone help?Search the bugs database to see if someone else already reported this; if not create a new bug entry. Whatever mistake you could make, you should not be getting a NullPointerException as a result so this is at the very least a bug in the error handling of webstart.
    But just some observations to try and see if you can make a difference (which is added input for your bug report). If I check JNLP examples, I see that the url specified is usually without a protocol, so it could be like this:
    <jar href="/resources/applet/formeditor.jar" />The JNLP should be on the host that you service the jar from, so Webstart can fill in the host information for itself.
    Also you provide a main-class; if the jar manifest specifies a main-class (and it should) you don't need to specify it in your JNLP file.

  • Problem with Java Application after upgrade to 10g

    after upgrading to 10g if I enable coloumn of varchar255 to load into memory of my middleware orm following error is thrown,
    javax.servlet.jsp.JspException     at jsp.viewsinglerecord.throwError(_viewsinglerecord.java:31)     [SRC:/jsp/standardinclude.jsp:84]     at jsp.viewsinglerecord._jspService(_viewsinglerecord.java:1185)     [SRC:/jsp/displaymultiplerecords.jsp:461]     at com.orionserver[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:356)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:498)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:402)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:835)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:341)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:230)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.GetParametersRequestDispatcher.forward(GetParametersRequestDispatcher.java:257)     at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)     at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)     at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)     at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)     at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:835)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:341)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:816)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:231)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:136)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)     at java.lang.Thread.run(Thread.java:534)
    Any lights on this issue ?

    after upgrading to 10g if I enable coloumn of varchar255 to load into memory of my middleware orm following error is thrown,
    javax.servlet.jsp.JspException     at jsp.viewsinglerecord.throwError(_viewsinglerecord.java:31)     [SRC:/jsp/standardinclude.jsp:84]     at jsp.viewsinglerecord._jspService(_viewsinglerecord.java:1185)     [SRC:/jsp/displaymultiplerecords.jsp:461]     at com.orionserver[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:356)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:498)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:402)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:835)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:341)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:230)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.GetParametersRequestDispatcher.forward(GetParametersRequestDispatcher.java:257)     at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)     at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)     at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)     at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)     at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:835)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:341)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:816)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:231)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:136)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.3.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)     at java.lang.Thread.run(Thread.java:534)
    Any lights on this issue ?

  • Error in Jboss after upgrading to AutoVue server 20.2.2 from 20.1.0

    We've developed an integration to view the files using AutoVue server. At the first stage the integration we used AutoVue server 20.10 and the functionality works fine. After upgrading to AutoVue server 20.2.2 following error comes when accessing the URL http://<servername>:58080/ifs-autovue-connector/servlet/DMS. Please note that Jboss is the application server.
    15:31:37,561 INFO  [STDOUT] ERROR [http-0.0.0.0-58080-1] (?:?) - Failed to verify or update null
    java.lang.NullPointerException
            at java.util.Hashtable.put(Hashtable.java:514)
            at com.cimmetry.vuelink.context.GenericContext.setInitParameter(Unknown Source)
            at com.cimmetry.vuelink.Vuelink.registerDMSContext(Unknown Source)
            at com.cimmetry.vuelink.Vuelink.init(Unknown Source)
            at com.ifs.autovueconnector.DMS.init(DMS.java:22)
            at javax.servlet.GenericServlet.init(GenericServlet.java:212)
            at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1048)
            at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:777)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:129)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:183)
            at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:95)
            at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
            at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
            at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:566)
            at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
            at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.internalProcess(ActiveRequestResponseCacheValve.java:74)
            at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.invoke(ActiveRequestResponseCacheValve.java:47)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
            at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:905)
            at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:613)
            at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:2036)
            at java.lang.Thread.run(Thread.java:745)
    15:31:37,572 INFO  [STDOUT]  WARN [http-0.0.0.0-58080-1] (?:?) - Failed to load DMSAction class: com.ifs.autovueconnector.ActionGetProperties
    java.lang.ClassNotFoundException: com.ifs.autovueconnector.ActionGetProperties from BaseClassLoader@763d9f12{vfszip:/C:/ifs_tqa/jboss-eap-5.1/jboss-as/server/App8TQA/deploy/docvue.ear/ifs-autovue-connector.war/}
            at org.jboss.classloader.spi.base.BaseClassLoader.loadClass(BaseClassLoader.java:477)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
            at java.lang.Class.forName0(Native Method)
            at java.lang.Class.forName(Class.java:191)
            at com.cimmetry.vuelink.Vuelink.loadDMSAction(Unknown Source)
            at com.cimmetry.vuelink.Vuelink.registerDMSActions(Unknown Source)
            at com.cimmetry.vuelink.Vuelink.init(Unknown Source)
            at com.ifs.autovueconnector.DMS.init(DMS.java:22)
            at javax.servlet.GenericServlet.init(GenericServlet.java:212)
            at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1048)
            at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:777)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:129)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:183)
            at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:95)
            at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
            at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
            at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:566)
            at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
            at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.internalProcess(ActiveRequestResponseCacheValve.java:74)
            at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.invoke(ActiveRequestResponseCacheValve.java:47)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
            at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:905)
            at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:613)
            at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:2036)
            at java.lang.Thread.run(Thread.java:745)
    15:31:37,743 INFO  [STDOUT] Initializing proxy connection pool
    The errors is ClassNotFoundException. But we've not implemented the class ActionGetProperties. Instead propactions are used. Please help us to resolve this issue as our customers will be in trouble after the AutoVue upgrade.
    /Amaranatha

    I would assume you are using the new jars that come with the latest ISDK
    and that you have read the documentation with the list of all the changes
    so in order to known which configuration parameter is missing, you might need to trace it using a debugger
    there is one parameter that is missing ie returning null and it is obviously a mandatory one
    Also, you most defintively did not properly migrate you web app from 20.1 repo to the 20.2.3 repo as you have missing classes
    com.ifs.autovueconnector.ActionGetProperties
    so your class path is not properly up to date
    that also is a deployment descriptor error
    Please review you deployment descriptor and validate that your war is properly built

  • Can't launch Safari after upgrade to 10.5

    Dang Upgraded to Leopard (OS 10.5) from 10.4.11. When launching Safari, it refused to start and sent me error message "PithHelmet version xxx.xx.x hasnt been tested with Safari 3.x so it won't launch."
    After that, I have disabled and removed PithHelmet from the system. No go. I have tried indtalling new version of Safari after deleting ALL Safari files: No go. New Safari won't even install. It says "System need to be 10.5.2 or later" but I DO have 10.5.4 now!
    What on earth can I do?

    This is a common mistake, so you should take note to avoid doing this in the future. Just because a program isn't working for you is not a good enough reason to delete it, especially when you have no idea of the ramifications of your actions, which you and many others who have done this obviously didn't. You've created a lot more work and frustration for yourself, and you solved no problem.
    If you want to install Safari, you cannot use a download, so you might as well trash it now; it will not work no matter what you do.
    Instead, you need to do this, exactly:
    1. Insert your Mac OS X installation disc.
    2. Navigate to the Optional Installs folder and open the Optional Installs.mpkg file. This will let you install Safari 3.0.4. When that's done, quit the installer and eject the disc.
    3. Reboot your Mac and download the 10.5.4 Combo Update and install it again. When finished, use Disk Utility to Repair Permissions, then restart your Mac and try Safari.
    Mulder

  • App Launching Unresponsive After Upgrading to Snow Leopard

    For reasons I do not quite understand, launching any app, and doing many things within them (basically, instantiating any process) is extremely slow after upgrading to Snow Leopard. For instance, opening a new window in Terminal takes a full 22 seconds (I've timed it) to go from "login" to the zsh prompt. Before, it was instantaneous. There is nearly nothing installed on this computer other than the bare essentials and some documents.
    This is obviously very frustrating and detrimental to my productivity. Here is what I've tried:
    - Reinstalling from scratch (I've now tried this two times). First, I backed up my home directory with SuperDuper and manually copied everything over. Everything was fixed, for about two days, and then it started doing the same thing again. Then, I cloned the entire disk with SuperDuper and restored from it. Again, everything was fixed for a little while and then I had the same problem again.
    - Most recently, I tried "Verify disk" in Disk Utility. This returned that there were errors (an "invalid directory count"). Therefore I rebooted into the installation disc and ran "Repair Disk", which outputted that the disk was repaired successfully. However, I rebooted back and now have the same problem.
    Does anyone have any suggestions as to what is going wrong? My first thought was that perhaps the hard drive is failing, but I've dual-booted Linux on another partition and it works fine.
    I am very confused. How can I fix this?

    Have you updated iTunes?

  • Syntax error in SAPLCRM_CONDITION_COM_OW after upgrade 7 - 7 with EhP1

    Dears,
    after upgrade I cannot go into edit mode for activities, sales orders. I get a short dump.
    I think it may be connected to FM CRM_ORDER_GET_ACTIVE_OW which returns nothing , so variable for
    lv_no_pricing is not set to X. Then when system tries to check pricing it throws error in LCRM_CONDITION_COM_OWF02, that 'CS_ACS_I_COM' does not have a component 'BASIC_TIER.
    Can you help?
    the same I get when opening document in sap gui and web ui.
    It maybe some additional configuration loaded in upgrade.
    Best Regards
    Radek

    Hi,
    These structures are usually generated. Please go to transaction
    /SAPCND/CTFC, for Application CRM regenerate all fields again.
    Go regenerate the field catalog to the following IMG menu;
    Customer Relationship Management
    -> Basic Functions
       -> Pricing
         -> Define Settings for Pricing
           -> Maintain Field Catalog
    Goto menu Field Catalog -> Generate.
    Regards,
    Aidan

  • Kernel error on startx after upgrade to kernel 3.0

    After upgrading i can no longer start X. The screen turns black and the computer does not respond to input, I am however able to login using ssh.
    The system is a intel atom cpu and nvidia ion gpu using the nvidia driver.
    I'll be thankfull for any help.
    The output from dmesg is
    [ 179.200661] BUG: unable to handle kernel paging request at ffffffffa027d738
    [ 179.200674] IP: [<ffffffff8122104b>] strnlen+0xb/0x30
    [ 179.200689] PGD 1695067 PUD 1699063 PMD 5baf2067 PTE 0
    [ 179.200700] Oops: 0000 [#1] PREEMPT SMP
    [ 179.200710] CPU 1
    [ 179.200713] Modules linked in: appletalk ipx p8022 psnap llc p8023 ipv6 fuse ext2 nvidia(P) snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_intel snd_hda_codec snd_hwdep snd_pcm joydev evdev shpchp snd_timer snd soundcore snd_page_alloc forcedeth pci_hotplug i2c_nforce2 psmouse serio_raw pcspkr i2c_core wmi button processor autofs4 lirc_dev ext4 mbcache jbd2 crc16 hid_logitech ff_memless usbhid hid sg sr_mod cdrom sd_mod ata_generic pata_acpi ohci_hcd ahci libahci libata ehci_hcd scsi_mod usbcore
    [ 179.200798]
    [ 179.200804] Pid: 1029, comm: X Tainted: P C 3.0-ARCH #1 To Be Filled By O.E.M. To Be Filled By O.E.M./To be filled by O.E.M.
    [ 179.200816] RIP: 0010:[<ffffffff8122104b>] [<ffffffff8122104b>] strnlen+0xb/0x30
    [ 179.200827] RSP: 0018:ffff88002f549c98 EFLAGS: 00010086
    [ 179.200832] RAX: 0000000000000000 RBX: ffff88005c2590bf RCX: 0000000000000000
    [ 179.200838] RDX: ffffffffa027d738 RSI: ffffffffffffffff RDI: ffffffffa027d738
    [ 179.200844] RBP: ffff88002f549c98 R08: 000000000000ffff R09: 000000000000ffff
    [ 179.200850] R10: 0000000000000000 R11: 0000000000000000 R12: ffffffffa027d738
    [ 179.200855] R13: ffff88005c25a000 R14: 0000000000000000 R15: 000000000000ffff
    [ 179.200862] FS: 00007f1fe8c2a880(0000) GS:ffff88005fc80000(0000) knlGS:0000000000000000
    [ 179.200869] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
    [ 179.200874] CR2: ffffffffa027d738 CR3: 000000002f57c000 CR4: 00000000000006e0
    [ 179.200880] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
    [ 179.200886] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
    [ 179.200892] Process X (pid: 1029, threadinfo ffff88002f548000, task ffff88005c3fa3f0)
    [ 179.200897] Stack:
    [ 179.200901] ffff88002f549cd8 ffffffff812232de 0000000000000000 ffff88005c2590bf
    [ 179.200913] ffffffff814d27cd ffff88002f549d70 ffffffff814d27cd ffff88005c25a000
    [ 179.200924] ffff88002f549d58 ffffffff81224389 000000002f54ffff 0000000000000000
    [ 179.200934] Call Trace:
    [ 179.200946] [<ffffffff812232de>] string.isra.5+0x3e/0xd0
    [ 179.200955] [<ffffffff81224389>] vsnprintf+0x219/0x620
    [ 179.200966] [<ffffffff81178c98>] seq_printf+0x58/0x90
    [ 179.200980] [<ffffffff810c35ab>] show_interrupts+0x25b/0x310
    [ 179.200989] [<ffffffff8117906e>] seq_read+0x29e/0x3d0
    [ 179.200998] [<ffffffff81178dd0>] ? seq_lseek+0x100/0x100
    [ 179.201006] [<ffffffff811b1fb3>] proc_reg_read+0x83/0xc0
    [ 179.201016] [<ffffffff8115793c>] vfs_read+0xac/0x180
    [ 179.201023] [<ffffffff81157a5a>] sys_read+0x4a/0x90
    [ 179.201033] [<ffffffff813f4402>] system_call_fastpath+0x16/0x1b
    [ 179.201039] Code: 31 c0 80 3f 00 55 48 89 e5 74 11 48 89 f8 66 90 48 83 c0 01 80 38 00 75 f7 48 29 f8 5d c3 66 90 55 31 c0 48 85 f6 48 89 e5 74 23
    [ 179.201091] 3f 00 74 1e 48 89 f8 eb 0c 0f 1f 00 48 83 ee 01 80 38 00 74
    [ 179.201117] RIP [<ffffffff8122104b>] strnlen+0xb/0x30
    [ 179.201126] RSP <ffff88002f549c98>
    [ 179.201130] CR2: ffffffffa027d738
    [ 179.201136] ---[ end trace 700eca34042d7ef4 ]---
    [ 179.201144] note: X[1029] exited with preempt_count 1
    [ 179.204777] BUG: scheduling while atomic: X/1029/0x10000002
    [ 179.204789] Modules linked in: appletalk ipx p8022 psnap llc p8023 ipv6 fuse ext2 nvidia(P) snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_intel snd_hda_codec snd_hwdep snd_pcm joydev evdev shpchp snd_timer snd soundcore snd_page_alloc forcedeth pci_hotplug i2c_nforce2 psmouse serio_raw pcspkr i2c_core wmi button processor autofs4 lirc_dev ext4 mbcache jbd2 crc16 hid_logitech ff_memless usbhid hid sg sr_mod cdrom sd_mod ata_generic pata_acpi ohci_hcd ahci libahci libata ehci_hcd scsi_mod usbcore
    [ 179.204946] Pid: 1029, comm: X Tainted: P D C 3.0-ARCH #1
    [ 179.204955] Call Trace:
    [ 179.204979] [<ffffffff813ea533>] __schedule_bug+0x5f/0x64
    [ 179.204994] [<ffffffff813f09e1>] schedule+0x831/0x9f0
    [ 179.205009] [<ffffffff813f39a2>] ? tty_unlock+0x32/0x50
    [ 179.205026] [<ffffffff8116d7ac>] ? d_free+0x4c/0x70
    [ 179.205041] [<ffffffff81174c0d>] ? vfsmount_lock_local_unlock+0x3d/0x50
    [ 179.205056] [<ffffffff81175db0>] ? mntput_no_expire+0x30/0xe0
    [ 179.205069] [<ffffffff81175e7f>] ? mntput+0x1f/0x30
    [ 179.205083] [<ffffffff8115925f>] ? fput+0x16f/0x210
    [ 179.205098] [<ffffffff8105351a>] __cond_resched+0x2a/0x40
    [ 179.205111] [<ffffffff813f0e22>] _cond_resched+0x32/0x40
    [ 179.205126] [<ffffffff81060005>] put_files_struct+0xa5/0x110
    [ 179.205140] [<ffffffff81060132>] exit_files+0x52/0x60
    [ 179.205153] [<ffffffff8106063a>] do_exit+0x18a/0x8f0
    [ 179.205167] [<ffffffff8105e441>] ? kmsg_dump+0xb1/0xe0
    [ 179.205183] [<ffffffff8100f35a>] oops_end+0xaa/0xf0
    [ 179.205210] [<ffffffff813ea099>] no_context+0x209/0x218
    [ 179.205231] [<ffffffff813ea236>] __bad_area_nosemaphore+0x18e/0x1b1
    [ 179.205245] [<ffffffff813f0e76>] ? preempt_schedule+0x46/0x60
    [ 179.205259] [<ffffffff813f34f0>] ? _raw_spin_unlock_irqrestore+0x10/0x40
    [ 179.205279] [<ffffffff813ea26c>] bad_area_nosemaphore+0x13/0x15
    [ 179.205294] [<ffffffff81039b1c>] do_page_fault+0x3ec/0x4d0
    [ 179.205310] [<ffffffff81317ca3>] ? pci_conf1_read+0xc3/0x120
    [ 179.205327] [<ffffffff8108292f>] ? __mutex_init+0x2f/0x40
    [ 179.205341] [<ffffffff81171103>] ? inode_init_always+0x113/0x1d0
    [ 179.205355] [<ffffffff811b17ff>] ? proc_alloc_inode+0x6f/0xb0
    [ 179.205369] [<ffffffff8107f247>] ? bit_waitqueue+0x17/0xd0
    [ 179.205389] [<ffffffff813f3e45>] page_fault+0x25/0x30
    [ 179.205417] [<ffffffff8122104b>] ? strnlen+0xb/0x30
    [ 179.205431] [<ffffffff813f217e>] ? mutex_unlock+0xe/0x10
    [ 179.205444] [<ffffffff812232de>] string.isra.5+0x3e/0xd0
    [ 179.205458] [<ffffffff81224389>] vsnprintf+0x219/0x620
    [ 179.205474] [<ffffffff81178c98>] seq_printf+0x58/0x90
    [ 179.205494] [<ffffffff810c35ab>] show_interrupts+0x25b/0x310
    [ 179.205510] [<ffffffff8117906e>] seq_read+0x29e/0x3d0
    [ 179.205525] [<ffffffff81178dd0>] ? seq_lseek+0x100/0x100
    [ 179.205539] [<ffffffff811b1fb3>] proc_reg_read+0x83/0xc0
    [ 179.205552] [<ffffffff8115793c>] vfs_read+0xac/0x180
    [ 179.205566] [<ffffffff81157a5a>] sys_read+0x4a/0x90
    [ 179.205581] [<ffffffff813f4402>] system_call_fastpath+0x16/0x1b
    [ 179.205823] BUG: scheduling while atomic: X/1029/0x10000002
    [ 179.205832] Modules linked in: appletalk ipx p8022 psnap llc p8023 ipv6 fuse ext2 nvidia(P) snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_intel snd_hda_codec snd_hwdep snd_pcm joydev evdev shpchp snd_timer snd soundcore snd_page_alloc forcedeth pci_hotplug i2c_nforce2 psmouse serio_raw pcspkr i2c_core wmi button processor autofs4 lirc_dev ext4 mbcache jbd2 crc16 hid_logitech ff_memless usbhid hid sg sr_mod cdrom sd_mod ata_generic pata_acpi ohci_hcd ahci libahci libata ehci_hcd scsi_mod usbcore
    [ 179.205988] Pid: 1029, comm: X Tainted: P D C 3.0-ARCH #1
    [ 179.205996] Call Trace:
    [ 179.206016] [<ffffffff813ea533>] __schedule_bug+0x5f/0x64
    [ 179.206031] [<ffffffff813f09e1>] schedule+0x831/0x9f0
    [ 179.206052] [<ffffffff81099cf5>] ? module_put+0x115/0x130
    [ 179.206067] [<ffffffff81174c0d>] ? vfsmount_lock_local_unlock+0x3d/0x50
    [ 179.206082] [<ffffffff81175db0>] ? mntput_no_expire+0x30/0xe0
    [ 179.206096] [<ffffffff81175e7f>] ? mntput+0x1f/0x30
    [ 179.206110] [<ffffffff8115925f>] ? fput+0x16f/0x210
    [ 179.206125] [<ffffffff8105351a>] __cond_resched+0x2a/0x40
    [ 179.206137] [<ffffffff813f0e22>] _cond_resched+0x32/0x40
    [ 179.206151] [<ffffffff81060005>] put_files_struct+0xa5/0x110
    [ 179.206163] [<ffffffff81060132>] exit_files+0x52/0x60
    [ 179.206174] [<ffffffff8106063a>] do_exit+0x18a/0x8f0
    [ 179.206186] [<ffffffff8105e441>] ? kmsg_dump+0xb1/0xe0
    [ 179.206202] [<ffffffff8100f35a>] oops_end+0xaa/0xf0
    [ 179.206227] [<ffffffff813ea099>] no_context+0x209/0x218
    [ 179.206248] [<ffffffff813ea236>] __bad_area_nosemaphore+0x18e/0x1b1
    [ 179.206262] [<ffffffff813f0e76>] ? preempt_schedule+0x46/0x60
    [ 179.206277] [<ffffffff813f34f0>] ? _raw_spin_unlock_irqrestore+0x10/0x40
    [ 179.206297] [<ffffffff813ea26c>] bad_area_nosemaphore+0x13/0x15
    [ 179.206312] [<ffffffff81039b1c>] do_page_fault+0x3ec/0x4d0
    [ 179.206328] [<ffffffff81317ca3>] ? pci_conf1_read+0xc3/0x120
    [ 179.206345] [<ffffffff8108292f>] ? __mutex_init+0x2f/0x40
    [ 179.206359] [<ffffffff81171103>] ? inode_init_always+0x113/0x1d0
    [ 179.206373] [<ffffffff811b17ff>] ? proc_alloc_inode+0x6f/0xb0
    [ 179.206387] [<ffffffff8107f247>] ? bit_waitqueue+0x17/0xd0
    [ 179.206407] [<ffffffff813f3e45>] page_fault+0x25/0x30
    [ 179.206434] [<ffffffff8122104b>] ? strnlen+0xb/0x30
    [ 179.206448] [<ffffffff813f217e>] ? mutex_unlock+0xe/0x10
    [ 179.206462] [<ffffffff812232de>] string.isra.5+0x3e/0xd0
    [ 179.206477] [<ffffffff81224389>] vsnprintf+0x219/0x620
    [ 179.206494] [<ffffffff81178c98>] seq_printf+0x58/0x90
    [ 179.206514] [<ffffffff810c35ab>] show_interrupts+0x25b/0x310
    [ 179.206529] [<ffffffff8117906e>] seq_read+0x29e/0x3d0
    [ 179.206544] [<ffffffff81178dd0>] ? seq_lseek+0x100/0x100
    [ 179.206558] [<ffffffff811b1fb3>] proc_reg_read+0x83/0xc0
    [ 179.206573] [<ffffffff8115793c>] vfs_read+0xac/0x180
    [ 179.206586] [<ffffffff81157a5a>] sys_read+0x4a/0x90
    [ 179.206601] [<ffffffff813f4402>] system_call_fastpath+0x16/0x1b
    [ 179.207627] NVRM: os_flush_work_queue: attempted to execute passivework from an atomic or interrupt context.
    [ 179.229435] NVRM: VM: nv_kern_close:2097: 0xffff88005bfd40c0, 11 page(s), count = 1, flags = 0x00000011, 0x000000005b0fd000, 0xffff88005bfd42a0
    Edit: Downgraded to kernel26-2.6.39.1-1-x86_64.pkg.tar.xz nvidia-275.09.07-1-x86_64.pkg.tar.xz nvidia-utils-275.09.07-1-x86_64.pkg.tar.xz   lirc-1\:0.9.0-4-x86_64.pkg.tar.xz and things work again.
    Last edited by eirikst (2011-08-28 16:19:44)

    The A-GPS needs to have direct line of sight to a satellite such as when standing outside or mounted on the dash of an automobile. If indoors the A-GPS will use triangulation with the nearest three cellular towers to pinpoint your approximate location. I haven't had any issue using A-GPS while driving or walking with Google Maps. As for third party apps this has nothing to do with Apple and the 3.0 firmware but does have to do with the developers of those third party apps you're having problems with. Suggest contacting the developer of said apps through the iTunes app store feedback link for each app. This way if the app isn't updated in a timely manner Apple will pull it from the app store until the developer can provide an update for their customers such as yourself. It's sort of like running OS X or Windows on your desktop where you wouldn't file a complaint to Apple (OS X) or Microsoft (Windows) when one of your third party applications starts experiencing issues.

Maybe you are looking for

  • Is it possible to populate cell A with the formula in cell B as opposed to the value of the formula in cell B dynamically?

    Hello, I am wondering if the following scenario is possible: Cell B contains a formula which refers to a number of other cells. Cell A refers to Cell B such that the formula in Cell B is applied in Cell A. I am aware that I can copy and paste, but I

  • Transfer scenario from repository to directory

    Hi all, I have develop a integration scenario in repository but when I buil ma configuration scenario in directory using the transfer option I can assing business services (step 2 Assing services) but I can´t do step 3 Configure Connection. In "Conne

  • Pixel-by-pixel graphics

    I'm working on a bioinformatics project that will use java. My data will be represented pixel-by-pixel, where the color of that pixel will represent of three variables in the dataset. The x and y dimensions are used for two other variables. I've been

  • Photos from iPhoto in Mac OSX 10.4 onto iPad

    I currently own an iMac G4 running Mac OSX 10.4.11. I am aware that this OS is not supported by the Ipad. As a work around I am using iTunes on a Windows Laptop, using Homeshare to transfer all my music, Apps and videos onto the iPad. However, how do

  • Upgrading 10.3.9 Panther?

    I was given an iMac G5 17" Flat Screen computer, with a OS X 10.3.9 Panther operating system. I upgraded the Ram from 512 megs to 2 gigs and want to upgrade the OS X to a 10.5.6 Leopard. Is this possible and can someone lead me on the right path of "