DOM HTML - FOP

Hello, I'm not new to Java, but new to using DOM Documents and FOP.
Here is my case:
I have to make the following object / method:
- Take in a stream of HTML (String or whatever).
- Process and output a PDF of that HTML.
I know I know, FOP is suited to transforming XML / XSL to PDF, but in my very specific case, it has to be HTML to PDF.
So here is what I tried:
- Make a new HTMLDocumentImpl.
- Open it.
- htmlDoc.write(myHtmlString).
- Close it.
It doesn't work, it is as if the write() method simply refuses to empty out its buffer inside the HTMLDocumentImpl and parse it into the DOM Document structure. (The buffer IS filled with my html, but when I close, it doesn't write it in...)
I tried something else:
- Make a DOMParser.
- Set the parser's property "...document-class-name" to HTMLDocumentImpl.
- Create InputSource with the StringReader.
- parser.parse(InputSource).
- parser.getDocument.
The resulting HTMLDocument seemed to be ok (in the debugger view the html properties were set inside). However, when I send this Document to a Driver set to output PDF and tell the Driver to render(htmlDocument), I get an error saying that Unsupported Element Encountered: null and goes on saying it expected an XSL-FO element...
I have been searching all day for information on how FOP handles HTMLDocuments or something like that and haven't been able to find anything.
Could anyone help me by either telling me what I'm doing wrong, or by telling me of a quick and easy way to do HTML -> PDF...
Thanks everyone!

One easy way:
You have XHTML.
It suffices to write a XSL stylesheet, use XALAN to
transform the XHTML into xsl-fo (according to your
XSL), and then use FOP to create the PDF from xsl-fo.Here is a simple example:
use the fop scripts (fop.sh or fop.bat) to transform the following into PDF with e.g../fop.sh -xml test.html -xsl test.xsl -pdf test.pdffile test.html<?xml version="1.0" encoding="utf-8"?>
<html>
<body>
A
simple
example.
</body>
</html>Note the xml declaration in line 1.
file test.xsl<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:fo="http://www.w3.org/1999/XSL/Format"
                version="1.0">
  <xsl:output method="xml" indent="yes"/>
  <xsl:template match="/">
      <fo:root>
          <fo:layout-master-set>
              <fo:simple-page-master master-name="regular"
                                     page-height="29.7cm"
                                     page-width="21cm"
                                     margin-top="1cm"
                                     margin-bottom="1.5cm"
                                     margin-left="2.5cm"
                                     margin-right="2.5cm">
                  <fo:region-body margin-top="1cm"
                                  margin-bottom="1.5cm"/>
                  <fo:region-before extent="1cm"/>
                  <fo:region-after extent="0.5cm"/>
              </fo:simple-page-master>
          </fo:layout-master-set>
          <xsl:apply-templates select="html"/>
      </fo:root>
  </xsl:template>
  <xsl:template match="html">
    <fo:page-sequence master-reference="regular"
                      initial-page-number="1">
      <fo:flow flow-name="xsl-region-body">
         <xsl:apply-templates select="body"/>
      </fo:flow>
    </fo:page-sequence>
  </xsl:template>
  <xsl:template match="body">
    <fo:block>
    <xsl:apply-templates/>
    </fo:block>
  </xsl:template>
  <xsl:template match="br">
    <fo:inline linefeed-treatment="preserve"
               wrap-option="no-wrap"
               white-space-collapse="false"
               white-space-treatment="preserve"><xsl:text disable-output-escaping="yes">
</xsl:text></fo:inline>
  </xsl:template>
