DOM: NoClass Def error

I am trying to output a node name from an XML file using Xerces DOM, to a servlet. I keep getting the error I posted below. Can anyone assist??
This is my program:
import org.apache.xerces.parsers.DOMParser;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerConfigurationException;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.Element;
import org.w3c.dom.Text;
import org.w3c.dom.html.HTMLDocument;
import org.apache.xerces.dom.DocumentImpl;
import org.apache.xml.serialize.OutputFormat;
import org.apache.xml.serialize.Serializer;
import org.apache.xml.serialize.SerializerFactory;
import org.apache.xml.serialize.XMLSerializer;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class DOM1 extends HttpServlet
     String xmlFile = "students.xml";
     DOMParser parser = new DOMParser();
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{
     response.setContentType("text/html");
     PrintWriter out = response.getWriter();
     try{
     parser.parse(xmlFile);}
     catch (Exception e)
          {out.println(e.getMessage());}
     Document doc = parser.getDocument();
        out.println("<html><head><title>SampleDOM Servlet</title></head><body><h1> SAMPLE Servlet</h1>");
     out.println(doc.getFirstChild().getNodeName());
     out.println("</body></html>");
}This is the output:
Error: 500
Location: /servlet/DOM1
Internal Servlet Error:
java.lang.NoClassDefFoundError: org/apache/xerces/parsers/DOMParser
     at DOM1.(DOM1.java:31)
     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
     at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
     at java.lang.Class.newInstance0(Class.java:296)
     at java.lang.Class.newInstance(Class.java:249)
     at org.apache.tomcat.core.ServletWrapper.loadServlet(ServletWrapper.java:268)
     at org.apache.tomcat.core.ServletWrapper.init(ServletWrapper.java:289)
     at org.apache.tomcat.core.Handler.service(Handler.java:254)
     at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
     at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:797)
     at org.apache.tomcat.core.ContextManager.service(ContextManager.java:743)
     at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:213)
     at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
     at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)
     at java.lang.Thread.run(Thread.java:536)

Hi,
I have solved my problem, with help from another Java forum.
I needed to put the Jar files in the CLASSPATH environment variable instead of compiling with it the way I did... which should have worked:
javac -classpath xercesImpl.jar DOM1.java
Also, the version of Tomcat I'm using was looking for the xml file in bin... not in the lib folders or in web-inf/classes...
Thank you for responding.

