Xalan XPathAPI selectNodeIterator help

so i got xml something like this
<abc>
 <bcd>
   <cde/>
   <cde/>
 </bcd>
 <bcd>
   <cde/>
   <cde/>
 </bcd>
</abc>
so i parse the doc tree using xerces which seems fine, and i pass the
root element to XPathAPI with xpath /abc/bcd and it gives me back a list
of the 2 <bcd> nodes which is great. then i try to process each their
childs so i pass each of the <bcd> node to XPathAPI with xpath of
/bcd/cde and i get nothing. so fine, i give it //cde with each one of
the <bcd> node as the other argument but now i get all 4 of the <cde>
nodes back instead of the 2 child <cde>. what am i doing wrong?
i am using jdk 1.3.1_01, and xalan 2.5.0. thanks.

...then i try to
process each their
childs so i pass each of the <bcd> node to XPathAPI
with xpath of
/bcd/cde and i get nothing.That's right, none of the bcd elements have children that are bcd elements with cde children. If you want the cde children of a bcd node then "/cde" would work better. (Or "cde", perhaps.)
so fine, i give it //cde
with each one of
the <bcd> node as the other argument but now i get all
4 of the <cde>
nodes back instead of the 2 child <cde>.That's right, //cde means "start at the root and find all cde elements at any depth".

