Unwanted stack trace in weblogic.log for thrown JSP Exceptions

We are throwing a JSP exception within a custom tag when data validation
          errors occur; the errorPage for the JSP page is then invoked to show the
          appropriate errors. However, in the weblogic.log, a stack trace is shown
          indicating the exception (example below). We do not want this stack track
          shown unless there is a real "error" in our system vs. invoking the
          errorPage to show "application" errors. Is there any way to supress this,
          as we are not explicitly causing this to happen. It appears to be a
          weblogic feature. This causes us problems in finding true system errors
          that might be occurring due to these non-problems showing up in the
          weblogic.log.
          Thanks for the help.
          John Bauer
          Wed Dec 20 15:34:49 EST 2000:<E> <ServletContext-General> exception raised
          on '/test/test.jsp'
          javax.servlet.ServletException: runtime failure in custom tag 'testtag'
          at jsp_servlet._test._test._jspService(_test.java:89)
          at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
          at
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          :124)
          at
          weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
          l.java:
          60)
          at
          weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
          l.java:
          07)
          at
          weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
          Manager
          java:251)
          at
          weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:369)
          at
          weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:269)
          at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled
          Code)
          

The design of the data entry pages is such that the error page is the same
          page as the data entry page, and a validation JSP tag validates the data and
          if it finds a problem, it will set some variables and throw a JSP exception
          to redisplay the page. Unfortunately, we are forced to live with this
          design. Are you aware of any mechanism to suppress the automatic logging of
          thrown JSP exceptions in the weblogic log?
          Thanks,
          JDB
          Cameron Purdy <[email protected]> wrote in message
          news:[email protected]...
          > Exception handling for custom tags is very poorly handled right now. For
          > one thing, WL hides the actual exception.
          >
          > However, the way that you are doing this seems very odd. The error page
          is
          > for server errors, not user typos.
          >
          > Peace,
          >
          > --
          > Cameron Purdy
          > Tangosol, Inc.
          > http://www.tangosol.com
          > +1.617.623.5782
          > WebLogic Consulting Available
          >
          >
          > "John Bauer" <[email protected]> wrote in message
          > news:[email protected]...
          > > We are throwing a JSP exception within a custom tag when data validation
          > > errors occur; the errorPage for the JSP page is then invoked to show the
          > > appropriate errors. However, in the weblogic.log, a stack trace is
          shown
          > > indicating the exception (example below). We do not want this stack
          track
          > > shown unless there is a real "error" in our system vs. invoking the
          > > errorPage to show "application" errors. Is there any way to supress
          this,
          > > as we are not explicitly causing this to happen. It appears to be a
          > > weblogic feature. This causes us problems in finding true system errors
          > > that might be occurring due to these non-problems showing up in the
          > > weblogic.log.
          > >
          > > Thanks for the help.
          > > John Bauer
          > >
          > > Wed Dec 20 15:34:49 EST 2000:<E> <ServletContext-General> exception
          raised
          > > on '/test/test.jsp'
          > > javax.servlet.ServletException: runtime failure in custom tag 'testtag'
          > > at jsp_servlet._test._test._jspService(_test.java:89)
          > > at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
          > > at
          > >
          >
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          > > :124)
          > > at
          > >
          >
          weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
          > > l.java:
          > > 60)
          > > at
          > >
          >
          weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
          > > l.java:
          > > 07)
          > > at
          > >
          >
          weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
          > > Manager
          > > java:251)
          > > at
          > >
          >
          weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:369)
          > > at
          > > weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:269)
          > > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java,
          Compiled
          > > Code)
          > >
          > >
          >
          >
          