Similar Messages

  • Jboss and org/w3c/dom/ranges/DocumentRange error

    Hi folks,
    Is any JBoss expert able to help me?
    I'm working on MacOSX Panther that comes with JBoss readily installed, so I'm presuming that it should start without any problems. However, when I I run the run.sh script I get an error that it doesn't find the class:
    org/w3c/dom/ranges/DocumentRange
    Yet, I can see this class in my java browser - so I'm almost 100% certain it exists on my machine. What might the problem be? The other strange thing is that my colleague, working on a nearly identical machine can start up jboss without any problems by invoking exactly the same script. This is the first time I've used jboss and I haven't tampered with any of the setup files there. I've searched the documentation thoroughly but can't find any reference to this error. Has anyone else encountered it?
    I wonder if it might not be a classpath problem - but that strikes me as odd - shouldn't it just work straight out of the box if it came readily installed?
    The only possible explanation is that a while back I was working with castor and jdom and installed jdom.jar and castor-0.9.5.2-xml.jar in my Library/java/Extensions folder. Could it be that these jars cause some sort of conflict?
    Just for the record, I'll post below the full printout that I get when I try to start up jboss.
    Many thanks,
    Damian
    [damian:JBoss/3.2/bin] damian% ./run.sh
    09:40:37,623 INFO  [Server] Starting JBoss (MX MicroKernel)...
    09:40:37,662 INFO  [Server] Release ID: JBoss [WonderLand] 3.2.2RC2 (build: CVSTag=JBoss_3_2_2_RC2 date=200309130127)
    09:40:37,666 INFO  [Server] Home Dir: /Library/JBoss/3.2
    09:40:37,668 INFO  [Server] Home URL: file:/Library/JBoss/3.2/
    09:40:37,671 INFO  [Server] Library URL: file:/Library/JBoss/3.2/lib/
    09:40:37,678 INFO  [Server] Patch URL: null
    09:40:37,724 INFO  [Server] Server Name: default
    09:40:37,768 INFO  [Server] Server Home Dir: /Library/JBoss/3.2/server/default
    09:40:37,770 INFO  [Server] Server Home URL: file:/Library/JBoss/3.2/server/default/
    09:40:37,772 INFO  [Server] Server Data Dir: /Library/JBoss/3.2/server/default/data
    09:40:37,774 INFO  [Server] Server Temp Dir: /var/tmp/jbosstmpdata1039
    09:40:37,776 INFO  [Server] Server Config URL: file:/Library/JBoss/3.2/server/default/conf/
    09:40:37,778 INFO  [Server] Server Library URL: file:/Library/JBoss/3.2/server/default/lib/
    09:40:37,780 INFO  [Server] Root Deployemnt Filename: jboss-service.xml
    09:40:37,795 INFO  [Server] Starting General Purpose Architecture (GPA)...
    09:40:40,414 INFO  [ServerInfo] Java version: 1.4.2_03,Apple Computer, Inc.
    09:40:40,417 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Client VM 1.4.2-34,"Apple Computer, Inc."
    09:40:40,419 INFO  [ServerInfo] OS-System: Mac OS X 10.3.2,ppc
    09:40:40,663 INFO  [ServiceController] Controller MBean online
    09:40:40,991 INFO  [MainDeployer] Creating
    09:40:41,158 INFO  [MainDeployer] Created
    09:40:41,164 INFO  [MainDeployer] Starting
    09:40:41,166 INFO  [MainDeployer] Started
    09:40:41,509 INFO  [JARDeployer] Creating
    09:40:41,605 INFO  [JARDeployer] Created
    09:40:41,609 INFO  [JARDeployer] Starting
    09:40:41,666 INFO  [MainDeployer] Adding deployer: org.jboss.deployment.JARDeployer@fa385
    09:40:41,670 INFO  [JARDeployer] Started
    09:40:41,737 INFO  [SARDeployer] Creating
    09:40:41,826 INFO  [SARDeployer] Created
    09:40:41,838 INFO  [SARDeployer] Starting
    09:40:41,841 INFO  [MainDeployer] Adding deployer: org.jboss.deployment.SARDeployer@e88e24
    09:40:41,927 INFO  [SARDeployer] Started
    09:40:42,017 INFO  [Server] Core system initialized
    09:40:42,089 INFO  [MainDeployer] Starting deployment of package: file:/Library/JBoss/3.2/server/default/conf/jboss-service.xml
    09:40:42,463 ERROR [Server] Failed to start
    java.lang.NoClassDefFoundError: org/w3c/dom/ranges/DocumentRange
            at java.lang.ClassLoader.defineClass0(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
            at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
            at java.lang.ClassLoader.defineClass0(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
            at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
            at org.apache.xerces.jaxp.DocumentBuilderImpl.<init>(Unknown Source)
            at org.apache.xerces.jaxp.DocumentBuilderFactoryImpl.newDocumentBuilder(Unknown Source)
            at org.jboss.deployment.SARDeployer.parseDocument(SARDeployer.java:495)
            at org.jboss.deployment.SARDeployer.init(SARDeployer.java:115)
            at org.jboss.deployment.MainDeployer.init(MainDeployer.java:686)
            at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:629)
            at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
            at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:589)
            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 org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
            at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:550)
            at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
            at $Proxy6.deploy(Unknown Source)
            at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:383)
            at org.jboss.system.server.ServerImpl.start(ServerImpl.java:290)
            at org.jboss.Main.boot(Main.java:150)
            at org.jboss.Main$1.run(Main.java:388)
            at java.lang.Thread.run(Thread.java:552)
    java.lang.NoClassDefFoundError: org/w3c/dom/ranges/DocumentRange
            at java.lang.ClassLoader.defineClass0(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
            at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
            at java.lang.ClassLoader.defineClass0(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
            at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
            at org.apache.xerces.jaxp.DocumentBuilderImpl.<init>(Unknown Source)
            at org.apache.xerces.jaxp.DocumentBuilderFactoryImpl.newDocumentBuilder(Unknown Source)
            at org.jboss.deployment.SARDeployer.parseDocument(SARDeployer.java:495)
            at org.jboss.deployment.SARDeployer.init(SARDeployer.java:115)
            at org.jboss.deployment.MainDeployer.init(MainDeployer.java:686)
            at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:629)
            at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
            at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:589)
            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 org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
            at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:550)
            at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
            at $Proxy6.deploy(Unknown Source)
            at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:383)
            at org.jboss.system.server.ServerImpl.start(ServerImpl.java:290)
            at org.jboss.Main.boot(Main.java:150)
            at org.jboss.Main$1.run(Main.java:388)
            at java.lang.Thread.run(Thread.java:552)
    09:40:42,783 INFO  [Server] JBoss SHUTDOWN: Undeploying all packages
    09:40:42,787 INFO  [MainDeployer] Undeploying file:/Library/JBoss/3.2/server/default/conf/jboss-service.xml
    09:40:42,794 INFO  [DeploymentInfo] Cleaned Deployment: file:/var/tmp/jbosstmpdata1039/deploy/tmp33887jboss-service.xml
    09:40:42,796 INFO  [MainDeployer] Undeployed file:/Library/JBoss/3.2/server/default/conf/jboss-service.xml
    09:40:42,800 INFO  [MainDeployer] Undeployed 1 deployed packages
    09:40:42,807 INFO  [Server] Shutting down all services
    Shutting down
    09:40:42,813 INFO  [ServiceController] Stopping 3 services
    09:40:42,817 INFO  [SARDeployer] Stopping
    09:40:42,820 INFO  [MainDeployer] Removing deployer: org.jboss.deployment.SARDeployer@e88e24
    09:40:42,822 INFO  [SARDeployer] Stopped
    09:40:42,840 INFO  [JARDeployer] Stopping
    09:40:42,897 INFO  [JARDeployer] Stopped
    09:40:42,900 INFO  [MainDeployer] Stopping
    09:40:42,902 INFO  [MainDeployer] Stopped
    09:40:42,903 INFO  [ServiceController] Stopped 3 services
    09:40:42,915 INFO  [Server] Shutdown complete
    Shutdown complete
    Halting VM

    To answer my own question...
    It seemed as if xmlParserAPIs.jar was missing from my machine (no idea why). I downloaded xerxes, copied the jar into my Extensions folder, ran the script and, lo-and-behold, jboss now works!

  • Norton Anti-virus-Unable to Live Update (Virus Def) Error/Java 1.4.2

    Hello all.
    I have Norton Anti-virus 10.1.1 running on my iMac, Live Update has always been set on "auto" scheduling.
    Until these few days, I have difficulties Live Updating the latest virus definition, I will get this error message window:
    Updating Error
    There was an error performing the update (OK button)
    I emailed Symantec and got a reply, saying the problem could be due to Java 1.4.2, they ask me to re-install Java 1.4.2
    However, a check at Apple's Download site reveals no single stand-alone Java 1.4.2 installer, only updates. Is Java 1.4.2 part of the current OS or was from previous OS?
    Anyway when I tried downloading the Java 1.4.2 Update, my iMac refuses, in the installer it says:
    You cannot install Java 1.4.2 Update 1 Package on this volume. This volume does not contain a version of Java that needs updating.
    So if Java is the problem like what Symantec Support points out, how can I re-install Java 1.4.2?
    Thanks and cheers

    1. You wrote: "Also, to the previos post, I trashed all the Java receipts and still unable to (re)install Java 1.3.1 and 1.4.2 Release 2, I think the console results say it all, I have Java ver. 1.5, right?"If you see the same output as I provided, then you should have the same version: that should be obvious.
    Don't touch anything in the Receipts directory unless you know what you're doing.
    2. You wrote: "Dr. Smoke, not exactly sure how to go from here where you point to the URL, about checking the console messages/logs for Live Update? Can you help provide some pointers."The instructions I provided earlier, as well as my FAQ, are self-evident. You should not need any additional pointers. Re-read my instructions then re-read my FAQ.
    Paraphrasnig what I wrote earlier: If you see the Live Update error again, check the ends of the logs cited in my "Checking Console for clues" FAQ for any messages related to LiveUpdate problems, e.g. messages citing LiveUpdate that were written to the ends of the logs I cite in my FAQ at the time the problem occurred. If you check immediately after the problem occurs, the messages — if any — would be at the end of the log.
    What could be clearer than that?
    3. I suspect the Java 1.4.2 info you were given earlier by Symantec was a red herring, i.e. a false lead. Console-related messages as noted in point 2 above would be helpful.
    4. You might want to perform a general checkup for some common troublemakers: run the Procedure specified in my "Resolving Disk, Permission, and Cache Corruption" FAQ. Perform the steps therein in the order specified.
    5. Likewise, following the Symantec advice to download the virus defs once and then trying again in a week or so isn't a bad idea.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Class def error?

    hi
    I am using NWDS 7.0 and EP 6.0 .While deploying one of my application i am getting the error: java.lang.NoClassDefFoundError: com/sap/tc/webdynpro/clientserver/uielib/standard/api/IWDAbstractTableColumn
    I want to solve this problem by using some differnet clss for my table,or include the class
    Please tell me how this can be done.
    Regards
    Nidhideep

    Hi Nidhideep,
    Version of NWDS should be qual or less than WAS version.
    Best regards, Maksim Rashchynski.

  • Error in Displaying table.

    Hello Friends,
                          I am populating a in a table in one view, getting values in another view.
    I am using separate context node for getting the value and adding these values into another context node, which is the source for the table. 
    I am getting following error when I try to navigate from one view to the other...
    Error Summary
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was:
       java.lang.NoClassDefFoundError: com/sap/tc/webdynpro/clientserver/uielib/standard/api/IWDAbstractTableColumn
        at java.lang.Class.getDeclaredConstructors0(Native Method)
        at java.lang.Class.privateGetDeclaredConstructors(Class.java:1618)
        at java.lang.Class.getConstructors(Class.java:865)
        at com.sap.tc.webdynpro.progmodel.generation.ControllerHelper.createDelegate(ControllerHelper.java:68)
        at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.<init>(DelegatingView.java:41)
        ... 29 more
    See full exception chain for details.
    System Environment
    Client
    Web Dynpro Client Type HTML Client
    User agent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)
    Version 
    DOM version 
    Client Type msie6
    Client Type Profile ie6
    ActiveX enabled
    Cookies enabled
    Frames enabled
    Java Applets enabled
    JavaScript enabled
    Tables enabled
    VB Script enabled
    Server
    Web Dynpro Runtime Vendor: SAP, Build ID: 6.4016.00.0000.20060126165422.0000 (release=630_VAL_REL, buildtime=2006-02-20:21:46:46[UTC], changelist=386861, host=PWDFM026)
    J2EE Engine No information available
    Java VM Java HotSpot(TM) Server VM, version:1.4.2_08-b03, vendor: Sun Microsystems Inc.
    Operating system Windows XP, version: 5.1, architecture: x86
    Other
    Session Locale en_GB
    Time of Failure Mon Sep 03 13:20:31 SGT 2007 (Java Time: 1188796831187)
    Web Dynpro Code Generation Infos
    local/JA310_WD_UIElements_2T_00
    SapDictionaryGenerationCore 7.0010.20061002105236.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:52:59[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates (unknown)
    SapGenerationFrameworkCore 7.0010.20060719095755.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:40:44[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer 7.0010.20061002110128.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:58:51[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon 7.0010.20061002105432.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:41:39[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore 7.0010.20061002105432.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:41:32[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary 7.0010.20060719095619.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:50:36[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro 7.0010.20061002110156.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:55:32[UTC], changelist=419397, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCTemplates 7.0010.20061016112122.0000 (release=645_VAL_REL, buildtime=2006-10-21:16:18:57[UTC], changelist=421181, host=pwdfm101)
    SapWebDynproGenerationCore 7.0010.20061002110128.0000 (release=645_VAL_REL, buildtime=2006-10-21:15:59:00[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates 7.0010.20061016112122.0000 (release=645_VAL_REL, buildtime=2006-10-21:16:18:57[UTC], changelist=421181, host=pwdfm101)
    sap.com/tcwddispwda
    No information available
    sap.com/tcwdcorecomp
    No information available
    Detailed Error Information
    Detailed Exception Chain
    java.lang.NoClassDefFoundError: com/sap/tc/webdynpro/clientserver/uielib/standard/api/IWDAbstractTableColumn
         at java.lang.Class.getDeclaredConstructors0(Native Method)
         at java.lang.Class.privateGetDeclaredConstructors(Class.java:1618)
         at java.lang.Class.getConstructors(Class.java:865)
         at com.sap.tc.webdynpro.progmodel.generation.ControllerHelper.createDelegate(ControllerHelper.java:68)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.<init>(DelegatingView.java:41)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.createUninitializedView(ViewManager.java:486)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:523)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:421)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.makeVisible(ViewManager.java:623)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.performNavigation(ViewManager.java:262)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.navigate(ClientApplication.java:819)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:359)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:659)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:251)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:55)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Thanx for Ur time.. Sam

    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=noclassdeffounderrorIWDAbstractTableColumn&adv=false&sortby=cm_rnd_rankvalue
    java.lang.NoClassDefFoundError
    Error while binding node attribute to a  UI  element (table)
    Problem with NWDS 7
    class def error?

  • Error in displaying date time value in Thai Windows OS browser.

    Hi,
    I have a problem displaying date time in the browser which is installed with Thai Windows OS. The time portion (the subset of datetime) does seemed to show correctly. Initially i am suspecting the virtual machine problem but i tried on bith java and microsoft vm, the result seemed the same. I tried to look in the source of the page and the character is just the same as the incorrect character displayed in the browser. The html source is -->
    <tr class="TableData">
         <td width="76">14/01/04 12:17:06 H-@5H"</td>
    the time is displaying incorrectly. I am not sure its due to any setting in the BEA weblogic server. FYI i am now using WLS6.1(SP2) version. Hope and appreaciate a prompt reply. Thanks a zillion in advance.
    Regards,
    Sunny

    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=noclassdeffounderrorIWDAbstractTableColumn&adv=false&sortby=cm_rnd_rankvalue
    java.lang.NoClassDefFoundError
    Error while binding node attribute to a  UI  element (table)
    Problem with NWDS 7
    class def error?

  • Errors with cmsxdb installation

    OS: Solaris 8
    DB: Oracle921
    IAS:ias903
    JDev9031
    I tried to deploy and run the application as the installation document. One problem is that deploying FOP.jar costs too many time. The document said it is about 10 minutes but it costed nearly 5 hours,:(
    In the 4 step, Jdev returned following errors:
    class org/w3c/dom/svg/SVGStylable: resolution
    Error while checking status of org/w3c/dom/svg/SVGStyleElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGStyleElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGSwitchElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGSwitchElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGSymbolElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGSymbolElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTRefElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTRefElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTSpanElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTSpanElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTests
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTests: resolution
    Error while checking status of org/w3c/dom/svg/SVGTextContentElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTextContentElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTextElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTextElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTextPathElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTextPathElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTextPositioningElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTextPositioningElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTitleElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTitleElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTransform
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTransform: resolution
    Error while checking status of org/w3c/dom/svg/SVGTransformList
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTransformList: resolution
    Error while checking status of org/w3c/dom/svg/SVGTransformable
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTransformable: resolution
    Error while checking status of org/w3c/dom/svg/SVGURIReference
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGURIReference: resolution
    Error while checking status of org/w3c/dom/svg/SVGUnitTypes
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGUnitTypes: resolution
    Error while checking status of org/w3c/dom/svg/SVGUseElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGUseElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGVKernElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGVKernElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGViewElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGViewElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGViewSpec
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGViewSpec: resolution
    Error while checking status of org/w3c/dom/svg/SVGZoomAndPan
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGZoomAndPan: resolution
    Error while checking status of org/w3c/dom/svg/SVGZoomEvent
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGZoomEvent: resolution
    Error while checking status of org/w3c/dom/traversal/DocumentTraversal
    Io exception: Broken pipe
    class org/w3c/dom/traversal/DocumentTraversal: resolution
    Error while checking status of org/w3c/dom/traversal/NodeFilter
    Io exception: Broken pipe
    class org/w3c/dom/traversal/NodeFilter: resolution
    Error while checking status of org/w3c/dom/html/HTMLHtmlElement
    Error while checking status of org/w3c/dom/traversal/NodeIterator
    Io exception: Broken pipe
    class org/w3c/dom/traversal/NodeIterator: resolution
    Error while checking status of org/w3c/dom/traversal/TreeWalker
    Io exception: Broken pipe
    class org/w3c/dom/traversal/TreeWalker: resolution
    Error while checking status of org/w3c/dom/views/AbstractView
    Io exception: Broken pipe
    class org/w3c/dom/views/AbstractView: resolution
    Error while checking status of org/w3c/dom/views/DocumentView
    Io exception: Broken pipe
    class org/w3c/dom/views/DocumentView: resolution
    Error while checking status of org/xml/sax/AttributeList
    Io exception: Broken pipe
    class org/xml/sax/AttributeList: resolution
    Error while checking status of org/xml/sax/Attributes
    Io exception: Broken pipe
    class org/xml/sax/Attributes: resolution
    Error while checking status of org/xml/sax/ContentHandler
    Io exception: Broken pipe
    class org/xml/sax/ContentHandler: resolution
    Error while checking status of org/xml/sax/DTDHandler
    Io exception: Broken pipe
    class org/xml/sax/DTDHandler: resolution
    Error while checking status of org/xml/sax/DocumentHandler
    Io exception: Broken pipe
    class org/xml/sax/DocumentHandler: resolution
    Error while checking status of org/xml/sax/EntityResolver
    Io exception: Broken pipe
    class org/xml/sax/EntityResolver: resolution
    Error while checking status of org/xml/sax/ErrorHandler
    Io exception: Broken pipe
    class org/xml/sax/ErrorHandler: resolution
    Error while checking status of org/xml/sax/HandlerBase
    Io exception: Broken pipe
    class org/xml/sax/HandlerBase: resolution
    Io exception: Broken pipe
    Error while checking status of org/xml/sax/InputSource
    Io exception: Broken pipe
    class org/xml/sax/InputSource: resolution
    Error while checking status of org/xml/sax/Locator
    Io exception: Broken pipe
    class org/xml/sax/Locator: resolution
    Error while checking status of org/xml/sax/Parser
    Io exception: Broken pipe
    class org/xml/sax/Parser: resolution
    Error while checking status of org/xml/sax/SAXException
    Io exception: Broken pipe
    class org/xml/sax/SAXException: resolution
    Error while checking status of org/xml/sax/SAXNotRecognizedException
    Io exception: Broken pipe
    class org/xml/sax/SAXNotRecognizedException: resolution
    Error while checking status of org/xml/sax/SAXNotSupportedException
    Io exception: Broken pipe
    class org/xml/sax/SAXNotSupportedException: resolution
    Error while checking status of org/xml/sax/SAXParseException
    Io exception: Broken pipe
    class org/xml/sax/SAXParseException: resolution
    Error while checking status of org/xml/sax/XMLFilter
    Io exception: Broken pipe
    class org/xml/sax/XMLFilter: resolution
    Error while checking status of org/xml/sax/XMLReader
    Io exception: Broken pipe
    class org/xml/sax/XMLReader: resolution
    Error while checking status of org/xml/sax/ext/DeclHandler
    Io exception: Broken pipe
    class org/xml/sax/ext/DeclHandler: resolution
    Error while checking status of org/xml/sax/ext/LexicalHandler
    class org/w3c/dom/html/HTMLHtmlElement: resolution
    Io exception: Broken pipe
    class org/xml/sax/ext/LexicalHandler: resolution
    Error while checking status of org/xml/sax/helpers/AttributeListImpl
    Io exception: Broken pipe
    class org/xml/sax/helpers/AttributeListImpl: resolution
    Error while checking status of org/xml/sax/helpers/AttributesImpl
    Io exception: Broken pipe
    class org/xml/sax/helpers/AttributesImpl: resolution
    Error while checking status of org/xml/sax/helpers/DefaultHandler
    Io exception: Broken pipe
    class org/xml/sax/helpers/DefaultHandler: resolution
    Error while checking status of org/xml/sax/helpers/LocatorImpl
    Io exception: Broken pipe
    class org/xml/sax/helpers/LocatorImpl: resolution
    Error while checking status of org/xml/sax/helpers/NamespaceSupport$Context
    Io exception: Broken pipe
    class org/xml/sax/helpers/NamespaceSupport$Context: resolution
    Error while checking status of org/xml/sax/helpers/NamespaceSupport
    Io exception: Broken pipe
    class org/xml/sax/helpers/NamespaceSupport: resolution
    Error while checking status of org/xml/sax/helpers/ParserAdapter$AttributeListAdapter
    Io exception: Broken pipe
    class org/xml/sax/helpers/ParserAdapter$AttributeListAdapter: resolution
    Error while checking status of org/xml/sax/helpers/ParserAdapter
    Io exception: Broken pipe
    class org/xml/sax/helpers/ParserAdapter: resolution
    Error while checking status of org/xml/sax/helpers/ParserFactory
    Io exception: Broken pipe
    class org/xml/sax/helpers/ParserFactory: resolution
    Error while checking status of org/xml/sax/helpers/XMLFilterImpl
    Io exception: Broken pipe
    class org/xml/sax/helpers/XMLFilterImpl: resolution
    Error while checking status of org/xml/sax/helpers/XMLReaderAdapter$AttributesAdapter
    Io exception: Broken pipe
    Error while checking status of org/w3c/dom/html/HTMLIFrameElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLIFrameElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLImageElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLImageElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLInputElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLInputElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLIsIndexElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLIsIndexElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLLIElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLLIElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLLabelElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLLabelElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLLegendElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLLegendElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLLinkElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLLinkElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLMapElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLMapElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLMenuElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLMenuElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLMetaElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLMetaElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLModElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLModElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLOListElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLOListElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLObjectElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLObjectElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLOptGroupElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLOptGroupElement: resolution
    class org/xml/sax/helpers/XMLReaderAdapter$AttributesAdapter: resolution
    Error while checking status of org/w3c/dom/html/HTMLOptionElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLOptionElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLParagraphElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLParagraphElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLParamElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLParamElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLPreElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLPreElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLQuoteElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLQuoteElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLScriptElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLScriptElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLSelectElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLSelectElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLStyleElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLStyleElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLTableCaptionElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLTableCaptionElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLTableCellElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLTableCellElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLTableColElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLTableColElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLTableElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLTableElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLTableRowElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLTableRowElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLTableSectionElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLTableSectionElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLTextAreaElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLTextAreaElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLTitleElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLTitleElement: resolution
    Error while checking status of org/w3c/dom/html/HTMLUListElement
    Io exception: Broken pipe
    class org/w3c/dom/html/HTMLUListElement: resolution
    Error while checking status of org/w3c/dom/range/DocumentRange
    Io exception: Broken pipe
    class org/w3c/dom/range/DocumentRange: resolution
    Error while checking status of org/w3c/dom/range/Range
    Io exception: Broken pipe
    class org/w3c/dom/range/Range: resolution
    Error while checking status of org/w3c/dom/range/RangeException
    Io exception: Broken pipe
    class org/w3c/dom/range/RangeException: resolution
    Error while checking status of org/w3c/dom/ranges/DocumentRange
    Io exception: Broken pipe
    class org/w3c/dom/ranges/DocumentRange: resolution
    Error while checking status of org/w3c/dom/ranges/Range
    Io exception: Broken pipe
    class org/w3c/dom/ranges/Range: resolution
    Error while checking status of org/w3c/dom/ranges/RangeException
    Io exception: Broken pipe
    class org/w3c/dom/ranges/RangeException: resolution
    Error while checking status of org/w3c/dom/smil/ElementTimeControl
    Io exception: Broken pipe
    class org/w3c/dom/smil/ElementTimeControl: resolution
    Error while checking status of org/w3c/dom/stylesheets/DocumentStyle
    Io exception: Broken pipe
    class org/w3c/dom/stylesheets/DocumentStyle: resolution
    Error while checking status of org/w3c/dom/stylesheets/LinkStyle
    Io exception: Broken pipe
    class org/w3c/dom/stylesheets/LinkStyle: resolution
    Error while checking status of org/w3c/dom/stylesheets/MediaList
    Io exception: Broken pipe
    class org/w3c/dom/stylesheets/MediaList: resolution
    Error while checking status of org/w3c/dom/stylesheets/StyleSheet
    Io exception: Broken pipe
    class org/w3c/dom/stylesheets/StyleSheet: resolution
    Error while checking status of org/w3c/dom/stylesheets/StyleSheetList
    Io exception: Broken pipe
    class org/w3c/dom/stylesheets/StyleSheetList: resolution
    Error while checking status of org/w3c/dom/svg/GetSVGDocument
    Io exception: Broken pipe
    class org/w3c/dom/svg/GetSVGDocument: resolution
    Error while checking status of org/w3c/dom/svg/SVGAElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGAltGlyphDefElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAltGlyphDefElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGAltGlyphElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAltGlyphElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGAltGlyphItemElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAltGlyphItemElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGAngle
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAngle: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimateColorElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimateColorElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimateElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimateElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimateMotionElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimateMotionElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimateTransformElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimateTransformElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimatedAngle
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimatedAngle: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimatedBoolean
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimatedBoolean: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimatedEnumeration
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimatedEnumeration: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimatedInteger
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimatedInteger: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimatedLength
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimatedLength: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimatedLengthList
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimatedLengthList: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimatedNumber
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimatedNumber: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimatedNumberList
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimatedNumberList: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimatedPathData
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimatedPathData: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimatedPoints
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimatedPoints: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimatedPreserveAspectRatio
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimatedPreserveAspectRatio: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimatedRect
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimatedRect: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimatedString
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimatedString: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimatedTransformList
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimatedTransformList: resolution
    Error while checking status of org/w3c/dom/svg/SVGAnimationElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGAnimationElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGCSSRule
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGCSSRule: resolution
    Error while checking status of org/w3c/dom/svg/SVGCircleElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGCircleElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGClipPathElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGClipPathElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGColor
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGColor: resolution
    Error while checking status of org/w3c/dom/svg/SVGColorProfileElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGColorProfileElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGColorProfileRule
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGColorProfileRule: resolution
    Error while checking status of org/w3c/dom/svg/SVGComponentTransferFunctionElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGComponentTransferFunctionElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGCursorElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGCursorElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGDefinitionSrcElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGDefinitionSrcElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGDefsElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGDefsElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGDescElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGDescElement: resolution
    Error while checking status of org/xml/sax/helpers/XMLReaderAdapter
    Io exception: Broken pipe
    class org/xml/sax/helpers/XMLReaderAdapter: resolution
    Error while checking status of org/xml/sax/helpers/XMLReaderFactory
    Io exception: Broken pipe
    class org/xml/sax/helpers/XMLReaderFactory: resolution
    Error while checking status of org/w3c/dom/svg/SVGDocument
    Io exception: Broken pipe
    oracle.aurora.server.tools.loadjava.ToolsException: Failures occurred during processing
         at oracle.aurora.server.tools.loadjava.LoadJava.process(LoadJava.java:700)
         at oracle.jdeveloper.deploy.tools.OracleLoadjava.deploy(OracleLoadjava.java:116)
         at oracle.jdeveloper.deploy.tools.OracleLoadjava.deploy(OracleLoadjava.java:46)
         at oracle.jdevimpl.deploy.OracleDeployer.deploy(OracleDeployer.java:97)
         at oracle.jdevimpl.deploy.StoredProcHandler.doDeploy(StoredProcHandler.java:428)
         at oracle.jdevimpl.deploy.StoredProcHandler.doDeploy(StoredProcHandler.java:315)
         at oracle.jdevimpl.deploy.StoredProcHandler.doDeploy(StoredProcHandler.java:257)
         at oracle.jdevimpl.deploy.StoredProcProfileDt$3.run(StoredProcProfileDt.java:370)
    class org/w3c/dom/svg/SVGDocument: resolution
    Error while checking status of org/w3c/dom/svg/SVGElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGElementInstance
    Io exception: Broken pipe
    #### Deployment incomplete. #### Jul 2, 2003 1:38:58 PM
    class org/w3c/dom/svg/SVGElementInstance: resolution
    Error while checking status of org/w3c/dom/svg/SVGElementInstanceList
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGElementInstanceList: resolution
    Error while checking status of org/w3c/dom/svg/SVGEllipseElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGEllipseElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGEvent
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGEvent: resolution
    Error while checking status of org/w3c/dom/svg/SVGException
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGException: resolution
    Error while checking status of org/w3c/dom/svg/SVGExternalResourcesRequired
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGExternalResourcesRequired: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEBlendElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEBlendElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEColorMatrixElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEColorMatrixElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEComponentTransferElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEComponentTransferElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFECompositeElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFECompositeElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEConvolveMatrixElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEConvolveMatrixElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEDiffuseLightingElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEDiffuseLightingElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEDisplacementMapElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEDisplacementMapElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEDistantLightElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEDistantLightElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEFloodElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEFloodElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEFuncAElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEFuncAElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEFuncBElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEFuncBElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEFuncGElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEFuncGElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEFuncRElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEFuncRElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEGaussianBlurElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEGaussianBlurElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEImageElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEImageElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEMergeElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEMergeElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEMergeNodeElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEMergeNodeElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEMorphologyElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEMorphologyElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEOffsetElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEOffsetElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFEPointLightElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFEPointLightElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFESpecularLightingElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFESpecularLightingElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFESpotLightElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFESpotLightElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFETileElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFETileElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFETurbulenceElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFETurbulenceElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFilterElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFilterElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFilterPrimitiveStandardAttributes
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFilterPrimitiveStandardAttributes: resolution
    Error while checking status of org/w3c/dom/svg/SVGFitToViewBox
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFitToViewBox: resolution
    Error while checking status of org/w3c/dom/svg/SVGFontElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFontElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFontFaceElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFontFaceElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFontFaceFormatElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFontFaceFormatElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFontFaceNameElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFontFaceNameElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFontFaceSrcElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFontFaceSrcElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGFontFaceUriElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGFontFaceUriElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGForeignObjectElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGForeignObjectElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGGElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGGElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGGlyphElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGGlyphElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGGlyphRefElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGGlyphRefElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGGradientElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGGradientElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGHKernElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGHKernElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGICCColor
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGICCColor: resolution
    Error while checking status of org/w3c/dom/svg/SVGImageElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGImageElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGLangSpace
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGLangSpace: resolution
    Error while checking status of org/w3c/dom/svg/SVGLength
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGLength: resolution
    Error while checking status of org/w3c/dom/svg/SVGLengthList
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGLengthList: resolution
    Error while checking status of org/w3c/dom/svg/SVGLineElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGLineElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGLinearGradientElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGLinearGradientElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGLocatable
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGLocatable: resolution
    Error while checking status of org/w3c/dom/svg/SVGMPathElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGMPathElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGMarkerElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGMarkerElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGMaskElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGMaskElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGMatrix
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGMatrix: resolution
    Error while checking status of org/w3c/dom/svg/SVGMetadataElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGMetadataElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGMissingGlyphElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGMissingGlyphElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGNumber
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGNumber: resolution
    Error while checking status of org/w3c/dom/svg/SVGNumberList
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGNumberList: resolution
    Error while checking status of org/w3c/dom/svg/SVGPaint
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPaint: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSeg
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSeg: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegArcAbs
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegArcAbs: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegArcRel
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegArcRel: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegClosePath
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegClosePath: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegCurvetoCubicAbs
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegCurvetoCubicAbs: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegCurvetoCubicRel
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegCurvetoCubicRel: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegCurvetoCubicSmoothAbs
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegCurvetoCubicSmoothAbs: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegCurvetoCubicSmoothRel
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegCurvetoCubicSmoothRel: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegCurvetoQuadraticAbs
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegCurvetoQuadraticAbs: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegCurvetoQuadraticRel
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegCurvetoQuadraticRel: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegCurvetoQuadraticSmoothAbs
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegCurvetoQuadraticSmoothAbs: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegCurvetoQuadraticSmoothRel
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegCurvetoQuadraticSmoothRel: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegLinetoAbs
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegLinetoAbs: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegLinetoHorizontalAbs
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegLinetoHorizontalAbs: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegLinetoHorizontalRel
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegLinetoHorizontalRel: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegLinetoRel
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegLinetoRel: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegLinetoVerticalAbs
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegLinetoVerticalAbs: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegLinetoVerticalRel
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegLinetoVerticalRel: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegList
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegList: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegMovetoAbs
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegMovetoAbs: resolution
    Error while checking status of org/w3c/dom/svg/SVGPathSegMovetoRel
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPathSegMovetoRel: resolution
    Error while checking status of org/w3c/dom/svg/SVGPatternElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPatternElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGPoint
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPoint: resolution
    Error while checking status of org/w3c/dom/svg/SVGPointList
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPointList: resolution
    Error while checking status of org/w3c/dom/svg/SVGPolygonElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPolygonElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGPolylineElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPolylineElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGPreserveAspectRatio
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGPreserveAspectRatio: resolution
    Error while checking status of org/w3c/dom/svg/SVGRadialGradientElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGRadialGradientElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGRect
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGRect: resolution
    Error while checking status of org/w3c/dom/svg/SVGRectElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGRectElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGRenderingIntent
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGRenderingIntent: resolution
    Error while checking status of org/w3c/dom/svg/SVGSVGElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGSVGElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGScriptElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGScriptElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGSetElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGSetElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGStopElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGStopElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGStringList
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGStringList: resolution
    Error while checking status of org/w3c/dom/svg/SVGStylable
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGStylable: resolution
    Error while checking status of org/w3c/dom/svg/SVGStyleElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGStyleElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGSwitchElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGSwitchElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGSymbolElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGSymbolElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTRefElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTRefElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTSpanElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTSpanElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTests
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTests: resolution
    Error while checking status of org/w3c/dom/svg/SVGTextContentElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTextContentElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTextElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTextElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTextPathElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTextPathElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTextPositioningElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTextPositioningElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTitleElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTitleElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGTransform
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTransform: resolution
    Error while checking status of org/w3c/dom/svg/SVGTransformList
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTransformList: resolution
    Error while checking status of org/w3c/dom/svg/SVGTransformable
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGTransformable: resolution
    Error while checking status of org/w3c/dom/svg/SVGURIReference
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGURIReference: resolution
    Error while checking status of org/w3c/dom/svg/SVGUnitTypes
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGUnitTypes: resolution
    Error while checking status of org/w3c/dom/svg/SVGUseElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGUseElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGVKernElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGVKernElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGViewElement
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGViewElement: resolution
    Error while checking status of org/w3c/dom/svg/SVGViewSpec
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGViewSpec: resolution
    Error while checking status of org/w3c/dom/svg/SVGZoomAndPan
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGZoomAndPan: resolution
    Error while checking status of org/w3c/dom/svg/SVGZoomEvent
    Io exception: Broken pipe
    class org/w3c/dom/svg/SVGZoomEvent: resolution
    Error while checking status of org/w3c/dom/traversal/DocumentTraversal
    Io exception: Broken pipe
    class org/w3c/dom/traversal/DocumentTraversal: resolution
    Error while checking status of org/w3c/dom/traversal/NodeFilter
    Io exception: Broken pipe
    class org/w3c/dom/traversal/NodeFilter: resolution
    Error while checking status of org/w3c/dom/traversal/NodeIterator
    Io exception: Broken pipe
    class org/w3c/dom/traversal/NodeIterator: resolution
    Error while checking status of org/w3c/dom/traversal/TreeWalker
    Io exception: Broken pipe
    class org/w3c/dom/traversal/TreeWalker: resolution
    Error while checking status of org/w3c/dom/views/AbstractView
    Io exception: Broken pipe
    class org/w3c/dom/views/AbstractView: resolution
    Error while checking status of org/w3c/dom/views/DocumentView
    Io exception: Broken pipe
    class org/w3c/dom/views/DocumentView: resolution
    Error while checking status of org/xml/sax/AttributeList
    Io exception: Broken pipe
    class org/xml/sax/AttributeList: resolution
    Error while checking status of org/xml/sax/Attributes
    Io exception: Broken pipe
    class org/xml/sax/Attributes: resolution
    Error while checking status of org/xml/sax/ContentHandler
    Io exception: Broken pipe
    class org/xml/sax/ContentHandler: resolution
    Error while checking status of org/xml/sax/DTDHandler
    Io exception: Broken pipe
    class org/xml/sax/DTDHandler: resolution
    Error while checking status of org/xml/sax/DocumentHandler
    Io exception: Broken pipe
    class org/xml/sax/DocumentHandler: resolution
    Error while checking status of org/xml/sax/EntityResolver
    Io exception: Broken pipe
    class org/xml/sax/EntityResolver: resolution
    Error while checking status of org/xml/sax/ErrorHandler
    Io exception: Broken pipe
    class org/xml/sax/ErrorHandler: resolution
    Error while checking status of org/xml/sax/HandlerBase
    Io exception: Broken pipe
    class org/xml/sax/HandlerBase: resolution
    Error while checking status of org/xml/sax/InputSource
    Io exception: Broken pipe
    class org/xml/sax/InputSource: resolution
    Error while checking status of org/xml/sax/Locator
    Io exception: Broken pipe
    class org/xml/sax/Locator: resolution
    Error while checking status of org/xml/sax/Parser
    Io exception: Broken pipe
    class org/xml/sax/Parser: resolution
    Error while checking status of org/xml/sax/SAXException
    Io exception: Broken pipe
    class org/xml/sax/SAXException: resolution
    Error while checking status of org/xml/sax/SAXNotRecognizedException
    Io exception: Broken pipe
    class org/xml/sax/SAXNotRecognizedException: resolution
    Error while checking status of org/xml/sax/SAXNotSupportedException
    Io exception: Broken pipe
    class org/xml/sax/SAXNotSupportedException: resolution
    Error while checking status of org/xml/sax/SAXParseException
    Io exception: Broken pipe
    class org/xml/sax/SAXParseException: resolution
    Error while checking status of org/xml/sax/XMLFilter
    Io exception: Broken pipe
    class org/xml/sax/XMLFilter: resolution
    Error while checking status of org/xml/sax/XMLReader
    Io exception: Broken pipe
    class org/xml/sax/XMLReader: resolution
    Error while checking status of org/xml/sax/ext/DeclHandler
    Io exception: Broken pipe
    class org/xml/sax/ext/DeclHandler: resolution
    Error while checking status of org/xml/sax/ext/LexicalHandler
    Io exception: Broken pipe
    class org/xml/sax/ext/LexicalHandler: resolution
    Error while checking status of org/xml/sax/helpers/AttributeListImpl
    Io exception: Broken pipe
    class org/xml/sax/helpers/AttributeListImpl: resolution
    Error while checking status of org/xml/sax/helpers/AttributesImpl
    Io exception: Broken pipe
    class org/xml/sax/helpers/AttributesImpl: resolution
    Error while checking status of org/xml/sax/helpers/DefaultHandler
    Io exception: Broken pipe
    class org/xml/sax/helpers/DefaultHandler: resolution
    Error while checking status of org/xml/sax/helpers/LocatorImpl
    Io exception: Broken pipe
    class org/xml/sax/helpers/LocatorImpl: resolution
    Error while checking status of org/xml/sax/helpers/NamespaceSupport$Context
    Io exception: Broken pipe
    class org/xml/sax/helpers/NamespaceSupport$Context: resolution
    Error while checking status of org/xml/sax/helpers/NamespaceSupport
    Io exception: Broken pipe
    class org/xml/sax/helpers/NamespaceSupport: resolution
    Error while checking status of org/xml/sax/helpers/ParserAdapter$AttributeListAdapter
    Io exception: Broken pipe
    class org/xml/sax/helpers/ParserAdapter$AttributeListAdapter: resolution
    Error while checking status of org/xml/sax/helpers/ParserAdapter
    Io exception: Broken pipe
    class org/xml/sax/helpers/ParserAdapter: resolution
    Error while checking status of org/xml/sax/helpers/ParserFactory
    Io exception: Broken pipe
    class org/xml/sax/helpers/ParserFactory: resolution
    Error while checking status of org/xml/sax/helpers/XMLFilterImpl
    Io exception: Broken pipe
    class org/xml/sax/helpers/XMLFilterImpl: resolution
    Error while checking status of org/xml/sax/helpers/XMLReaderAdapter$AttributesAdapter
    Io exception: Broken pipe
    class org/xml/sax/helpers/XMLReaderAdapter$AttributesAdapter: resolution
    Error while checking status of org/xml/sax/helpers/XMLReaderAdapter
    Io exception: Broken pipe
    class org/xml/sax/helpers/XMLReaderAdapter: resolution
    Error while checking status of org/xml/sax/helpers/XMLReaderFactory
    Io exception: Broken pipe
    class org/xml/sax/helpers/XMLReaderFactory: resolution
    oracle.aurora.server.tools.loadjava.ToolsException: Failures occurred during processing
         at oracle.aurora.server.tools.loadjava.LoadJava.process(LoadJava.java:700)
         at oracle.jdeveloper.deploy.tools.OracleLoadjava.deploy(OracleLoadjava.java:116)
         at oracle.jdeveloper.deploy.tools.OracleLoadjava.deploy(OracleLoadjava.java:46)
         at oracle.jdevimpl.deploy.OracleDeployer.deploy(OracleDeployer.java:97)
         at oracle.jdevimpl.deploy.StoredProcHandler.doDeploy(StoredProcHandler.java:428)
         at oracle.jdevimpl.deploy.StoredProcHandler.doDeploy(StoredProcHandler.java:315)
         at oracle.jdevimpl.deploy.StoredProcHandler.doDeploy(StoredProcHandler.java:257)
         at oracle.jdevimpl.deploy.StoredProcProfileDt$2.run(StoredProcProfileDt.java:214)
    #### Deployment incomplete. #### Jul 2, 2003 1:38:58 PM
    And, because the document said there might be errors but can be ignored, I try the next steps and passed successful. Then, when I run the CMSProject.jpr with Jdev, such errors occured:
    oracle.jdeveloper.deploy.DeployException
         at oracle.jdeveloper.deploy.oc4j.ds.Oc4jDataSourcesNode.syncWithConnectionManager(Oc4jDataSourcesNode.java:68)
         at oracle.jdeveloper.runner.Oc4jStarter.transmogrifyConfigFiles(Oc4jStarter.java:861)
         at oracle.jdeveloper.runner.Oc4jStarter.startImpl(Oc4jStarter.java:513)
         at oracle.jdeveloper.runner.Oc4jStarter.start(Oc4jStarter.java:199)
         at oracle.ide.runner.RunProcess.startTarget(RunProcess.java:461)
         at oracle.jdeveloper.runner.JRunProcess.startTarget(JRunProcess.java:457)
         at oracle.ide.runner.RunProcess$2.run(RunProcess.java:404)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:448)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    Caused by: oracle.ide.marshal.xml.Object2DomException: Error parsing XML
         at oracle.ide.marshal.xml.Object2Dom.getDocument(Object2Dom.java:1149)
         at oracle.ide.marshal.xml.Object2Dom.toObject(Object2Dom.java:236)
         at oracle.jdeveloper.deploy.common.DescriptorIO.load(DescriptorIO.java:199)
         at oracle.jdevimpl.deploy.DescriptorNode.getLastSavedDescriptor(DescriptorNode.java:382)
         at oracle.jdevimpl.deploy.DescriptorNode.getDescriptor(DescriptorNode.java:347)
         at oracle.jdeveloper.deploy.oc4j.ds.Oc4jDataSourcesNode.getOc4jDataSources(Oc4jDataSourcesNode.java:55)
         at oracle.jdeveloper.deploy.oc4j.ds.Oc4jDataSourcesNode.syncWithConnectionManager(Oc4jDataSourcesNode.java:62)
         ... 13 more
    oracle.ide.marshal.xml.Object2DomException: Error parsing XML
         at oracle.ide.marshal.xml.Object2Dom.getDocument(Object2Dom.java:1149)
         at oracle.ide.marshal.xml.Object2Dom.toObject(Object2Dom.java:236)
         at oracle.jdeveloper.deploy.common.DescriptorIO.load(DescriptorIO.java:199)
         at oracle.jdevimpl.deploy.DescriptorNode.getLastSavedDescriptor(DescriptorNode.java:382)
         at oracle.jdevimpl.deploy.DescriptorNode.getDescriptor(DescriptorNode.java:347)
         at oracle.jdeveloper.deploy.oc4j.ds.Oc4jDataSourcesNode.getOc4jDataSources(Oc4jDataSourcesNode.java:55)
         at oracle.jdeveloper.deploy.oc4j.ds.Oc4jDataSourcesNode.syncWithConnectionManager(Oc4jDataSourcesNode.java:62)
         at oracle.jdeveloper.runner.Oc4jStarter.transmogrifyConfigFiles(Oc4jStarter.java:861)
         at oracle.jdeveloper.runner.Oc4jStarter.startImpl(Oc4jStarter.java:513)
         at oracle.jdeveloper.runner.Oc4jStarter.start(Oc4jStarter.java:199)
         at oracle.ide.runner.RunProcess.startTarget(RunProcess.java:461)
         at oracle.jdeveloper.runner.JRunProcess.startTarget(JRunProcess.java:457)
         at oracle.ide.runner.RunProcess$2.run(RunProcess.java:404)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:448)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    Pls help me. Thanks.

    Pushkala, thank u for ur help.
    I tried to reinstall my demo in command line, and it worked ok.
    but, i have a new problem at Step 6. to deploy the EAR to OC4J and bind the web app to the site.
    $ java -jar /export/home0/9ias/j2ee/home/admin.jar ormi://localhost:23791 admin -deploy -file ./lib/cmsxdb.ear -deploymentName cmsxdb
    Error: javax.naming.NamingException: Lookup error: java.net.ConnectException: Connection refused; nested exception is:
    java.net.ConnectException: Connection refused
    $
    And I checked rmi.xml and principals.xml
    *****rmi.xml*******
    <?xml version="1.0" standalone='yes'?>
    <!DOCTYPE rmi-server PUBLIC "Orion RMI-server" "http://xmlns.oracle
    .com/ias/dtds/rmi-server.dtd">
    <rmi-server port="23791" >
    <!-- A remote server connection example -->
    <!-- <server host="the.remote.server.com" username="adminUs
    er" password="123abc" /> -->
    <!-- path to the log-file where RMI-events/errors are store
    d -->
    <log>
    <file path="../log/rmi.log" />
    </log>
    </rmi-server>
    *****principals.xml********
    <?xml version="1.0" standalone='yes'?>
    <!DOCTYPE principals PUBLIC "//Evermind - Orion Principals//" "http
    ://xmlns.oracle.com/ias/dtds/principals.dtd">
    <principals>
    <groups>
    <group name="users">
    <description>users</description>
    <permission name="rmi:login" />
    <permission name="com.evermind.server.rmi.R
    MIPermission" />
    </group>
    <group name="guests">
    <description>guests</description>
    </group>
    <group name="administrators">
    <description>administrators</description>
    <permission name="administration" />
    <permission name="com.evermind.server.Admin
    istrationPermission" />
    </group>
    </groups>
    <users>
    <user username="SCOTT" password="TIGER">
    <description>no description</description>
    <group-membership group="users" />
    </user>
    <user username="user" password="456" deactivated="t
    rue">
    <description>The default user</description>
    <group-membership group="users" />
    <group-membership group="guests" />
    </user>
    <user username="anonymous" password="">
    <description>The default guest/anonyomous u
    ser</description>
    <group-membership group="guests" />
    </user>
    <user username="admin" password="" deactivated="tr
    ue">
    <description>The default administrator</des
    cription>
    <group-membership group="users" />
    <group-membership group="guests" />
    <group-membership group="administrators" />
    </user>
    </users>
    </principals>
    So, what can i do ?

  • Error in displaying pivot table

    Hi everyone,
    I have't seen any thread that gives me an answer to my problem.
    I have OBI SE 10.1.3.4 on Windows Server 2003.
    In physical layer i've table REQUEST:
    Pack varchar,
    Seg varchar,
    State varchar,
    SUM_ACT double,
    SUM_PRE double.
    I mapped REQUEST into two tables in Business Model and Mapping:
    DIM_REQUEST:
    Pack varchar PK,
    Seg varchar PK,
    State varchar PK
    FAC_REQUEST:
    Pack varchar FK,
    Seg varchar FK,
    State varchar FK,
    SUM ACT double, -- Sum()
    SUM PRE double, -- Sum()
    PERC double
    PERC is a new logical column: +((SUM ACT)/(SUM PRE))*100+
    Then I mapped FAC_REQUEST into the Presentation layer.
    In Answers I create pivot table with:
         Rows:
         Pack
         Seg
         Measure Labels
         Columns:
         State
         Measures:
         SUM ACT double
         SUM PRE double
         PERC
    Everything is fine, but when I try to add to the pivot table SUM: Columns->Sum (After or Before), I got the following error:
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    +State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] Błąd ogólny. [nQSError: 46036] Asercja+
    wewnętrzna: Warunek rightAtomicTableSet.insert(*tableIter).second, plik .\Src\SQONPathJoinComposer.cpp, linia 671.
    +(HY000)+
    SQL Issued: SELECT Zlecenia.Pack saw_0, Zlecenia.Seg saw_1, Zlecenia.State saw_2, Zlecenia."SUM ACT" saw_3,
    Zlecenia."SUM PRE" saw_4, Zlecenia.PERC saw_5, AGGREGATE(saw_5 BY ), AGGREGATE(saw_5 BY saw_2), AGGREGATE(saw_5 BY saw_0, saw_1) FROM TEST ORDER BY saw_0, saw_1, saw_2
    Any idea?

    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=noclassdeffounderrorIWDAbstractTableColumn&adv=false&sortby=cm_rnd_rankvalue
    java.lang.NoClassDefFoundError
    Error while binding node attribute to a  UI  element (table)
    Problem with NWDS 7
    class def error?

  • Loadjava errors

    Hi,
    I developped java classes on my computer and compiled them. It works.
    Now, I must load them in an oracle database using the loadjava command of the jdk 1.1.8. Unfortunately, that does not work.
    When i try to load the jar files used by my classes in the database, it returns the following errors.
    loadjava -verbose -user sacso1/sacsot@infoexpl2:1528:SACSO_T -thin -resolve w3c.jar
    Error while processing jar w3c.jar
    Exception java.io.IOException: Load Java is unable to handle compressed entries: org/w3c/dom/svg/SVGPointList.class
    resolver :
    initialization complete
    org/w3c/dom/svg/SVGPointList is already resolved
    org/w3c/dom/svg/SVGAnimatedString is already resolved
    org/w3c/dom/css/DocumentCSS is already resolved
    org/w3c/dom/css/Counter is already resolved
    resolving: org/w3c/dom/svg/SVGFEDistantLightElement
    Errors in org/w3c/dom/svg/SVGFEDistantLightElement:
    ORA-29534: referenced object SACSO1.org/w3c/dom/svg/SVGElement could not be resolved
    resolving: org/w3c/dom/svg/SVGFEImageElement
    Errors in org/w3c/dom/svg/SVGFEImageElement:
    ORA-29534: referenced object SACSO1.org/w3c/dom/svg/SVGElement could not be resolved
    resolving: org/w3c/dom/svg/SVGFEMergeElement
    Errors in org/w3c/dom/svg/SVGFEMergeElement:
    ORA-29534: referenced object SACSO1.org/w3c/dom/svg/SVGElement could not be resolved...etc
    Does anyone know what's wrong?
    Thanks in advance
    Bye
    [email protected]

    When a jar file is created, zip compression can be turned on. Actually it may be on by default and you have to turn it off. You could expand the jar file to its directory structure and then re-jar it without the compression. Then you could loadjava it without problems.
    null

  • Xen-4.3 error

    I wonder if anyone knows why i am getting this error when I try to start hvm
    xc: detail: elf_load_binary: phdr 0 at 0x0x7f601b920000 -> 0x0x7f601b9b59d5
    libxl: error: libxl_dom.c:612:libxl__build_hvm: hvm building failed
    libxl: error: libxl_create.c:885:domcreate_rebuild_done: cannot (re-)build domai                                                                             n: -3
    libxl: error: libxl_dm.c:1238:libxl__destroy_device_model: could not find device                                                                             -model's pid for dom 5
    libxl: error: libxl.c:1414:libxl__destroy_domid: libxl__destroy_device_model fai                                                                             led for 5
    libxl: debug: libxl_event.c:1569:libxl__ao_complete: ao 0x18dc300: complete, rc=                                                                             -3
    libxl: debug: libxl_create.c:1227:do_domain_create: ao 0x18dc300: inprogress: po                                                                             ller=0x18dcf70, flags=ic
    libxl: debug: libxl_event.c:1541:libxl__ao__destroy: ao 0x18dc300: destroy
    xc: debug: hypercall buffer: total allocations:1159 total releases:1159
    xc: debug: hypercall buffer: current allocations:0 maximum allocations:4
    xc: debug: hypercall buffer: cache current size:4
    xc: debug: hypercall buffer: cache hits:1151 misses:4 toobig:4

    I had the same problem. Remove texi2html package and everything should be built correctly

  • NULL in not null column

    Hi,
    I have a table
    SQL> desc tabula.M$$USERS;
    Name Null? Type
    USERLOGIN NOT NULL VARCHAR2(20)
    PASSWORD NOT NULL VARCHAR2(30)
    T$USER NOT NULL NUMBER(38)
    USERNAME NOT NULL VARCHAR2(30)
    USERID NOT NULL NUMBER(38)
    USERGROUP NOT NULL NUMBER(38)
    T$LINKID NOT NULL VARCHAR2(50)
    password column is not null.
    Application get ORA-01400 (can't insert to null into not null colum) and also when I run -
    Edited by: user10237262 on Nov 29, 2011 12:54 AM

    Hi welcome to forum
    see below example
    SQL> create table t(empno number(4) not null, ename varchar2(10))
      2  /
    Table created.
    SQL> insert into t values(100,'abc');
    1 row created.
    SQL> insert into t values(200,'def');
    1 row created.
    SQL> insert into t values(null,'def');
    insert into t values(null,'def')
    ERROR at line 1:
    ORA-01400: cannot insert NULL into ("SYSTEM"."T"."EMPNO")
    SQL> desc t
    Name                                      Null?    Type
    EMPNO                                     NOT NULL NUMBER(4)
    ENAME                                              VARCHAR2(10)
    SQL>"Null?" tells the perticular column is null or not...
    Usage
    The description for tables, views, types and synonyms contains the following information:
    each column's name
    whether or not null values are allowed (NULL or NOT NULL) for each column
    refer:
    http://docs.oracle.com/cd/B19306_01/server.102/b14357/ch12019.htm
    Edited by: newbie on Nov 29, 2011 12:54 AM

  • Portal30 Installation/configuration problems.

    Subject: Portal30
    Please share your solution in installing th Oracle Portal 3.0 (included in Oracle 9iAS installation.).
    I am facing problem in its installation on WINDOWS 2000 server.
    The first time I installed the Oracle 9iAS 1.0.2, the Portal30 and Portal30_sso were started . however while trying to configure the Porta-to-go I made some mistakes (What is to be given in the HTTP and HTTPS ports for the Web Integration developer preferences configuration and what is to be given in the settings of Web Integration Server at HTTP/HTTPS Port, User, etc.??).
    Then I made mistake in uninstalling the 9iAS as I straightaway started the Universal Installer for deinstallation without first uninstalling the forms server, report server , etc, using oracle installer, then uninstalling the Portal30 7 Porta30_sso.
    Any way I removed all the entries from the registry and also removed the directories from the disk.
    When I started my installation for 9iAS database cache and Web cache configuration failed. But Portal 30 showed successfull . However there were some error messages dispalyed during the configuration of Portal30 as below:
    loading org/w3c/dom/html/HTMLHeadingElement
    Error while loading
    org/w3c/dom/html/HTMLHeadingElement
    ORA-29506 invalid query derived from using clause.
    ORA-00942 table or view does not exist.
    Error while accessing MD5 table.
    When I did the other post installation configuration and tried to access the Portal30 home page error message as below was displayed :
    call to WPG_SESSION failed.
    error code 4068
    Database login failed. TNS is unable to connect to destination. Invalid TNS address
    supplied or destination is not listeneing.
    The problem could be due to in correct TNS String or it may be due to Listener not started or due to underlying network.
    I checked everything. Listener was started, TNS service name was correct (in the ORACLE_HOME of 9iAS \network\admin directory) and the underlying network was proper. DAD parameters were also correct.
    However, when I checked the PWG_SESSION PACKAGE BODY status It was showing INVALID. When I checked the installation log..it showed error messages like table MD5 not found...
    I am unable to configure my PORTAL30..Please help...or where can I get the solution...
    Thanks with regards
    Riant.
    null

    Subject: Portal30
    Please share your solution in installing th Oracle Portal 3.0 (included in Oracle 9iAS installation.).
    I am facing problem in its installation on WINDOWS 2000 server.
    The first time I installed the Oracle 9iAS 1.0.2, the Portal30 and Portal30_sso were started . however while trying to configure the Porta-to-go I made some mistakes (What is to be given in the HTTP and HTTPS ports for the Web Integration developer preferences configuration and what is to be given in the settings of Web Integration Server at HTTP/HTTPS Port, User, etc.??).
    Then I made mistake in uninstalling the 9iAS as I straightaway started the Universal Installer for deinstallation without first uninstalling the forms server, report server , etc, using oracle installer, then uninstalling the Portal30 7 Porta30_sso.
    Any way I removed all the entries from the registry and also removed the directories from the disk.
    When I started my installation for 9iAS database cache and Web cache configuration failed. But Portal 30 showed successfull . However there were some error messages dispalyed during the configuration of Portal30 as below:
    loading org/w3c/dom/html/HTMLHeadingElement
    Error while loading
    org/w3c/dom/html/HTMLHeadingElement
    ORA-29506 invalid query derived from using clause.
    ORA-00942 table or view does not exist.
    Error while accessing MD5 table.
    When I did the other post installation configuration and tried to access the Portal30 home page error message as below was displayed :
    call to WPG_SESSION failed.
    error code 4068
    Database login failed. TNS is unable to connect to destination. Invalid TNS address
    supplied or destination is not listeneing.
    The problem could be due to in correct TNS String or it may be due to Listener not started or due to underlying network.
    I checked everything. Listener was started, TNS service name was correct (in the ORACLE_HOME of 9iAS \network\admin directory) and the underlying network was proper. DAD parameters were also correct.
    However, when I checked the PWG_SESSION PACKAGE BODY status It was showing INVALID. When I checked the installation log..it showed error messages like table MD5 not found...
    I am unable to configure my PORTAL30..Please help...or where can I get the solution...
    Thanks with regards
    Riant.
    null

  • How to run a client program in Session bean using weblogic 8.1

    Hi
    I am new to weblogic server 8.1. I sucessfully deployed session ejb Session Bean. I created sessionbean jar file and put it it classpath also.
    and also i created sessiobeanclient jar file, it included in class path.
    While running client program it throws exception like noclass def found exception
    plz tell me the right way to run the session ejb program.
    bye

    Hi,
    You have to follow the given steps before you are going to run the client program that invokes the session bean .
    1)set the Weblogic Environment using the tool setWLSEnv
    2)place the Session bean jar file in classpath
    3)run the client program
    Note:If the client has to execute on remote machine we need to copy client class,remote interface, home interface and other classes which are used as
    parameters and return types.
    Regards
    Anilkumar kari

  • Loading XML parser for PL/SQL

    I am working my way thru 'Building Oracle XML Applications' by Steve Muench.
    I am getting a problem when I try to install the XML parser for PL/SQL
    The following errors occur when I try to do
    loadjava -v -r -u xmlbook/xmlbook xmlparserv2.jar
    initialization complete
    loading : oracle/xml/parser/v2/XMLByteReader
    creating : oracle/xml/parser/v2/XMLByteReader
    Error while creating class oracle/xml/parser/v2/XMLByteReader
    ORA-29545: badly formed class: User has attempted to load a class (oracle.xml.parser.v2.XMLByteReader) into a restricted package. Permission can be granted using dbms_java.grant_permission(<user>, LoadClassInPackage...
    loading : oracle/xml/parser/v2/PrintDriver
    creating : oracle/xml/parser/v2/PrintDriver
    Error while creating class oracle/xml/parser/v2/PrintDriver
    ORA-29545: badly formed class: User has attempted to load a class (oracle.xml.parser.v2.PrintDriver) into a restricted package. Permission can be granted using dbms_java.grant_permission(<user>, LoadClassInPackage...
    resolving: oracle/xml/parser/v2/PrintDriver
    Error while resolving class oracle/xml/parser/v2/PrintDriver
    ORA-04043: object /a065289c_PrintDriver does not exist
    resolving: org/w3c/dom/html/HTMLAnchorElement
    Error while resolving class org/w3c/dom/html/HTMLAnchorElement
    ORA-04043: object /564607d_HTMLAnchorElement does not exist
    About 20 classes get loaded correctly. All the rest get ORA-29545 or ORA-04043 errors.
    I expect the ORA-04043 errors are a result of the earlier errors.
    The documentation seems to indicate that there is no need to do
    dbms_java.grant_permission to load into your own schema.
    I have NT4 (sp6)
    Oracle 8.1.7
    xmlparserv2.jar dated 24/8/2001 17:01 size 1,177,259
    xmlparserv2_2027.jar gives the same errors.
    Any help would be appreciated.
    null

    Was it definitely xmlparsev2.jar that you had to load?
    I recently started going through some of these examples as well and found that the standard xml parser was there but that I needed to load the xml parser for PL/SQL. I did this using loadjava from a subdirectory within the xdk directory and everything worked fine.

  • Problem to load XML SQL Utility into other user

    Hi,
    I need help to load XML Utility into other user than
    "scott"tiger".
    I loaded both xmlparser.jar and oraclexmlsql.jar into
    "scott/tiger", it works and creating functions and testing work
    fine. But when change USER_PASSWORD to another user, it gave me
    some errors like
    creating : org/xml/sax/helpers/AttributeListImpl
    Error while creating class org/xml/sax/helpers/AttributeListImpl
    ORA-29506: invalid query derived from USING clause
    ORA-00942: table or view does not exist
    Error while accessing MD5 table
    ORA-00942: table or view does not exist
    Do I need create any table or view for my another oracle account?
    Or did I missed any thing. From the installation instruction, I
    cano not find any about creating table or view before I load the
    two jar files.
    Thanks
    Yuping
    null

    Hi Yuping,
    Great to hear that! Thx for posting the solution to the
    problem! Let us know if you have any problems with the utility
    or if u need any enhancements!
    Thx
    Murali
    Yuping Zhu (guest) wrote:
    : Hi,Murali,
    : The problem is fixed now. When load xmlparser into the user, it
    : creates two tables automatically, my mistake is I did not grant
    : "create table" privilege to the user. After I granted the
    : privilege to it, it works fine.
    : Thanks!
    : Yuping
    : Murali K (guest) wrote:
    : : Hi,
    : : I will check this out with the Java folks and let u know
    : : Thx
    : : Murali K
    : : Yuping Zhu (guest) wrote:
    : : : Hi, Murali
    : : : I'm using Oracle8i on Solaris 2.6. When I load xmlparser
    : using
    : : : loadjava -resolve -verbose -user $USER_PASSWORD
    xmlparser.jar
    : : : I get error message and I catch part of erros
    : : : PS, I can load it into scott/tiger.
    : : : Thanks!
    : : : Yuping
    : : : loading : org/w3c/dom/html/HTMLLegendElement
    : : : Error while loading org/w3c/dom/html/HTMLLegendElement
    : : : ORA-04068: existing state of packages has been
    discarded
    : : : ORA-04063: package body "IOEXML.LOADLOBS" has errors
    : : : ORA-06508: PL/SQL: could not find program unit being called
    : : : ORA-06512: at line 1
    : : : creating : org/w3c/dom/html/HTMLLegendElement
    : : : Error while creating class
    org/w3c/dom/html/HTMLLegendElement
    : : : ORA-29506: invalid query derived from USING clause
    : : : ORA-00942: table or view does not exist
    : : : Error while accessing MD5 table
    : : : ORA-00942: table or view does not exist
    : : : loading : org/w3c/dom/html/HTMLImageElement
    : : : Error while loading org/w3c/dom/html/HTMLImageElement
    : : : ORA-04068: existing state of packages has been
    discarded
    : : : ORA-04063: package body "IOEXML.LOADLOBS" has errors
    : : : ORA-06508: PL/SQL: could not find program unit being called
    : : : ORA-06512: at line 1
    : : : creating : org/w3c/dom/html/HTMLImageElement
    : : : Error while creating class
    org/w3c/dom/html/HTMLImageElement
    : : : ORA-29506: invalid query derived from USING clause
    : : : ORA-00942: table or view does not exist
    : : : Error while accessing MD5 table
    : : : ORA-00942: table or view does not exist
    : : : loading : oracle/xml/parser/v2/XSLException
    : : : Error while loading oracle/xml/parser/v2/XSLException
    : : : ORA-04068: existing state of packages has been
    discarded
    : : : ORA-04063: package body "IOEXML.LOADLOBS" has errors
    : : : ORA-06508: PL/SQL: could not find program unit being called
    : : : ORA-06512: at line 1
    : : : Murali K (guest) wrote:
    : : : : Hi Yuping,
    : : : : I tried the same on a 8i database and it seems to be
    : : working
    : : : : fine. (loading into two schemas). In fact I just created
    : the
    : : : : other user and it doesnt have any tables or anything in
    it.
    : : : : You do not need to create anything (table/view) extra
    for
    : : : these
    : : : : to work.
    : : : : Which database (Oracle8 or 8i) are u using?
    : : : : Thanks
    : : : : Murali
    : : : : Yuping Zhu (guest) wrote:
    : : : : : Hi,
    : : : : : I need help to load XML Utility into other user than
    : : : : : "scott"tiger".
    : : : : : I loaded both xmlparser.jar and oraclexmlsql.jar into
    : : : : : "scott/tiger", it works and creating functions and
    : testing
    : : : work
    : : : : : fine. But when change USER_PASSWORD to another user,
    it
    : : gave
    : : : me
    : : : : : some errors like
    : : : : : creating : org/xml/sax/helpers/AttributeListImpl
    : : : : : Error while creating class
    : : : : org/xml/sax/helpers/AttributeListImpl
    : : : : : ORA-29506: invalid query derived from USING clause
    : : : : : ORA-00942: table or view does not exist
    : : : : : Error while accessing MD5 table
    : : : : : ORA-00942: table or view does not exist
    : : : : : Do I need create any table or view for my another
    oracle
    : : : : account?
    : : : : : Or did I missed any thing. From the installation
    : : instruction,
    : : : I
    : : : : : cano not find any about creating table or view before
    I
    : : load
    : : : : the
    : : : : : two jar files.
    : : : : : Thanks
    : : : : : Yuping
    null

Maybe you are looking for

  • Query related to BW - BEx

    Hello Experts, We have BEx configured in one of our system and it has been refreshed from production recently. When user try to login it to SAP Query Designer: they get below prompt > Terminate : The BW server has deactiviated this version of Query d

  • Mac mini solid state hard drive does that replace the 2 by 1T hard drive

    mac mini solid state hard drive does that replace the 2 by 1T hard drive

  • Something wrong with the Profile page of all users in OIM

    Hi All, I am not sure what is happening but every time I login with some user id and password in to the OIM and click on Profile for the user in the Self Service Console, I get this error thrown: java.lang.NullPointerException on the UI. Also in the

  • Why do i need to use a credit card to do updates

    I don't want to set up iTunes with a credit card, however, when I try to update something like iPhoto it requires me to have a credit card.  If it is a free update then why do I need to put in a credit card number?

  • Control Key/Mouse Selecting

    I've recently updated my OS X software to 10.4.8 and have noticed a bug with the update. When trying to "label" a folder or item with a particular colour using the "Control" key and mouse combination, the usual drop down menu that should come up no l