Similar Messages

  • Urgent help for processing XML stream read from a JAR file

    Hi, everyone,
         Urgently need your help!
         I am reading an XML config file from a jar file. It can print out the result well when I use the following code:
    ===============================================
    InputStream is = getClass().getResourceAsStream("conf/config.xml");
    BufferedReader br = new BufferedReader(new InputStreamReader(is));
    String line;
    while ((line = br.readLine()) != null) {
    System.out.println(line); // It works fine here, which means that the inputstream is correct
    // process the XML stream I read from above
    NodeIterator ni = processXPath("//grid/gridinfo", is);
    Below is the processXPath() function I have written:
    public static NodeIterator processXPath(String xpath, InputStream byteStream) throws Exception {
    // Set up a DOM tree to query.
    InputSource in = new InputSource(byteStream);
    DocumentBuilderFactory dfactory = DocumentBuilderFactory.newInstance();
    dfactory.setNamespaceAware(true);
    Document doc = dfactory.newDocumentBuilder().parse(in);
    // Use the simple XPath API to select a nodeIterator.
    System.out.println("Querying DOM using " + xpath);
    NodeIterator ni = XPathAPI.selectNodeIterator(doc, xpath);
    return ni;
    It gives me so much errors:
    org.xml.sax.SAXParseException: The root element is required in a well-formed doc
    ument.
    at org.apache.xerces.framework.XMLParser.reportError(XMLParser.java:1213
    at org.apache.xerces.framework.XMLDocumentScanner.reportFatalXMLError(XM
    LDocumentScanner.java:570)
    at org.apache.xerces.framework.XMLDocumentScanner$XMLDeclDispatcher.endO
    fInput(XMLDocumentScanner.java:790)
    at org.apache.xerces.framework.XMLDocumentScanner.endOfInput(XMLDocument
    Scanner.java:418)
    at org.apache.xerces.validators.common.XMLValidator.sendEndOfInputNotifi
    cations(XMLValidator.java:712)
    at org.apache.xerces.readers.DefaultEntityHandler.changeReaders(DefaultE
    ntityHandler.java:1031)
    at org.apache.xerces.readers.XMLEntityReader.changeReaders(XMLEntityRead
    er.java:168)
    at org.apache.xerces.readers.UTF8Reader.changeReaders(UTF8Reader.java:18
    2)
    at org.apache.xerces.readers.UTF8Reader.lookingAtChar(UTF8Reader.java:19
    7)
    at org.apache.xerces.framework.XMLDocumentScanner$XMLDeclDispatcher.disp
    atch(XMLDocumentScanner.java:686)
    at org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentS
    canner.java:381)
    at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1098)
    at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.
    java:195)
    at processXPath(Unknown Source)
    Thank you very much!
    Sincerely Yours
    David

    org.xml.sax.SAXParseException: The root element is required in a well-formed document.This often means that the parser can't find the document. You think it should be able to find the document because your test code could. However if your test code was not in the same package as your real (failing) code, your test is no good because getResourceAsStream("conf/config.xml") is looking for that file name relative to the package of the class that contains that line of code.
    If your test code wasn't in any package, put a slash before the filename and see if that works.

  • Evaluating xpath expressions

    Hi all,
    I have an xml document as
    <?xml version="1.0" encoding="UTF-8"?>
    <purchaseReport xmlns="http://www.example.com/Report" >
    <regions>
    <zip code="95819">
    <part number="872-AA" quantity="1"/>
    <part number="926-AA" quantity="1"/>
    <part number="833-AA" quantity="1"/>
    <part number="455-BX" quantity="1"/>
    </zip>
    <zip code="63143">
    <part number="455-BX" quantity="4"/>
    </zip>
    </regions>
    <parts>
    <part number="872-AA">Lawnmower</part>
    </parts>
    </purchaseReport>
    when I evaluate the for an expression xpath_object.evaluate(f,"/purchaseReport/parts/part/@number",NODE)
    I am getting null as return value.
    I have set the namespace context for xpath_object as
    xpath_object.setNameSpaceContext(new name_space_context());
    class name_space_context implements NamespaceContext{
    public String getNamespaceURI(String prefix){
    //System.out.println("A call was made here");
    if(prefix.equals(XMLConstants.DEFAULT_NS_PREFIX)){
    System.out.println("A call was made here");
    return "http://www.example.com/Report";
    else if(prefix.equals(XMLConstants.XML_NS_PREFIX)) {
    System.out.println("A call was made here");
    return XMLConstants.XML_NS_URI;
    else if (prefix.equals(XMLConstants.XMLNS_ATTRIBUTE)){
    System.out.println("A call was made here");
    return XMLConstants.XMLNS_ATTRIBUTE_NS_URI;
    else if(prefix.equals("def")){
    System.out.println("A call was made here def");
    return "http://www.example.com/Report";
    else if(prefix.equals("si")){
    System.out.println("A call was made here si");
    return "http://www.example.com/Report/si";
    else if(prefix.equals("")){
    System.out.println("A call was made here empty");
    return "http://www.example.com/Report";
    else {
    return "There is no matching prefix with the given input" + prefix;
    please explain why me I am getting null when I evalute the expression.

    Hi tsuji,
    I am trying to update the element value in my xml , by getting input the xml and the xpath.
    My code is as below.
    InputSource is;
    is = new InputSource(new StringReader(input.toString()));
    Node node = (Node)xPath.evaluate(XPATH, is, XPathConstants.NODE);
    node.setTextContent(newValue);
    I succeeded in evaluating the namespace prefix also.
    After updating the value of the node, I tried to display the updated xml. But i couldnt succeed.
    i tried,
    Making 'Document' out of the 'is' - but failed throws NullPointerException in Document doc=dBuilder.parser(is)
    Please help me in displaying the updated XMLdocument.
    I have a doubt here, in this case like mere changing the value of the node, will it change the original InputSource 'is'
    But , when i used
    NodeIterator nl = XPathAPI.selectNodeIterator(doc, xpath); //here doc is the Document object, xpath is String object
    n=nl.nextNode();
    n.setTextContent(newValue);
    Then when i tried displaying the doc again, it gave me the updated document.
    I couldnt proceed with NodeIterator , i couldnt apply the setNamespaceContext.
    Kindly help me in this regard.
    Thanks,
    Sabarisri. N

  • NodeIterator Objects different in ChangeAwareClassLoader and bootloader?

    I have an application that does xpath stuff, and just got an error
    java.lang.LinkageError: loader constraint violation: when resolving method
    "com.sun.org.apache.xpath.internal.XPathAPI.selectNodeIterator(Lorg/w3c/dom/Node;Ljava/lang/String;)Lorg/w3c/dom/traversal/NodeIterator;" the class loader (instance of weblogic/utils/classloaders/ChangeAwareClassLoader) of the current class, com/guidewire/pl/system/database/dmv/DMVPlan, and the class loader (instance of <bootloader>) for resolved class, com/sun/org/apache/xpath/internal/XPathAPI, have different Class objects for the type org/w3c/dom/traversal/NodeIterator used in the signature
    If I understand this error correctly, one classloader loaded a NodeIteratorImpl class that is different from what the other classloader is trying to load.
    In my app I have xercesImpl.jar, but where could the other implementation be? And.... how do I fix this problem?
    Thanks!
    Randy

    Hi,
    <font color=maroon><b> If you have EAR application then</b> </font><BR>
    You can put the following Jars inside "APP-INF/lib"
    serializer.jar
    xalan.jar
    xercesImpl.jar
    xml-apis.jar
    Then add the following entry inside *"META-INF/weblogic-application.xml"*
       <prefer-application-packages>
          <package-name>org.apache.*</package-name>
          <package-name>org.apache.xerces.*</package-name>
          <package-name>org.apache.xalan.*</package-name>
          <package-name>org.apache.xmlcommons.*</package-name>
          <package-name>org.apache.xerces.jaxp.*</package-name>
       </prefer-application-packages>
    = = = = = = = = = =
    <font color=maroon> <b>If you have WAR application then </b></font><BR>
    ThenPut all the above Jars inside "WEB-INF/lib" directory and then add the following entry inside *"weblogic.xml"*
       <container-descriptor>
          <prefer-web-inf-classes>true</prefer-web-inf-classes>
       </container-descriptor>
    For more information on These Tags and Filtering ClassLoaders...please refer to: http://jaysensharma.wordpress.com/parsers_issues/
    Thanks
    Jay SenSharma

  • Strange TransformerException

    Hello,
    Ever since upgrading from JVM 1.4.0 to JVM 1.4.2, I have been getting a strange exception thrown. I can not seem to figure out why it worked in 1.4.0, but not in 1.4.2.
    Executing *in a bat file):
    java -Xmx500m -cp third-party/fit.jar;third-party/iText-0.95.jar;third-party/jcommon-0.7.1.jar;third-party/jfreechart-0.9.4.jar;third-party/jlfgr-1_0.jar;third-party/JSAP_1.0.2.jar;third-party/junit.jar;third-party/mysql-connector-java-3.0.9-stable-bin.jar;third-party/openmap.jar;third-party/ostermiller-org-utils.jar;third-party/trove.jar;third-party/xalan.jar;third-party/xercesImpl.jar;third-party/xml-apis.jar;third-party/xmlParserAPIs.jar RecreateTool %1 %2
    Here is the stack trace:
    javax.xml.transform.TransformerException: A location step was expected following the '/' or '//' token.
    at org.apache.xpath.compiler.XPathParser.error(Unknown Source)
    at org.apache.xpath.compiler.XPathParser.RelativeLocationPath(Unknown Source)
    at org.apache.xpath.compiler.XPathParser.LocationPath(Unknown Source)
    at org.apache.xpath.compiler.XPathParser.PathExpr(Unknown Source)
    at org.apache.xpath.compiler.XPathParser.UnionExpr(Unknown Source)
    at org.apache.xpath.compiler.XPathParser.UnaryExpr(Unknown Source)
    at org.apache.xpath.compiler.XPathParser.MultiplicativeExpr(Unknown Source)
    at org.apache.xpath.compiler.XPathParser.AdditiveExpr(Unknown Source)
    at org.apache.xpath.compiler.XPathParser.RelationalExpr(Unknown Source)
    at org.apache.xpath.compiler.XPathParser.EqualityExpr(Unknown Source)
    at org.apache.xpath.compiler.XPathParser.AndExpr(Unknown Source)
    at org.apache.xpath.compiler.XPathParser.OrExpr(Unknown Source)
    at org.apache.xpath.compiler.XPathParser.Expr(Unknown Source)
    at org.apache.xpath.compiler.XPathParser.initXPath(Unknown Source)
    at org.apache.xpath.XPath.<init>(Unknown Source)
    at org.apache.xpath.XPathAPI.eval(Unknown Source)
    at org.apache.xpath.XPathAPI.selectNodeIterator(Unknown Source)
    at org.apache.xpath.XPathAPI.selectSingleNode(Unknown Source)
    at org.apache.xpath.XPathAPI.selectSingleNode(Unknown Source)
    I thought it might be out of date xalan.jar, xercesImpl.jar, xml-apis.jar, xmlParserAPIs.jar files, but I updated them (I think) and it still doesn't work.
    Suggestions?
    Thanks.

    i had similar problems when i was using XPathAPI,selectSingleNode on a node with a xpath similar to
    "/Parent/Child/" where this would work in jdk1.4.1 but not jdk1.4.2
    remove the trailing slash, thus making it "/Parent/Child", would work correctly

  • Problems with jlaunch process -  high CPU consumption

    I have created an OSS Message concerning this problem and SAP identified two problematic threads. I would appreciate   any assistance you could provide. Thank you. Steve Baker
    The only problematic threads are:
    "SAPEngine_Application_Thread[impl:3]_12" (TID:0x700000010896A00,
    sys_thread_t:0x1160EBCC0, state:MW, native ID:0x1C1E) prio=5
    at org.apache.xml.utils.SuballocatedIntVector.setElementAt(SuballocatedIntVector.java(Compiled Code))
    at org.apache.xml.dtm.ref.dom2dtm.DOM2DTM.addNode(DOM2DTM.java(Compiled
    Code))
    at org.apache.xml.dtm.ref.dom2dtm.DOM2DTM.nextNode(DOM2DTM.java(CompiledCode))
    at org.apache.xml.dtm.ref.dom2dtm.DOM2DTM.getHandleFromNode(DOM2DTM.java(Compiled Code))
    at org.apache.xml.dtm.ref.dom2dtm.DOM2DTM.getHandleOfNode(DOM2DTM.java(Compiled Code))
    at org.apache.xml.dtm.ref.DTMManagerDefault.getDTMHandleFromNode(DTMManagerDefault.java(Compiled Code))
    at org.apache.xpath.XPathContext.getDTMHandleFromNode(XPathContext.java(Compiled Code))
    at org.apache.xpath.XPathAPI.eval(XPathAPI.java(Compiled Code))
    at org.apache.xpath.XPathAPI.selectNodeIterator(XPathAPI.java(Compiled
    Code))
    at org.apache.xpath.XPathAPI.selectSingleNode(XPathAPI.java(Compiled
    Code))
    at org.apache.xpath.XPathAPI.selectSingleNode(XPathAPI.java(Compiled
    Code))
    at com.openHR.OpenHR.xmlSelectSingleNode(OpenHR.java(Compiled Code))
    at jsp_TimeMPlanning1148393680219.sortNodeList(jsp_TimeMPlanning1148393680219.java(Compiled Code))
    at jsp_TimeMPlanning1148393680219._jspService(jsp_TimeMPlanning1148393680219.java:260)
    at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:541)
    and
    "SAPEngine_Application_Thread[impl:3]_9" (TID:0x700000010896C28,
    sys_thread_t:0x1155918C0, state:MW, native ID:0x191B) prio=5
    at org.apache.xml.utils.SuballocatedIntVector.setElementAt(SuballocatedIntVector.java(Compiled Code))
    at org.apache.xml.dtm.ref.dom2dtm.DOM2DTM.addNode(DOM2DTM.java(Compiled
    Code))
    at org.apache.xml.dtm.ref.dom2dtm.DOM2DTM.nextNode(DOM2DTM.java(CompiledCode))
    at org.apache.xml.dtm.ref.dom2dtm.DOM2DTM.getHandleFromNode(DOM2DTM.java(Compiled Code))
    at org.apache.xml.dtm.ref.dom2dtm.DOM2DTM.getHandleOfNode(DOM2DTM.java(Compiled Code))
    at org.apache.xml.dtm.ref.DTMManagerDefault.getDTMHandleFromNode(DTMManagerDefault.java(Compiled Code))
    at org.apache.xpath.XPathContext.getDTMHandleFromNode(XPathContext.java(Compiled Code))
    at org.apache.xpath.XPathAPI.eval(XPathAPI.java(Compiled Code))
    at org.apache.xpath.XPathAPI.selectNodeIterator(XPathAPI.java(Compiled
    Code))
    at org.apache.xpath.XPathAPI.selectSingleNode(XPathAPI.java(Compiled
    Code))
    at org.apache.xpath.XPathAPI.selectSingleNode(XPathAPI.java(Compiled
    Code))
    at com.openHR.OpenHR.xmlSelectSingleNode(OpenHR.java(Compiled Code))
    at jsp_TimeMPlanning1148393680219.sortNodeList(jsp_TimeMPlanning1148393680219.java(Compiled Code))
    at jsp_TimeMPlanning1148393680219._jspService(jsp_TimeMPlanning1148393680219.java:260)
    at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:541)

    Dear Steve,
    I have checked the implementation under
    http://grepcode.com/file/repo1.maven.org/maven2/xalan/xalan/2.7.1/org/apache/xml/utils/SuballocatedIntVector.java
    and it seems to me that neither the class , or the method is "synchronized".
    Based on my previous experience you are facing there an endless loop due to corrupted pointers in the "setElementAt" method. Same issue happens in java.util.Hashmap and other similar unprotected  for concurrent "put/add" classes.
    I would recomment to think how to protect the "setElementAt" that you do not fall into this issue or address to the provideer of the code for solution.
    Best Regards,
    Sylvia

  • Xpath and date constructors

    I have an XML structure similar to this:
    <documentFiles>
         <documentFile name="1000">
              <documentDate>2005-05-20</documentDateXML>
              <documentNumber>12345</documentNumber>
              <messageTypeIdentifier>ABCD</messageTypeIdentifier>
         </documentFile>
         <documentFile name="1001">
              <documentDate>2005-05-24</documentDateXML>
              <documentNumber>3456</documentNumber>
              <messageTypeIdentifier>DEFG</messageTypeIdentifier>
         </documentFile>
                         etc...
    <documentFiles>Using Xpath i would like to select all documentFile elements where the documentDate is bigger than some other date. I have tried a few simple things that don't work such as:
    DocumentBuilder db = DocumentBuilderFactory.newInstance().newDocumentBuilder();
    doc = db.parse(new FileInputStream(someFileName));
    String xPathExpr= "/documentFiles/documentFile[xs:date(documentDateXML) > xs:date(\"2005-05-21\")]";
    NodeIterator ni  = XPathAPI.selectNodeIterator(doc, xPathExpr);I'm obviously not familiar with how to call these date constructors (xs:date()). How do I specify that I want to use the constructors in the http://www.w3.org/2001/XMLSchema-datatypes namespace?
    Thanks

    String xPathExpr= "/documentFiles/documentFile[xs:date(documentDateXML) > xs:date(\"2005-05-21\")]";should of course be
    String xPathExpr= "/documentFiles/documentFile[xs:date(documentDate) > xs:date(\"2005-05-21\")]";

  • Using XPath from Java

    I've heard that you can use XPath from within Java instead of having to use it within XSLT, but I'm not sure what the syntax is?
    Does anyone know?
    Thanks,
    Oodi

    import org.apache.xerces.parsers.DOMParser;
    import org.apache.xpath.XPathAPI;
    DOMParser parser = new DOMParser();
    parser.parse(inputFile);
    doc = parser.getDocument();
    /* Search using XPATH */
    String xpath = "/XpathToSearch";
    NodeIterator nl = XPathAPI.selectNodeIterator(doc, xpath);
    HTH,
    Joe

  • XML : TransformerConfigurationException

    hi all,
    When ever I execute following servlet I get following Exception
    javax.xml.transform.TransformerConfigurationException : NameSpace not supported by SAXParser
    same code will execute OK from command line as an application.
    import javax.xml.transform.*;
    import javax.xml.transform.stream.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.apache.xerces.parsers.DOMParser;
    import java.io.*;
    public class TransformProduct extends HttpServlet {
    public void doGet (HttpServletRequest request,
    HttpServletResponse response)
    throws IOException, ServletException {
    String XMLSource = "C:/xml_java/basic/products.xml";
    String XSLSource = "C:/xml_java/basic/product.xsl";
    response.setContentType("text/html");
    PrintWriter output = response.getWriter();
    try{
    TransformerFactory transformerFactory =
    TransformerFactory.newInstance();
    FileReader reader = new FileReader(XSLSource);
    //Following line generate the Exception
    Transformer transformer = transformerFactory.newTransformer(
    new StreamSource(reader));
    DOMParser parser = new DOMParser();
    parser.parse(XMLSource);
    Document document = parser.getDocument();
    catch(javax.xml.transform.TransformerConfigurationException tce)
    errString = "tce "+tce.getMessage();
    catch(Exception e)
    errString = "e "+e.getMessage();
    e.printStackTrace();
    System.out.println(errString);
    }//doGet Ends
    }//Class Ends
    Here is the CLASSPATH settings:
    SET CLASSPATH=.;c:\xalan\bin\xerces.jar;c:\xalan\bin\xalan.jar;
    SET CLASSPATH=%CLASSPATH%;c:\tomcat\lib\webserver.jar;c:\tomcat\lib\jasper.jar;
    SET CLASSPATH=%CLASSPATH%;c:\tomcat\lib\xml.jar;c:\tomcat\lib\servlet.jar;c:tomcat\lib\tools.jar;
    I am using xalan-j_2_0_1
    Any help will be great !!!
    Cheers,
    SUNIL

    HI.
    I've gotten that exception before. I wasn't using a servlet at the time...and I really don't know why it runs fine from the command line, but to get rid of the exception, I changed some element names inside the xml file. This might be a pain cause you might have to reconfigure your parser.

  • Help with XPathAPI

    Hi all,
    I'm using XPathAPI to navigate an already DOM Parsed XML segment of a file and I have problems with the navigation through it.The segment looks like this:
    <tag>1222
    <tag>5543
    <tag>2445</tag><tag>9999</tag>
    </tag>
    </tag>
    I know that is not the most well-formed XML but I cannot do anything to change it so...
    What I want to do is to get the path from the node e.g. with value 9999 up to the top (<tag>1222<tag>5543<tag>9999</tag></tag></tag> in this case), but I don't want to use the DOM to traverse it, only the XPathAPI methods and structures (for various reasons). I must also clarify that I cannot use the XPath expression /tag/tag/tag etc. because the 'depth' is not predefined, just navigate through it using the value of a random node.
    Can anyone help me on this?

    What I want to do is to get the path from the node
    e.g. with value 9999 up to the top
    (<tag>1222<tag>5543<tag>9999</tag></tag></tag> in this
    case),How is that the "path to the top"? The text nodes 1222 and 5543 are not ancestors of 9999 in any sense. The tree of ancestors of 9999 is <tag><tag><tag>9999</tag></tag></tag>. And this is what you will get if you use the ancestor-or-self: axis. If you want all the ancestors and also text nodes descending from those ancestors, there's probably a more complex XPath expression to do that. But I'm not going to waste time figuring it out without a precise specification of what you really want.

  • Getting crazy with new Xalan J 2 3 1!!! HELP!

    I am using the following code with new Xalan for XSL Transformations:
    public static String transform (Node xmlNode,Node xslNode)
    throws XPTOException{
    StringWriter writer = new StringWriter();
    TransformerFactory tFactory = TransformerFactory.newInstance();
    Transformer transformer;
    StreamResult result = new StreamResult(writer);
    try {
    transformer = tFactory.newTransformer(
    new DOMSource(xslNode));
    transformer.transform(new DOMSource(xmlNode),
    result);
    }catch (TransformerException e) {
    String s= ServletUtils.getStackTraceAsString(e);
    throw new XPTOException (res.getString("Msg_3"),s);
    return writer.toString();
    My XSL is ok, at least it always worked with old version of Xalan:
    <?xml version="1.0" ?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="html" />
    </xsl:stylesheet>
    So I declare output method...
    But I got this error:
    java.lang.NullPointerException
         at org.apache.xalan.transformer.TransformerImpl.createResultContentHandler(TransformerImpl.java:1003)
         at org.apache.xalan.transformer.TransformerImpl.createResultContentHandler(TransformerImpl.java:934)
         at org.apache.xalan.transformer.TransformerImpl.transform(TransformerImpl.java:1083)
         at org.apache.xalan.transformer.TransformerImpl.transform(TransformerImpl.java:1066)
         at xpto.util.XSLTEngine.transform(XSLTEngine.java:93)
    that by my research seems to be related with the output method for xsl....
    I don't know what's going on!
    Help!

    How did you solve this problem?

  • Can jaxp and xalan help

    hi
    i wants to create a wordprocessor. so can the jaxp and xalan help me in opening and converting files from one type to another. if you ppl know any open source word processor plz send me or if u can give me an example thanx........

    No, they can't help you.
    And if you want to find an open-source word processor, Google will do that for you.

  • XML toolkit or XERCES + XALAN in portal component Please HELP

    Hello,
    is there anybody that has succesfully used xalan and xerces in a portal component?
    I have an application that requires them but have found no way to have them working in the restricted classloader area of portal component developed in java.
    Best case my portal component still uses xml toolkit, worst case, when I try to add them as j2ee or irj libraries, portal does not even boot.
    Help needed !
    Thanks in advance
    Vitaliano Trecca

    Victor, Xavier is right.
    I have already tried that but does not work. Classloader still finds SAP XML Toolkit factory. I also tried forcing System properties but things go even worst: it affects portal behaviour.
    The only working way seems to be to load the parser implementation directly instead from the default factory but this is far from being a clean way.
    Any suggestion to ensure my PDK will see Default factories from xerces and xalan and keep off from XMLToolkit?
    Regards!
    Vitaliano

  • Just a very easy question ... Please help me ....

    Dear All Experts,
    I have installed WebLogic 10.3.3, RCU 11.1.1.3.2, Oracle SOA 11.1.1.3.0, IDAM 11.1.1.3.0 on Oracle Enterprise Linux Update 5. And I have also done the configuration by running config.sh for both WebLogic to create a oim domain and OIM to config the OIM Server and Design Console ( Remote Manager not configured yet. )
    I can start up the WebLogic, WebLogic Node Manager, oim_server1. Even though I get a lot of ERRORS *<Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>* , I can still log into the OIM as xelsysadm. However, when I try to create a organization, the following error occurred: java.lang.NoClassDefFoundError: com/thortech/xl/dataobj/tcEvent_ .
    Would any people help me please ...
    Thank you in advance
    Best regards,
    Xin
    [2010-08-27T12:43:53.912+02:00] [oim_server1] [ERROR] [] [XELLERATE.SERVER] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: 0000Ien9NuUFw000jzwkno1CTqkw00002Q,0] [APP: oim#11.1.1.3.0] [dcid: 11d1def534ea1be0:5471d76:12ab28085ff:-7ffd-00000000000000d3] Class/Method: tcDataObj/eventPreInsert encounter some problems: com/thortech/xl/dataobj/tcEvent[[
    java.lang.NoClassDefFoundError: com/thortech/xl/dataobj/tcEvent_
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
         at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:303)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
         at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:303)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:296)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(tcDataObj.java:2437)
         at com.thortech.xl.dataobj.tcDataObj.eventPreInsert(tcDataObj.java:2164)
         at com.thortech.xl.dataobj.tcACT.eventPreInsert(tcACT.java:107)
         at com.thortech.xl.dataobj.tcDataObj.insert(tcDataObj.java:578)
         at com.thortech.xl.dataobj.tcDataObj.save(tcDataObj.java:474)
         at com.thortech.xl.dataobj.tcTableDataObj.save(tcTableDataObj.java:2905)
         at com.thortech.xl.ejb.beansimpl.tcOrganizationOperationsBean.createOrganization(tcOrganizationOperationsBean.java:1222)
         at com.thortech.xl.ejb.beansimpl.tcOrganizationOperationsBean.createOrganization(tcOrganizationOperationsBean.java:1107)
         at Thor.API.Operations.tcOrganizationOperationsIntfEJB.createOrganizationx(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy326.createOrganizationx(Unknown Source)
         at Thor.API.Operations.tcOrganizationOperationsIntfEJB_fb8pot_tcOrganizationOperationsIntfRemoteImpl.createOrganizationx(tcOrganizationOperationsIntfEJB_fb8pot_tcOrganizationOperationsIntfRemoteImpl.java:515)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
         at $Proxy140.createOrganizationx(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:198)
         at $Proxy325.createOrganizationx(Unknown Source)
         at Thor.API.Operations.tcOrganizationOperationsIntfDelegate.createOrganization(Unknown Source)
         at oracle.iam.oimdataproviders.impl.OIMOrgDataProvider.create(OIMOrgDataProvider.java:179)
         at oracle.iam.platform.entitymgr.impl.EntityManagerImpl.createEntity(EntityManagerImpl.java:289)
         at oracle.iam.platform.entitymgr.impl.EntityManagerImpl.createEntity(EntityManagerImpl.java:237)
         at oracle.iam.platform.kernel.impl.EntityDefaultActionHandler.execute(EntityDefaultActionHandler.java:33)
         at oracle.iam.platform.kernel.impl.DefaultActionHandler.execute(DefaultActionHandler.java:41)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.iam.platform.kernel.impl.EventHandlerDynamicProxy.invoke(EventHandlerDynamicProxy.java:30)
         at $Proxy236.execute(Unknown Source)
         at oracle.iam.platform.kernel.impl.OrchProcessData.runActionEvents(OrchProcessData.java:1028)
         at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:637)
         at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:220)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:664)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.process(OrchestrationEngineImpl.java:435)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.orchestrate(OrchestrationEngineImpl.java:381)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.orchestrate(OrchestrationEngineImpl.java:334)
         at oracle.iam.identity.orgmgmt.impl.OrganizationManagerImpl.create(OrganizationManagerImpl.java:275)
         at oracle.iam.identity.orgmgmt.api.OrganizationManagerEJB.createx(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy324.createx(Unknown Source)
         at oracle.iam.identity.orgmgmt.api.OrganizationManager_874ar_OrganizationManagerRemoteImpl.createx(OrganizationManager_874ar_OrganizationManagerRemoteImpl.java:362)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
         at $Proxy190.createx(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:198)
         at $Proxy323.createx(Unknown Source)
         at oracle.iam.identity.orgmgmt.api.OrganizationManagerDelegate.create(Unknown Source)
         at oracle.iam.consoles.orgmgmt.tf.createorg.OrganizationCreateBean.createOrg(OrganizationCreateBean.java:253)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:97)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:91)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:812)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:292)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.am.agent.wls.filters.OAMServletAuthenticationFilter.doFilter(OAMServletAuthenticationFilter.java:260)
         at oracle.security.am.agent.wls.filters.OAMValidationSystemFilter.doFilter(OAMValidationSystemFilter.java:133)
         at oracle.security.wls.oamagent.OAMAgentWrapperFilter.doFilter(OAMAgentWrapperFilter.java:121)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.iam.platform.auth.web.PwdMgmtNavigationFilter.doFilter(PwdMgmtNavigationFilter.java:115)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.iam.platform.auth.web.OIMAuthContextFilter.doFilter(OIMAuthContextFilter.java:100)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    ]]

    And here is the log file when I start oim_server1.
    ** Setting up SOA specific environment...
    EXTRA_JAVA_PROPERTIES= -da:org.apache.xmlbeans...
    LD_LIBRARY_PATH=/u01/app/oracle/middleware/patch_wls1033/profiles/default/native:/u01/app/oracle/middleware/patch_oepe1033/profiles/default/native:/u01/app/oracle/middleware/patch_ocp353/profiles/default/native:/u01/app/oracle/middleware/patch_wls1033/profiles/default/native:/u01/app/oracle/middleware/patch_oepe1033/profiles/default/native:/u01/app/oracle/middleware/patch_ocp353/profiles/default/native:/u01/app/oracle/product/11.2.0/db_1/lib:/lib:/usr/lib:/u01/app/oracle/middleware/wlserver_10.3/server/native/linux/i686:/u01/app/oracle/middleware/wlserver_10.3/server/native/linux/i686/oci920_8:/u01/app/oracle/middleware/wlserver_10.3/server/native/linux/i686:/u01/app/oracle/middleware/wlserver_10.3/server/native/linux/i686/oci920_8:/u01/app/oracle/middleware/Oracle_SOA1/soa/thirdparty/edifecs/XEngine/bin
    USER_MEM_ARGS=-Xms512m -Xmx1024m
    ** End SOA specific environment setup
    ** SOA specific environment is already set, skipping...
    JAVA Memory arguments: -Xms512m -Xmx1024m
    WLS Start Mode=Development
    CLASSPATH=/u01/app/oracle/middleware/wlserver_10.3/server/ext/jdbc/oracle/11g/ojdbc6dms.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/user-patch.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/soa-startup.jar::/u01/app/oracle/middleware/patch_wls1033/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/middleware/patch_oepe1033/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/middleware/patch_ocp353/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/middleware/jrockit_160_17_R28.0.0-679/lib/tools.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/weblogic.jar:/u01/app/oracle/middleware/modules/features/weblogic.server.modules_10.3.3.0.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/webservices.jar:/u01/app/oracle/middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/u01/app/oracle/middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/oracle.soa.common.adapters_11.1.1/oracle.soa.common.adapters.jar:/u01/app/oracle/middleware/oracle_common/soa/modules/commons-cli-1.1.jar:/u01/app/oracle/middleware/oracle_common/soa/modules/oracle.soa.mgmt_11.1.1/soa-infra-mgmt.jar:/u01/app/oracle/middleware/Oracle_IDM1/oam/agent/modules/oracle.oam.wlsagent_11.1.1/oam-wlsagent.jar:/u01/app/oracle/middleware/oracle_common/modules/oracle.xdk_11.1.0/xsu12.jar:/u01/app/oracle/middleware/modules/features/weblogic.server.modules.xquery_10.3.1.0.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/db2jcc4.jar:/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/soa-infra:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/fabric-url-handler_11.1.1.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/quartz-all-1.6.5.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/oracle.soa.fabric_11.1.1/oracle.soa.fabric.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/oracle.soa.adapter_11.1.1/oracle.soa.adapter.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/oracle.soa.b2b_11.1.1/oracle.soa.b2b.jar:/u01/app/oracle/middleware/Oracle_IDM1/server/lib/oim-manifest.jar:/u01/app/oracle/middleware/oracle_common/modules/oracle.jrf_11.1.1/jrf.jar:/u01/app/oracle/middleware/wlserver_10.3/common/derby/lib/derbyclient.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/xqrl.jar:/u01/app/oracle/middleware/patch_wls1033/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/middleware/patch_oepe1033/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/middleware/patch_ocp353/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/middleware/jrockit_160_17_R28.0.0-679/lib/tools.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/weblogic.jar:/u01/app/oracle/middleware/modules/features/weblogic.server.modules_10.3.3.0.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/webservices.jar:/u01/app/oracle/middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/u01/app/oracle/middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/u01/app/oracle/middleware/Oracle_IDM1/server/client/oimclient.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/wlfullclient.jar:/u01/app/oracle/middleware/Oracle_IDM1/server/ext/jakarta-commons/commons-logging.jar:/u01/app/oracle/middleware/Oracle_IDM1/server/ext/spring.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/webserviceclient+ssl.jar
    PATH=/u01/app/oracle/middleware/wlserver_10.3/server/bin:/u01/app/oracle/middleware/modules/org.apache.ant_1.7.1/bin:/u01/app/oracle/middleware/jrockit_160_17_R28.0.0-679/jre/bin:/u01/app/oracle/middleware/jrockit_160_17_R28.0.0-679/bin:/u01/app/oracle/middleware/wlserver_10.3/server/bin:/u01/app/oracle/middleware/modules/org.apache.ant_1.7.1/bin:/u01/app/oracle/middleware/jrockit_160_17_R28.0.0-679/jre/bin:/u01/app/oracle/middleware/jrockit_160_17_R28.0.0-679/bin:/u01/app/oracle/product/11.2.0/db_1/bin:/usr/sbin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/home/oracle/bin
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http://hostname:port/console *
    starting weblogic with Java version:
    java version "1.6.0_17"
    Java(TM) SE Runtime Environment (build 1.6.0_17-b04)
    Oracle JRockit(R) (build R28.0.0-679-130297-1.6.0_17-20100312-2128-linux-ia32, compiled mode)
    Starting WLS with line:
    /u01/app/oracle/middleware/jrockit_160_17_R28.0.0-679/bin/java -jrockit -Xms512m -Xmx1024m -Dweblogic.Name=oim_server1 -Djava.security.policy=/u01/app/oracle/middleware/wlserver_10.3/server/lib/weblogic.policy -Dweblogic.security.SSL.trustedCAKeyStore=/u01/app/oracle/middleware/wlserver_10.3/server/lib/cacerts -Xverify:none -Xverify:none -da -Dplatform.home=/u01/app/oracle/middleware/wlserver_10.3 -Dwls.home=/u01/app/oracle/middleware/wlserver_10.3/server -Dweblogic.home=/u01/app/oracle/middleware/wlserver_10.3/server -Ddomain.home=/u01/app/oracle/middleware/user_projects/domains/oimdomain -Dcommon.components.home=/u01/app/oracle/middleware/oracle_common -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djrockit.optfile=/u01/app/oracle/middleware/oracle_common/modules/oracle.jrf_11.1.1/jrocket_optfile.txt -Doracle.domain.config.dir=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig -Doracle.server.config.dir=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig/servers/oim_server1 -Doracle.security.jps.config=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig/jps-config.xml -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Digf.arisidbeans.carmlloc=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig/carml -Digf.arisidstack.home=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig/arisidprovider -Dweblogic.alternateTypesDirectory=/u01/app/oracle/middleware/Oracle_IDM1/oam/agent/modules/oracle.oam.wlsagent_11.1.1,/u01/app/oracle/middleware/Oracle_IDM1/server/loginmodule/wls,/u01/app/oracle/middleware/oracle_common/modules/oracle.ossoiap_11.1.1,/u01/app/oracle/middleware/oracle_common/modules/oracle.oamprovider_11.1.1 -Dweblogic.jdbc.remoteEnabled=false -DOAM_POLICY_FILE=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig/oam-policy.xml -DOAM_CONFIG_FILE=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig/oam-config.xml -DOAM_PROXY_LOG=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig/oam_proxy_logging.properties -DOAM_ORACLE_HOME=/u01/app/oracle/middleware/Oracle_IDM1/oam -Doracle.security.am.SERVER_INSTNCE_NAME=oim_server1 -DCSS_TOOLKIT_LOC=/u01/app/oracle/middleware/Oracle_IDM1/oam/server/lib/csslib -Does.jars.home=/u01/app/oracle/middleware/Oracle_IDM1/oam/server/lib/oes-d8 -Does.integration.path=/u01/app/oracle/middleware/Oracle_IDM1/oam/server/lib/oeslib/oes-integration.jar -Does.enabled=true -Doracle.apm.home=/u01/app/oracle/middleware/Oracle_IDM1/apm/ -Djbo.server.internal_connection=jdbc/APMDBDS -Doracle.security.jps.policy.migration.validate.principal=false -Doracle.oaam.home=/u01/app/oracle/middleware/Oracle_IDM1/oaam/ -Doracle.oaam.home=/u01/app/oracle/middleware/Oracle_IDM1/oaam/ -Djava.awt.headless=true -DXL.HomeDir=/u01/app/oracle/middleware/Oracle_IDM1/server -Djava.security.auth.login.config=/u01/app/oracle/middleware/Oracle_IDM1/server/config/authwl.conf -da:org.apache.xmlbeans... -Dbpm.enabled=true -Dsoa.archives.dir=/u01/app/oracle/middleware/Oracle_SOA1/soa -Dsoa.oracle.home=/u01/app/oracle/middleware/Oracle_SOA1 -Dsoa.instance.home=/u01/app/oracle/middleware/user_projects/domains/oimdomain -Dtangosol.coherence.clusteraddress=227.7.7.9 -Dtangosol.coherence.clusterport=9778 -Dtangosol.coherence.log=jdk -Djavax.xml.soap.MessageFactory=oracle.j2ee.ws.saaj.soap.MessageFactoryImpl -Djava.protocol.handler.pkgs=oracle.mds.net.protocol|oracle.fabric.common.classloaderurl.handler|oracle.fabric.common.uddiurl.handler|oracle.bpm.io.fs.protocol -Dweblogic.transaction.blocking.commit=true -Dweblogic.transaction.blocking.rollback=true -Djavax.net.ssl.trustStore=/u01/app/oracle/middleware/wlserver_10.3/server/lib/DemoTrust.jks -Dem.oracle.home=/u01/app/oracle/middleware/oracle_common -Djava.awt.headless=true -Dbam.oracle.home=/u01/app/oracle/middleware/Oracle_SOA1 -Dums.oracle.home=/u01/app/oracle/middleware/Oracle_SOA1 -Dweblogic.management.discover=false -Dweblogic.management.server=http://oim11g.localdomain:7001 -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=/u01/app/oracle/middleware/patch_wls1033/profiles/default/sysext_manifest_classpath:/u01/app/oracle/middleware/patch_oepe1033/profiles/default/sysext_manifest_classpath:/u01/app/oracle/middleware/patch_ocp353/profiles/default/sysext_manifest_classpath weblogic.Server
    [WARN ] Use of -Djrockit.optfile is deprecated and discouraged.
    <Aug 27, 2010 2:59:17 PM CEST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Oracle JRockit(R) Version R28.0.0-679-130297-1.6.0_17-20100312-2128-linux-ia32 from Oracle Corporation>
    <Aug 27, 2010 2:59:22 PM CEST> <Info> <Security> <BEA-090065> <Getting boot identity from user.>
    Enter username to boot WebLogic server:weblogic
    Enter password to boot WebLogic server:
    <Aug 27, 2010 2:59:29 PM CEST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.3.0 Fri Apr 9 00:05:28 PDT 2010 1321401
    WebLogic Server WebService SSL Client 10.3 Fri Apr 9 00:05:28 PDT 2010 1321401 >
    <Aug 27, 2010 2:59:31 PM CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Aug 27, 2010 2:59:31 PM CEST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Aug 27, 2010 2:59:32 PM CEST> <Notice> <LoggingService> <BEA-320400> <The log file /u01/app/oracle/middleware/user_projects/domains/oimdomain/servers/oim_server1/logs/oim_server1.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 27, 2010 2:59:32 PM CEST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to /u01/app/oracle/middleware/user_projects/domains/oimdomain/servers/oim_server1/logs/oim_server1.log00016. Log messages will continue to be logged in /u01/app/oracle/middleware/user_projects/domains/oimdomain/servers/oim_server1/logs/oim_server1.log.>
    <Aug 27, 2010 2:59:32 PM CEST> <Notice> <Log Management> <BEA-170019> <The server log file /u01/app/oracle/middleware/user_projects/domains/oimdomain/servers/oim_server1/logs/oim_server1.log is opened. All server side log events will be written to this file.>
    Aug 27, 2010 2:59:38 PM oracle.iam.platform.auth.providers.wls.OIMAuthenticationProvider initialize
    INFO: Authentication module initialized
    Aug 27, 2010 2:59:38 PM oracle.security.am.agent.asdk.impl.aaaclient.AccessServerImpl initAAAClient
    INFO: Connection to OAM Server could not be established: Exception in connecting to server. Connection refused
    <Aug 27, 2010 2:59:41 PM CEST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Aug 27, 2010 2:59:43 PM CEST> <Notice> <LoggingService> <BEA-320400> <The log file /u01/app/oracle/middleware/user_projects/domains/oimdomain/servers/oim_server1/logs/access.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 27, 2010 2:59:43 PM CEST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to /u01/app/oracle/middleware/user_projects/domains/oimdomain/servers/oim_server1/logs/access.log00008. Log messages will continue to be logged in /u01/app/oracle/middleware/user_projects/domains/oimdomain/servers/oim_server1/logs/access.log.>
    <Aug 27, 2010 2:59:49 PM CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Aug 27, 2010 2:59:49 PM CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Aug 27, 2010 3:00:06 PM CEST> <Warning> <oracle.jps.upgrade> <JPS-06003> <Cannot migrate credential folder/key ADF/anonymous#oimBpelCredKey.Reason oracle.security.jps.service.credstore.CredentialAlreadyExistsException: JPS-01007: The credential with map ADF and key anonymous#oimBpelCredKey already exists..>
    Loading xalan.jar for XPathAPI.
    15:01:10 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] -
    ----------------- NEXAWEB SERVER LICENSE ------------------
    - Customer ID : 122
    - License type : Enterprise
    - Max unique IPs : unlimited
    - Max XUL sessions : unlimited
    - Max CPUs/server : unlimited
    - Clustering allowed : true
    - Expiration date : none
    Nexaweb Technologies Inc.(C)2000-2004. All Rights Reserved.
    Nexaweb Technologies Inc.
    10 Canal Park
    Cambridge, MA 02141
    Tel: 617.577.8100. Email: [email protected]
    15:01:11 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] - Clustering is OFF.
    15:01:11 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] - Servlet Engine: WebLogic Server 10.3.3.0 Fri Apr 9 00:05:28 PDT 2010 1321401 Oracle WebLogic Server Module Dependencies 10.3 Tue Mar 2 15:22:37 PST 2010 WebLogic Server WebService SSL Client 10.3 Fri Apr 9 00:05:28 PDT 2010 1321401
    15:01:11 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] - Servlet API Version: 2.5
    15:01:11 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] - Nexaweb Server Info = Nexaweb Server 3.3.1072
    15:01:11 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] - Nexaweb Server initialized successfully.
    <Aug 27, 2010 3:01:22 PM CEST> <Warning> <oracle.iam.platform.utils> <IAM-0070017> <Unable to read the connection retry interval setting. Setting it to the default - 7 >
    <Aug 27, 2010 3:01:22 PM CEST> <Warning> <oracle.iam.platform.utils> <IAM-0070018> <Unable to read the connection retry attempts setting. Setting it to the default - 3>
    <Aug 27, 2010 3:01:25 PM CEST> <Warning> <org.apache.struts.config.impl.ModuleConfigImpl> <BEA-000000> <Overriding ActionForm of name selfRegistrationForm>
    <Aug 27, 2010 3:01:25 PM CEST> <Warning> <org.apache.struts.config.impl.ModuleConfigImpl> <BEA-000000> <Overriding ActionForm of name webAppSettingsForm>
    <Aug 27, 2010 3:01:25 PM CEST> <Warning> <org.apache.struts.config.impl.ModuleConfigImpl> <BEA-000000> <Overriding ActionForm of name selfRegTrackRequestForm>
    <Aug 27, 2010 3:01:25 PM CEST> <Warning> <org.apache.struts.config.impl.ModuleConfigImpl> <BEA-000000> <Overriding ActionForm of name provisionedResourcesForUserForm>
    <Aug 27, 2010 3:01:26 PM CEST> <Warning> <org.apache.struts.config.impl.ModuleConfigImpl> <BEA-000000> <Overriding ActionForm of name requestMoreInfoForm>
    <Aug 27, 2010 3:01:26 PM CEST> <Warning> <org.apache.struts.config.impl.ModuleConfigImpl> <BEA-000000> <Overriding ActionConfig of path /WebAdminHome>
    ADF Library non-OC4J post-deployment (millis): 324
    [EL Info]: 2010-08-27 15:01:46.014--ServerSession(289682207)--EclipseLink, version: Eclipse Persistence Services - 1.1.0.r3634
    [EL Info]: 2010-08-27 15:01:47.329--ServerSession(289682207)--file:/u01/app/oracle/middleware/Oracle_IDM1/modules/oracle.oes_11.1.1/jps-internal.jar-JpsDBDataManager login successful
    [EL Info]: 2010-08-27 15:01:57.322--ServerSession(262618610)--EclipseLink, version: Eclipse Persistence Services - 2.0.2.v20100323-r6872
    [EL Info]: 2010-08-27 15:01:57.596--ServerSession(262618610)--Server: WebLogic Server 10.3.3.0 Fri Apr 9 00:05:28 PDT 2010 1321401
    [EL Info]: 2010-08-27 15:01:57.85--ServerSession(262618610)--oim login successful
    *<Aug 27, 2010 3:01:58 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:01:58 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:01:58 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:01:59 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:01:59 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:01:59 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:01:59 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:01:59 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    <Aug 27, 2010 3:02:29 PM CEST> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Aug 27, 2010 3:02:30 PM CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Aug 27, 2010 3:02:30 PM CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Aug 27, 2010 3:02:31 PM CEST> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on fe80:0:0:0:a00:27ff:fe0d:25b2:14000 for protocols iiop, t3, ldap, snmp, http.>
    <Aug 27, 2010 3:02:31 PM CEST> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on 127.0.0.1:14000 for protocols iiop, t3, ldap, snmp, http.>
    <Aug 27, 2010 3:02:31 PM CEST> <Notice> <Server> <BEA-002613> <Channel "Default[3]" is now listening on 0:0:0:0:0:0:0:1:14000 for protocols iiop, t3, ldap, snmp, http.>
    <Aug 27, 2010 3:02:31 PM CEST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 172.16.27.75:14000 for protocols iiop, t3, ldap, snmp, http.>
    <Aug 27, 2010 3:02:31 PM CEST> <Notice> <WebLogicServer> <BEA-000332> <Started WebLogic Managed Server "oim_server1" for domain "oimdomain" running in Development Mode>
    <Aug 27, 2010 3:02:34 PM CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Aug 27, 2010 3:02:34 PM CEST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>

  • HELP ME!!!! who can help me ???

    My eclipse always halt suddenly. I have no idea how to solve it, and i have reinstall my JVM and eclipse.but it doesn't work, the eclipse halt again.
    The below is the eclipse log hs_err_pid3740.log. Who can help me? much appreciate!!!!
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d7f789e, pid=3740, tid=1468
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_09-b01 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0xc789e]
    --------------- T H R E A D ---------------
    Current thread (0x00c7ed10): JavaThread "Worker-5" [_thread_in_vm, id=1468]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000054
    Registers:
    EAX=0x00000000, EBX=0x2563a6b0, ECX=0x00000180, EDX=0x0000001a
    ESP=0x37fff814, EBP=0x37fff848, ESI=0x0000001a, EDI=0x35298770
    EIP=0x6d7f789e, EFLAGS=0x00010202
    Top of Stack: (sp=0x37fff814)
    0x37fff814: 6d7f7858 0000001a 3699747c 22ca6f68
    0x37fff824: 00000000 6d7f8aaf 23aacde0 22ca6f68
    0x37fff834: 00c7ed10 36b7bff0 35298768 35298770
    0x37fff844: 35298b5c 37fff87c 6d7f9986 36997468
    0x37fff854: 36997488 36997484 00c7ed10 00c7ed10
    0x37fff864: 00c7ed10 00000000 00000001 00c7ed10
    0x37fff874: 00c7ed10 00c7ed10 37fff8a8 6d7f98b4
    0x37fff884: 37fff940 3699747c 36997468 36997488
    Instructions: (pc=0x6d7f789e)
    0x6d7f788e: 8b 54 24 04 8d 0c 91 8b 04 01 8b 40 0c 8b 40 14
    0x6d7f789e: 8b 40 54 c1 e8 09 83 e0 01 c2 04 00 8b 4c 24 04
    Stack: [0x37f00000,0x38000000), sp=0x37fff814, free space=1022k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0xc789e]
    V [jvm.dll+0xc9986]
    V [jvm.dll+0xc98b4]
    V [jvm.dll+0xca226]
    V [jvm.dll+0xca059]
    V [jvm.dll+0x82544]
    j com.sun.org.apache.xml.internal.serializer.ToStream.init(Ljava/io/Writer;Ljava/util/Properties;ZZ)V+73
    j com.sun.org.apache.xml.internal.serializer.ToStream.init(Ljava/io/OutputStream;Ljava/util/Properties;Z)V+55
    j com.sun.org.apache.xml.internal.serializer.ToStream.setOutputStream(Ljava/io/OutputStream;)V+26
    j com.sun.org.apache.xml.internal.serializer.ToUnknownStream.setOutputStream(Ljava/io/OutputStream;)V+5
    j com.sun.org.apache.xalan.internal.xsltc.runtime.output.TransletOutputHandlerFactory.getSerializationHandler()Lcom/sun/org/apache/xml/internal/serializer/SerializationHandler;+172
    j com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.getOutputHandler(Ljavax/xml/transform/Result;)Lcom/sun/org/apache/xml/internal/serializer/SerializationHandler;+250
    j com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(Ljavax/xml/transform/Source;Ljavax/xml/transform/Result;)V+46
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeDOMtoStream(Lorg/w3c/dom/Document;Ljava/io/OutputStream;)V+44
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeTaskList(Lorg/w3c/dom/Document;Ljava/util/zip/ZipOutputStream;)V+25
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeTaskList(Lorg/eclipse/mylyn/tasks/core/TaskList;Ljava/io/OutputStream;)V+342
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeTaskList(Lorg/eclipse/mylyn/tasks/core/TaskList;Ljava/io/File;)V+12
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListSaveManager.internalSaveTaskList()V+16
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListSaveManager.access$0(Lorg/eclipse/mylyn/internal/tasks/ui/util/TaskListSaveManager;)V+1
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListSaveManager$TaskListSaverJob.run(Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/eclipse/core/runtime/IStatus;+65
    j org.eclipse.core.internal.jobs.Worker.run()V+31
    v ~StubRoutines::call_stub
    V [jvm.dll+0x86e84]
    V [jvm.dll+0xddead]
    V [jvm.dll+0x86d55]
    V [jvm.dll+0x86ab2]
    V [jvm.dll+0xa16b2]
    V [jvm.dll+0x10f4ac]
    V [jvm.dll+0x10f47a]
    C [MSVCRT.dll+0x2a3b0]
    C [kernel32.dll+0xb713]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j com.sun.org.apache.xml.internal.serializer.ToStream.init(Ljava/io/Writer;Ljava/util/Properties;ZZ)V+73
    j com.sun.org.apache.xml.internal.serializer.ToStream.init(Ljava/io/OutputStream;Ljava/util/Properties;Z)V+55
    j com.sun.org.apache.xml.internal.serializer.ToStream.setOutputStream(Ljava/io/OutputStream;)V+26
    j com.sun.org.apache.xml.internal.serializer.ToUnknownStream.setOutputStream(Ljava/io/OutputStream;)V+5
    j com.sun.org.apache.xalan.internal.xsltc.runtime.output.TransletOutputHandlerFactory.getSerializationHandler()Lcom/sun/org/apache/xml/internal/serializer/SerializationHandler;+172
    j com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.getOutputHandler(Ljavax/xml/transform/Result;)Lcom/sun/org/apache/xml/internal/serializer/SerializationHandler;+250
    j com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(Ljavax/xml/transform/Source;Ljavax/xml/transform/Result;)V+46
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeDOMtoStream(Lorg/w3c/dom/Document;Ljava/io/OutputStream;)V+44
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeTaskList(Lorg/w3c/dom/Document;Ljava/util/zip/ZipOutputStream;)V+25
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeTaskList(Lorg/eclipse/mylyn/tasks/core/TaskList;Ljava/io/OutputStream;)V+342
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeTaskList(Lorg/eclipse/mylyn/tasks/core/TaskList;Ljava/io/File;)V+12
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListSaveManager.internalSaveTaskList()V+16
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListSaveManager.access$0(Lorg/eclipse/mylyn/internal/tasks/ui/util/TaskListSaveManager;)V+1
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListSaveManager$TaskListSaverJob.run(Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/eclipse/core/runtime/IStatus;+65
    j org.eclipse.core.internal.jobs.Worker.run()V+31
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x36da44c0 JavaThread "Thread-7" [_thread_blocked, id=2840]
    0x36b960f0 JavaThread "Timer-2" [_thread_blocked, id=2008]
    0x36ca63a0 JavaThread "Timer-1" [_thread_blocked, id=3176]
    0x36b92d20 JavaThread "Timer-0" [_thread_blocked, id=3832]
    0x36bde590 JavaThread "Worker-6" [_thread_blocked, id=3968]
    =>0x00c7ed10 JavaThread "Worker-5" [_thread_in_vm, id=1468]
    0x369b7008 JavaThread "Worker-4" [_thread_blocked, id=1444]
    0x352b7d88 JavaThread "Worker-3" [_thread_blocked, id=780]
    0x36bd1008 JavaThread "Worker-2" [_thread_blocked, id=2124]
    0x35748c78 JavaThread "Worker-1" [_thread_blocked, id=3588]
    0x369438d8 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=844]
    0x366b7fd0 JavaThread "Java indexing" daemon [_thread_blocked, id=2040]
    0x355a7160 JavaThread "Worker-0" [_thread_blocked, id=1492]
    0x3550b410 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=3956]
    0x3556de40 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=3192]
    0x00c629e0 JavaThread "State Data Manager" daemon [_thread_blocked, id=3188]
    0x00c5dc88 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1728]
    0x00c5c8e8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=340]
    0x00c6b2a8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2116]
    0x00c50ab8 JavaThread "Finalizer" daemon [_thread_blocked, id=3652]
    0x00c4f650 JavaThread "Reference Handler" daemon [_thread_blocked, id=3144]
    0x003edb60 JavaThread "main" [_thread_in_native, id=2316]
    Other Threads:
    0x003e5688 VMThread [id=3568]
    0x00c5ef98 WatcherThread [id=3984]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 4608K, used 2915K [0x02c90000, 0x03190000, 0x053f0000)
    eden space 4096K, 58% used [0x02c90000, 0x02ee8c50, 0x03090000)
    from space 512K, 100% used [0x03110000, 0x03190000, 0x03190000)
    to space 512K, 0% used [0x03090000, 0x03090000, 0x03110000)
    tenured generation total 60112K, used 42130K [0x053f0000, 0x08ea4000, 0x22c90000)
    the space 60112K, 70% used [0x053f0000, 0x07d14a28, 0x07d14c00, 0x08ea4000)
    compacting perm gen total 43008K, used 42780K [0x22c90000, 0x25690000, 0x32c90000)
    the space 43008K, 99% used [0x22c90000, 0x25657298, 0x25657400, 0x25690000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040e000      E:\dev_tools\eclipse\eclipse-jee-europa-winter-win32\eclipse\eclipse.exe
    0x7c900000 - 0x7c9af000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f6000      C:\WINDOWS\system32\kernel32.dll
    0x7e410000 - 0x7e4a1000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f59000      C:\WINDOWS\system32\GDI32.dll
    0x5d090000 - 0x5d12a000      C:\WINDOWS\system32\COMCTL32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f02000      C:\WINDOWS\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\MSVCRT.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x629c0000 - 0x629c9000      C:\WINDOWS\system32\LPK.DLL
    0x74d90000 - 0x74dfb000      C:\WINDOWS\system32\USP10.dll
    0x72000000 - 0x72012000      E:\dev_tools\eclipse\eclipse-jee-europa-winter-win32\eclipse\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.0.3.R33x_v20080118\eclipse_1023.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x74720000 - 0x7476c000      C:\WINDOWS\system32\MSCTF.dll
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\apphelp.dll
    0x755c0000 - 0x755ee000      C:\WINDOWS\system32\msctfime.ime
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x6d730000 - 0x6d8cb000      D:\Program Files\Java\jdk1.5.0_09\jre\bin\client\jvm.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x6d2f0000 - 0x6d2f8000      D:\Program Files\Java\jdk1.5.0_09\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d700000 - 0x6d70c000      D:\Program Files\Java\jdk1.5.0_09\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000      D:\Program Files\Java\jdk1.5.0_09\jre\bin\java.dll
    0x6d720000 - 0x6d72f000      D:\Program Files\Java\jdk1.5.0_09\jre\bin\zip.dll
    0x6d530000 - 0x6d543000      D:\Program Files\Java\jdk1.5.0_09\jre\bin\net.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x6d550000 - 0x6d559000      D:\Program Files\Java\jdk1.5.0_09\jre\bin\nio.dll
    0x35be0000 - 0x35c2f000      E:\dev_tools\eclipse\eclipse-jee-europa-winter-win32\eclipse\configuration\org.eclipse.osgi\bundles\334\1\.cp\swt-win32-3349.dll
    0x773d0000 - 0x774d3000      C:\WINDOWS\WinSxS\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\COMCTL32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x7c9c0000 - 0x7d1d7000      C:\WINDOWS\system32\SHELL32.dll
    0x77120000 - 0x771ab000      C:\WINDOWS\system32\OLEAUT32.dll
    0x78050000 - 0x78120000      C:\WINDOWS\system32\WININET.dll
    0x35c40000 - 0x35c49000      C:\WINDOWS\system32\Normaliz.dll
    0x78000000 - 0x78045000      C:\WINDOWS\system32\iertutil.dll
    0x361a0000 - 0x361ba000      C:\WINDOWS\system32\hccutils.DLL
    0x361c0000 - 0x361c8000      E:\dev_tools\eclipse\eclipse-jee-europa-winter-win32\eclipse\configuration\org.eclipse.osgi\bundles\36\1\.cp\os\win32\x86\localfile_1_0_0.dll
    0x74c80000 - 0x74cac000      C:\WINDOWS\system32\oleacc.dll
    0x76080000 - 0x760e5000      C:\WINDOWS\system32\MSVCP60.dll
    0x36e80000 - 0x36e94000      E:\dev_tools\eclipse\eclipse-jee-europa-winter-win32\eclipse\configuration\org.eclipse.osgi\bundles\334\1\.cp\swt-gdip-win32-3349.dll
    0x4ec50000 - 0x4edf6000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.2600.5581_x-ww_dfbc4fc4\gdiplus.dll
    0x37170000 - 0x37435000      C:\WINDOWS\system32\xpsp2res.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x75cf0000 - 0x75d81000      C:\WINDOWS\System32\mlang.dll
    0x379d0000 - 0x37a54000      D:\Program Files\TortoiseSVN\bin\tortoisesvn.dll
    0x6eec0000 - 0x6eee2000      D:\Program Files\TortoiseSVN\bin\libapr_tsvn.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\system32\MSWSOCK.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.1433_x-ww_5cf844d2\MSVCR80.dll
    0x6ee60000 - 0x6ee88000      D:\Program Files\TortoiseSVN\bin\libaprutil_tsvn.dll
    0x6ee50000 - 0x6ee5d000      D:\Program Files\TortoiseSVN\bin\libapriconv_tsvn.dll
    0x37a80000 - 0x37a8c000      D:\Program Files\TortoiseSVN\bin\intl3_svn.dll
    0x7c420000 - 0x7c4a7000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.1433_x-ww_5cf844d2\MSVCP80.dll
    0x76780000 - 0x76789000      C:\WINDOWS\system32\SHFOLDER.dll
    0x6ee40000 - 0x6ee46000      D:\Program Files\TortoiseSVN\iconv\_tbl_simple.so
    0x6e900000 - 0x6e923000      D:\Program Files\TortoiseSVN\iconv\cp936.so
    0x6ed50000 - 0x6ed56000      D:\Program Files\TortoiseSVN\iconv\utf-8.so
    0x77a20000 - 0x77a74000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661d000      C:\WINDOWS\System32\CSCDLL.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x76380000 - 0x76385000      C:\WINDOWS\system32\msimg32.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    VM Arguments:
    jvm_args: -Dosgi.requiredJavaVersion=1.5 -Xms40m -Xmx512m -XX:MaxPermSize=256M
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    JAVA_HOME=D:\Program Files\Java\jdk1.5.0_09
    CLASSPATH=.;D:\Program Files\Java\jdk1.5.0_09\lib\tools.jar;D:\Program Files\Java\jre1.5.0_09\lib\ext\QTJava.zip;E:\eclipse_ee\workspace\Thumper\postgresql-8.2-508.jdbc3.jar
    PATH=D:\Program Files\Java\jdk1.5.0_09\bin\..\jre\bin\client;D:\Program Files\Java\jdk1.5.0_09\bin\..\jre\bin;D:\Program Files\Java\jdk1.5.0_09\bin;D:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\Perl\site\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\Program Files\Apache Software Foundation\Maven 1.1-beta-3\bin;D:\Program Files\Apache Software Foundation\apache-ant-1.7.0\bin;D:\Program Files\Python25;D:\cygwin;D:\Program Files\SecureCRT\;D:\Program Files\IDM Computer Solutions\UltraEdit-32;D:\Program Files\jython2.2.1;D:\Program Files\Tencent\QQ;D:\Program Files\net-snmp\usr\bin;D:\Program Files\Apache Software Foundation\apache-maven-2.0.9\bin;D:\Program Files\MySQL\MySQL Server 5.0\bin;E:\dev_tools\svn\svn-win32-1.4.3\bin;D:\Program Files\Tivoli\TSM\baclient;E:\open source project\android\android-sdk_m5-rc15_windows\tools;D:\cygwin\bin
    USERNAME=Administrator
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 13, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 3
    CPU:total 2 (cores per cpu 2, threads per core 1) family 6 model 15 stepping 13, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 2052648k(1391420k free), swap 3990772k(3260776k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_09-b01) for windows-x86, built on Sep 7 2006 13:59:31 by "java_re" with MS VC++ 6.0

    Looking into the stack trace, this seems to be related to mylyn plugin. Try to remove it (remove it from the plugins dir and restart eclipse) and see if this is still happening

Maybe you are looking for

  • Time out of Time Capsule - even with Ethernet

    My 500G Time Capsule since yesterday evening refuses to work for longer than a few minutes, which is far too little for any backup. The problem first was seen when I used it with WiFi. I then connected the TC directly with ethernet to my MacBook. Ini

  • Assign purchase org to vendor

    Hi, Var to assign vendor to purchase prg and purchasing group in SPRO. Regards, dhanush.S.T

  • Sat. A300 - USB ICH8 Family USB Universal Host Controller is not working

    Device: Intel(R) ICH8 Family USB Universal Host Controller - 2830 till 2836 and 283A Driverversion is: 8.0.0.1008 Driverdate: 15.09.2006 is not working! Can anybody help me? Where do I find the actual driver? Thanks in advance. Chris

  • FOP and float

    Hi All, I've just started looking into using FOP for generating PDFs from classes in my java code. I first had a go with the Apache's FOP engine. The problem I had with this one is that the Float attribute is not yet implemented in this engine. What

  • Changes to song info won't stick

    I've changed the song information for a lot of songs but for some of them it won't save and reverts to the original information. I've tried some of the suggestions on the messageboard but they haven't helped me. The songs are not read- only and neith