</xsl:stylesheet>Yes, it is rather time-consuming to write those stylesheets :-(

Similar Messages

  • Obtaining org.w3c.dom.html implementation?

    I'm would like to obtain implementations of the org.w3c.dom.html interfaces so that I can create HTML documents/fragments from scratch (as opposed to parsing files). After some pretty lengthy investigation (and much frustration), it looks like I need to (as one possible option) use JAXP to obtain implementation-independent versions of those interfaces. I still can't figure out how to wire everything up.
    Any help would be appreciated.
    Thanks,
    Gary

    I've been able to get an instance of DOMImplementation using the following code:
    private DOMImplementation getDomImplementation() throws ParserConfigurationException {
        DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
        DocumentBuilder builder = factory.newDocumentBuilder();
        return builder.getDOMImplementation();
        // // get an instance of the DOMImplementation registry
        // DOMImplementationRegistry registry =
        // DOMImplementationRegistry.newInstance();
        // // get a DOM implementation the Level 3 XML module
        // return registry.getDOMImplementation("XML 3.0");
    }I tried casting the returned DOMImplementation to HTMLDOMImplementation but received a cast exception.
    The commented code was actually my first unsuccessful attempt (it would return null). I tried calling
    System.getProperty("org.w3c.dom.DOMImplementationSourceList") just to see what was listed and it also returned null. I'm guessing that maybe I need to configure/install/register/etc. an implementation but I'm not sure where to start with that. I downloaded the J2SE 5.0 source code and discovered the com.sun.org.apache.html.internal.dom package which contains implementations of all the interfaces I need but I'm not sure how to point to them.
    This seems much harder than it should be. Any help would be appreciated.
    Thanks,
    Gary

  • Org.w3c.dom.html and org.w3c.dom.ls ?

    Please help.
    I use JAXB in VisualAge. When I imported jar files for JAXB from jwsdp-1.1. I have some errors.
    In jwsdp-1.1. I can't found classes from packages org.w3c.dom.html and org.w3c.dom.ls.
    What jar files and where I have to download?

    org.w3c.dom.DOMErrorHandler is a DOM Level 3 class.
    The Xerces2 Java Parser 2.4.0 contains an implementation of the Document Object Model Level 3.
    Get Xerces-J-src.2.4.0.zip from http://xml.apache.org/dist/xerces-j/
    DOMErrorHandler is in the xerces-2_4_0/src/dom3/org/w3c/dom/ drectory.
    Xerces-J-src.2.4.0.zip also has the org.w3c.dom.html and org.w3c.dom.ls packages.

  • 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.

  • FOP + servlet, external graphic streamed from another servlet

    Howdy,
    I currently have a servlet that assembles fragments of XHTML into a single document and then either sends it as straight XHTML or transforms it into Formatting Objects using XSLT. The FO are then used to generate a PDF file.
    The rub is with the external graphic src attribute in the FO. The image data has to be streamed using a servlet and while a relative URL works fine for sending straight HTML, FOP can't find the servlet specified in the translated external graphic src attribute.
    The first problem is that I do not know how to get the current URL from the servlet context or some other source. I would rather not hard code this value for obvious reasons but if I can obtain it from the servlet it will be easy to prepend it to the graphic src attributes.
    The second problem is that when I achieve this, I'm sure FOP will throw a wobbly because it can't determine the image type from the URL. I'm thinking that this can be fixed by adding the appropriate image extension to the servlet name in the URL then messing about with servlet mapping in Tomcat. The first problem is my biggest concern right now.
    Has anyone met this problem before or know of a standard way around it? Any suggestions would be greatly appreciated.
    Cheers.

    I can only try and move it there with my Jedi mind power...rather than commit the ultimate sin of crossposting.

  • DOM Traversal and API documentation (missing?)

    Dear Community,
    I recently dived into the world of XML. So far I have done some reading and try-outs. What I am wondering about now is:
    Why are there packages for org.w3c.dom.html or events or ls or traversal etc given to me when I am importing them in eclipse that are not given in the API specifications?
    For instance. I wanted to try some stuff with the traversal Module of DOM. Therefore I have to import org.w3c.dom.traversal.*
    Well, this works fine. I was able to play around with some examples. But when I tried to find this package in the API specifications, I didn't find it. There were evens and ls etc...but traversal didn't show up!
    So, is there a reason that some packages with their interfaces are documented and others are not? And why are there packages available when they are not documented, at all? Yes, I know. I could got to w3c.org and have a look there since this is will give me all the infos I need. But, frankly, I don't understand it. If one would argument this way, then why put in the w3c package at all?
    But maybe there is a reason for this which I am not aware of. Or is there any extra API available compareable to the APIs for JSP or Java Servlets? These are extra packages and, of course, extra technologies since one needs Tomcat etc...
    So, maybe someone here could enlighten me? :-)
    Regards
    Marcel

    Not all classes are necessarily documented. For example sometimes the interface is documented, and the implementations are not, for a variety of reasons but largely because you're supposed to work with the interface only.
    However in this case, I'm guessing that you're using an added library, and you're looking at the documentation for something else.

  • Submiting HTML Forms with JavaFX Webview

    I've long been searching for a good web robot framework. And I also need a gui for my robot.
    So w/ the advent of JAVAFX Webengine it seemed my needs have been met finally. Specially because on the webview tutorial here , Alla Redko says: "+It supports user interaction such as navigating links *and submitting HTML forms*+".
    But after looking at the api it doesn't seem that webengine supports submiting forms, only loading pages w/ the load() method. I guess I could populate the form fields and submit them w/ executeScript() but that's just sloppy.
    Is there a way to actually submit forms w/ webengine? Are there plans to implement this feature, analogous to the load() method?
    Thanks,
    JC

    Yea, as I mentioned in the first post, I could do all that w/ JS but it's just sloppy, since I'm using Java language, not JS.
    The finding certain fields part is easy w/ the Document model and xpath, it's the populating the fields and submiting the form along w/ its hidden input fields that is the missing part.
    Does anyone know if these things are planned for the future of Webview/Webengine?You can already do this in Java today using the existing APIs if you so wished.
    import javafx.application.Application;
    import javafx.beans.property.*;
    import javafx.beans.value.*;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.layout.*;
    import javafx.scene.web.*;
    import javafx.stage.Stage;
    import org.w3c.dom.*;
    import org.w3c.dom.html.*;
    public class WebViewFormPost extends Application {
      public static void main(String[] args) { launch(args); }
      @Override public void start(Stage stage) {
        final TextField fxUsername = new TextField();
        final TextField fxPassword = new PasswordField();
        final BooleanProperty loginAttempted = new SimpleBooleanProperty(false);
        final WebView webView = new WebView();
        final WebEngine engine = webView.getEngine();
        engine.documentProperty().addListener(new ChangeListener<Document>() {
          @Override public void changed(ObservableValue<? extends Document> ov, Document oldDoc, Document doc) {
            if (doc != null && !loginAttempted.get()) {
              if (doc.getElementsByTagName("form").getLength() > 0) {
                HTMLFormElement form = (HTMLFormElement) doc.getElementsByTagName("form").item(0);
                if ("/oam/server/sso/auth_cred_submit".equals(form.getAttribute("action"))) {
                  HTMLInputElement username = null;
                  HTMLInputElement password = null;
                  NodeList nodes = form.getElementsByTagName("input");
                  for (int i = 0; i < nodes.getLength(); i++) {
                    HTMLInputElement input = (HTMLInputElement) nodes.item(i);
                    switch (input.getName()) {
                      case "ssousername":
                        username = input;
                        break;
                      case "password":
                        password = input;
                        break;
                  if (username != null && password != null) {
                    loginAttempted.set(true);
                    username.setValue(fxUsername.getText());
                    password.setValue(fxPassword.getText());
                    form.submit();
                    System.out.println("Submitted login for user: " + username);
        engine.getLoadWorker().exceptionProperty().addListener(new ChangeListener<Throwable>() {
          @Override public void changed(ObservableValue<? extends Throwable> ov, Throwable oldException, Throwable exception) {
            System.out.println("Load Exception: " + exception);
        GridPane inputGrid = new GridPane();
        inputGrid.setHgap(10);
        inputGrid.setVgap(10);
        inputGrid.addRow(0, new Label("Username: "), fxUsername);
        inputGrid.addRow(0, new Label("Password: "), fxPassword);
        Button fxLoginButton = new Button("Login to Oracle Forums");
        fxLoginButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override public void handle(ActionEvent t) {
            if (notEmpty(fxPassword.getText()) && notEmpty(fxPassword.getText())) {
              loginAttempted.set(false);
              engine.load("https://forums.oracle.com/forums/login!withRedirect.jspa");
        final VBox layout = new VBox(10);
        layout.setStyle("-fx-background-color: cornsilk; -fx-padding: 10;");
        layout.getChildren().addAll(
          new Label("Enter your Oracle Web Account credentials"),
          inputGrid,
          fxLoginButton,
          webView
        stage.setScene(new Scene(layout));
        stage.show();
      private boolean notEmpty(String s) {
        return s != null && !"".equals(s);
    }Personally, I think using JavaScript via engine.executeScript calls in combination with jquery might be a less messy solution (as I don't like writing against the raw dom apis), but I understand that there are valid reasons why you might prefer to use a Java only solution.
    https://gist.github.com/jewelsea/3077942 "Embeds jQuery in a document loaded into a WebView."

  • Convert doc to rtf or doc to html

    Is there any approach to convert the doc files to html or rtf format? The appache poi just provides the read facilities not the converting facilities.
    It's not the problem to convert from rtf to html using XSL transformation.
    But what about doc to rtf. Probably there already written solutions using poi or smth. else?

    Two projects that spring to mind are Apache POI and Apache FOP.
    POI:
    http://jakarta.apache.org/poi/index.html
    FOP:
    http://xmlgraphics.apache.org/fop/
    Either way, you are in for some tough development if you want to do this using Java, and you might want to consider switch to a more suitable platform such as .NET. Word documents are highly microsoft specific so you will want to use a microsoft platform to work with them for the least amount of headaches and risks.

  • Is there better HTML support in swing?

    Is there a better HTML implementation than the one found in swing.text.html package that is freely available? (eg: the HTML parser that supports HTML 4, CSS, and better renderer than JEditorPane)
    thanks

    I understand you're desire to find a different package. I've been exploring the org.w3c.dom.html package from the W3C.

  • 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 ?

  • PDF Reports in servlets

    Are there any tools available to generate fairly larger reports ( 50-200
              pages) in PDF through
              servlets. Most of the available components ( KL groups Pagelayout ,
              EnterpriseSoft ERW ) are memory intensive
              and do not scale well for a large number of users.
              

    Yes.
              http://xml.apache.org/fop/index.html
              FOP is the world's first print formatter driven by XSL formatting objects.
              It is a Java application that reads a formatting object tree and then turns
              it into a PDF document. The formatting object tree, can be in the form of an
              XML document (output by an XSLT engine like XT or Xalan) or can be passed in
              memory as a DOM Document or (in the case of XT) SAX events.
              Peace,
              Cameron Purdy
              Tangosol, Inc.
              http://www.tangosol.com
              +1.617.623.5782
              WebLogic Consulting Available
              "John Doe" <[email protected]> wrote in message
              news:[email protected]..
              > Are there any tools available to generate fairly larger reports ( 50-200
              > pages) in PDF through
              > servlets. Most of the available components ( KL groups Pagelayout ,
              > EnterpriseSoft ERW ) are memory intensive
              > and do not scale well for a large number of users.
              >
              >
              

  • Creating Dynamic PDF file

    Hi ,
    I need to create PDF file in my JSP/servlet application. After we do a
    database search , we are supposed to create a PDF file using the search
    result , so that user can print it .
    I understand Apache-cocoon has similar XML API's. But when I looked into
    cocoon's document I found it needs servlet2.x for servlet operation. I
    am using weblogic4.51 which comes with servlet1.x .
    Any suggestion/ideas ?
    Thanks

    http://xml.apache.org/fop/index.html
    "FOP is the world's first print formatter driven by XSL formatting objects.
    It is a Java application that reads a formatting object tree and then turns
    it into a PDF document. The formatting object tree, can be in the form of an
    XML document (output by an XSLT engine like XT or Xalan) or can be passed in
    memory as a DOM Document or (in the case of XT) SAX events."
    Cameron Purdy
    Tangosol, Inc.
    http://www.tangosol.com
    +1.617.623.5782
    WebLogic Consulting Available
    "Chiranjib Misra" <[email protected]> wrote in message
    news:[email protected]..
    Hi ,
    I need to create PDF file in my JSP/servlet application. After we do a
    database search , we are supposed to create a PDF file using the search
    result , so that user can print it .
    I understand Apache-cocoon has similar XML API's. But when I looked into
    cocoon's document I found it needs servlet2.x for servlet operation. I
    am using weblogic4.51 which comes with servlet1.x .
    Any suggestion/ideas ?
    Thanks

  • OEPE exception with the latest plugin version.

    Hi,
    I updated my OEPE eclipe plugin to the latest version and I got this exception:
    !ENTRY org.eclipse.core.resources 4 75 2012-01-30 13:38:39.578
    !MESSAGE Errors occurred during the build.
    !SUBENTRY 1 org.eclipse.wst.common.project.facet.core 4 75 2012-01-30 13:38:39.578
    !MESSAGE Errors running builder 'Faceted Project Validation Builder' on project 'NTCSCacheCore'.
    !STACK 0
    java.lang.ExceptionInInitializerError
    at oracle.eclipse.tools.weblogic.WlsRuntimeUtil.getWlsRuntimeComponent(WlsRuntimeUtil.java:92)
    at oracle.eclipse.tools.weblogic.internal.validation.WlsRuntimeValidator.validate(WlsRuntimeValidator.java:45)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedProjectValidationBuilder.build(FacetedProjectValidationBuilder.java:132)
    at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:728)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:199)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:239)
    at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:292)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:295)
    at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:351)
    at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:374)
    at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143)
    at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
    Caused by: java.lang.IllegalArgumentException: Version 10.0 of runtime component type com.bea.weblogic has not been defined.
    at org.eclipse.wst.common.project.facet.core.util.internal.Versionable.getVersion(Versionable.java:80)
    at org.eclipse.wst.common.project.facet.core.runtime.internal.RuntimeComponentType.getVersion(RuntimeComponentType.java:1)
    at oracle.eclipse.tools.weblogic.server.WebLogicServerRuntimeComponentType.<clinit>(WebLogicServerRuntimeComponentType.java:19)
    ... 15 more
    Any idea why this is happening when I updated the plugin.
    === Eclipse configuration ===
    *** Date: Monday, January 30, 2012 2:03:58 PM Western European Time
    *** Platform Details:
    *** System properties:
    awt.toolkit=sun.awt.X11.XToolkit
    eclipse.application=org.eclipse.ui.ide.workbench
    eclipse.buildId=M20110909-1335
    eclipse.commands=-os
    linux
    -ws
    gtk
    -arch
    x86
    -showsplash
    /home/guerra/devel/ide/indigo/eclipse//plugins/org.eclipse.platform_3.7.1.v201109091335/splash.bmp
    -launcher
    /home/guerra/devel/ide/indigo/eclipse/eclipse
    -name
    Eclipse
    --launcher.library
    /home/guerra/devel/ide/indigo/eclipse//plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.100.v20110505/eclipse_1407.so
    -startup
    /home/guerra/devel/ide/indigo/eclipse//plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
    --launcher.overrideVmargs
    -product
    org.eclipse.epp.package.jee.product
    -vm
    /usr/local/java/jdk1.7.0/bin/../jre/lib/i386/client/libjvm.so
    eclipse.home.location=file:/home/guerra/devel/ide/indigo/eclipse/
    eclipse.launcher=/home/guerra/devel/ide/indigo/eclipse/eclipse
    eclipse.launcher.name=Eclipse
    [email protected]/../p2/
    eclipse.p2.profile=epp.package.jee
    eclipse.product=org.eclipse.epp.package.jee.product
    eclipse.startTime=1327931411385
    eclipse.vm=/usr/local/java/jdk1.7.0/bin/../jre/lib/i386/client/libjvm.so
    eclipse.vmargs=-Djava.library.path=/usr/lib/jni
    -Dosgi.requiredJavaVersion=1.5
    -XX:MaxPermSize=256m
    -Xms40m
    -Xmx512m
    -Djava.class.path=/home/guerra/devel/ide/indigo/eclipse//plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
    equinox.use.ds=true
    file.encoding=UTF-8
    file.encoding.pkg=sun.io
    file.separator=/
    java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment
    java.awt.printerjob=sun.print.PSPrinterJob
    java.class.path=/home/guerra/devel/ide/indigo/eclipse//plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
    java.class.version=51.0
    java.endorsed.dirs=/usr/local/java/jdk1.7.0/jre/lib/endorsed
    java.ext.dirs=/usr/local/java/jdk1.7.0/jre/lib/ext:/usr/java/packages/lib/ext
    java.home=/usr/local/java/jdk1.7.0/jre
    java.io.tmpdir=/tmp
    java.library.path=/usr/lib/jni
    java.runtime.name=Java(TM) SE Runtime Environment
    java.runtime.version=1.7.0-b147
    java.specification.name=Java Platform API Specification
    java.specification.vendor=Oracle Corporation
    java.specification.version=1.7
    java.vendor=Oracle Corporation
    java.vendor.url=http://java.oracle.com/
    java.vendor.url.bug=http://bugreport.sun.com/bugreport/
    java.version=1.7.0
    java.vm.info=mixed mode
    java.vm.name=Java HotSpot(TM) Client VM
    java.vm.specification.name=Java Virtual Machine Specification
    java.vm.specification.vendor=Oracle Corporation
    java.vm.specification.version=1.7
    java.vm.vendor=Oracle Corporation
    java.vm.version=21.0-b17
    line.separator=
    org.apache.commons.logging.Log=org.apache.commons.logging.impl.NoOpLog
    org.eclipse.equinox.launcher.splash.location=/home/guerra/devel/ide/indigo/eclipse//plugins/org.eclipse.platform_3.7.1.v201109091335/splash.bmp
    org.eclipse.equinox.simpleconfigurator.configUrl=file:org.eclipse.equinox.simpleconfigurator/bundles.info
    org.eclipse.update.reconcile=false
    org.osgi.framework.executionenvironment=OSGi/Minimum-1.0,OSGi/Minimum-1.1,OSGi/Minimum-1.2,JRE-1.1,J2SE-1.2,J2SE-1.3,J2SE-1.4,J2SE-1.5,JavaSE-1.6,JavaSE-1.7
    org.osgi.framework.language=en
    org.osgi.framework.os.name=Linux
    org.osgi.framework.os.version=2.6.35
    org.osgi.framework.processor=x86
    org.osgi.framework.system.capabilities=osgi.ee; osgi.ee="OSGi/Minimum"; version:List<Version>="1.0, 1.1, 1.2",osgi.ee; osgi.ee="JavaSE"; version:List<Version>="1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7"
    org.osgi.framework.system.packages=javax.accessibility,javax.activation,javax.activity,javax.annotation,javax.annotation.processing,javax.crypto,javax.crypto.interfaces,javax.crypto.spec,javax.imageio,javax.imageio.event,javax.imageio.metadata,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,javax.imageio.spi,javax.imageio.stream,javax.jws,javax.jws.soap,javax.lang.model,javax.lang.model.element,javax.lang.model.type,javax.lang.model.util,javax.management,javax.management.event,javax.management.loading,javax.management.modelmbean,javax.management.monitor,javax.management.namespace,javax.management.openmbean,javax.management.relation,javax.management.remote,javax.management.remote.rmi,javax.management.timer,javax.naming,javax.naming.directory,javax.naming.event,javax.naming.ldap,javax.naming.spi,javax.net,javax.net.ssl,javax.print,javax.print.attribute,javax.print.attribute.standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.rmi.ssl,javax.script,javax.security.auth,javax.security.auth.callback,javax.security.auth.kerberos,javax.security.auth.login,javax.security.auth.spi,javax.security.auth.x500,javax.security.cert,javax.security.sasl,javax.sound.midi,javax.sound.midi.spi,javax.sound.sampled,javax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.sql.rowset.serial,javax.sql.rowset.spi,javax.swing,javax.swing.border,javax.swing.colorchooser,javax.swing.event,javax.swing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,javax.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.nimbus,javax.swing.plaf.synth,javax.swing.table,javax.swing.text,javax.swing.text.html,javax.swing.text.html.parser,javax.swing.text.rtf,javax.swing.tree,javax.swing.undo,javax.tools,javax.transaction,javax.transaction.xa,javax.xml,javax.xml.bind,javax.xml.bind.annotation,javax.xml.bind.annotation.adapters,javax.xml.bind.attachment,javax.xml.bind.helpers,javax.xml.bind.util,javax.xml.crypto,javax.xml.crypto.dom,javax.xml.crypto.dsig,javax.xml.crypto.dsig.dom,javax.xml.crypto.dsig.keyinfo,javax.xml.crypto.dsig.spec,javax.xml.datatype,javax.xml.namespace,javax.xml.parsers,javax.xml.soap,javax.xml.stream,javax.xml.stream.events,javax.xml.stream.util,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.sax,javax.xml.transform.stax,javax.xml.transform.stream,javax.xml.validation,javax.xml.ws,javax.xml.ws.handler,javax.xml.ws.handler.soap,javax.xml.ws.http,javax.xml.ws.soap,javax.xml.ws.spi,javax.xml.ws.spi.http,javax.xml.ws.wsaddressing,javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,org.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.DynAnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,org.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNaming.NamingContextExtPackage,org.omg.CosNaming.NamingContextPackage,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org.omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPackage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer,org.omg.PortableServer.CurrentPackage,org.omg.PortableServer.POAManagerPackage,org.omg.PortableServer.POAPackage,org.omg.PortableServer.portable,org.omg.PortableServer.ServantLocatorPackage,org.omg.SendingContext,org.omg.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap,org.w3c.dom.css,org.w3c.dom.events,org.w3c.dom.html,org.w3c.dom.ls,org.w3c.dom.ranges,org.w3c.dom.stylesheets,org.w3c.dom.traversal,org.w3c.dom.views,org.w3c.dom.xpath,org.xml.sax,org.xml.sax.ext,org.xml.sax.helpers
    org.osgi.framework.uuid=d0405f54-494b-0011-168c-a1c3104915a9
    org.osgi.framework.vendor=Eclipse
    org.osgi.framework.version=1.6.0
    org.osgi.supports.framework.extension=true
    org.osgi.supports.framework.fragment=true
    org.osgi.supports.framework.requirebundle=true
    os.arch=i386
    os.name=Linux
    os.version=2.6.35-32-generic
    osgi.arch=x86
    osgi.bundles=reference:file:javax.transaction_1.1.1.v201105210645.jar,reference:file:org.eclipse.equinox.simpleconfigurator_1.0.200.v20110502-1955.jar@1:start
    osgi.bundles.defaultStartLevel=4
    osgi.bundlestore=/home/guerra/devel/ide/indigo/eclipse/configuration/org.eclipse.osgi/bundles
    osgi.configuration.area=file:/home/guerra/devel/ide/indigo/eclipse/configuration/
    osgi.framework=file:/home/guerra/devel/ide/indigo/eclipse/plugins/org.eclipse.osgi_3.7.1.R37x_v20110808-1106.jar
    osgi.framework.extensions=reference:file:javax.transaction_1.1.1.v201105210645.jar
    osgi.framework.shape=jar
    osgi.framework.version=3.7.1.R37x_v20110808-1106
    osgi.frameworkClassPath=., file:/home/guerra/devel/ide/indigo/eclipse/plugins/javax.transaction_1.1.1.v201105210645.jar
    osgi.install.area=file:/home/guerra/devel/ide/indigo/eclipse/
    osgi.instance.area=file:/home/guerra/workspace/
    osgi.instance.area.default=file:/home/guerra/workspace/
    osgi.logfile=/home/guerra/workspace/.metadata/.log
    osgi.manifest.cache=/home/guerra/devel/ide/indigo/eclipse/configuration/org.eclipse.osgi/manifests
    osgi.nl=en_US
    osgi.os=linux
    osgi.requiredJavaVersion=1.5
    osgi.splashLocation=/home/guerra/devel/ide/indigo/eclipse//plugins/org.eclipse.platform_3.7.1.v201109091335/splash.bmp
    osgi.splashPath=platform:/base/plugins/org.eclipse.platform
    osgi.syspath=/home/guerra/devel/ide/indigo/eclipse/plugins
    osgi.tracefile=/home/guerra/workspace/.metadata/trace.log
    osgi.ws=gtk
    path.separator=:
    sun.arch.data.model=32
    sun.boot.class.path=/usr/local/java/jdk1.7.0/jre/lib/resources.jar:/usr/local/java/jdk1.7.0/jre/lib/rt.jar:/usr/local/java/jdk1.7.0/jre/lib/sunrsasign.jar:/usr/local/java/jdk1.7.0/jre/lib/jsse.jar:/usr/local/java/jdk1.7.0/jre/lib/jce.jar:/usr/local/java/jdk1.7.0/jre/lib/charsets.jar:/usr/local/java/jdk1.7.0/jre/classes
    sun.boot.library.path=/usr/local/java/jdk1.7.0/jre/lib/i386
    sun.cpu.endian=little
    sun.cpu.isalist=
    sun.desktop=gnome
    sun.io.unicode.encoding=UnicodeLittle
    sun.jnu.encoding=UTF-8
    sun.management.compiler=HotSpot Client Compiler
    sun.os.patch.level=unknown
    user.country=US
    user.dir=/home/guerra
    user.home=/home/guerra
    user.language=en
    user.name=guerra
    user.timezone=Atlantic/Canary
    *** Features:
    com.collabnet.subversion.merge.feature (2.2.4) "CollabNet Subversion Merge Client"
    oracle.eclipse.tools.indigo.common (2.0.0.201112072225) "Oracle Common Tools"
    oracle.eclipse.tools.indigo.doc.javaee6 (1.0.0.201111040904) "Java EE 6 Documentation"
    oracle.eclipse.tools.indigo.glassfish (2.0.0.201111040904) "Oracle GlassFish Server Tools"
    oracle.eclipse.tools.indigo.webtier (2.0.0.201112072225) "Oracle Web Tier Tools"
    org.eclipse.cvs (1.3.100.v20110520-0800-7B78FHk8sF7BB7VAH5AYC5) "Eclipse CVS Client"
    org.eclipse.datatools.common.doc.user (1.9.1.v201108301820-26-311A16321A3557) "Data Tools Platform User Documentation"
    org.eclipse.datatools.connectivity.doc.user (1.9.1.v201108301820-37D-7733L3D753L7BBF) "Data Tools Platform Connectivity User Documentation"
    org.eclipse.datatools.connectivity.feature (1.9.1.v201108301820-7C7e8mEt1_wmuQjYnXQ6Zj5dM17) "Data Tools Platform Connectivity Plug-in"
    org.eclipse.datatools.connectivity.oda.designer.core.feature (1.9.1.v201108301820-7B7C7DCcNBGNChHSFaYT) "DTP ODA Designer UI Framework Plug-in"
    org.eclipse.datatools.connectivity.oda.designer.feature (1.9.1.v201108301820-4117w312219371456) "DTP ODA Designer UI Framework Plug-in"
    org.eclipse.datatools.connectivity.oda.feature (1.9.1.v201108301820-7H7C7ICcNBHHBnJWDjSd) "DTP Open Data Access"
    org.eclipse.datatools.doc.user (1.9.1.v201108301820-47C08w95ENAK6AFDFK7) "Data Tool Platform User Documentation"
    org.eclipse.datatools.enablement.apache.derby.feature (1.9.1.v201108301820-77788gBmKDOGMhKwJ4Rn7QBR) "High-level Sybase Enablement Plug-in"
    org.eclipse.datatools.enablement.feature (1.9.1.v201108301820-7J9B7FBWwVN7-2z-kZU_tJy1aR1t) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.hsqldb.feature (1.9.1.v201108301820-67D1AqGBKNKdIlGz0GU7QBR) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.ibm.feature (1.9.1.v201108301820-7F47SFC7sRbvSkkxaPvW) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.ingres.feature (1.9.1.v201108301820-540AkF78Z7UCRAQDB) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.jdbc.feature (1.9.1.v201108301820-4-29oB56N5N7L6PAQ) "High-level Sybase Enablement Plug-in"
    org.eclipse.datatools.enablement.jdt.feature (1.9.1.v201108301820-2-07w31211518181A) "Data Tools Platform Connectivity JDT Extension Plug-in"
    org.eclipse.datatools.enablement.msft.feature (1.9.1.v201108301820-542AkF79P7QCP9SDB) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.mysql.feature (1.9.1.v201108301820-546AkF78Z7Y9NBZ9A) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.oda.designer.feature (1.9.1.v201108301820-3328s73553C655B63) "Eclipse Data Tools Platform XML ODA Designer"
    org.eclipse.datatools.enablement.oda.feature (1.9.1.v201108301820-7A7T78DZRDKGEeHnGlLP) "Eclipse Data Tools Platform XML ODA Runtime Driver"
    org.eclipse.datatools.enablement.oracle.feature (1.9.1.v201108301820-548dAkF79Q7RAN9UFJ) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.postgresql.feature (1.9.1.v201108301820-542AkF77g7V9N9e77) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.sap.feature (1.9.1.v201108301820-540AkF77g7V9N9e77) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.sqlite.feature (1.9.1.v201108301820-541AkF79P7N8NAQ77) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.sybase.feature (1.9.1.v201108301820-7E45F9NiNZVR6a1PMVn) "High-level Sybase Enablement Plug-in"
    org.eclipse.datatools.intro (1.9.1.v201108301820-26-7w312116392911) "Eclipse Data Tools Platform Intro Plug-in"
    org.eclipse.datatools.modelbase.feature (1.9.1.v201108301820-77078CcNBHCBYKYEbNV) "Eclipse Data Tools Platform SQLModel Plug-in"
    org.eclipse.datatools.sqldevtools.ddlgen.feature (1.9.1.v201108301820-7A-3F7RZHLz-Hz-OlPz0Qf) "Eclipse Data Tools Platform FE UI Plug-in"
    org.eclipse.datatools.sqldevtools.feature (1.9.1.v201108301820-7N847CFDsn0VdrPUJvPUshDWIPJ0) "Eclipse Data Tools Platform SQL Tools Common UI Plug-in"
    org.eclipse.datatools.sqldevtools.parsers.feature (1.9.1.v201108301820-622BgJ9CR9XFcEWLP) "Eclipse Data Tools Platform SQL Parser Plugin"
    org.eclipse.datatools.sqltools.doc.user (1.9.1.v201108301820-37D-7733L3D753L7BBF) "Data Tools Platform SQL Tools User Documentation"
    org.eclipse.draw2d (3.7.1.v20110830-1143-4607w3122194102254) "Graphical Editing Framework Draw2d"
    org.eclipse.emf (2.7.1.v20110913-1526) "EMF - Eclipse Modeling Framework Runtime and Tools"
    org.eclipse.emf.codegen (2.7.0.v20110913-1156) "EMF Code Generation"
    org.eclipse.emf.codegen.ecore (2.7.0.v20110913-1156) "EMF Ecore Code Generator"
    org.eclipse.emf.codegen.ecore.ui (2.7.0.v20110913-1156) "EMF Ecore Code Generator UI"
    org.eclipse.emf.codegen.ui (2.7.0.v20110913-1156) "EMF Code Generation UI"
    org.eclipse.emf.common (2.7.0.v20110912-0920) "EMF Common"
    org.eclipse.emf.common.ui (2.7.0.v20110913-1156) "EMF Common UI"
    org.eclipse.emf.converter (2.7.0.v20110913-1156) "EMF Model Converter"
    org.eclipse.emf.databinding (1.2.0.v20110913-1156) "EMF Data Binding"
    org.eclipse.emf.databinding.edit (1.2.0.v20110913-1156) "EMF Edit Data Binding"
    org.eclipse.emf.ecore (2.7.1.v20110912-0920) "EMF Ecore"
    org.eclipse.emf.ecore.edit (2.7.0.v20110913-1156) "EMF Ecore Edit"
    org.eclipse.emf.ecore.editor (2.7.0.v20110913-1156) "EMF Sample Ecore Editor"
    org.eclipse.emf.edit (2.7.1.v20110913-1526) "EMF Edit"
    org.eclipse.emf.edit.ui (2.7.0.v20110913-1156) "EMF Edit UI"
    org.eclipse.emf.mapping (2.7.0.v20110913-1156) "EMF Mapping"
    org.eclipse.emf.mapping.ecore (2.7.0.v20110913-1156) "EMF Ecore Mapping"
    org.eclipse.emf.mapping.ecore.editor (2.7.0.v20110913-1156) "EMF Ecore Mapping Editor"
    org.eclipse.emf.mapping.ui (2.7.0.v20110913-1156) "EMF Mapping UI"
    org.eclipse.epp.mpc (1.1.1.I20110907-0947) "Marketplace Client"
    org.eclipse.epp.package.jee.feature (1.4.1.20110909-1818) "Java EE IDE"
    org.eclipse.gef (3.7.1.v20110830-1143-777D181B3Bz06C853D8863365) "Graphical Editing Framework GEF"
    org.eclipse.help (1.3.0.v20110327-7i7uFFkFFp7gNobOpNgKo0) "Help System Base"
    org.eclipse.jdt (3.7.1.r371_v20110810-0800-7z8gFcoFMLfTabvKsR5Qm9rBGEBK) "Eclipse Java Development Tools"
    org.eclipse.jpt.common.eclipselink.feature (1.0.1.v201108080010-3-08s73553F3G3343) "Dali Java Persistence Tools - EclipseLink Common"
    org.eclipse.jpt.common.feature (1.0.1.v201108080010-6-0AkF7BB7S9N7788) "Dali Java Persistence Tools - Common"
    org.eclipse.jpt.dbws.eclipselink.feature (1.0.1.v201108303011-797B3CcNBHGCfDZAwHJ375) "Dali Java Persistence Tools - EclipseLink DBWS Support"
    org.eclipse.jpt.jaxb.eclipselink.feature (1.0.1.v201108303011-7740BgJ9EE9ZC_8z0A9132) "Dali Java Persistence Tools - EclipseLink MOXy (JAXB) Support"
    org.eclipse.jpt.jaxb.feature (1.0.1.v201108080010-508aAkF7BB7U8Q779A) "Dali Java Persistence Tools - JAXB Support"
    org.eclipse.jpt.jpa.eclipselink.feature (3.0.1.v201108303011-7J7F78F7RZHQPJBNCKbSR7FB) "Dali Java Persistence Tools - EclipseLink JPA Support"
    org.eclipse.jpt.jpa.feature (3.0.1.v201108163011-7R7F7CFC7sRdiShWvWQYU375) "Dali Java Persistence Tools - JPA Support"
    org.eclipse.jst.common.fproj.enablement.jdt (3.3.0.v201102200555-377DF8s73543E5I5768) "Eclipse Faceted Project Framework JDT Enablement"
    org.eclipse.jst.enterprise_ui.feature (3.3.1.v201107072200-7b7II1PFSK2WIlPwJBmNz-VWwVsTn) "Eclipse Java EE Developer Tools"
    org.eclipse.jst.ws.axis2tools.feature (1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj) "Axis2 Tools"
    org.eclipse.jst.ws.cxf.feature (1.0.100.v201105171845-7H77DRFAKlZgjHCaHg65uE6I6I) "CXF Web Services Core"
    org.eclipse.jst.ws.jaxws.feature (1.1.0.v201105171845-7E78BsF8NcJSWKvN1Rjcv) "JAX-WS Tools Core"
    org.eclipse.mylyn_feature (3.6.4.v20111118-0100) "Mylyn"
    org.eclipse.mylyn.bugzilla_feature (3.6.2.v20110908-0706) "Mylyn"
    org.eclipse.mylyn.context_feature (3.6.2.v20110908-0706) "Mylyn"
    org.eclipse.mylyn.ide_feature (3.6.2.v20110908-0706) "Mylyn"
    org.eclipse.mylyn.java_feature (3.6.2.v20110908-0706) "Mylyn"
    org.eclipse.mylyn.team_feature (3.6.2.v20110908-0706) "Mylyn"
    org.eclipse.mylyn.trac_feature (3.6.4.v20111118-0100) "Mylyn"
    org.eclipse.mylyn.wikitext_feature (1.5.2.v20110908-0706) "Mylyn"
    org.eclipse.pde (3.7.1.r37x_v20110810-0800-7b7qFVtFEx2XnmZ4jlM5mjM) "PDE"
    org.eclipse.platform (3.7.1.r37x_v20110729-9gF7UHOxFtniV7mI3T556iZN9AU8bEZ1lHMcVK) "Eclipse Platform"
    org.eclipse.rcp (3.7.1.r37x_v20110729-9DB5FmNFnFLSFCtLxnRfMqt15A4A) "Eclipse RCP"
    org.eclipse.rse (3.3.1.R33x_v201109141647-7L7CFGG8wqio8rz0qYtkPgn8qWd4) "Remote System Explorer End-User Runtime"
    org.eclipse.rse.core (3.3.1.R33x_v201109141647-7a7JFZ3F8Fz0vz03_qRujbr0z0Nu) "RSE Core"
    org.eclipse.rse.dstore (3.3.1.R33x_v201109141647-7L78FRAD2YR70wUHbQUplQ8LFC) "RSE DStore Services"
    org.eclipse.rse.ftp (3.0.301.R33x_v201109141647-782F8O9KC92gz097E9EKF23225) "RSE FTP Service"
    org.eclipse.rse.local (2.1.300.v201103142315-7B4FKsBgJ9EE9ICQIFYT) "RSE Local Services"
    org.eclipse.rse.ssh (3.0.301.R33x_v201109141647-7A3F9xAGGB5k0C7KEATN92641) "RSE SSH Services"
    org.eclipse.rse.telnet (2.2.200.v201106011538-775F8NAkF7BB7B9NEIPP) "RSE Telnet Service"
    org.eclipse.rse.terminals (1.1.1.R33x_v201109141647-771Bh9uD7HbBF3u7DNO3293A3752) "RSE Terminals UI"
    org.eclipse.rse.useractions (1.1.300.v201103142315-31F8N8s7355353B75DD) "Remote System Explorer User Actions"
    org.eclipse.sapphire (0.4.0.201112010656) "Sapphire (Incubation)"
    org.eclipse.sapphire.java (0.4.0.201112010656) "Sapphire Java Support (Incubation)"
    org.eclipse.sapphire.java.jdt (0.4.0.201112010656) "Sapphire Java Developer Tools Support (Incubation)"
    org.eclipse.sapphire.modeling.xml (0.4.0.201112010656) "Sapphire XML Support (Incubation)"
    org.eclipse.sapphire.osgi (0.4.0.201112010656) "Sapphire OSGi Support (Incubation)"
    org.eclipse.sapphire.platform (0.4.0.201112010656) "Sapphire Eclipse Platform Support (Incubation)"
    org.eclipse.sapphire.ui (0.4.0.201112010656) "Sapphire User Interface (Incubation)"
    org.eclipse.sapphire.ui.swt.graphiti (0.4.0.201112010656) "Sapphire Graphiti Renderer (Incubation)"
    org.eclipse.sapphire.ui.swt.xml.editor (0.4.0.201112010656) "Sapphire XML Editor Support (Incubation)"
    org.eclipse.tm.terminal (3.1.1.R33x_v201106281309-4007S44yaw312218292641) "Target Management Terminal Widget"
    org.eclipse.tm.terminal.ssh (2.1.0.v201103142315-30-7w312212153266) "Target Management Terminal SSH Connector"
    org.eclipse.tm.terminal.telnet (2.1.0.v201103142315-30-7w312213121A22) "Target Management Terminal Telnet Connector"
    org.eclipse.tm.terminal.view (2.2.0.v201103142315-31-7w312214253426) "Target Management Terminal View"
    org.eclipse.wst.common.fproj (3.3.0.v201102150115-377DF8s7355397B4B9B) "Eclipse Faceted Project Framework"
    org.eclipse.wst.jsdt.feature (1.3.1.v201108102009-7F78FXRFBBoPbXRPcHfz-uy) "Eclipse JavaScript Development Tools"
    org.eclipse.wst.web_ui.feature (3.3.1.v201107072200-7O7IFhREMiB5vNoYqf01XHTvUndyz-yx-9kUyXXL) "Eclipse Web Developer Tools"
    org.eclipse.wst.xml_ui.feature (3.3.1.v201108102009-7H7EFZ3DxumTlaI6nheRdHo2p1KaDIL1Uz-S3PL) "Eclipse XML Editors and Tools"
    org.eclipse.wst.xml.xpath2.processor.feature (2.0.0.v201103310043-7A7J-CcNBGOCUIWFYMf) "Eclipse XPath 2 Developers Tools"
    org.eclipse.wst.xsl.feature (1.3.1.v201109012200-7T7YFRTFIqUoIrvbEtBlSIJXGZNg) "Eclipse XSL Developer Tools"
    org.tigris.subversion.clientadapter.feature (1.6.12) "Subversion Client Adapter"
    org.tigris.subversion.clientadapter.javahl.feature (1.6.17) "Subversion JavaHL"
    org.tigris.subversion.subclipse (1.6.18) "SVN Team Provider Core"
    org.tigris.subversion.subclipse.graph.feature (1.0.9) "Subversion Revision Graph"
    org.tigris.subversion.subclipse.mylyn (3.0.0) "Subclipse Integration for Mylyn 3.x"
    *** Plug-in Registry:
    com.collabnet.subversion.merge (2.2.4) "CollabNet Subversion Merge Client" [Active]
    com.ibm.icu (4.4.2.v20110208) "International Components for Unicode for Java (ICU4J)" [Active]
    com.jcraft.jsch (0.1.41.v201101211617) "JSch" [Resolved]
    com.springsource.javax.jms (1.1.0) "Java Messaging System API" [Resolved]
    com.sun.syndication (0.9.0.v200803061811) "Rss and atOM utilitiEs (ROME)" [Resolved]
    java_cup.runtime (0.10.0.v201005080400) "Java Cup" [Resolved]
    javax.activation (1.1.0.v201105071233) "Apache Geronimo Activation Plug-in" [Resolved]
    javax.jws (2.0.0.v201005080400) "Web Services Metadata" [Resolved]
    javax.mail (1.4.0.v201005080615) "Javax Mail Plug-in" [Resolved]
    javax.persistence (2.0.3.v201010191057) "Java Persistence API 2.0" [Resolved]
    javax.servlet (2.5.0.v201103041518) "Servlet API Bundle" [Resolved]
    javax.servlet.jsp (2.0.0.v201101211617) "Java Server Pages API Bundle" [Resolved]
    javax.transaction (1.1.1.v201105210645) "geronimo Javax Transaction API 1.1.1 spec" [Resolved]
    javax.wsdl (1.5.1.v201012040544) "WSDL4J" [Resolved]
    javax.wsdl (1.6.2.v201012040545) "WSDL4J" [Resolved]
    javax.xml (1.3.4.v201005080400) "JAXP XML" [Resolved]
    javax.xml.bind (2.1.9.v201005080401) "XML Binding for Java" [Resolved]
    javax.xml.rpc (1.1.0.v201005080400) "JAX-RPC" [Resolved]
    javax.xml.soap (1.2.0.v201005080501) "SAAJ" [Resolved]
    javax.xml.stream (1.0.1.v201004272200) "Java XML Streaming API" [Resolved]
    javax.xml.ws (2.1.0.v200902101523) "Java API for XML Web Services (JAX-WS)" [Resolved]
    net.sourceforge.lpg.lpgjavaruntime (1.1.0.v201004271650) "SourceForge LPG" [Resolved]
    oracle.eclipse.tools.application.common.services (4.2.0.201112072225) "Oracle Application Tools Common Services" [Active]
    oracle.eclipse.tools.common (4.2.0.201112072225) "Oracle Common Tools" [Active]
    oracle.eclipse.tools.common.doc (4.2.0.201112072225) "Oracle Enterprise Tools for Eclipse Documentation" [Active]
    oracle.eclipse.tools.common.services (4.2.0.201112072225) "Oracle Common Services" [Active]
    oracle.eclipse.tools.common.services.ui (4.2.0.201112072225) "Oracle Common Services UI" [Active]
    oracle.eclipse.tools.common.templating (4.2.0.201112072225) "File Templates Plugin" [Starting]
    oracle.eclipse.tools.common.ui (4.2.0.201112072225) "Oracle Common Tools UI" [Active]
    oracle.eclipse.tools.common.upgrade (4.2.0.201112072225) "Oracle Upgrade Framework" [Active]
    oracle.eclipse.tools.doc.javaee5 (1.0.0.201111040904) "Java EE 5 Documentation" [Starting]
    oracle.eclipse.tools.doc.javaee6 (1.0.0.201111040904) "Java EE 6 Documentation" [Starting]
    oracle.eclipse.tools.envcheck (4.2.0.201112072225) "Oracle Eclipse Tools Environment Checker" [Active]
    oracle.eclipse.tools.glassfish (4.2.0.201111040904) "Oracle GlassFish Server Tools" [Active]
    oracle.eclipse.tools.sapphire.modeling.legacy (4.2.0.201112072225) "Oracle Sapphire Modeling Framework (Legacy)" [Starting]
    oracle.eclipse.tools.sapphire.ui.legacy (4.2.0.201112072225) "Oracle Sapphire Framework UI (Legacy)" [Starting]
    oracle.eclipse.tools.weblogic (4.2.0.201112072225) "Oracle WebLogic Server Tools" [Active]
    oracle.eclipse.tools.webtier (4.2.0.201112072225) "Oracle Web Tier Tools" [Starting]
    oracle.eclipse.tools.webtier.common.services (4.2.0.201112072225) "Oracle Web Tier Tools Common Services" [Active]
    oracle.eclipse.tools.webtier.doc (4.2.0.201112072225) "Oracle Web Tier Tools Documentation" [Starting]
    oracle.eclipse.tools.webtier.html (4.2.0.201112072225) "Oracle Web Tier Tools HTML" [Starting]
    oracle.eclipse.tools.webtier.html.ui (4.2.0.201112072225) "Oracle Web Tier Tools HTML UI" [Starting]
    oracle.eclipse.tools.webtier.javawebapp (4.2.0.201112072225) "Oracle Web Tier Tools Java Web App" [Active]
    oracle.eclipse.tools.webtier.jsf (4.2.0.201112072225) "Oracle Web Tier Tools JSF" [Active]
    oracle.eclipse.tools.webtier.jsf.ui (4.2.0.201112072225) "Oracle Web Tier Tools JSF UI" [Active]
    oracle.eclipse.tools.webtier.jsp (4.2.0.201112072225) "Oracle Web Tier Tools JSP" [Active]
    oracle.eclipse.tools.webtier.jsp.ui (4.2.0.201112072225) "Oracle Web Tier Tools JSP UI" [Active]
    oracle.eclipse.tools.webtier.jstl (4.2.0.201112072225) "Oracle Web Tier Tools JSTL" [Active]
    oracle.eclipse.tools.webtier.jstl.ui (4.2.0.201112072225) "Oracle Web Tier Tools JSTL UI" [Starting]
    oracle.eclipse.tools.webtier.struts (4.2.0.201112072225) "Oracle Web Tier Tools Apache Struts" [Starting]
    oracle.eclipse.tools.webtier.struts.ui (4.2.0.201112072225) "Oracle Web Tier Tools Apache Struts UI" [Starting]
    oracle.eclipse.tools.webtier.trinidad (4.2.0.201112072225) "Oracle Web Tier Tools Apache Trinidad" [Starting]
    oracle.eclipse.tools.webtier.trinidad.ui (4.2.0.201112072225) "Oracle Web Tier Tools Apache Trinidad UI" [Starting]
    oracle.eclipse.tools.webtier.ui (4.2.0.201112072225) "Oracle Web Tier Tools UI" [Active]
    oracle.eclipse.tools.xml.edit.ui (4.2.0.201112072225) "Oracle XML Editing" [Starting]
    oracle.eclipse.tools.xml.model (4.2.0.201112072225) "Oracle XML TLEI Model" [Active]
    oracle.eclipse.tools.xmlbeans.library.v21 (4.2.0.201112072225) "Apache XMLBeans v2.1" [Starting]
    oracle.eclipse.tools.xmlbeans.library.v22 (4.2.0.201112072225) "Apache XMLBeans v2.2" [Starting]
    oracle.eclipse.tools.xmlbeans.library.v23 (4.2.0.201112072225) "Apache XMLBeans v2.3" [Starting]
    org.apache.ant (1.8.2.v20110505-1300) "Apache Ant" [Resolved]
    org.apache.axis (1.4.0.v201005080400) "Apache Web Services" [Resolved]
    org.apache.bcel (5.2.0.v201005080400) "Apache BCEL" [Resolved]
    org.apache.commons.codec (1.3.0.v201101211617) "Apache Commons Codec Plug-in" [Resolved]
    org.apache.commons.collections (3.2.0.v201005080500) "Apache Commons Collections" [Resolved]
    org.apache.commons.discovery (0.2.0.v201004190315) "Jakarta-Commons Discovery" [Resolved]
    org.apache.commons.el (1.0.0.v201101211617) "Apache Commons JSP 2.0 Expression Language Interpreter" [Resolved]
    org.apache.commons.httpclient (3.1.0.v201012070820) "Apache Commons Httpclient" [Resolved]
    org.apache.commons.lang (2.1.0.v201005080500) "Apache Jakarta Commons L

    Hi,
    could you let us know what version of OEPE you were running prior to the upgrade along with the Eclipse version ? Also was the previous installation a full OEPE install or was it installed via the update site ?
    thanks
    Raj

  • Error during generation of the WSDL:  BUILD FAILED java.lang.NoClassDefFoundError: com/sun/javadoc/Type

    When I create an EJB Transport Business Service, after selecting the jar that has the EJB 2.1 artefacts (Remote, Home, etc) the oepe plugin fails and can't continue.
    As I understand it seems that there is a problem with the classpath of ant build.xml  that oepe creates inside folder /tmp/alsbejbtransport/ to compile the bs and generate the wsdl. I checked if tools.jar is in the classpath (in eclipse) and is included, so I can't figure out wich is the problem.
    I found this in Oracle, but not helps solve the problem:
    BEA-398120
    Error: The WSDL for the typed transport endpoint could not be accessed.
    Description
    There was a problem retrieving the WSDL from the typed transport service endpoint at the time of service registration
    Action
    Contact technical support
    This is the the full stacktrace that shows eclipse.
    Generate : Error during generation of the WSDL:
    BUILD FAILED
    java.lang.NoClassDefFoundError: com/sun/javadoc/Type
            at com.bea.util.jam.provider.JamServiceFactoryImpl.createSourceBuilder(JamServiceFactoryImpl.java:205)
            at com.bea.util.jam.provider.JamServiceFactoryImpl.createBuilder(JamServiceFactoryImpl.java:158)
            at com.bea.util.jam.provider.JamServiceFactoryImpl.createClassLoader(JamServiceFactoryImpl.java:137)
            at com.bea.util.jam.provider.JamServiceFactoryImpl.createService(JamServiceFactoryImpl.java:78)
            at weblogic.wsee.util.JamUtil.parseSource(JamUtil.java:152)
            at weblogic.wsee.tools.anttasks.JwsLoader.loadJClasses(JwsLoader.java:186)
            at weblogic.wsee.tools.anttasks.JwsLoader.load(JwsLoader.java:75)
            at weblogic.wsee.tools.anttasks.JwsModule.loadWebServices(JwsModule.java:569)
            at weblogic.wsee.tools.anttasks.JwsModule.generate(JwsModule.java:369)
            at weblogic.wsee.tools.anttasks.JwsModule.build(JwsModule.java:256)
            at weblogic.wsee.tools.anttasks.JwscTask.execute(JwscTask.java:184)
            at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
            at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
            at java.lang.reflect.Method.invoke(Method.java:601)
            at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
            at org.apache.tools.ant.Task.perform(Task.java:348)
            at org.apache.tools.ant.Target.execute(Target.java:357)
            at org.apache.tools.ant.Target.performTasks(Target.java:385)
            at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
            at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
            at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
            at org.apache.tools.ant.Project.executeTargets(Project.java:1189)
            at org.apache.tools.ant.Main.runBuild(Main.java:758)
            at org.apache.tools.ant.Main.startAnt(Main.java:217)
            at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)
            at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)
    Caused by: java.lang.ClassNotFoundException: com.sun.javadoc.Type
            at org.apache.tools.ant.AntClassLoader.findClassInComponents(AntClassLoader.java:1400)
            at org.apache.tools.ant.AntClassLoader.findClass(AntClassLoader.java:1341)
            at org.apache.tools.ant.AntClassLoader.loadClass(AntClassLoader.java:1088)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
            ... 27 more
    Total time: 0 seconds
    Eclipse Installation details:
    *** System properties:
    eclipse.application=org.eclipse.ui.ide.workbench
    eclipse.buildId=M20110909-1335
    eclipse.commands=-os
    linux
    -ws
    gtk
    -arch
    x86_64
    -showsplash
    -launcher
    {home}/Development/oepe-indigo/eclipse
    -name
    Eclipse
    --launcher.library
    {home}/Development/oepe-indigo//plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.100.v20110505/eclipse_1407.so
    -startup
    {home}/Development/oepe-indigo//plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
    --launcher.overrideVmargs
    -exitdata
    1e418010
    -vm
    /usr/bin/java
    eclipse.home.location=file:{home}/Development/oepe-indigo/
    eclipse.launcher={home}/Development/oepe-indigo/eclipse
    eclipse.launcher.name=Eclipse
    [email protected]/../p2/
    eclipse.p2.profile=PlatformProfile
    eclipse.product=org.eclipse.platform.ide
    eclipse.startTime=1374623921455
    eclipse.vm=/usr/bin/java
    eclipse.vmargs=-Xms256m
    -Xmx768m
    -XX:MaxPermSize=512m
    -Dsun.lang.ClassLoader.allowArraySyntax=true
    -Dweblogic.home={home}/Oracle/Middleware/wlserver_10.3
    -Dharvester.home={home}/Oracle/Middleware/Oracle_OSB1/harvester
    -Dosb.home={home}/Oracle/Middleware/Oracle_OSB1
    -Dosgi.bundlefile.limit=750
    -Dosgi.nl=en_US
    -Dmiddleware.home={home}/Oracle/Middleware
    -jar
    {home}/Development/oepe-indigo//plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
    equinox.use.ds=true
    file.encoding=UTF-8
    file.encoding.pkg=sun.io
    file.separator=/
    guice.disable.misplaced.annotation.check=true
    harvester.home={home}/Oracle/Middleware/Oracle_OSB1/harvester
    http.nonProxyHosts=localhost
    java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment
    java.awt.printerjob=sun.print.PSPrinterJob
    java.class.path={home}/Development/oepe-indigo//plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
    java.class.version=50.0
    java.endorsed.dirs=/usr/lib/jvm/jdk1.6.0_45/jre/lib/endorsed
    java.ext.dirs=/usr/lib/jvm/jdk1.6.0_45/jre/lib/ext:/usr/java/packages/lib/ext
    java.home=/usr/lib/jvm/jdk1.6.0_45/jre
    java.io.tmpdir=/tmp
    java.library.path=/usr/lib/jvm/jdk1.6.0_45/jre/lib/amd64/server:/usr/lib/jvm/jdk1.6.0_45/jre/lib/amd64:/usr/lib/jvm/jdk1.6.0_45/jre/../lib/amd64:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
    java.protocol.handler.pkgs=null|com.bea.wli.sb.resources.url|com.bea.wli.sb.resources.jca.upgrade.url|weblogic.utils|weblogic.utils|weblogic.utils|weblogic.net|weblogic.net
    java.runtime.name=Java(TM) SE Runtime Environment
    java.runtime.version=1.6.0_45-b06
    java.specification.name=Java Platform API Specification
    java.specification.vendor=Sun Microsystems Inc.
    java.specification.version=1.6
    java.vendor=Sun Microsystems Inc.
    java.vendor.url=http://java.sun.com/
    java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
    java.version=1.6.0_45
    java.vm.info=mixed mode
    java.vm.name=Java HotSpot(TM) 64-Bit Server VM
    java.vm.specification.name=Java Virtual Machine Specification
    java.vm.specification.vendor=Sun Microsystems Inc.
    java.vm.specification.version=1.0
    java.vm.vendor=Sun Microsystems Inc.
    java.vm.version=20.45-b01
    javax.rmi.CORBA.PortableRemoteObjectClass=weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass=weblogic.iiop.UtilDelegateImpl
    jna.platform.library.path=/usr/lib/x86_64-linux-gnu:/lib/x86_64-linux-gnu:/lib64:/usr/lib:/lib
    line.separator=
    middleware.home={home}/Oracle/Middleware
    oracle.eclipse.tools.weblogic.ui.isWebLogicServer=true
    org.apache.commons.logging.Log=org.apache.commons.logging.impl.NoOpLog
    org.eclipse.equinox.launcher.splash.location={home}/Development/oepe-indigo/plugins/org.eclipse.platform_3.7.1.v201109091335/splash.bmp
    org.eclipse.equinox.simpleconfigurator.configUrl=file:org.eclipse.equinox.simpleconfigurator/bundles.info
    org.eclipse.m2e.log.dir={home}/workspace/pragma/.metadata/.plugins/org.eclipse.m2e.logback.configuration
    org.eclipse.update.reconcile=false
    org.omg.CORBA.ORBClass=weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass=weblogic.corba.orb.ORB
    org.osgi.framework.executionenvironment=OSGi/Minimum-1.0,OSGi/Minimum-1.1,OSGi/Minimum-1.2,JRE-1.1,J2SE-1.2,J2SE-1.3,J2SE-1.4,J2SE-1.5,JavaSE-1.6
    org.osgi.framework.language=en
    org.osgi.framework.os.name=Linux
    org.osgi.framework.os.version=3.8.0
    org.osgi.framework.processor=x86-64
    org.osgi.framework.system.capabilities=osgi.ee; osgi.ee="OSGi/Minimum"; version:List<Version>="1.0, 1.1, 1.2",osgi.ee; osgi.ee="JavaSE"; version:List<Version>="1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6"
    org.osgi.framework.system.packages=javax.accessibility,javax.activation,javax.activity,javax.annotation,javax.annotation.processing,javax.crypto,javax.crypto.interfaces,javax.crypto.spec,javax.imageio,javax.imageio.event,javax.imageio.metadata,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,javax.imageio.spi,javax.imageio.stream,javax.jws,javax.jws.soap,javax.lang.model,javax.lang.model.element,javax.lang.model.type,javax.lang.model.util,javax.management,javax.management.loading,javax.management.modelmbean,javax.management.monitor,javax.management.openmbean,javax.management.relation,javax.management.remote,javax.management.remote.rmi,javax.management.timer,javax.naming,javax.naming.directory,javax.naming.event,javax.naming.ldap,javax.naming.spi,javax.net,javax.net.ssl,javax.print,javax.print.attribute,javax.print.attribute.standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.rmi.ssl,javax.script,javax.security.auth,javax.security.auth.callback,javax.security.auth.kerberos,javax.security.auth.login,javax.security.auth.spi,javax.security.auth.x500,javax.security.cert,javax.security.sasl,javax.sound.midi,javax.sound.midi.spi,javax.sound.sampled,javax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.sql.rowset.serial,javax.sql.rowset.spi,javax.swing,javax.swing.border,javax.swing.colorchooser,javax.swing.event,javax.swing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,javax.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.synth,javax.swing.table,javax.swing.text,javax.swing.text.html,javax.swing.text.html.parser,javax.swing.text.rtf,javax.swing.tree,javax.swing.undo,javax.tools,javax.transaction,javax.transaction.xa,javax.xml,javax.xml.bind,javax.xml.bind.annotation,javax.xml.bind.annotation.adapters,javax.xml.bind.attachment,javax.xml.bind.helpers,javax.xml.bind.util,javax.xml.crypto,javax.xml.crypto.dom,javax.xml.crypto.dsig,javax.xml.crypto.dsig.dom,javax.xml.crypto.dsig.keyinfo,javax.xml.crypto.dsig.spec,javax.xml.datatype,javax.xml.namespace,javax.xml.parsers,javax.xml.soap,javax.xml.stream,javax.xml.stream.events,javax.xml.stream.util,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.sax,javax.xml.transform.stax,javax.xml.transform.stream,javax.xml.validation,javax.xml.ws,javax.xml.ws.handler,javax.xml.ws.handler.soap,javax.xml.ws.http,javax.xml.ws.soap,javax.xml.ws.spi,javax.xml.ws.wsaddressing,javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,org.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.DynAnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,org.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNaming.NamingContextExtPackage,org.omg.CosNaming.NamingContextPackage,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org.omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPackage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer,org.omg.PortableServer.CurrentPackage,org.omg.PortableServer.POAManagerPackage,org.omg.PortableServer.POAPackage,org.omg.PortableServer.portable,org.omg.PortableServer.ServantLocatorPackage,org.omg.SendingContext,org.omg.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap,org.w3c.dom.css,org.w3c.dom.events,org.w3c.dom.html,org.w3c.dom.ls,org.w3c.dom.ranges,org.w3c.dom.stylesheets,org.w3c.dom.traversal,org.w3c.dom.views,org.w3c.dom.xpath,org.xml.sax,org.xml.sax.ext,org.xml.sax.helpers
    org.osgi.framework.uuid=901615cd-f3f3-0012-11b6-a3bca4d97ac1
    org.osgi.framework.vendor=Eclipse
    org.osgi.framework.version=1.6.0
    org.osgi.supports.framework.extension=true
    org.osgi.supports.framework.fragment=true
    org.osgi.supports.framework.requirebundle=true
    os.arch=amd64
    os.name=Linux
    os.version=3.8.0-26-generic
    osb.home={home}/Oracle/Middleware/Oracle_OSB1
    osgi.arch=x86_64
    osgi.bundlefile.limit=750
    osgi.bundles=reference:file:javax.transaction_1.1.1.v201105210645.jar,reference:file:org.eclipse.equinox.simpleconfigurator_1.0.200.v20110502-1955.jar@1:start
    osgi.bundles.defaultStartLevel=4
    osgi.bundlestore={home}/Development/oepe-indigo/configuration/org.eclipse.osgi/bundles
    osgi.configuration.area=file:{home}/Development/oepe-indigo/configuration/
    osgi.framework=file:{home}/Development/oepe-indigo/plugins/org.eclipse.osgi_3.7.1.R37x_v20110808-1106.jar
    osgi.framework.extensions=reference:file:javax.transaction_1.1.1.v201105210645.jar
    osgi.framework.shape=jar
    osgi.framework.version=3.7.1.R37x_v20110808-1106
    osgi.frameworkClassPath=., file:{home}/Development/oepe-indigo/plugins/javax.transaction_1.1.1.v201105210645.jar
    osgi.install.area=file:{home}/Development/oepe-indigo/
    osgi.instance.area=file:{home}/workspace/pragma/
    osgi.instance.area.default=file:{home}/workspace/
    osgi.logfile={home}/workspace/pragma/.metadata/.log
    osgi.manifest.cache={home}/Development/oepe-indigo/configuration/org.eclipse.osgi/manifests
    osgi.nl=en_US
    osgi.nl.user=en_US
    osgi.os=linux
    osgi.splashLocation={home}/Development/oepe-indigo/plugins/org.eclipse.platform_3.7.1.v201109091335/splash.bmp
    osgi.splashPath=platform:/base/plugins/org.eclipse.platform
    osgi.syspath={home}/Development/oepe-indigo/plugins
    osgi.tracefile={home}/workspace/pragma/.metadata/trace.log
    osgi.ws=gtk
    path.separator=:
    securerandom.source=file:/dev/./urandom
    socksNonProxyHost=localhost
    sun.arch.data.model=64
    sun.boot.class.path=/usr/lib/jvm/jdk1.6.0_45/jre/lib/resources.jar:/usr/lib/jvm/jdk1.6.0_45/jre/lib/rt.jar:/usr/lib/jvm/jdk1.6.0_45/jre/lib/sunrsasign.jar:/usr/lib/jvm/jdk1.6.0_45/jre/lib/jsse.jar:/usr/lib/jvm/jdk1.6.0_45/jre/lib/jce.jar:/usr/lib/jvm/jdk1.6.0_45/jre/lib/charsets.jar:/usr/lib/jvm/jdk1.6.0_45/jre/lib/modules/jdk.boot.jar:/usr/lib/jvm/jdk1.6.0_45/jre/classes
    sun.boot.library.path=/usr/lib/jvm/jdk1.6.0_45/jre/lib/amd64
    sun.cpu.endian=little
    sun.cpu.isalist=
    sun.desktop=gnome
    sun.io.unicode.encoding=UnicodeLittle
    sun.java.command={home}/Development/oepe-indigo//plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar -os linux -ws gtk -arch x86_64 -showsplash -launcher {home}/Development/oepe-indigo/eclipse -name Eclipse --launcher.library {home}/Development/oepe-indigo//plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.100.v20110505/eclipse_1407.so -startup {home}/Development/oepe-indigo//plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar --launcher.overrideVmargs -exitdata 1e418010 -vm /usr/bin/java -vmargs -Xms256m -Xmx768m -XX:MaxPermSize=512m -Dsun.lang.ClassLoader.allowArraySyntax=true -Dweblogic.home={home}/Oracle/Middleware/wlserver_10.3 -Dharvester.home={home}/Oracle/Middleware/Oracle_OSB1/harvester -Dosb.home={home}/Oracle/Middleware/Oracle_OSB1 -Dosgi.bundlefile.limit=750 -Dosgi.nl=en_US -Dmiddleware.home={home}/Oracle/Middleware -jar {home}/Development/oepe-indigo//plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
    sun.java.launcher=SUN_STANDARD
    sun.jnu.encoding=UTF-8
    sun.lang.ClassLoader.allowArraySyntax=true
    sun.management.compiler=HotSpot 64-Bit Tiered Compilers
    sun.os.patch.level=unknown
    svnkit.http.methods=Basic
    svnkit.library.gnome-keyring.enabled=false
    user.country=AR
    user.dir={home}/Development/oepe-indigo
    user.home={home}
    user.language=es
    user.name={username}
    user.timezone=America/Argentina/Buenos_Aires
    weblogic.home={home}/Oracle/Middleware/wlserver_10.3
    Thanks!!

    run this one in command prompt and then convert the applet using converter tool
    JC_HOME = C:\java_card_kit-2_2_2\bin\
    set CLASSES=%JCHOME%\lib\apduio.jar;%JC_HOME%\lib\apdutool.jar;%JC_HOME%\lib\jcwde.jar;%JC_HOME%\lib\converter.jar;%JC_HOME%\lib\scriptgen.jar;%JC_HOME%\lib\offcardverifier.jar;%JC_HOME%\lib\api.jar;%JC_HOME%\lib\installer.jar;%JC_HOME%\lib\capdump.jar;
    D:\NareshPalle\jcardRE\Smart\src>java -classpath %_CLASSES% com.sun.javacard.con
    verter.Converter -out EXP JCA CAP -exportpath .\exp -applet 0x0a:0x00:0x00:0x00:0x0e:0x01:0x02:
    0x03:0x04:0x05:0x06 PackageName appletName 0x01:0x02:0x03:0x04:0x05:0x0
    6:0x07:0x08 1.0
    or
    go to following directory and run the converter tool in command prompt
    step 1: cd C:\java_card_kit-2_2_2\bin\
    then run this command under the above directory
    step 2:converter -classdir E:\Pathof Your applet class file -out EXP JCA CAP -exportpath E:\path of exp files folder -applet AID PackageName AppletName PackAID major.minor no
    For more doubts mail me....
    *[removed by moderator]*
    Thanks and Regards
    NareshPalle
    Edited by: EJP on 31/03/2012 20:09: removed your email address. Unless you like spam and unless you think these forums are provided for your personal benefit only, posting an email address here serves no useful purpose whatsoever.

  • 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

Maybe you are looking for

  • Relatório de Vendas por filial

    Bom dia, Estou a procura de algum recurso da SAP B1 que me permita gerar um relatório de vendas por filial. Alguém sabe onde encontro? Já fiz uma análise do recuros Análise de Vendas porém ele não traz as informações de filial e como temos vendas fei

  • Unable to add my E-Mail Account to the HP Eprint App on my Iphone 4S

    I have Cox E-Mail.  I do receive email on my Iphone, no problem.  I have installed the HP E-Print App, everything works fine except I cannot add my E-Mail Account. Always comes up (Unable to Verify).  I have my mail set up on two different computers,

  • Trading Partner field in GL entry

    We are in ECC6. We want to enter manually the 'Trading Partner' field in certain GL postings. But when we enter the GL document using F-02, this field is not appearing for input. We looked in additional data fields also. But not available. We are usi

  • Error when turning Ipod on

    I keep getting an error that says "Connect to Computer Use iTunes to Restore". It is written in multiple languages. I connect to iTunes and restore. It may work fine for 20 playings, it may work correct for one, but I get the same error.

  • ICC profile no longer installed so Photoshop (OS9 Classic ) won't print

    Hello everyone What is an ICC profile? If I run my non latest Photoshop in the OS9 Classic environment on OS10 a message comes up that the ICC profile is no longer installed so it cannot print - what can I do? Bryony