Similar Messages

  • WLST, how do I suppress unwanted stack traces and make WLST less verbose?

    Hi everyone,
    I've just started out with WLST but have ended up somewhat confused. My script works as intended but is very verbose.
    Suppose I want to log in:
    try:
         connect(user, "wrong_password", url)
    except WLSTException, err:
         print str(err)
         print "Run with option \"-h\" for help"The password is wrong so I get something like this printed out by me:
    {noformat}
    Error occured while performing connect : User: wm714, failed to be authenticated. Use dumpStack() to view the full stacktrace
    {noformat}
    But I also get a totally unwanted Java stack trace (before my message):
    {noformat}This Exception occurred at Fri May 21 15:49:01 CEST 2010.
    javax.naming.AuthenticationException [Root exception is java.lang.SecurityException: User: wm714, failed to be authenticated.]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:42)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:783)
    at weblogic.jndi.WLInitialContextFactoryDelegate.pushSubject(WLInitialContextFactoryDelegate.java:677)
    {noformat}
    I don't want to confuse the user with all that! I found this:
    http://objectmix.com/weblogic/529822-wlst-exception-handling-unwanted-stack-trace.html
    Which discusses WLS.commandExceptionHandler.setSilent(1) I'm running on WLS 10.3.0.0 and can execute that statement but it has no effect. I didn't even know about the WLS-object and I can find no documentation on commandExceptionHandler.
    On the matter of verbosity, is there any way to get rid of stuff like:
    Location changed to domainRuntime tree. This is a read-only tree with DomainMBean as the root.
    For more help, use help(domainRuntime)I avoid using the "interactive" commands like cd and use stuff like getMBean("domainRuntime:/ServerRuntimes/" + appServer.getName()
    + "/JMSRuntime/" + appServer.getName() + ".jms/JMSServers") but I still get the clutter printed out.
    Thanks!

    Workaround:
    wlstOut = tempfile.mktemp(suffix="_wlst.txt")
    redirect(wlstOut, "false")
    ... do useful stuff
    stopRedirect()
    os.remove(wlstOut)I would have preffered to turn off the messages (yes I could try /dev/null) but this will do. A funny thing is that the stack trace I wrote about doesn't appear in the log file. Somehow "redirect" must have a nice side effect.
    /Roger

  • Turning off server side stack trace in error message for weblogic81

    Hi,
    I am seeing server side stack trace in getMessage() method which is being stuffed
    by application server. I am using weblogic 81. Could you please let me know how
    to turn off that in getMessage() to return my only original message?
    Thanks
    Praveen

    Did you solve this problem? I am facing this problem and don't seem to solve with
    "Instrument Stack Traces" flag
    "Franck" <[email protected]> wrote:
    >
    Hi there,
    In order to manage my own exceptions in some EJB, i have developped some
    classes
    extending Exception.
    Now i would like to display proper messages to the final user, based
    on the messages
    defined in my exception classes.
    Using standard try/catch, i can easily get reference to the exception
    that can
    occur during EJB execution.
    The problem is that my message (myException.getMessage) is followed by
    the extra
    long message generated by the Server and starting with "Start server
    side stack
    trace:".
    For exemple :
    com.xx.ejb.DamageHistoryException: Can't find the price for this object
    (objId=7569,
    sizeCode=LI, colorCode=2)
    Start server side stack trace:
    com.xx.ejb.DamageHistoryException: Can't find the price for this object
    (objId=7569,
    sizeCode=LI, colorCode=2)
    at com.xx.ObjectAccess.getObjectPrice(Unknown Source)
    at com.xx.ejb.ObjectBusinessService.getObjectPrice(Unknown Source)
    <....>
    about 20 lines here !!
    <....>
    Any idea about how to avoid the extra message ??
    Thanx in advance
    Franck

  • Not able to see stack trace in JBoss IDE for eclipse2.0

    hello im using JBoss IDE for eclipse2.0 version for developing application. but the problem is im not able to see the errors/ error stack trace coming on console.i configured console but im not abloe to see any error. actualy earlier i was using eclipse3.0 but there i could not use the jsp file.i was not able to create a jsp page in my aleady developed application and also syntax is not highlighting in java file. so i switched to JBoss IDE for eclipse2.0 its using jdk1.3 version.
    can anyone help me..n can also tel me which version of eclipse i should use. and how to configure eclipse so that i can see the properly highlighted syntax of java code.

    I would advise against reverting to very old versions just because you can't get the new versions to work. Try to read the installation instructions and manuals of the new versions and try to get those to work.

  • Weblogic plugin for eclipse: License Exception

    Hi,
    I am using weblogic server 6.1 installed in my local workstation. When i start
    the server from a system prompt it starts without a problem but when i try to
    start it from my IDE (Eclipse 2.1 with weblogicplugin_1.0.0) i get the following
    error
    $$$$$$$$$$$$$$$$ License Exception $$$$$$$$$$$$$$$$
    Unable to start WebLogic Server !!
    Missing license file for: WebLogic Server 6.1
    $$$$$$$$$$$$$$$$ License Exception $$$$$$$$$$$$$$$$
    Has anyone got any idea as to why it produces this error?
    thanks
    max

    Max,
    I am also receiving a license exception with eclipse v3.0 and the wl plugin v1.1.1.
    I tried moving the license.bea file to various locations including the eclipse/plugins folder where the wlpu lives - nothing seems to work.
    Have you made any progress?
    Let me know, thx.
    C.

  • How to trace the change log for a program ? both local and release versions.

    Hi experts,
    I encounter a very strange problem.
    I changed a program, created a new version TR, , there are three versions before my version which are all have been released.
    but there is one sentence which is not added by me, could anyone tell me how to find the reason why the sentence in my version.
    Any help would be apprecite!
    BR,
    Summer

    Hi,
    Not all the 3 TRs
    Goto SE03, Click on Find Requests under Requests/Tasks section.
    Give all the 3 requests names in Requests/Tasks, Give User name as *
    See any sub tasks are there in the above requests by double clicking on each request.
    Or
    Goto SE03
    Click on Search for Objects in Requests/Tasks under Objects in Requests
    Select the first entry  R3TR PROG give the program name.
    In below Request/Task Selection , check the status Released.
    See what all Requests are displayed, who are all the persons who changed them.
    Thanks & Regards
    Bala Krishna

  • Weblogic plugin for formatting JSP

    Hi
              Is there any third party plug in available for formatting/cleaning up JSP files in weblogic

    Hi
    On this link, click Accept license and go all the way to bottom and click on All Versions link named next to "Oracle WebLogic Server Web Server Plugins 1.1"
    http://www.oracle.com/technetwork/middleware/weblogic/downloads/wls-main-097127.html
    That click should open this below link. Accept the license and Download the zip file. Then follow the instructions.
    http://www.oracle.com/technetwork/middleware/ias/downloads/wls-plugins-096117.html
    Thanks
    Ravi Jegga

  • Stack traces mysteriously disappear from Exceptions

    I'm using Sun Java System Application Server Platform Edition 8.0.0_01 on Solaris 8 on a Sun-Fire machine. The problem is that some exceptions thrown in session beans make it to the presentation tier without their stack traces.
    Here is a session bean method:
    * @ejb.interface-method
    public void generateException() throws SbankInternalException
    try { System.exit(0); }
    catch (Exception e) {
    throw new SbankInternalException("Unexpected exception", e);
    SbankInternalException is a simple wrapper on Exception:
    public class SbankInternalException
    extends Exception
    public SbankInternalException() {}
    public SbankInternalException(String message)
    super(message);
    public SbankInternalException(String message, Throwable cause)
    super(message, cause);
    public SbankInternalException(Throwable cause)
    super(cause);
    Here is the code that triggers the problem:
    <h3>Exception testing:</h3>
    <%
    try {
    maintenanceServices.generateException();
    } catch (Exception E) {
    Throwable e = (Throwable) E;
    %>
    <h3>Caught exception <%=E%></h3>
    <pre>
    <%
    do {
    %>CLASS: <%=e.getClass().getName()%>
    MESSAGE: <%=e.getMessage()%><br><%
    StackTraceElement se[] = e.getStackTrace();
    if (se.length == 0) {
    %> EMPTY STACK TRACE<br><br><%
    } else {
    for (int i = 0; i < se.length; i++) {
    %> <%=se.toString()%><br><%
    %> <br><br><%
    e = e.getCause();
    } while (e != null);
    %>
    </pre>
    And here is what I get:
    <h3>Exception testing:</h3>
         <h3>Caught exception sbank.services.SbankInternalException: Unexpected exception</h3>
         <pre>
    CLASS: sbank.services.SbankInternalException
    MESSAGE: Unexpected exception<br>
    EMPTY STACK TRACE<br><br>
    CLASS: java.security.AccessControlException
    MESSAGE: access denied (java.lang.RuntimePermission exitVM)<br>
    EMPTY STACK TRACE<br><br>
         </pre>
    Server log does not contain any message about that.
    This only seems to be the problem for exceptions declared in bean interface. When a RuntimeException is thrown in the bean, then it is properly logged to the server log (with strack trace), and I catch a nice RemoteException in the presentation layer, as expected (also with stack trace, though the top frame is somewhere in the demarshalling code of application server guts, so it's not very useful).
    Is it my error, or a bug?
    regards
    Marcin

    I'm not complaining that the exceptions declared to be thrown from session bean interface are not logged. AFAIR that is OK with the EJB spec.
    I'm complaining that the stack traces are stripped from the exception on its way from the session bean to the client (presentation layer in this case).
    I know that I could log the error in the session bean, that is just a workaround. I still would like to know why my exceptions are being broken? After all the whole point of exceptions is that they can be generated in one place, and investigated/displayed in another.
    The only explanation I can think of that there is some silly optimization, that omits stack frames when serializing the exceptions, so that they propagate faster. If it is so, can I disable that?
    Marcin

  • Exception Handling and Stack Traces in JDK 1.1.8

    Hi,
    I'm presently maintain and upgrading a Web-Objects 4.5 application that uses the JDK 1.18. There are two constantly recurring exceptions that keep getting thrown, exceptions for which there are no stack traces. These are exceptions thrown by methods that do not presently have throws or try/catch code associated with them.
    My questions are:
    1) Why are there no stack traces available? Is it because the exception handling code is not there, or could there be another reason?
    2) Will the inclusion of exception-handling code ALWAYS lead to stack traces and messages becoming available (if I put a e.printStackTrace() in my catch(Excetion e) clause), or will there be situations where it will not be available?
    3) What is the best way for me to handle these types of exceptions in order to gain the most information possible about their root causes and possible solutions?
    Thanks for your help.

    I have never seen a case where there was no stack trace.
    I have seen cases where the stack trace does not provide line numbers. I have also seen cases where it is less than useful as it terminates on a native call (which is to be expected.)
    However, if you don't call printStackTrace() then you don't get it. And if you catch an exception an throw a different one you also loose information. So you might want to check those possibilities.

  • No line numbers in stack trace from Java Stored Procedure exception

    I have a Java Stored Procedure which can generate an exception. In one database (11.1.0.6) the Java stack trace contains line numbers for my code, but not for the classes loaded by default with the JVM. In another database (same version) the Java stack trace does NOT contain line numbers for my code, but does contain them for some of the classes loaded by default with the JVM!
    Neither of the schemas where I am running the the Java stored procedure has a JAVA$OPTIONS tables as described here:
    http://download.oracle.com/docs/cd/B28359_01/java.111/b31225/chtwo.htm#BABIGFGA
    So the Java should have been compile "-debug" by default in both schemas. I specifically set the debug option to true using:
    exec dbms_java.set_compiler_option('', 'debug', 'true');
    but this had no effect.
    Can anyone explain this behavior or tell me how to always get line number in the Java stack trace?

    Hi,
    Try using java.util.logging package. Using these packages you can configure your logging information to include context down to the class name. Then each log message would be unique enough to know where it came from.
    -Priyanka

  • Stack trace when using translation workflow in CQ5.5

    Hi!
    When we use the translation workflow in 5.5 we get an ugly stack trace in the log (even though everything seems to work fine). We also tried a clean installation with only Geometrixx site and got the same problem. Does anybody have a solution for this? We have installed CQ5.5 and the following packages:
    cq-5.5-security-update-npr-1951.zip
    cq-update-pkg-5.5-1-load5.zip
    crx-hotfixpack-2.2.0.70-2.3.24.zip
    crx-hotfixpack-2.2.0.71-2.3.24.zip
    Here is the stack trace:
    19.10.2012 10:00:44.510 *WARN* [127.0.0.1 [1350633642682] POST /libs/wcm/msm/content/commands/translate HTTP/1.1] com.adobe.granite.i18n.impl.PreferencesLocaleResolverService Error occur resolving locale. javax.jcr.RepositoryException: This session has been closed. See the chained exception for a trace of where the session was closed.
              at org.apache.jackrabbit.core.session.SessionState.checkAlive(SessionState.java:150)
              at org.apache.jackrabbit.core.SessionImpl.sanityCheck(SessionImpl.java:372)
              at org.apache.jackrabbit.core.SessionImpl.getNodeById(SessionImpl.java:533)
              at org.apache.jackrabbit.core.security.user.UserManagerImpl.internalGetAuthorizable(UserMana gerImpl.java:832)
              at org.apache.jackrabbit.core.security.user.UserManagerImpl.getAuthorizable(UserManagerImpl. java:415)
              at com.adobe.granite.i18n.impl.PreferencesLocaleResolverService.resolveLocale(PreferencesLoc aleResolverService.java:93)
              at org.apache.sling.i18n.impl.I18NFilter$I18NHttpServletRequest.getLocaleList(I18NFilter.jav a:202)
              at org.apache.sling.i18n.impl.I18NFilter$I18NHttpServletRequest.getLocale(I18NFilter.java:17 8)
              at javax.servlet.ServletRequestWrapper.getLocale(ServletRequestWrapper.java:318)
              at javax.servlet.ServletRequestWrapper.getLocale(ServletRequestWrapper.java:318)
              at javax.servlet.ServletRequestWrapper.getLocale(ServletRequestWrapper.java:318)
              at org.apache.sling.i18n.impl.I18NFilter$BaseI18NSlingHttpServletRequest.getResourceBundle(I 18NFilter.java:233)
              at org.apache.sling.i18n.impl.I18NFilter$BaseI18NSlingHttpServletRequest.getResourceBundle(I 18NFilter.java:226)
              at com.day.cq.i18n.I18n.getResourceBundle(I18n.java:89)
              at com.day.cq.i18n.I18n.getResourceBundle(I18n.java:79)
              at com.day.cq.i18n.I18n.getVar(I18n.java:182)
              at com.day.cq.wcm.core.impl.LinkCheckerSettingsProviderImpl$RewriteConfigs.localize(LinkChec kerSettingsProviderImpl.java:209)
              at com.day.cq.wcm.core.impl.LinkCheckerSettingsProviderImpl$RewriteConfigs.createSettings(Li nkCheckerSettingsProviderImpl.java:214)
              at com.day.cq.wcm.core.impl.LinkCheckerSettingsProviderImpl.createSettings(LinkCheckerSettin gsProviderImpl.java:89)
              at com.day.cq.rewriter.linkchecker.impl.LinkCheckerImpl.createSettings(LinkCheckerImpl.java: 366)
              at com.day.cq.rewriter.linkchecker.impl.LinkCheckerTransformer.init(LinkCheckerTransformer.j ava:155)
              at org.apache.sling.rewriter.impl.PipelineImpl.init(PipelineImpl.java:106)
              at org.apache.sling.rewriter.impl.ProcessorManagerImpl.getProcessor(ProcessorManagerImpl.jav a:445)
              at org.apache.sling.rewriter.impl.RewriterResponse.getProcessor(RewriterResponse.java:172)
              at org.apache.sling.rewriter.impl.RewriterResponse.getWriter(RewriterResponse.java:110)
              at org.apache.sling.scripting.core.impl.helper.OnDemandWriter.getWriter(OnDemandWriter.java: 38)
              at org.apache.sling.scripting.core.impl.helper.OnDemandWriter.write(OnDemandWriter.java:47)
              at java.io.PrintWriter.write(PrintWriter.java:361)
              at org.apache.sling.api.servlets.HtmlResponse.send(HtmlResponse.java:464)
              at org.apache.jsp.libs.wcm.msm.components.commands.translate.POST_jsp._jspService(POST_jsp.j ava:205)
              at org.apache.sling.scripting.jsp.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
              at org.apache.sling.scripting.jsp.jasper.servlet.JspServletWrapper.service(JspServletWrapper .java:420)
              at org.apache.sling.scripting.jsp.JspServletWrapperAdapter.service(JspServletWrapperAdapter. java:59)
              at org.apache.sling.scripting.jsp.JspScriptEngineFactory.callJsp(JspScriptEngineFactory.java :233)
              at org.apache.sling.scripting.jsp.JspScriptEngineFactory.access$100(JspScriptEngineFactory.j ava:85)
              at org.apache.sling.scripting.jsp.JspScriptEngineFactory$JspScriptEngine.eval(JspScriptEngin eFactory.java:453)
              at org.apache.sling.scripting.core.impl.DefaultSlingScript.call(DefaultSlingScript.java:358)
              at org.apache.sling.scripting.core.impl.DefaultSlingScript.eval(DefaultSlingScript.java:170)
              at org.apache.sling.scripting.core.impl.DefaultSlingScript.service(DefaultSlingScript.java:4 56)
              at org.apache.sling.engine.impl.request.RequestData.service(RequestData.java:500)
              at org.apache.sling.engine.impl.filter.SlingComponentFilterChain.render(SlingComponentFilter Chain.java:45)
              at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:64)
              at com.day.cq.wcm.core.impl.WCMDebugFilter.doFilter(WCMDebugFilter.java:147)
              at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
              at com.day.cq.wcm.core.impl.WCMComponentFilter.filterRootInclude(WCMComponentFilter.java:308 )
              at com.day.cq.wcm.core.impl.WCMComponentFilter.doFilter(WCMComponentFilter.java:141)
              at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
              at org.apache.sling.engine.impl.SlingRequestProcessorImpl.processComponent(SlingRequestProce ssorImpl.java:257)
              at org.apache.sling.engine.impl.filter.RequestSlingFilterChain.render(RequestSlingFilterChai n.java:49)
              at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:64)
              at com.day.cq.wcm.core.impl.warp.TimeWarpFilter.doFilter(TimeWarpFilter.java:106)
              at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
              at com.day.cq.wcm.mobile.core.impl.redirect.RedirectFilter.doFilter(RedirectFilter.java:305)
              at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
              at org.apache.sling.engine.impl.debug.RequestProgressTrackerLogFilter.doFilter(RequestProgre ssTrackerLogFilter.java:59)
              at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
              at com.day.cq.wcm.foundation.forms.impl.FormsHandlingServlet.doFilter(FormsHandlingServlet.j ava:220)
              at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
              at com.day.cq.theme.impl.ThemeResolverFilter.doFilter(ThemeResolverFilter.java:76)
              at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
              at com.day.cq.wcm.core.impl.WCMRequestFilter.doFilter(WCMRequestFilter.java:89)
              at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
              at org.apache.sling.rewriter.impl.RewriterFilter.doFilter(RewriterFilter.java:83)
              at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
              at org.apache.sling.i18n.impl.I18NFilter.doFilter(I18NFilter.java:117)
              at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
              at org.apache.sling.bgservlets.impl.BackgroundServletStarterFilter.doFilter(BackgroundServle tStarterFilter.java:135)
              at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilter Chain.java:60)
              at org.apache.sling.engine.impl.SlingRequestProcessorImpl.processRequest(SlingRequestProcess orImpl.java:153)
              at org.apache.sling.engine.impl.SlingMainServlet.service(SlingMainServlet.java:206)
              at org.apache.felix.http.base.internal.handler.ServletHandler.doHandle(ServletHandler.java:9 6)
              at org.apache.felix.http.base.internal.handler.ServletHandler.handle(ServletHandler.java:79)
              at org.apache.felix.http.base.internal.dispatch.ServletPipeline.handle(ServletPipeline.java: 42)
              at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:49)
              at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)
              at org.apache.sling.i18n.impl.I18NFilter.doFilter(I18NFilter.java:117)
              at org.apache.felix.http.base.internal.handler.FilterHandler.doHandle(FilterHandler.java:88)
              at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:76)
              at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:47)
              at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)
              at com.adobe.granite.license.impl.LicenseCheckFilter.doFilter(LicenseCheckFilter.java:179)
              at org.apache.felix.http.base.internal.handler.FilterHandler.doHandle(FilterHandler.java:88)
              at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:76)
              at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:47)
              at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)
              at org.apache.sling.security.impl.ReferrerFilter.doFilter(ReferrerFilter.java:238)
              at org.apache.felix.http.base.internal.handler.FilterHandler.doHandle(FilterHandler.java:88)
              at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:76)
              at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:47)
              at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)
              at org.apache.sling.engine.impl.log.RequestLoggerFilter.doFilter(RequestLoggerFilter.java:75 )
              at org.apache.felix.http.base.internal.handler.FilterHandler.doHandle(FilterHandler.java:88)
              at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:76)
              at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:47)
              at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)
              at org.apache.felix.http.base.internal.dispatch.FilterPipeline.dispatch(FilterPipeline.java: 48)
              at org.apache.felix.http.base.internal.dispatch.Dispatcher.dispatch(Dispatcher.java:39)
              at org.apache.felix.http.base.internal.DispatcherServlet.service(DispatcherServlet.java:67)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
              at com.day.j2ee.servletengine.ServletRuntimeEnvironment.service(ServletRuntimeEnvironment.ja va:250)
              at com.day.j2ee.servletengine.RequestDispatcherImpl.doFilter(RequestDispatcherImpl.java:315)
              at com.day.j2ee.servletengine.RequestDispatcherImpl.service(RequestDispatcherImpl.java:334)
              at com.day.j2ee.servletengine.RequestDispatcherImpl.service(RequestDispatcherImpl.java:377)
              at com.day.j2ee.servletengine.ServletHandlerImpl.process(ServletHandlerImpl.java:351)
              at com.day.j2ee.servletengine.HttpListener$Worker.run(HttpListener.java:625)
              at java.lang.Thread.run(Thread.java:662)
    Caused by: java.lang.Exception: Stack trace of  where session-admin-465820 was originally closed
              at org.apache.jackrabbit.core.session.SessionState.close(SessionState.java:275)
              at org.apache.jackrabbit.core.SessionImpl.logout(SessionImpl.java:943)
              at org.apache.jackrabbit.core.XASessionImpl.logout(XASessionImpl.java:392)
              at com.day.crx.core.CRXSessionImpl.logout(CRXSessionImpl.java:116)
              at sun.reflect.GeneratedMethodAccessor55.invoke(Unknown Source)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
              at java.lang.reflect.Method.invoke(Method.java:597)
              at org.apache.sling.jcr.base.SessionProxyHandler$SessionProxyInvocationHandler.invoke(Sessio nProxyHandler.java:109)
              at $Proxy9.logout(Unknown Source)
              at com.day.cq.workflow.impl.CQWorkflowSession.logout(CQWorkflowSession.java:615)
              at org.apache.jsp.libs.wcm.msm.components.commands.translate.POST_jsp._jspService(POST_jsp.j ava:201)
              ... 77 more

    The workaround is [1] do not close session in translate.jsp , Seems that is right way but I am not 100% confident.  Though I verified session analyser and seems getting closed by other thread once request is fullfilled. Internally, I have filled the case(CQ5-22443).  For further assistance please file a daycare.
    [1]   Overlay /libs/wcm/msm/components/commands/translate/POST.jsp  and comment out  or remove wfSession.logout();

  • Solution: Stack traces on actual devices

    I've created a tool to work around one of the major problems when developing for CLDC: getting proper stack traces. Using the tool you get stack traces (with correct line number info) on exception situations also when running MIDlets on real devices. You can redirect the trace to any desired destination (e.g. a log file).
    There isn't much documentation yet but it works and it's a real time saver. Check it out at [http://jarrut.sourceforge.net].

    I believe this does what you're talking about.
    yourLoggerName.error("your error message",yourException);Since you are using log4j, check their documentation about the methods:
    http://logging.apache.org/log4j/docs/api/index.html
    While there, look up debug, info, warn, error, fatal, and if you are using a recent version of log4j also see trace. You'll want the methods that pass the message and Throwable.

  • Caught exception still showing stack trace

    I have a piece of code which attempts to draw some data out of a JPEG. The line that actually gets the data will raise a com.sun.image.codec.jpeg.TruncatedFileException: Premature end of input file, if you have a corrupt JPEG. If I put the code in a "try" block, and try to catch com.sun.image.codec.jpeg.TruncatedFileException, the catch never gets executed. But if I do a generic catch by just catching Exception, the catch block DOES get executed. HOWEVER... Even though the catch block is executed, and I have a line that says "System.out.println("Found a problem");" or something like that, Java still outputs a stack trace as well. This is making me think that maybe it is throwing 2 exceptions? But if I put another try block around it, it still does the same thing.... Here is a snippet of my code, followed by the stack trace.
    RenderedImage meanImage = JAI.create("mean", pb, null);
    double[] mean;
    try {
    mean = (double[])meanImage.getProperty("mean");
    } catch (Exception e) {
    System.out.println("Caught in getProperty.");
    return;
    NOTE: The line "mean = (double[])meanImage.getProperty("mean");
    is the one throwing the exception. And I've tried the catch block with and without the return statement.
    Here is the stack trace...
    Corrupt JPEG data: premature end of data segment
    com.sun.image.codec.jpeg.TruncatedFileException: Premature end of input file
    at sun.awt.image.codec.JPEGImageDecoderImpl.readJPEGStream(Native Method)
    at sun.awt.image.codec.JPEGImageDecoderImpl.decodeAsBufferedImage(JPEGImageDecoderImpl.java:210)
    at com.sun.media.jai.codecimpl.JPEGImage.<init>(JPEGImageDecoder.java:112)
    at com.sun.media.jai.codecimpl.JPEGImageDecoder.decodeAsRenderedImage(JPEGImageDecoder.java:51)
    at com.sun.media.jai.opimage.CodecRIFUtil.create(CodecRIFUtil.java:89)
    at com.sun.media.jai.opimage.JPEGRIF.create(JPEGRIF.java:52)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at javax.media.jai.FactoryCache.invoke(FactoryCache.java:130)
    at javax.media.jai.OperationRegistry.invokeFactory(OperationRegistry.java:1669)
    at javax.media.jai.ThreadSafeOperationRegistry.invokeFactory(ThreadSafeOperationRegistry.java:481)
    at javax.media.jai.registry.RIFRegistry.create(RIFRegistry.java:340)
    at com.sun.media.jai.opimage.StreamRIF.create(StreamRIF.java:104)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at javax.media.jai.FactoryCache.invoke(FactoryCache.java:130)
    at javax.media.jai.OperationRegistry.invokeFactory(OperationRegistry.java:1669)
    at javax.media.jai.ThreadSafeOperationRegistry.invokeFactory(ThreadSafeOperationRegistry.java:481)
    at javax.media.jai.registry.RIFRegistry.create(RIFRegistry.java:340)
    at com.sun.media.jai.opimage.FileLoadRIF.create(FileLoadRIF.java:109)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at javax.media.jai.FactoryCache.invoke(FactoryCache.java:130)
    at javax.media.jai.OperationRegistry.invokeFactory(OperationRegistry.java:1669)
    at javax.media.jai.ThreadSafeOperationRegistry.invokeFactory(ThreadSafeOperationRegistry.java:481)
    at javax.media.jai.registry.RIFRegistry.create(RIFRegistry.java:340)
    at javax.media.jai.RenderedOp.createInstance(RenderedOp.java:805)
    at javax.media.jai.RenderedOp.createRendering(RenderedOp.java:853)
    at javax.media.jai.RenderedOp.getRendering(RenderedOp.java:874)
    at javax.media.jai.RenderedOp$1.getPropertyNames(RenderedOp.java:1777)
    at javax.media.jai.PropertyEnvironment.mapDefaults(PropertyEnvironment.java:280)
    at javax.media.jai.PropertyEnvironment.getPropertyNames(PropertyEnvironment.java:135)
    at javax.media.jai.WritablePropertySourceImpl.addProperties(WritablePropertySourceImpl.java:306)
    at javax.media.jai.RenderedOp.createPropertySource(RenderedOp.java:1803)
    at javax.media.jai.RenderedOp.getPropertyNames(RenderedOp.java:1837)
    at javax.media.jai.PropertyEnvironment.hashNames(PropertyEnvironment.java:319)
    at javax.media.jai.PropertyEnvironment.<init>(PropertyEnvironment.java:125)
    at javax.media.jai.DescriptorCache.getPropertySource(DescriptorCache.java:1198)
    at javax.media.jai.OperationRegistry.getPropertySource(OperationRegistry.java:1941)
    at javax.media.jai.ThreadSafeOperationRegistry.getPropertySource(ThreadSafeOperationRegistry.java:595)
    at javax.media.jai.OperationRegistry.getPropertySource(OperationRegistry.java:1980)
    at javax.media.jai.ThreadSafeOperationRegistry.getPropertySource(ThreadSafeOperationRegistry.java:608)
    at javax.media.jai.OperationNodeSupport.getPropertySource(OperationNodeSupport.java:624)
    at javax.media.jai.RenderedOp.createPropertySource(RenderedOp.java:1800)
    at javax.media.jai.RenderedOp.getProperty(RenderedOp.java:1924)
    at plugins.medianEvaluator$Evaluate.Caught in getProperty.
    Name: /home/jimdrewes/TEST.JPG Color: java.awt.Color[r=0,g=0,b=0]
    <init>(medianEvaluator.java:74)
    at plugins.medianEvaluator$1.construct(medianEvaluator.java:41)
    at plugins.SwingWorker$2.run(SwingWorker.java:110)
    at java.lang.Thread.run(Thread.java:536)
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at javax.media.jai.FactoryCache.invoke(FactoryCache.java:130)
    at javax.media.jai.OperationRegistry.invokeFactory(OperationRegistry.java:1669)
    at javax.media.jai.ThreadSafeOperationRegistry.invokeFactory(ThreadSafeOperationRegistry.java:481)
    at javax.media.jai.registry.RIFRegistry.create(RIFRegistry.java:340)
    at com.sun.media.jai.opimage.FileLoadRIF.create(FileLoadRIF.java:109)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at javax.media.jai.FactoryCache.invoke(FactoryCache.java:130)
    at javax.media.jai.OperationRegistry.invokeFactory(OperationRegistry.java:1669)
    at javax.media.jai.ThreadSafeOperationRegistry.invokeFactory(ThreadSafeOperationRegistry.java:481)
    at javax.media.jai.registry.RIFRegistry.create(RIFRegistry.java:340)
    at javax.media.jai.RenderedOp.createInstance(RenderedOp.java:805)
    at javax.media.jai.RenderedOp.createRendering(RenderedOp.java:853)
    at javax.media.jai.RenderedOp.getRendering(RenderedOp.java:874)
    at javax.media.jai.RenderedOp$1.getPropertyNames(RenderedOp.java:1777)
    at javax.media.jai.PropertyEnvironment.mapDefaults(PropertyEnvironment.java:280)
    at javax.media.jai.PropertyEnvironment.getPropertyNames(PropertyEnvironment.java:135)
    at javax.media.jai.WritablePropertySourceImpl.addProperties(WritablePropertySourceImpl.java:306)
    at javax.media.jai.RenderedOp.createPropertySource(RenderedOp.java:1803)
    at javax.media.jai.RenderedOp.getPropertyNames(RenderedOp.java:1837)
    at javax.media.jai.PropertyEnvironment.hashNames(PropertyEnvironment.java:319)
    at javax.media.jai.PropertyEnvironment.<init>(PropertyEnvironment.java:125)
    at javax.media.jai.DescriptorCache.getPropertySource(DescriptorCache.java:1198)
    at javax.media.jai.OperationRegistry.getPropertySource(OperationRegistry.java:1941)
    at javax.media.jai.ThreadSafeOperationRegistry.getPropertySource(ThreadSafeOperationRegistry.java:595)
    at javax.media.jai.OperationRegistry.getPropertySource(OperationRegistry.java:1980)
    at javax.media.jai.ThreadSafeOperationRegistry.getPropertySource(ThreadSafeOperationRegistry.java:608)
    at javax.media.jai.OperationNodeSupport.getPropertySource(OperationNodeSupport.java:624)
    at javax.media.jai.RenderedOp.createPropertySource(RenderedOp.java:1800)
    at javax.media.jai.RenderedOp.getProperty(RenderedOp.java:1924)
    at plugins.medianEvaluator$Evaluate.<init>(medianEvaluator.java:74)
    at plugins.medianEvaluator$1.construct(medianEvaluator.java:41)
    at plugins.SwingWorker$2.run(SwingWorker.java:110)
    at java.lang.Thread.run(Thread.java:536)
    Caused by: java.lang.RuntimeException: Unable to process image stream, incorrect format.
    at com.sun.media.jai.codecimpl.JPEGImage.<init>(JPEGImageDecoder.java:114)
    at com.sun.media.jai.codecimpl.JPEGImageDecoder.decodeAsRenderedImage(JPEGImageDecoder.java:51)
    at com.sun.media.jai.codec.ImageDecoderImpl.decodeAsRenderedImage(ImageDecoderImpl.java:148)
    at com.sun.media.jai.opimage.StreamRIF.create(StreamRIF.java:135)
    ... 40 more
    I'm using Forte as my development environment, and JAI to do imaging stuff.
    Any help would be great.
    Thanks,
    -Jim Drewes
    www.jimdrewes.com

    Actually, if you look at the stack trace close enoughI told you I didn't read the stack trace... I never will read anything that you don't bother simplifying down, perhaps since *you* knew where this was you could have pointed it out...
    Because your line is being printed in the middle of the stack trace is a *BIG* hint that the exception you are catching is not the one that is printing the stack trace.
    So its almost like its catching an error
    after it raises a DIFFERENT not-caught error.Which is eactly what I told you... And by the position of your ESystem.out line there is also an (several?) un-caught error after your caught error.
    I tried putting all of those create
    statements in their own try blocks,
    but it still gave me the same error.Are you sure its the same exceptio, and not other exceptions.
    I also stuck in a MediaTracker yesterday...
    The tracker comes back just fine,
    with no errors on the image being
    loaded. But when the data gets drawn
    out, it raises this error again.Maybe have a google for image loading and java.awt.image.ImageObserver for some more clues.

  • Can anyone help how to print stack trace messages using log4j?

    Can anyone help how to print stack trace messages using log4j?

    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
    <log4j:configuration xmlns:log4j='http://jakarta.apache.org/log4j/'>
    <appender name="STDOUT" class="org.apache.log4j.ConsoleAppender">
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p %m%n"/>
    </layout>
    </appender>
    <appender name="DEBUG" class="org.apache.log4j.RollingFileAppender">
    <param name="File" value="/usr/local/dice/d2jbin/cmdToNetJobs/app-debug.log"/>
    <param name="Append" value="true"/>
    <param name="MaxFileSize" value="1000KB"/>
    <param name="MaxBackupIndex" value="5"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p %m%n"/>
    </layout>
    <filter class="org.apache.log4j.varia.LevelRangeFilter">
    <param name="LevelMin" value="DEBUG" />
    <param name="LevelMax" value="DEBUG" />
    </filter>
    </appender>
    <appender name="INFO" class="org.apache.log4j.RollingFileAppender">
    <param name="File" value="/usr/local/dice/d2jbin/cmdToNetJobs/app-info.log"/>
    <param name="Append" value="true"/>
    <param name="MaxFileSize" value="1000KB"/>
    <param name="MaxBackupIndex" value="5"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p %m%n"/>
    </layout>
    <filter class="org.apache.log4j.varia.LevelRangeFilter">
    <param name="LevelMin" value="INFO" />
    <param name="LevelMax" value="INFO" />
    </filter>
    </appender>
    <appender name="WARN" class="org.apache.log4j.RollingFileAppender">
    <param name="File" value="/usr/local/dice/d2jbin/cmdToNetJobs/app-warn.log"/>
    <param name="Append" value="true"/>
    <param name="MaxFileSize" value="1000KB"/>
    <param name="MaxBackupIndex" value="5"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p %m%n"/>
    </layout>
    <filter class="org.apache.log4j.varia.LevelRangeFilter">
    <param name="LevelMin" value="WARN" />
    <param name="LevelMax" value="WARN" />
    </filter>
    </appender>
    <appender name="ERROR" class="org.apache.log4j.RollingFileAppender">
    <param name="File" value="/usr/local/dice/d2jbin/cmdToNetJobs/app-error.log"/>
    <param name="Append" value="true"/>
    <param name="MaxFileSize" value="1000KB"/>
    <param name="MaxBackupIndex" value="5"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p %m%n"/>
    </layout>
    <filter class="org.apache.log4j.varia.LevelRangeFilter">
    <param name="LevelMin" value="ERROR" />
    <param name="LevelMax" value="ERROR" />
    </filter>
    </appender>
    <root>
    <priority value="debug"/>
    <!--<appender-ref ref="STDOUT"/>
    --><appender-ref ref="DEBUG"/>
    <appender-ref ref="INFO"/>
    <appender-ref ref="WARN"/>
    <appender-ref ref="ERROR"/>
    </root>
    </log4j:configuration>
    I ve written like this
    and to print stack trace I used
    log.error(Throwable(e))
    but does nt display printstacktrace how to do it

  • WebLogic Server crash and Stack Trace Log

    Hello? ^-^
    Current system details:
    SEQUENT Dynix/ptx v 4.4.7
    Classic VM (1.2.1, green threads)
    WebLogic 5.1
    Apache 1.3.20
    Current System crashes down too often and web service can not be available.
    Heres a stack trace of the process when it has locked up.
    The entire stack trace log file is...
    http://members.tripod.lycos.co.kr/bach1685/dump.txt
    Could it be possible to think this is the problem between JVM and OS library?
    If this is a problem of OS, I think that Just changing OS could solve the problem.
    How would I go about trying to figure out just where the problem is?
    Thanks for readming my broken English...^^

    Make sure you have a supported platform -
    http://www.weblogic.com/platforms/index.html
    For JDK 1.2.1 - pay attention to what the platform page says about setting JVMARGS.
    Mike
    Kim, Jihun <[email protected]> wrote:
    Hello? ^-^
    Current system details:
    SEQUENT Dynix/ptx v 4.4.7
    Classic VM (1.2.1, green threads)
    WebLogic 5.1
    Apache 1.3.20
    Current System crashes down too often and web service can not be available.
    Heres a stack trace of the process when it has locked up.
    The entire stack trace log file is...
    http://members.tripod.lycos.co.kr/bach1685/dump.txt
    Could it be possible to think this is the problem between JVM and OS
    library?
    If this is a problem of OS, I think that Just changing OS could solve
    the problem.
    How would I go about trying to figure out just where the problem is?
    Thanks for readming my broken English...^^

Maybe you are looking for

  • XSL file formatting

    XSL file formatting Hi there. I have problem with this files xsl, the problem is the output for the field date and number: a) `2011-05-13T21:50:00` instead of `13/05/2001 21:50:00` b) `.00` instead of `0`This is the output in XML: <xml xmlns:s="uuid:

  • Lumia 520 setting is not opening.

    I purchased 3 months ago. All things was working but now setting is not opening to set up anythings like updates location...etc. I really suffering from phone, What should I do to solve the location bcz I need maps and roads.

  • Removing songs from ipod manually

    when i click on the ipod in the pane i dont see any songs to remove wats wrong

  • Planning Time Fence and Rescheduling Purchase Req

    How to Process the MD04 exception  u201C30 Plan Process According to Scheduleu201D for Purchase Req. Please provide me a Step by step procedure with example to Reschedule the Purchase Req with given rescheduling date. *Really I am confused with PLANN

  • How to identify connected devices?

    In the Airport Utlity, I can see devices connected to my Time Capsule router.  Three of them are identified by name but two are IP and mac address.  Is there some way to find out what these last two addresses are (i.e., devices)?