SAXParserFactory

import java.io.*;
import org.xml.sax.*;
import org.xml.sax.helpers.DefaultHandler;
import javax.xml.parsers.SAXParserFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
public class XMLTest
I am attemping to compile and run a simple program to open and parse an sml file. I have listed the code below.
public static void main(String args[])
DefaultHandler handler = new DefaultHandler();
SAXParserFactory p = SAXParserFactory.newInstance();
try {
SAXParser saxParser = new p.newSAXParser();
saxParser.Parse( new File(args[0]), handler);
} catch (Throwable t) {
t.printStackTrace();
I am continually recieving the following errors:
XMLTest/XMLTest.java [23:1] Class p.newSAXParser not found in type declaration or import.
SAXParser saxParser = new p.newSAXParser();
^
XMLTest/XMLTest.java [23:1] No constructor in newSAXParser matches <init>()
SAXParser saxParser = new p.newSAXParser();
^
XMLTest/XMLTest.java [23:1] Cannot parse initializer
SAXParser saxParser = new p.newSAXParser();
^
XMLTest/XMLTest.java [24:1] No method found matching Parse(File,DefaultHandler)
saxParser.Parse( new File(args[0]), handler);
^
D:\forte4j\Development\XMLTest\XMLTest.java:25: warning: catch not reached.
} catch (Throwable t) {
^
1 warning
4 errors
I believe this is a result of the compiler is unable to find the libraries. If so, I am trying to add them to the project but cannot find a path. Any help that can be offered would be greatly appreciated.

There are two errors in your program:
1) replace
SAXParser saxParser = new p.newSAXParser();with:
SAXParser saxParser = p.newSAXParser();2) replace (Parse with parse)
saxParser.Parse( new File(args[0]), handler);with:
saxParser.parse( new File(args[0]), handler);It'll compile fine after these changes.
Good luck.

Similar Messages

  • SAXParserFactory attempting fetch of services file from httpd root dir

    Background: I have a small applet that uses the java plug-in. This applet displays a navigation tree for my intranet site. The applet is archived in a jar file. The applet fetches an XML file from the hosting server and then uses JAXP SAX2 parser to convert the XML data into the tree. My parser factory creation follows the examples on this site:
    SAXParserFactory factory = SAXParserFactory.newInstance();
    According to the documentation on SAXParserFactory, it looks in four places for the concrete class to use for the parser factory:
    - Use the javax.xml.parsers.SAXParserFactory system property.
    - Use the properties file "lib/jaxp.properties" in the JRE
    directory.
    - Use the Services API (as detailed in the JAR specification), if
    available, to determine the classname. The Services API will look
    for a classname in the file
    META-INF/services/javax.xml.parsers.SAXParserFactory in jars
    available to the runtime.
    - Platform default SAXParserFactory instance.
    I let the platform default be selected and the applet runs fine.
    The problem is that with every access to the page, I get the following entries in the access and error logs for my apache server (with JRE 1.4.1_01 and 1.4.2):
    access:
    xxx.xxx.xxx.xxx- - [27/Jun/2003:09:06:43 -0700] "GET /META-INF/services/javax.xml.parsers.SAXParserFactory HTTP/1.1" 404 258
    error:
    [Fri Jun 27 09:06:43 2003] [error] [client xxx.xxx.xxx.xxx] File does not exist: XXX/meta-inf/services/javax.xml.pars
    rs.SAXParserFactory
    I don't have a services file in the jar file for the applet because I wanted it to use the platform default.
    Is anyone else seeing this behavior? Is there a workaround without having to hardcode a concrete class path into a services file embedded in the jar?
    Thanks in advance,
    Paul

    It's looking to find out which SAX parser you want it to use. You can specify that any number of ways (system property, service provider, etc.).
    See:
    http://developer.java.sun.com/developer/EJTechTips/2003/tt0311.html#1
    and
    http://java.sun.com/j2se/1.4.2/docs/guide/jar/jar.html#Service%20Provider
    for more information.

  • NoSuchMethod: javax.xml.parsers.SAXParserFactory.getSchema()

    Hi All,
    In a servlet I have created a SOAPMessage object based on the request received, and when I execute
    message.getSOAPBody I get the message:
    java.lang.NoSuchMethodError: javax.xml.parsers.SAXParserFactory.getSchema()
    I am running tomcat with jdk 1.5 and I am using saaj-api.jar, saaj_imp.jar and Fastinfoset.jar from jwsdp 1.6
    Anyone got any ideas what to do ?
    Kind regards,
    Marco Laponder

    Along with jdk1.4.2, Sun has bundled a currently ancient version of JAXP.
    So, get a recent version of a JAXP implementation (e.g. with JWSDP1.6), probably contained in jar-files called jaxp-api.jar, dom.jar, sax.jar, xalan.jar and xercesImpl.jar, and add these to your classpath when you're compiling/running.
    You're not done yet! Because the old jaxp libraries are bundled with your JVM, the classloader will find them through your bootclasspath, and they will be prefered above the new implementation you just added to the classpath. To resolve this, the JVM creators came up with the endorsed mechanism. This allows you to provide new classes for a list of predefined packages. These classes are already included in the jvm distribution, but are foreseen to be updated. See for more information about the endorsed mechanism: http://java.sun.com/j2se/1.4.2/docs/guide/standards/ .
    So to be short, you also have to make the jvm recognise them as endorsed libraries. E.g. by adding them to the <java-home>/lib/endorsed directory or by setting the java.endorsed.dirs property to the directories which include the new jar files.
    Your commandline to run app.class would become: java -Djava.endorsed.dirs=/home/endorsedDir;/anotherDir app

  • Format of  "META-INF/services/javax.xml.parsers.SAXParserFactory"

    Hi there,
    I have written an applet utilizing JAXP. Now the applet does hit the server with requests to
    "META-INF/services/javax.xml.parsers.SAXParserFactory", which off course produces a 404-error.
    What is the best way to get rid of this unnecessary request in an Applet?
    - I can't set the property, because I do not know which xml-parser implementation is available at the client .
    - I can't rely on lib/jaxp.properties, obviously!
    - I could not find any conclusive information about the format of this request. It says in the Javadoc, a file at this location is used to determine the Factory? waht is the Format of this file? What should it contain?
    - The applet works fine, as it defaults to the system factory anyway.
    However, the request brings an extra delay in the applet, which I just do not need. I also do not want to download my preferred xml-parser, I want ot use, what ever is installed on the client.
    Any idea what to do?
    Thanks
    Kaj
    Chief Designer at Conficio.com
    What is your Plan-B? We just released Plan-B 2.1

    Thanks!
    Thanks for the fast reply. I don't know if I made my point clear.
    I do not want to determine the parser by myself. I want the client system use the default parser, so I do not have the hit of downloading the fairly large parser jar.
    However, I want it not to do an empty request to the server for nothing. This turn around time kills an Applet. I want a fast loading applet!
    I'll go in trial and error mode, when I find the time next week.
    Thanks again, I appreciate it!
    K<o>

  • Help! JDOM SAXParserFactory causing Security exception in Microsoft Java VM

    Hiya all, I'm really hoping you can offer me a hand with this problem.
    I'm having a problem with SAXParserFactory causing a security exception in
    Microsoft Internet Explorer, using JDOM b7.
    here is the error string it spits out:
    String...com.ms.security.SecurityExceptionEx[javax/xml/parsers/SAXParserFact
    ory.newInstance]: Unable to access system property:
    javax.xml.parsers.SAXParserFactory
    at com/ms/security/permissions/PropertyPermission.check
    (PropertyPermission.java)
    at com/ms/security/PolicyEngine.shallowCheck (PolicyEngine.java)
    at com/ms/security/PolicyEngine.checkCallersPermission (PolicyEngine.java)
    at com/ms/security/StandardSecurityManager.chk
    (StandardSecurityManager.java)
    at com/ms/security/StandardSecurityManager.checkPropertyAccess
    (StandardSecurityManager.java)
    at java/lang/System.getProperty (System.java)
    at javax/xml/parsers/SAXParserFactory.newInstance
    (SAXParserFactory.java:139)
    at java/lang/reflect/Method.invoke (Method.java)
    at org/jdom/input/SAXBuilder.createParser (SAXBuilder.java)
    at org/jdom/input/SAXBuilder.build (SAXBuilder.java)
    at org/jdom/input/SAXBuilder.build (SAXBuilder.java)
    at aim/AIMPanel.parseXML (AIMPanel.java:673)
    at aim/AIMPanel.serverCall (AIMPanel.java:486)
    at aim/LogicalAIM.<init> (LogicalAIM.java:62)
    at aim/AIMPanel.customInitialize (AIMPanel.java:1595)
    at shout3d/Shout3DPanel.n (Shout3DPanel.java)
    at shout3d/Shout3DPanel.run (Shout3DPanel.java)
    at java/lang/Thread.run (Thread.java)
    Using Microsoft's 5.0.0.3802 VM, this error results in a NullPointer
    Exception further down, causing the app to quit.
    in 5.0.0.3310, it reports the error but continues to run.
    in 5.0.0.3234, no errors are reported at all.
    Do you guys have any idea what's going on and why, and what I might be able
    to do to correct this?
    Any help is greatly appreciated...
    -J

    The factory classes (DocumentBuilderFactory and SAXParserFactory) use a Systems Property to determine which parser to use. Since applets do not have access to the Systems properties, a security exception is usually thrown.
    I have not done work with Applets that use JAXP, however I would bet if you search this forum you will find other who have had this problem along with a possible work around.
    Hope this helps.

  • Javax.xml.parsers.SAXParserFactory

    Hi,
    where i can find this parameter "javax.xml.parsers.SAXParserFactory ", i want to remove this parameter from configtool or from oslevel but i could not find this parameter.
    The parameter is effecting when we are applying KM related forums in portal,so i need to remove or change that parameter
    I have search in java level "lib/jaxp.properties" in the JRE directory.
    And I have searched in the Services API will look for a classname in the file META-INF/services/javax.xml.parsers.SAXParserFactory in
    jars available to the runtime. But I didn’t get the parameter javax.xml.parser.SAXParserFactory.
    The parameter is effecting when we are applying KM related forums in portal,so i need to remove or change that parameter
    the thing is in portal ->system information>system properties we will find the
    parameter javax.xml.parsers.SAXParserFactory =com.inqmy.lib.jaxp.SAXParserFactoryImpl
    and also we have the
    org.xml.sax.driver = com.sap.engine.lib.xml.parser.SAXParser
    we need org.xml.sax.driver = com.sap.engine.lib.xml.parser.SAXParser
    we have to remove the parameter parameter javax.xml.parsers.SAXParserFactory =com.inqmy.lib.jaxp.SAXParserFactoryImpl in system properties.
    And also i want to edit system properties in portal, where we can do this.
    thanks and regards,
    jagadish

    Hi Jagadishwar,
    You can change this kind of configuration using the Config Tool: [Configuring Instance Properties|http://help.sap.com/saphelp_nw04s/helpdata/en/00/3ca3e81b5a4c749b860ab1ed1fb206/frameset.htm]
    But please be VERY careful when changing this kind of standard configuration. Personally I would not recommend it. It's used by and likely required by the underlying J2EE engine/portal, e.g. reading configuration files when starting up. Unless you really know what you're doing, don't be surprised you get into a lot of trouble.
    Kind regards,
    /Sigiswald

  • Topic: SAXParserFactory.getSchema() Excep

    Exception :
    javax.security.auth.login.LoginException: java.lang.NoSuchMethodError: javax.xml.parsers.SAXParserFactory.getSchema()Ljavax/xml/validation/Schema;
    Version Used in the application :
    Tomcat : 5.0.28 Axis : 1.1 JDK(sun) : 1.4.2 Weblogic : 9.1
    SOAP : 1.1 Xerces : 2.6
    We are facing above failures,when trying to connect to weblogic server using Tomcat server as a web service.
    Our application is deployed in the weblogic, when we directly access the application on weblogic server it is working fine.. but when we try to connect through Tomcat Server (Web service - SOAP and axis is deployed)
    we getting javax.security.auth.login.LoginException.
    at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl.<init>(SAXParserImpl.java:124)
    at com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl.newSAXParser(SAXParserFactoryImpl.java:98)
    at weblogic.xml.jaxp.WebLogicSAXParser.<init>(WebLogicSAXParser.java:45)
    at weblogic.xml.jaxp.WebLogicSAXParserFactory.newSAXParser(WebLogicSAXParserFactory.java:51)
    at weblogic.rmi.internal.DescriptorManager.getDescriptorAsMap(DescriptorManager.java:176)
    at weblogic.rmi.internal.DescriptorManager.getDescriptorAsMap(DescriptorManager.java:162)
    at weblogic.rmi.internal.DescriptorManager.createRuntimeDescriptor(DescriptorManager.java:107)
    at weblogic.rmi.internal.DescriptorManager.getBasicRuntimeDescriptor(DescriptorManager.java:88)
    at weblogic.rmi.internal.DescriptorManager.getDescriptor(DescriptorManager.java:54)
    at weblogic.rmi.extensions.server.ServerHelper.getRuntimeDescriptor(ServerHelper.java:332)
    at weblogic.common.internal.RMIBootServiceStub.<clinit>(RMIBootServiceStub.java:29)
    at weblogic.security.acl.internal.Security.authenticate(Security.java:177)
    at weblogic.security.acl.internal.Security.authenticate(Security.java:146)
    at weblogic.security.auth.Authenticate.authenticate(Authenticate.java:112)
    It is working in Weblogic 8 version with same set-up.
    We don't know why it gives this such exception.Can please help in this issue.

    You get this Exception if you use an incompatible JAXP implementation.
    If you use the (ancient) jaxp implementation bundled with jdk1.4..2, one of the things you miss is the javax.xml.parsers.SAXParserFactory.getSchema() method. (see the lack of it at http://java.sun.com/j2se/1.4.2/docs/api/javax/xml/parsers/SAXParserFactory.html )
    In order to use a recent version of jaxp (e.g. 1.3, bundled with JWSDP) you will need to install the libraries (jaxp-api.jar, sax.jar, dom.jar, xercesImpl.jar, xalan.jar) and make sure they're preferred (by your classloader) above the default classpath by using the endorsed mechanism. See the jaxp faq for more info http://java.sun.com/webservices/jaxp/reference/faqs/index.html
    Good luck!

  • SAXParserFactory ClassCastException

    I have the following method that throws the exception shown below:
    public static Object decodeString(String xmlString) {
         XMLDecoder xmlDecode = null;
         try {
              xmlDecode = new XMLDecoder(new BufferedInputStream(
                             new ByteArrayInputStream(xmlString.getBytes())));
              return xmlDecode.readObject();
         } finally {
              if (xmlDecode != null) {
                   xmlDecode.close();
    04/02/15 18:34:37 java.lang.ClassCastException
    04/02/15 18:34:37      at javax.xml.parsers.SAXParserFactory.newInstance(SAXParserFactory.java:87)
    04/02/15 18:34:37      at java.beans.XMLDecoder.<init>(XMLDecoder.java:84)
    04/02/15 18:34:37      at java.beans.XMLDecoder.<init>(XMLDecoder.java:68)
    04/02/15 18:34:37      at java.beans.XMLDecoder.<init>(XMLDecoder.java:56)
    04/02/15 18:34:37      at com.avega.javax.XMLEncoders.decodeString(XMLEncoders.java:23)
    04/02/15 18:34:37      at com.avega.portlets.domain.UserDimensionSelections.getSelectionCriteria(UserDimensionSelections.java:98)The 'RecordSelectionCriteria' are being encoded properly and saved to the database, but when I try to decode them I get the exception. However, if I take the strings that are stored in the database and run the following test main method directly, it works:
    public static void main(String[] args) {
         String test =
              "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"+
              "<java version=\"1.4.1_02\" class=\"java.beans.XMLDecoder\">"+
              "<object class=\"java.util.ArrayList\">"+
              "<void method=\"add\">"+
              "<object class=\"com.avega.sql.RecordSelectionCriterion\">"+
              "<void property=\"value1\">"+
              "<string>Carefree</string>"+
              "</void></object></void></object>";
         String test2 =
              "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"+
              "<java version=\"1.4.1_02\" class=\"java.beans.XMLDecoder\">"+
              "<object class=\"java.util.ArrayList\">"+
              "<void method=\"add\">"+
              "<object class=\"com.avega.sql.RelativeTimeperiodCriterion\">"+
              "<void property=\"dateValue2\">"+
              "<object class=\"java.util.Date\">"+
              "<long>1075622399906</long>"+
              "</object>"+
              "</void>"+
              "<void property=\"numberOfUnits\">"+
              "<int>1</int>"+
              "</void>"+
              "<void property=\"timeUnit\">"+
              "<string>Months</string>"+
              "</void>"+
              "</object>"+
              "</void>"+
              "</object>";
         System.out.println(     ((RecordSelectionCriterion)((java.util.List)decodeString( test )).get(0)).getValue1() );
         System.out.println(     ((RelativeTimeperiodCriterion)((java.util.List)decodeString( test2 )).get(0)).getTimeUnit() );
    Ouput:
    org.xml.sax.SAXParseException: End of entity not allowed; an end tag is missing.
    Continuing ...
    Carefree
    org.xml.sax.SAXParseException: End of entity not allowed; an end tag is missing.
    Continuing ...
    MonthsWhy would the 'main' method work, but the same method throws the exception when called from my application (running in Embedded OC4J)?
    I even added a println with SAXParserFactory.newInstance().toString() to confirm that in both cases the SAXParserFactory is oracle.xml.jaxp.JXSAXParserFactory. The main method also works if I run the class directly on the commandline, and there the factory is org.apache.crimson.jaxp.SAXParserFactoryImpl.

    First you need to close the <java> tag on your test Strings.
    Then the class named RecordSelectionCriterion must be in your classpath. As well as the class called RelativeTimeperiodCriterion.
    For example, I create a Bean like:
    package mypackage1;
    public class RecordSelectionCriterion
    String value1;
    public RecordSelectionCriterion()
    public String getValue1()
    return value1;
    public void setValue1(String value1)
    this.value1 = value1;
    and another one like:
    package mypackage1;
    import java.util.Date;
    public class RelativeTimeperiodCriterion
    Date dateValue2;
    int numberOfUnits;
    String timeUnit;
    public RelativeTimeperiodCriterion()
    public Date getDateValue2()
    return dateValue2;
    public void setDateValue2(Date dateValue2)
    this.dateValue2 = dateValue2;
    public int getNumberOfUnits()
    return numberOfUnits;
    public void setNumberOfUnits(int numberOfUnits)
    this.numberOfUnits = numberOfUnits;
    public String getTimeUnit()
    return timeUnit;
    public void setTimeUnit(String timeUnit)
    this.timeUnit = timeUnit;
    Then the code:
    package mypackage1;
    import java.beans.XMLDecoder;
    import java.io.BufferedInputStream;
    import java.io.ByteArrayInputStream;
    public class saxotn
    public saxotn()
    public static Object decodeString(String xmlString) {
    XMLDecoder xmlDecode = null;
    try {
    xmlDecode = new XMLDecoder(new BufferedInputStream(
    new ByteArrayInputStream(xmlString.getBytes())));
    return xmlDecode.readObject();
    } finally {
    if (xmlDecode != null) {
    xmlDecode.close();
    public static void main(String[] args) {
    String test =
    "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"+
    "<java version=\"1.4.1_02\" class=\"java.beans.XMLDecoder\">"+
    "<object class=\"java.util.ArrayList\">"+
    "<void method=\"add\">"+
    "<object class=\"mypackage1.RecordSelectionCriterion\">"+
    "<void property=\"value1\">"+
    "<string>Carefree</string>"+
    "</void></object></void></object>" +
    "</java>";
    String test2 =
    "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"+
    "<java version=\"1.4.1_02\" class=\"java.beans.XMLDecoder\">"+
    "<object class=\"java.util.ArrayList\">"+
    "<void method=\"add\">"+
    "<object class=\"mypackage1.RelativeTimeperiodCriterion\">"+
    "<void property=\"dateValue2\">"+
    "<object class=\"java.util.Date\">"+
    "<long>1075622399906</long>"+
    "</object>"+
    "</void>"+
    "<void property=\"numberOfUnits\">"+
    "<int>1</int>"+
    "</void>"+
    "<void property=\"timeUnit\">"+
    "<string>Months</string>"+
    "</void>"+
    "</object>"+
    "</void>"+
    "</object>" +
    "</java>";
    System.out.println(test);
    Object o1 = ((java.util.List)decodeString( test ));
    System.out.println(test2);
    Object o2 = ((java.util.List)decodeString( test2 ));
    works fine for me.
    Hope the addresses your point,
    - Olivier

  • SAXParserFactory on jdk1.4

    I use jdk1.4 to compile my java files which includes the using of SAXParserFactory class. The compile failed, and say that the bad class found in rt.jar(javax.xml.parsers.SAXParserFactory), the version 48 found but version 47 expected.
    I cannot figure out what happened. Anyone can help me out? Thanks.

    Actually the code is simple as follow,
    SAXParserFactory factory = SAXParserFactory.newInstance();
    try{
    SAXParser saxParser = factory.newSAXParser();
    }catch(Throwable t){
    //t.printStackTrace();
    return null;
    I guess it may be a bug in jdk1.4. Maybe I should report to the bug database.

  • Surprised by behavior of SAXParserFactory

    I am surprised by what is going on when I get a new instance of the SAXParserFactory. It was all working well when I realized that I was creating a new factory and parser every time I needed to parse a new file (could be hundreds at a time). In order to avoid this, I added an "initialize()" method to get a new instance and create a new (global) parser. This initialize method was called by the class constructor, however, for some reason it just crashed (without giving an error, by the way). After playing around, I figured out that if I called "initialize()" in the constructor, it fails, but if I call it (seemingly) anytime after the constructor, it works just fine. See the code below for clarification:
            //  #### DOES NOT WORK ####
            public myParser(){
                    initialize();
         private void initialize(){
              try {
                          SAXParserFactory factory = SAXParserFactory.newInstance();  // <-- FAILS HERE
                          factory.setValidating(false);
                          factory.setNamespaceAware(false);
                   parser = factory.newSAXParser();
              } catch (ParserConfigurationException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (SAXException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         @Override
         public ImportRun parse(File file, boolean logErrors){
              try{
                   log.info("Parsing file: " + file.getName());
                   String fileString = readFile(file);
                   parser.parse(new InputSource(new StringReader(fileString)), new ContentHandlerParserRocheLC480v5(plateFormat, reactionMap, ir));
            //  #### WORKS ####
            public myParser(){
                    initialize();
         private void initialize(){
              try {
                          SAXParserFactory factory = SAXParserFactory.newInstance();
                          factory.setValidating(false);
                          factory.setNamespaceAware(false);
                   parser = factory.newSAXParser();
              } catch (ParserConfigurationException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (SAXException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         @Override
         public ImportRun parse(File file, boolean logErrors){
              try{
                            initialize();
                   log.info("Parsing file: " + file.getName());
                   String fileString = readFile(file);
                   parser.parse(new InputSource(new StringReader(fileString)), new ContentHandlerParserRocheLC480v5(plateFormat, reactionMap, ir));
             }This is my main question, however, I clearly am not understanding how to use the SAX parser. Anyone who can shed light on the remainder of my problem will be much appreciated.
    I have a separate project that makes use (imports) of this SAX parser and I can't get it to work. My Build Path (in eclipse) includes "xercesImple.jar." And to make things more difficult, I can't get the message from the FactoryConfigurationError thrown in SAXParserFactory.newInstance() to print out or be caught. I have looked through several examples, but don't see what I'm doing wrong.
    Thanks in advance.

    Ok, so now I feel pretty silly. My entire question is bogus. The "initialize()" method is failing in both situations, I just didn't realize it. I also figured out that catching FactoryConfigurationError does in fact work. As dumb as that sounds, I'm almost certain that Eclipse gave me a compile error, but I guess it just hadn't recompiled.
    Apparently my problem has been answered several times before. I had to put "xercesImple.jar" into /Library/Java/Home/lib/endorsed (on my Mac). If it were a PC, I would have put it in $JAVA_HOME/lib/endorsed. I found this answer on the following website: http://www.slamb.org/svn/repos/trunk/projects/axamol/sax-pipeline/README
    If anyone has a better solution, or if what I did is not the best way to solve it, I would love to hear.
    Apologies for wasting any time. Perhaps someone will benefit from the answer I posted, however.
    Edited by: mebbert on Jun 17, 2008 9:36 PM

  • I can't understand something with "SAXParserFactory"

    javax.xml.SAXParserFactory abstract class uses the way below to create an SAX Parser:
    SAXParserFactory spf = SAXParserFactory.newInstance();
    SAXParser sp = spf.netSAXParser();I have a look at the javax.xml.SAXParserFactory source, it's the fragment of the source:
    public static SAXParserFactory newInstance() {
            try {
                return (SAXParserFactory) FactoryFinder.find(
                    /* The default property name according to the JAXP spec */
                    "javax.xml.parsers.SAXParserFactory",
                    /* The fallback implementation class name */
                    "com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl");
            } catch (FactoryFinder.ConfigurationError e) {
                throw new FactoryConfigurationError(e.getException(),
                                                    e.getMessage());
        }the method gave out an method "FactoryFinder.find()", but i can't find it out in the j2skd1.5.0,and it hasn't been imported in the source.
    I want to know, what's the "FactoryFinder" is ? and what's its method "find()" is?

    I don't use any IDE but jus a NodePad.
    U said that the FactoryFinder is already contained in the package, so can u tell me which package?
    But i have searched FactoryFinder in the JavaDoc 1.4.1(while i use J2SDK 1.5.0Beta),and i can't have a class called FactoryFinder.( I search in the JavaDoc by the Letter Index)

  • SAXParserFactory.setValidating( true )

    To my understanding, this command causes the SAXParserFactory instance to generate "validating" SAXParser instances.
    However, when I parse an invalid xml document (ie one that does not comply to its dtd) with the SAXParser then given by "factory.getSAXParser()", it throws no exception. Am I misunderstanding the meaning of "validating", or is this feature not working?
    code:
    public static void main(String argv[])
    if (argv.length != 2) {
    System.err.println("Usage: cmd <filename> <echo|debug>");
    System.exit(1);
    // Use an instance of ourselves as the SAX event handler
    DefaultHandler handler = new Echo01( argv[1] );
    // Use the default (non-validating) parser
    SAXParserFactory factory = SAXParserFactory.newInstance();
    factory.setValidating( true );
    try {
    // Set up output stream
    out = new OutputStreamWriter(System.out, "UTF8");
    // Parse the input
    SAXParser saxParser = factory.newSAXParser();
    saxParser.parse( new File(argv[0]), handler);
    } catch (Throwable t) {
    t.printStackTrace();
    System.exit(0);

    http://forum.java.sun.com/thread.jsp?forum=34&thread=394211

  • I am trying to Integrate EBS-12.1.3 with Endeca on  RHEL5-64 bit

    Hi, am new to Endeca i m doing a Ebs connection with Oracle endeca but i m not been able to do it.
    I done setup of (./envSetup.sh)Database, Domains but when i start (./startAllEndeca.sh) Endeca Components Endeca Studio Managed Server (5) giving error..
    Starting Studio Managed Server ...
    Server is taking much time to start? you can force close by hitting Ctrl + C or check log file at /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/bin/studio.log
    Endeca Admin Server didn't start properly!, please check log file at /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/bin/studio.log
    I dont Knw Oracle EBS and New in Oracle Endeca so pls can anyone guide me to solve....
    ************************************************************error.log**********************************************************
    <Nov 26, 2014 10:49:52 AM IST> <Warning> <Deployer> <BEA-149617> <Non-critical internal application uddi was not deployed. Error: [Deployer:149158]No application files exist at '/home/oracle/Ext/Oracle/Middleware/wlserver_10.3/server/lib/uddi.war'.>
    <Nov 26, 2014 10:49:52 AM IST> <Warning> <Deployer> <BEA-149617> <Non-critical internal application uddiexplorer was not deployed. Error: [Deployer:149158]No application files exist at '/home/oracle/Ext/Oracle/Middleware/wlserver_10.3/server/lib/uddiexplorer.war'.>
    studio.log
    JAVA Memory arguments: -Xms256m -Xmx512m  -XX:MaxPermSize=512m
    WLS Start Mode=Production
    CLASSPATH=/home/oracle/Ext/Oracle/Middleware/oracle_common/modules/oracle.jdbc_11.1.1/ojdbc6dms.jar:/home/oracle/Ext/Oracle/Middleware/patch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/home/oracle/Ext/Oracle/software/java/jdk1.6.0_43/lib/tools.jar:/home/oracle/Ext/Oracle/Middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/home/oracle/Ext/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar:/home/oracle/Ext/Oracle/Middleware/modules/features/weblogic.server.modules_10.3.6.0.jar:/home/oracle/Ext/Oracle/Middleware/wlserver_10.3/server/lib/webservices.jar:/home/oracle/Ext/Oracle/Middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/home/oracle/Ext/Oracle/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/home/oracle/Ext/Oracle/Middleware/oracle_common/modules/oracle.jrf_11.1.1/jrf.jar:/home/oracle/Ext/Oracle/Middleware/wlserver_10.3/common/derby/lib/derbyclient.jar:/home/oracle/Ext/Oracle/Middleware/wlserver_10.3/server/lib/xqrl.jar
    PATH=/home/oracle/Ext/Oracle/Middleware/wlserver_10.3/server/bin:/home/oracle/Ext/Oracle/Middleware/modules/org.apache.ant_1.7.1/bin:/home/oracle/Ext/Oracle/software/java/jdk1.6.0_43/jre/bin:/home/oracle/Ext/Oracle/software/java/jdk1.6.0_43/bin:/usr/lib64/qt-3.3/bin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/u01/Oracle/software/java/jdk1.6.0_43/bin/java/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_43"
    Java(TM) SE Runtime Environment (build 1.6.0_43-b01)
    Java HotSpot(TM) 64-Bit Server VM (build 20.14-b01, mixed mode)
    Starting WLS with line:
    /home/oracle/Ext/Oracle/software/java/jdk1.6.0_43/bin/java -server   -Xms256m -Xmx512m  -XX:MaxPermSize=512m -Dweblogic.Name=StudioManagedServer -Djava.security.policy=/home/oracle/Ext/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.policy  -Dweblogic.ProductionModeEnabled=true -Djavax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl  -da -Dplatform.home=/home/oracle/Ext/Oracle/Middleware/wlserver_10.3 -Dwls.home=/home/oracle/Ext/Oracle/Middleware/wlserver_10.3/server -Dweblogic.home=/home/oracle/Ext/Oracle/Middleware/wlserver_10.3/server  -Dcommon.components.home=/home/oracle/Ext/Oracle/Middleware/oracle_common -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=/home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain -Djrockit.optfile=/home/oracle/Ext/Oracle/Middleware/oracle_common/modules/oracle.jrf_11.1.1/jrocket_optfile.txt -Doracle.server.config.dir=/home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/config/fmwconfig/servers/StudioManagedServer -Doracle.domain.config.dir=/home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/config/fmwconfig  -Digf.arisidbeans.carmlloc=/home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/config/fmwconfig/carml  -Digf.arisidstack.home=/home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/config/fmwconfig/arisidprovider -Doracle.security.jps.config=/home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/config/fmwconfig/jps-config.xml -Doracle.deployed.app.dir=/home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/tmp/_WL_user -Doracle.deployed.app.ext=/- -Dweblogic.alternateTypesDirectory=/home/oracle/Ext/Oracle/Middleware/oracle_common/modules/oracle.ossoiap_11.1.1,/home/oracle/Ext/Oracle/Middleware/oracle_common/modules/oracle.oamprovider_11.1.1 -Djava.protocol.handler.pkgs=oracle.mds.net.protocol  -Dweblogic.jdbc.remoteEnabled=false -Dweblogic.threadpool.MinPoolSize=25 -Dweblogic.management.discover=false -Dweblogic.management.server=t3://localhost:7002  -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=/home/oracle/Ext/Oracle/Middleware/patch_wls1036/profiles/default/sysext_manifest_classpath  weblogic.Server
    <Nov 26, 2014 10:47:39 AM IST> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Nov 26, 2014 10:47:39 AM IST> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Nov 26, 2014 10:47:40 AM IST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 20.14-b01 from Sun Microsystems Inc.>
    <Nov 26, 2014 10:47:41 AM IST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.6.0  Tue Nov 15 08:52:36 PST 2011 1441050 >
    <Nov 26, 2014 10:47:44 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Nov 26, 2014 10:47:44 AM IST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Nov 26, 2014 10:47:44 AM IST> <Notice> <Log Management> <BEA-170019> <The server log file /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/logs/StudioManagedServer.log is opened. All server side log events will be written to this file.>
    <Nov 26, 2014 10:49:27 AM IST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Nov 26, 2014 10:49:27 AM IST> <Notice> <Security> <BEA-090083> <Storing boot identity in the file: /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/security/boot.properties>
    <Nov 26, 2014 10:49:52 AM IST> <Warning> <Deployer> <BEA-149617> <Non-critical internal application uddi was not deployed. Error: [Deployer:149158]No application files exist at '/home/oracle/Ext/Oracle/Middleware/wlserver_10.3/server/lib/uddi.war'.>
    <Nov 26, 2014 10:49:52 AM IST> <Warning> <Deployer> <BEA-149617> <Non-critical internal application uddiexplorer was not deployed. Error: [Deployer:149158]No application files exist at '/home/oracle/Ext/Oracle/Middleware/wlserver_10.3/server/lib/uddiexplorer.war'.>
    <Nov 26, 2014 10:49:54 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Nov 26, 2014 10:49:54 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Nov 26, 2014 10:51:00 AM IST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <Nov 26, 2014 10:51:02 AM IST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    Loading zip:/home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/WEB-INF/lib/portal-impl.jar!/system.properties
    Loading file:/home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/WEB-INF/classes/system-ext.properties
    Loading zip:/home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/WEB-INF/lib/portal-impl.jar!/portal.properties
    Loading file:/home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/WEB-INF/classes/portal-ext.properties
    Loading file:/home/oracle/Ext/Oracle/Middleware/user_projects/domains/portal-ext.properties
    2014-11-26 10:54:54,395 WARN  [DataSourceFactoryBean] A JNDI data source is not configured. For security reasons it is strongly recommended to configure Studio's database connection via JNDI rather than setting database connection parameters directly in Studio's configuration file.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.documentlibrary.model.impl.DLFileEntryImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.messageboards.model.impl.MBStatsUserImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.UserIdMapperImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.LayoutSetImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.softwarecatalog.model.impl.SCProductScreenshotImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.endeca.portal.liferay.ext.metadata.model.impl.MetadataPropertyRecordImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.PortletItemImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.UserGroupRoleImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.tags.model.impl.TagsAssetImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.journal.model.impl.JournalStructureImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.tasks.model.impl.TasksReviewImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.PortletPreferencesImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.endeca.portal.liferay.ext.bookmarks.model.impl.PortletStateRecordImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.announcements.model.impl.AnnouncementsEntryImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.SubscriptionImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.endeca.portal.liferay.ext.metadata.model.impl.MetadataRecordImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.blogs.model.impl.BlogsEntryImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.AddressImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.messageboards.model.impl.MBThreadImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.journal.model.impl.JournalArticleImpl]; using defaults.
    Nov 26, 2014 10:54:59 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.ServiceComponentImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.journal.model.impl.JournalArticleResourceImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.expando.model.impl.ExpandoValueImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.blogs.model.impl.BlogsStatsUserImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.softwarecatalog.model.impl.SCLicenseImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.journal.model.impl.JournalArticleImageImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.ratings.model.impl.RatingsEntryImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.endeca.portal.liferay.ext.bookmarks.model.impl.BookmarkRecordImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.imagegallery.model.impl.IGImageImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.imagegallery.model.impl.IGFolderImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.journal.model.impl.JournalFeedImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.PasswordPolicyImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.ResourceImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.PasswordPolicyRelImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.RoleImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.LayoutImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.MembershipRequestImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.CompanyImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.tags.model.impl.TagsSourceImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.messageboards.model.impl.MBMessageImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.ListTypeImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.EmailAddressImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.ImageImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.PasswordTrackerImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.AccountImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.WebsiteImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.ResourcePermissionImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.tags.model.impl.TagsPropertyImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.messageboards.model.impl.MBDiscussionImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.documentlibrary.model.impl.DLFileRankImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.calendar.model.impl.CalEventImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.PortletImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.ClassNameImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.tasks.model.impl.TasksProposalImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.expando.model.impl.ExpandoRowImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.ratings.model.impl.RatingsStatsImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.journal.model.impl.JournalTemplateImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.GroupImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.endeca.portal.liferay.ext.bookmarks.model.impl.DataSourceStateRecordImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.softwarecatalog.model.impl.SCProductEntryImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.tags.model.impl.TagsEntryImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.expando.model.impl.ExpandoColumnImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.UserGroupImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.messageboards.model.impl.MBMailingListImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.BrowserTrackerImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.PluginSettingImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.announcements.model.impl.AnnouncementsDeliveryImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.PermissionImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.softwarecatalog.model.impl.SCFrameworkVersionImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.expando.model.impl.ExpandoTableImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.ShardImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.tags.model.impl.TagsVocabularyImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.announcements.model.impl.AnnouncementsFlagImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.PhoneImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.messageboards.model.impl.MBMessageFlagImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.journal.model.impl.JournalContentSearchImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.documentlibrary.model.impl.DLFileShortcutImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.documentlibrary.model.impl.DLFileVersionImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.CountryImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.softwarecatalog.model.impl.SCProductVersionImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.ResourceCodeImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.ContactImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.UserTrackerImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.messageboards.model.impl.MBCategoryImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.ResourceActionImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.messageboards.model.impl.MBBanImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.RegionImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portal.model.impl.UserTrackerPathImpl]; using defaults.
    Nov 26, 2014 10:55:00 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [com.liferay.portlet.documentlibrary.model.impl.DLFolderImpl]; using defaults.
    Nov 26, 2014 10:55:01 AM net.sf.ehcache.hibernate.EhCacheProvider buildCache
    WARNING: Could not find a specific ehcache configuration for cache named [org.hibernate.cache.StandardQueryCache]; using defaults.
    Loading zip:/home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/WEB-INF/lib/portal-impl.jar!/captcha.properties
    2014-11-26 10:55:03,071 INFO  [PortalImpl] Portal lib directory /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/WEB-INF/lib/
    Nov 26, 2014 10:55:11 AM org.quartz.core.QuartzScheduler <init>
    INFO: Quartz Scheduler v.1.6.0 created.
    Nov 26, 2014 10:55:11 AM org.quartz.impl.jdbcjobstore.JobStoreSupport initialize
    INFO: Using thread monitor-based data access locking (synchronization).
    2014-11-26 10:55:11,307 INFO  [DBUtil] Using dialect org.hibernate.dialect.Oracle10gDialect
    Nov 26, 2014 10:55:11 AM org.quartz.impl.jdbcjobstore.JobStoreSupport cleanVolatileTriggerAndJobs
    INFO: Removed 0 Volatile Trigger(s).
    Nov 26, 2014 10:55:11 AM org.quartz.impl.jdbcjobstore.JobStoreSupport cleanVolatileTriggerAndJobs
    INFO: Removed 0 Volatile Job(s).
    Nov 26, 2014 10:55:11 AM org.quartz.impl.jdbcjobstore.JobStoreTX initialize
    INFO: JobStoreTX initialized.
    Nov 26, 2014 10:55:11 AM org.quartz.impl.StdSchedulerFactory instantiate
    INFO: Quartz scheduler 'QuartzSchedulerEngineInstance' initialized from an externally provided properties instance.
    Nov 26, 2014 10:55:11 AM org.quartz.impl.StdSchedulerFactory instantiate
    INFO: Quartz scheduler version: 1.6.0
    Nov 26, 2014 10:55:11 AM org.quartz.core.QuartzScheduler <init>
    INFO: Quartz Scheduler v.1.6.0 created.
    Nov 26, 2014 10:55:11 AM org.quartz.simpl.RAMJobStore initialize
    INFO: RAMJobStore initialized.
    Nov 26, 2014 10:55:11 AM org.quartz.impl.StdSchedulerFactory instantiate
    INFO: Quartz scheduler 'org.springframework.scheduling.quartz.SchedulerFactoryBean#1ce2e307' initialized from an externally provided properties instance.
    Nov 26, 2014 10:55:11 AM org.quartz.impl.StdSchedulerFactory instantiate
    INFO: Quartz scheduler version: 1.6.0
    Nov 26, 2014 10:55:11 AM org.quartz.core.QuartzScheduler setJobFactory
    INFO: JobFactory set to: [email protected]9
    Nov 26, 2014 10:55:11 AM org.quartz.core.QuartzScheduler start
    INFO: Scheduler org.springframework.scheduling.quartz.SchedulerFactoryBean#1ce2e307_$_NON_CLUSTERED started.
    2014-11-26 10:55:11,833 INFO  [ServerDetector] Detected server weblogic
    Nov 26, 2014 10:55:16 AM com.sun.portal.container.service.ServiceManagerContextListenerImpl contextInitialized
    INFO: PSC_CSPCS001 : Started initializing ServiceManager
    Nov 26, 2014 10:55:16 AM com.sun.portal.container.service.ServiceManager addService
    INFO: PSC_CSPCS004 : Service added, Name: com.sun.portal.container.service.CoordinationService, Implementation: com.sun.portal.container.service.coordination.impl.CoordinationServiceImpl
    Nov 26, 2014 10:55:16 AM com.sun.portal.container.service.ServiceManager addService
    INFO: PSC_CSPCS004 : Service added, Name: com.sun.portal.container.service.CachingService, Implementation: com.sun.portal.container.service.caching.impl.CachingServiceImpl
    Nov 26, 2014 10:55:16 AM com.sun.portal.container.service.ServiceManager addService
    INFO: PSC_CSPCS004 : Service added, Name: com.sun.portal.container.service.ClientCachingService, Implementation: com.sun.portal.container.service.caching.impl.ClientCachingServiceImpl
    Nov 26, 2014 10:55:16 AM com.sun.portal.container.service.ServiceManager addService
    INFO: PSC_CSPCS004 : Service added, Name: com.sun.portal.container.service.DeploymentService_Local, Implementation: com.sun.portal.container.service.deployment.impl.DeploymentServiceLocalImpl
    Nov 26, 2014 10:55:16 AM com.sun.portal.container.service.ServiceManager addService
    INFO: PSC_CSPCS004 : Service added, Name: com.sun.portal.container.service.ContainerEventService, Implementation: com.sun.portal.container.service.coordination.impl.ContainerEventServiceImpl
    Nov 26, 2014 10:55:16 AM com.sun.portal.container.service.ServiceManager addService
    INFO: PSC_CSPCS004 : Service added, Name: com.sun.portal.container.service.PolicyService, Implementation: com.liferay.portal.portletcontainer.PolicyServiceImpl
    Nov 26, 2014 10:55:16 AM com.sun.portal.container.service.ServiceManagerContextListenerImpl contextInitialized
    INFO: PSC_CSPCS002 : Finished initializing ServiceManager
    Nov 26, 2014 10:55:16 AM com.sun.portal.portletcontainer.impl.PortletContainerContextListenerImpl contextInitialized
    INFO: PSPL_PCCSPCPCI0003 : Starting PortletContainer 2.1
    Nov 26, 2014 10:55:17 AM org.apache.struts.tiles.TilesPlugin initDefinitionsFactory
    INFO: Tiles definition factory loaded for module ''.
    Starting Oracle Endeca Information Discovery Studio 3.0 (Cupcake / Build 30017631 / Mon, 7 Jul 2014 06:40:33 -0400)
    Nov 26, 2014 10:55:19 AM org.quartz.impl.jdbcjobstore.JobStoreSupport recoverJobs
    INFO: Freed 0 triggers from 'acquired' / 'blocked' state.
    Nov 26, 2014 10:55:19 AM org.quartz.impl.jdbcjobstore.JobStoreSupport recoverJobs
    INFO: Recovering 0 jobs that were in-progress at the time of the last shut-down.
    Nov 26, 2014 10:55:19 AM org.quartz.impl.jdbcjobstore.JobStoreSupport recoverJobs
    INFO: Recovery complete.
    Nov 26, 2014 10:55:19 AM org.quartz.impl.jdbcjobstore.JobStoreSupport recoverJobs
    INFO: Removed 0 'complete' triggers.
    Nov 26, 2014 10:55:19 AM org.quartz.impl.jdbcjobstore.JobStoreSupport recoverJobs
    INFO: Removed 0 stale fired job entries.
    Nov 26, 2014 10:55:19 AM org.quartz.core.QuartzScheduler start
    INFO: Scheduler QuartzSchedulerEngineInstance_$_NON_CLUSTERED started.
    2014-11-26 10:55:22,438 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/ext/boxy-ne.png
    2014-11-26 10:55:22,438 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/ext/boxy-nw.png
    2014-11-26 10:55:22,438 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/ext/boxy-se.png
    2014-11-26 10:55:22,438 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/ext/boxy-sw.png
    2014-11-26 10:55:22,439 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/loan_calculator.png
    2014-11-26 10:55:22,439 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/message_boards.png
    2014-11-26 10:55:22,439 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/image_gallery.png
    2014-11-26 10:55:22,440 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/polls_display.png
    2014-11-26 10:55:22,440 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/search.png
    2014-11-26 10:55:22,440 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/login.png
    2014-11-26 10:55:22,440 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/page_ratings.png
    2014-11-26 10:55:22,440 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/rss.png
    2014-11-26 10:55:22,441 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/blogs_aggregator.png
    2014-11-26 10:55:22,441 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/recent_documents.png
    2014-11-26 10:55:22,441 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/recent_bloggers.png
    2014-11-26 10:55:22,441 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/bible_gateway.png
    2014-11-26 10:55:22,441 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/default.png
    2014-11-26 10:55:22,441 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/calendar.png
    2014-11-26 10:55:22,442 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/currency_converter.png
    2014-11-26 10:55:22,442 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/blogs.png
    2014-11-26 10:55:22,442 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/refresh-icon.png
    2014-11-26 10:55:22,442 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/random_bible_verse.png
    2014-11-26 10:55:22,442 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/quick_note.png
    2014-11-26 10:55:22,443 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/announcements.png
    2014-11-26 10:55:22,443 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/polls.png
    2014-11-26 10:55:22,443 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/icons/communities.png
    2014-11-26 10:55:23,062 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/classic/images/common/Oracle_logo.png
    2014-11-26 10:55:23,065 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/classic/images/dock/welcome_arrows.png
    2014-11-26 10:55:23,065 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/classic/images/dock/center_bg.png
    2014-11-26 10:55:23,069 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/classic/images/portlet/restore.png
    2014-11-26 10:55:23,070 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/classic/images/portlet/minimize.png
    2014-11-26 10:55:23,070 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/classic/images/portlet/options.png
    2014-11-26 10:55:23,071 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/classic/images/portlet/maximize.png
    2014-11-26 10:55:23,071 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/classic/images/portlet/options_selected.png
    2014-11-26 10:55:23,072 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/classic/images/portlet/close.png
    2014-11-26 10:55:23,073 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/classic/images/close_modal.png
    2014-11-26 10:55:23,074 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/classic/images/generic-blue-heading.png
    2014-11-26 10:55:23,074 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/classic/images/page-background-gradient.png
    2014-11-26 10:55:23,075 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/classic/images/generic-orange-heading.png
    2014-11-26 10:55:23,080 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/control_panel/images/common/Oracle_logo.png
    2014-11-26 10:55:23,083 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/control_panel/images/portlet/restore.png
    2014-11-26 10:55:23,084 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/control_panel/images/portlet/options_selected.png
    2014-11-26 10:55:23,084 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/control_panel/images/portlet/options.png
    2014-11-26 10:55:23,085 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/control_panel/images/portlet/minimize.png
    2014-11-26 10:55:23,085 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/control_panel/images/portlet/close.png
    2014-11-26 10:55:23,086 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/control_panel/images/portlet/maximize.png
    2014-11-26 10:55:23,088 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/control_panel/images/dock/welcome_arrows.png
    2014-11-26 10:55:23,088 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/control_panel/images/dock/center_bg.png
    2014-11-26 10:55:23,094 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/control_panel/images/close_modal.png
    2014-11-26 10:55:23,095 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/control_panel/images/page-background-gradient.png
    2014-11-26 10:55:23,095 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/control_panel/images/generic-blue-heading.png
    2014-11-26 10:55:23,096 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/control_panel/images/generic-orange-heading.png
    2014-11-26 10:55:23,102 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/landing_page/images/portlet/close.png
    2014-11-26 10:55:23,103 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/landing_page/images/portlet/options_selected.png
    2014-11-26 10:55:23,104 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/landing_page/images/portlet/options.png
    2014-11-26 10:55:23,104 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/landing_page/images/portlet/minimize.png
    2014-11-26 10:55:23,104 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/landing_page/images/portlet/maximize.png
    2014-11-26 10:55:23,105 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/landing_page/images/portlet/restore.png
    2014-11-26 10:55:23,112 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/landing_page/images/common/Oracle_logo.png
    2014-11-26 10:55:23,114 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/landing_page/images/dock/welcome_arrows.png
    2014-11-26 10:55:23,114 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/landing_page/images/dock/center_bg.png
    2014-11-26 10:55:23,115 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/landing_page/images/generic-blue-heading.png
    2014-11-26 10:55:23,116 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/landing_page/images/generic-orange-heading.png
    2014-11-26 10:55:23,116 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/landing_page/images/close_modal.png
    2014-11-26 10:55:23,116 WARN  [SpriteProcessorImpl] Unable to process /home/oracle/Ext/Oracle/Middleware/user_projects/domains/endeca_domain/servers/StudioManagedServer/stage/studio-portal/studio-portal/endeca-portal/html/themes/landing_page/images/page-background-gradient.png
    2014-11-26 10:55:23,428 INFO  [HotDeployUtil] Initializing hot deploy manager 642389332
    2014-11-26 10:55:23,533 ERROR [PortletAutoDeployer]
    java.io.FileNotFoundException: /tmp/liferay/com/liferay/portal/deploy/dependencies/liferay-portlet.tld (Too many open files)
        at java.io.FileOutputStream.open(Native Method)
        at java.io.FileOutputStream.<init>(FileOutputStream.java:194)
        at java.io.FileOutputStream.<init>(FileOutputStream.java:145)
        at com.liferay.portal.deploy.DeployUtil._getResourcePath(DeployUtil.java:160)
        at com.liferay.portal.deploy.DeployUtil.getResourcePath(DeployUtil.java:93)
        at com.liferay.portal.deploy.auto.PortletAutoDeployer.<init>(PortletAutoDeployer.java:56)
        at com.liferay.portal.deploy.auto.PortletAutoDeployListener.<init>(PortletAutoDeployListener.java:43)
        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:513)
        at java.lang.Class.newInstance0(Class.java:357)
        at java.lang.Class.newInstance(Class.java:310)
        at com.liferay.portal.events.GlobalStartupAction.getAutoDeployListeners(GlobalStartupAction.java:70)
        at com.liferay.portal.events.GlobalStartupAction.run(GlobalStartupAction.java:145)
        at com.liferay.portal.events.EventsProcessorImpl.processEvent(EventsProcessorImpl.java:117)
        at com.liferay.portal.events.EventsProcessorImpl.process(EventsProcessorImpl.java:69)
        at com.liferay.portal.events.EventsProcessorUtil.process(EventsProcessorUtil.java:43)
        at com.liferay.portal.servlet.MainServlet.init(MainServlet.java:415)
        at javax.servlet.GenericServlet.init(GenericServlet.java:241)
        at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
        at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
        at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
        at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
        at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
        at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1981)
        at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1955)
        at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)
        at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
        at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
        at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
        at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
        at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
        at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
        at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
        at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
        at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
        at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
        at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
        at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
        at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
        at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
        at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
        at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
        at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
        at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
        at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
        at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
        at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
        at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
        at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    2014-11-26 10:55:23,545 ERROR [ThemeAutoDeployer]
    java.io.FileNotFoundException: /tmp/liferay/com/liferay/portal/deploy/dependencies/liferay-theme.tld (Too many open files)
        at java.io.FileOutputStream.open(Native Method)
        at java.io.FileOutputStream.<init>(FileOutputStream.java:194)
        at java.io.FileOutputStream.<init>(FileOutputStream.java:145)
        at com.liferay.portal.deploy.DeployUtil._getResourcePath(DeployUtil.java:160)
        at com.liferay.portal.deploy.DeployUtil.getResourcePath(DeployUtil.java:93)
        at com.liferay.portal.deploy.auto.ThemeAutoDeployer.<init>(ThemeAutoDeployer.java:55)
        at com.liferay.portal.deploy.auto.ThemeAutoDeployListener.<init>(ThemeAutoDeployListener.java:41)
        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:513)
        at java.lang.Class.newInstance0(Class.java:357)
        at java.lang.Class.newInstance(Class.java:310)
        at com.liferay.portal.events.GlobalStartupAction.getAutoDeployListeners(GlobalStartupAction.java:70)
        at com.liferay.portal.events.GlobalStartupAction.run(GlobalStartupAction.java:145)
        at com.liferay.portal.events.EventsProcessorImpl.processEvent(EventsProcessorImpl.java:117)
        at com.liferay.portal.events.EventsProcessorImpl.process(EventsProcessorImpl.java:69)
        at com.liferay.portal.events.EventsProcessorUtil.process(EventsProcessorUtil.java:43)
        at com.liferay.portal.servlet.MainServlet.init(MainServlet.java:415)
        at javax.servlet.GenericServlet.init(GenericServlet.java:241)
        at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
        at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
      

    I see this error in your output:
    2014-11-26 10:55:23,583 ERROR [ThemeAutoDeployer]
    java.io.FileNotFoundException: /tmp/liferay/com/liferay/portal/deploy/dependencies/liferay-theme.tld (Too many open files)
    I'm not across what the EBS recommended setting for this is, or if there is one.  But try running:
    ulimit -n
    ... and if the number is low, edit /etc/security/limits.conf , add some entries for increased "soft nofile" and "hard nofile" and run sysctl -p.  See Linux & Java tips: Too many open files .

  • Error in starting the domain in application server 8.2

    I want to deploy a application EAR on newly created domain. For this :
    1. Got the 8.2 Java application server installed on solaris box.
    2. Created domain using the asadmin command -> create-domain --adminport 4848 --adminuser admin <DOMAIN_NAME>
    On starting the domain with this command - sh asadmin start-domain --user admin <DOMAIN_NAME. I am facing the below issue. Please note this is a fresh installation of the app server and a new domain
    To troubleshoot this, I have already followed below steps , without any resolution:
    1. Checked port with - netstat -an|grep 45184 and also checked the processes using ps -fu <unix_user>. Even after killing the process, same error.
    2. Gave full permissions on /AppServer8.2/imq/var/instances
    3. Logged in as root user and then tried to start domain
    4. Updated domain.xml with some other port , checked this port if it is free , then replaced in domain.xml
    5. No logs generated in /AppServer8.2/imq/var/instances
    Please help me in resolving this issue. I have downloaded the 9.1 application server and will install and check in the meantime
    [#|2013-07-29T14:14:34.067+0530|INFO|sun-appserver-pe8.2|javax.enterprise.tools.launcher|_ThreadID=10;|
    /usr/j2se/bin/java
    -client
    -Xmx512m
    -XX:NewRatio=2
    -Dcom.sun.aas.defaultLogFile=/PostCUG_Track1/AppServer8.2/domains/MPCBebk/logs/server.log
    -Djava.endorsed.dirs=/PostCUG_Track1/AppServer8.2/lib/endorsed
    -Djava.security.policy=/PostCUG_Track1/AppServer8.2/domains/MPCBebk/config/server.policy
    -Djava.security.auth.login.config=/PostCUG_Track1/AppServer8.2/domains/MPCBebk/config/login.conf
    -Dsun.rmi.dgc.server.gcInterval=3600000
    -Dsun.rmi.dgc.client.gcInterval=3600000
    -Djavax.net.ssl.keyStore=/PostCUG_Track1/AppServer8.2/domains/MPCBebk/config/keystore.jks
    -Djavax.net.ssl.trustStore=/PostCUG_Track1/AppServer8.2/domains/MPCBebk/config/cacerts.jks
    -Djava.ext.dirs=/usr/j2se/jre/lib/ext:/PostCUG_Track1/AppServer8.2/domains/MPCBebk/lib/ext:/PostCUG_Track1/AppServer8.2/derby/lib
    -Djdbc.drivers=org.apache.derby.jdbc.ClientDriver
    -Djavax.management.builder.initial=com.sun.enterprise.admin.server.core.jmx.AppServerMBeanServerBuilder
    -Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory
    -Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar
    -Dcom.sun.enterprise.taglisteners=jsf-impl.jar
    -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl
    -Dcom.sun.aas.configName=server-config
    -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter
    -Ddomain.name=MPCBebk
    -Djmx.invoke.getters=true
    -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl
    -Dcom.sun.aas.promptForIdentity=true
    -Dorg.xml.sax.driver=com.sun.org.apache.xerces.internal.parsers.SAXParser
    -Dcom.sun.aas.instanceRoot=/PostCUG_Track1/AppServer8.2/domains/MPCBebk
    -Djavax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl
    -Dcom.sun.aas.domainName=MPCBebk
    -Djava.util.logging.manager=com.sun.enterprise.server.logging.ServerLogManager
    -Dproduct.name=Sun-Java-System/Application-Server
    -Dcom.sun.enterprise.overrideablejavaxpackages=javax.faces,javax.servlet.jsp.jstl,javax.xml.bind,javax.help
    -Dcom.sun.aas.configRoot=/PostCUG_Track1/AppServer8.2/config
    -Djava.library.path=/usr/j2se/jre/lib/sparc/client:/usr/j2se/jre/lib/sparc/client:/usr/j2se/jre/lib/sparc:/usr/j2se/jre/../lib/sparc:/PostCUG_Track1/AppServer8.2/lib:/usr/lib/lwp:/PostCUG_Track1/AppServer8.2/lib:/usr/lib/lwp:/usr/j2se/jre/lib/sparc/client:/usr/j2se/jre/lib/sparc:/usr/j2se/jre/../lib/sparc:/PostCUG_Track1/AppServer8.2/lib:/PostCUG_Track1/AppServer8.2/lib:/PostCUG_Track1/AppServer8.2/lib:/opt/CA/SharedComponents/lib:/usr/lib
    -Dcom.sun.aas.instanceName=server
    -Dcom.sun.aas.processLauncher=SE
    -cp
    /PostCUG_Track1/AppServer8.2/lib/appserv-rt.jar:/usr/j2se/lib/tools.jar:/PostCUG_Track1/AppServer8.2/lib/j2ee.jar:/PostCUG_Track1/AppServer8.2/lib/activation.jar:/PostCUG_Track1/AppServer8.2/lib/mail.jar:/PostCUG_Track1/AppServer8.2/lib/appserv-cmp.jar:/PostCUG_Track1/AppServer8.2/lib/admin-cli.jar:/PostCUG_Track1/AppServer8.2/lib/appserv-admin.jar:/PostCUG_Track1/AppServer8.2/lib/appserv-jstl.jar:/PostCUG_Track1/AppServer8.2/lib/commons-launcher.jar:/PostCUG_Track1/AppServer8.2/lib/commons-logging.jar:/PostCUG_Track1/AppServer8.2/lib/j2ee-svc.jar:/PostCUG_Track1/AppServer8.2/lib/jaxr-api.jar:/PostCUG_Track1/AppServer8.2/lib/jaxr-impl.jar:/PostCUG_Track1/AppServer8.2/lib/jaxrpc-api.jar:/PostCUG_Track1/AppServer8.2/lib/jaxrpc-impl.jar:/PostCUG_Track1/AppServer8.2/lib/dom.jar:/PostCUG_Track1/AppServer8.2/lib/relaxngDatatype.jar:/PostCUG_Track1/AppServer8.2/lib/jax-qname.jar:/PostCUG_Track1/AppServer8.2/lib/saaj-api.jar:/PostCUG_Track1/AppServer8.2/lib/saaj-impl.jar:/PostCUG_Track1/AppServer8.2/lib/xsdlib.jar:/PostCUG_Track1/AppServer8.2/lib/jmxremote.jar:/PostCUG_Track1/AppServer8.2/lib/jmxremote_optional.jar:/PostCUG_Track1/AppServer8.2/lib/jsf-api.jar:/PostCUG_Track1/AppServer8.2/lib/jsf-impl.jar:/PostCUG_Track1/AppServer8.2/lib/rmissl.jar:/PostCUG_Track1/AppServer8.2/lib/xalan.jar:/PostCUG_Track1/AppServer8.2/lib/xercesImpl.jar:/PostCUG_Track1/AppServer8.2/lib/appserv-upgrade.jar:/PostCUG_Track1/AppServer8.2/lib/appserv-ext.jar:/PostCUG_Track1/AppServer8.2/lib/install/applications/jmsra/imqjmsra.jar:/PostCUG_Track1/AppServer8.2/imq/lib/jaxm-api.jar:/PostCUG_Track1/AppServer8.2/imq/lib/fscontext.jar:/PostCUG_Track1/AppServer8.2/lib/ant/lib/ant.jar
    com.sun.enterprise.server.PEMain
    start
    display|#]
    [#|2013-07-29T14:15:35.774+0530|INFO|sun-appserver-pe8.2|javax.enterprise.resource.jms|_ThreadID=10;|JMS5035: Timed out after 60000 milliseconds while trying to verify if the JMS service startup succeeded.|#]
    [#|2013-07-29T14:15:35.776+0530|INFO|sun-appserver-pe8.2|javax.enterprise.resource.jms|_ThreadID=10;|JMS5037: Check permissions of MQ instance directory /PostCUG_Track1/AppServer8.2/imq/var/instances|#]
    [#|2013-07-29T14:15:35.776+0530|INFO|sun-appserver-pe8.2|javax.enterprise.resource.jms|_ThreadID=10;|JMS5036: More details may be available in the log file for the JMS service broker instance imqbroker. Please refer to the JMS provider documentation for the exact location of this log file.|#]
    [#|2013-07-29T14:15:35.777+0530|SEVERE|sun-appserver-pe8.2|javax.enterprise.system.core|_ThreadID=10;|UnknownException during startup. Disable quick startup by setting system property com.sun.enterprise.server.ss.ASQuickStartup to false
    com.sun.appserv.server.ServerLifecycleException: [C4003]: Error occurred on connection creation [127.0.0.1:45184]. - cause: java.io.IOException
    at com.sun.enterprise.jms.JmsProviderLifecycle.checkProviderStartup(JmsProviderLifecycle.java:427)
    at com.sun.enterprise.server.ss.ASLazyKernel.startASSocketServices(ASLazyKernel.java:54)
    at com.sun.enterprise.server.PEMain.run(PEMain.java:274)
    at com.sun.enterprise.server.PEMain.main(PEMain.java:220)
    Caused by: com.sun.messaging.jms.JMSException: [C4003]: Error occurred on connection creation [127.0.0.1:45184]. - cause: java.io.IOException
    at com.sun.messaging.jmq.jmsclient.ExceptionHandler.getJMSConnectException(ExceptionHandler.java:233)
    at com.sun.messaging.jmq.jmsclient.ExceptionHandler.handleConnectException(ExceptionHandler.java:180)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.readBrokerPorts(PortMapperClient.java:191)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.init(PortMapperClient.java:116)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.<init>(PortMapperClient.java:54)
    at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPConnectionHandler.<init>(TCPConnectionHandler.java:61)
    at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPStreamHandler.openConnection(TCPStreamHandler.java:102)
    at com.sun.messaging.jmq.jmsclient.ConnectionInitiator.createConnectionOld(ConnectionInitiator.java:291)
    at com.sun.messaging.jmq.jmsclient.ConnectionInitiator.createConnection(ConnectionInitiator.java:113)
    at com.sun.messaging.jmq.jmsclient.ConnectionInitiator.createConnection(ConnectionInitiator.java:98)
    at com.sun.messaging.jmq.jmsclient.ProtocolHandler.init(ProtocolHandler.java:613)
    at com.sun.messaging.jmq.jmsclient.ProtocolHandler.<init>(ProtocolHandler.java:1194)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.openConnection(ConnectionImpl.java:1949)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.init(ConnectionImpl.java:745)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.<init>(ConnectionImpl.java:315)
    at com.sun.messaging.jmq.jmsclient.UnifiedConnectionImpl.<init>(UnifiedConnectionImpl.java:33)
    at com.sun.messaging.jmq.jmsclient.QueueConnectionImpl.<init>(QueueConnectionImpl.java:32)
    at com.sun.messaging.ConnectionFactory.createQueueConnection(ConnectionFactory.java:72)
    at com.sun.messaging.jmq.admin.jmsspi.JMSAdminImpl.pingProvider(JMSAdminImpl.java:783)
    at com.sun.enterprise.jms.JmsProviderLifecycle.waitForJmsProvider(JmsProviderLifecycle.java:335)
    at com.sun.enterprise.jms.JmsProviderLifecycle.checkProviderStartup(JmsProviderLifecycle.java:396)
    ... 3 more
    Caused by: java.io.IOException
    at com.sun.enterprise.server.ss.ASInputStream.waitForSelect(ASInputStream.java:118)
    at com.sun.enterprise.server.ss.ASInputStream.read(ASInputStream.java:81)
    at com.sun.enterprise.server.ss.ASInputStream.read(ASInputStream.java:73)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:201)
    at com.sun.messaging.jmq.io.PortMapperTable.readLine(PortMapperTable.java:277)
    at com.sun.messaging.jmq.io.PortMapperTable.read(PortMapperTable.java:233)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.readBrokerPorts(PortMapperClient.java:185)
    ... 21 more
    Caused by: java.io.IOException: Invalid argument
    at sun.nio.ch.DevPollArrayWrapper.poll0(Native Method)
    at sun.nio.ch.DevPollArrayWrapper.poll(DevPollArrayWrapper.java:136)
    at sun.nio.ch.DevPollSelectorImpl.doSelect(DevPollSelectorImpl.java:70)
    at sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:59)
    at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:70)
    at com.sun.enterprise.server.ss.ASSelector.select(ASSelector.java:92)
    at com.sun.enterprise.server.ss.ASInputStream.waitForSelect(ASInputStream.java:101)
    ... 28 more
    |#]
    [#|2013-07-29T14:15:35.798+0530|SEVERE|sun-appserver-pe8.2|javax.enterprise.system.core|_ThreadID=10;|Exception while stoppping Lifecycle.
    com.sun.appserv.server.ServerLifecycleException: MQ startup failed :[C4003]: Error occurred on connection creation [127.0.0.1:45184]. - cause: java.io.IOException
    at com.sun.enterprise.jms.JmsProviderLifecycle.checkProviderStartup(JmsProviderLifecycle.java:376)
    at com.sun.enterprise.jms.JmsProviderLifecycle.onShutdown(JmsProviderLifecycle.java:445)
    at com.sun.enterprise.server.ss.ASLazyKernel.stopLifecycle(ASLazyKernel.java:178)
    at com.sun.enterprise.server.ss.ASLazyKernel.stopMQ(ASLazyKernel.java:172)
    at com.sun.enterprise.server.ss.ASLazyKernel.exitServer(ASLazyKernel.java:74)
    at com.sun.enterprise.server.ss.ASLazyKernel.startASSocketServices(ASLazyKernel.java:67)
    at com.sun.enterprise.server.PEMain.run(PEMain.java:274)
    at com.sun.enterprise.server.PEMain.main(PEMain.java:220)
    |#]

    Hi,
    Try to manually download the file from application server using standard transactions, and than check how many records are you able to download from app. server.
    I guess there might be something wrong with the format of 583rd record, which makes sap assume that the file has come to an end.
    Hope this will help you.
    Regards,
    Vinit...

  • Application server will not start up

    Hello,
    I have read quite a few topics concerning this problem, and have tried many things but without success.
    I am running on Windows XP Pro. The installation goes fine, but when I run a project, the application server cannot start, and I get a message after quite a long time saying that it can't start and to check my port numbers,etc.
    I used to have Sun Java Creator, but I uninstalled it. I tried deleting the \Windows\System32\productregistry file. I tried uninstalling completely and reinstalling in C:\Sun\Creator2, but the problem is still the same. I tried deleting the domain with "asadmin" and recreating it, but I still get the problem.
    I am posting all the relevant information from the logs, hopin someone will be able to help me out....
    C:\Sun\Creator2ea2\install.log
    (Jan 14, 2006 3:34:36 PM), Setup.product.install, com.installshield.wizard.platform.win32.Win32ProductServiceImpl, msg1, installing Files (coreFiles)
    (Jan 14, 2006 3:35:42 PM), Setup.product.install, com.installshield.wizard.platform.win32.Win32ProductServiceImpl, msg1, installing Files (jdkFiles)
    (Jan 14, 2006 3:36:32 PM), Setup.product.install, com.installshield.wizard.platform.win32.Win32ProductServiceImpl, msg1, installing Files (appserverFiles)
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.installshield.wizard.platform.win32.Win32ProductServiceImpl, msg1, installing Install Application Server Action (bean4)
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, #
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, # Wizard Statefile generatd by make_statefile.sh
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, #
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, # Wizard Statefile section for Sun Java System Application Server
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, #
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, [STATE_BEGIN Sun Java System Application Server 42cc62066aa69c151b1093bfcb735f8e112358e8]
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, defaultInstallDirectory = C:\Sun\Creator2ea2\SunAppServer8
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, currentInstallDirectory = C:\Sun\Creator2ea2\SunAppServer8
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, JDK_LOCATION = C:\Sun\Creator2ea2\java
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_ASADMIN_USERNAME = admin
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_ASADMIN_PASSWORD = adminadmin
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_ASADMIN_PORT = 24848
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_ASWEB_PORT = 28080
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_HTTPS_PORT = 21043
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, STORE_ADMIN_AUTH = FALSE
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, ADMIN_PASSWORD_ENCRYPTED = FALSE
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, CREATE_SAMPLES_DOMAIN = FALSE
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, CREATE_DESKTOP_SHORTCUT = FALSE
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, [STATE_DONE Sun Java System Application Server 42cc62066aa69c151b1093bfcb735f8e112358e8]
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, Installing Application Server...
    (Jan 14, 2006 3:37:58 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1,
    Checking available disk space...
    Checking Java(TM) 2 Runtime Environment...
    Extracting installation files...
    Launching Java(TM) 2 Runtime Environment...
    Deleting temporary files...
    "exitcode = 73"
    (Jan 14, 2006 3:37:58 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, Finished
    (Jan 14, 2006 3:37:58 PM), Setup.product.install, com.installshield.wizard.platform.win32.Win32ProductServiceImpl, msg1, installing Post Install Core Action (postInstallCoreAction)
    (Jan 14, 2006 3:40:32 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpecTed output: "C:\Sun\Creator2ea2\bin\storagebuilder.bat"
    (Jan 14, 2006 3:40:32 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, preparsing C:\Sun\Creator2ea2\rave2.0\core\rowset.jar
    (Jan 14, 2006 3:40:32 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, C:\Temp\mdrstorage\storage
    (Jan 14, 2006 3:40:32 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, ... done
    (Jan 14, 2006 3:40:32 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, preparsing C:\Sun\Creator2ea2\rave2.0\core\sqlx.jar
    <SNIP>
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpected output: "C:\Sun\Creator2ea2\bin\pe-init-tray.bat"
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, C:\Sun\CREATO~1\\rave2.0\startup\lib\Windows-i386\jdic_0_9.jar
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, C:\Sun\CREATO~1\\rave2.0\startup\lib\Windows-i386\LICENSE.jdic_0_9
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, C:\Sun\CREATO~1\\rave2.0\startup\lib\Windows-i386\tray.dll
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, 3 fichier(s) copi�(s).
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, 1 fichier(s) copi�(s).
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Avertissements de compilation :
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 31: L'attribut 'classname' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpected output: "C:\Sun\Creator2ea2\bin\pe-start.bat"
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, WARNING: The adminpassword option is insecure and should not be used since it can compromise your password.  Please use either the command prompt or the passwordfile option.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Domain creator created.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Starting Domain creator, please wait.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Log redirected to C:\Sun\Creator2ea2\SunAppServer8\domains\creator\logs\server.log.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Timeout waiting for domain creator to go to starting state.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Avertissements de compilation :
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 44: L'attribut 'debug-options' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 61: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 72: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 83: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 104: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 115: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 126: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 144: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 155: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, CLI156 Could not start the domain creator.
    (Jan 14, 2006 3:45:41 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpected output: "C:\Sun\Creator2ea2\bin\deploy-ejbs.bat"
    (Jan 14, 2006 3:45:41 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, WARNING: The password option is insecure and should not be used since it can compromise your password.  Please use either the command prompt or the passwordfile option.
    (Jan 14, 2006 3:45:41 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Unable to connect to admin-server. Please check if the server is up and running and that the host and port provided are correct.
    etc.
    etc.
    Hope I haven't drowned you with this log....
    Thanks,
    Raphael

    Here's a bit more information : the output of the C:\Sun\Creator2ea2\SunAppServer8\domains\creator\logs\server.log file :
    [#|2006-01-14T15:42:08.188+0100|WARNING|sun-appserver-pe8.1_02|javax.enterprise.tools.launcher|_ThreadID=10;|LAUNCHER005:Spaces in your PATH have been detected. The PATH must be consistently formated (e.g. C:\Program Files\Java\jdk1.5.0\bin; ) or the Appserver may not be able to start and/or stop.  Mixed quoted spaces in your PATH can cause problems, so the launcher will remove all double quotes before invoking the process. The most reliable solution would be to remove all spaces from your path before starting the Appservers components.  |#]
    [#|2006-01-14T15:42:08.198+0100|INFO|sun-appserver-pe8.1_02|javax.enterprise.tools.launcher|_ThreadID=10;|
    C:/Sun/Creator2ea2/java\bin\java
    -client
    -XX:PermSize=32m
    -XX:MaxPermSize=128m
    -XX:+CMSPermGenSweepingEnabled
    -Xmx512m
    -XX:NewRatio=2
    -Dcom.sun.aas.defaultLogFile=C:/Sun/Creator2ea2/SunAppServer8/domains/creator/logs/server.log
    -Djava.endorsed.dirs=C:/Sun/Creator2ea2/SunAppServer8/lib/endorsed
    -Djava.security.policy=C:/Sun/Creator2ea2/SunAppServer8/domains/creator/config/server.policy
    -Djava.security.auth.login.config=C:/Sun/Creator2ea2/SunAppServer8/domains/creator/config/login.conf
    -Dsun.rmi.dgc.server.gcInterval=3600000
    -Dsun.rmi.dgc.client.gcInterval=3600000
    -Djavax.net.ssl.keyStore=C:/Sun/Creator2ea2/SunAppServer8/domains/creator/config/keystore.jks
    -Djavax.net.ssl.trustStore=C:/Sun/Creator2ea2/SunAppServer8/domains/creator/config/cacerts.jks
    -Djava.ext.dirs=C:/Sun/Creator2ea2/java/jre/lib/ext;C:/Sun/Creator2ea2/SunAppServer8/domains/creator/lib/ext
    -Djdbc.drivers=com.pointbase.jdbc.jdbcUniversalDriver
    -Djavax.management.builder.initial=com.sun.enterprise.admin.server.core.jmx.AppServerMBeanServerBuilder
    -Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory
    -Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar
    -Dcom.sun.enterprise.taglisteners=jsf-impl.jar
    -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl
    -Dcom.sun.aas.configName=server-config
    -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter
    -Ddomain.name=creator
    -Djmx.invoke.getters=true
    -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl
    -Dcom.sun.aas.promptForIdentity=true
    -Dorg.xml.sax.driver=com.sun.org.apache.xerces.internal.parsers.SAXParser
    -Dcom.sun.aas.instanceRoot=C:/Sun/Creator2ea2/SunAppServer8/domains/creator
    -Djavax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl
    -Dcom.sun.aas.domainName=creator
    -Djava.util.logging.manager=com.sun.enterprise.server.logging.ServerLogManager
    -Dproduct.name=Sun-Java-System/Application-Server
    -Dcom.sun.enterprise.overrideablejavaxpackages=javax.faces,javax.servlet.jsp.jstl,javax.xml.bind,javax.help
    -Dcom.sun.aas.configRoot=C:/Sun/Creator2ea2/SunAppServer8/config
    -Djava.library.path=C:\Sun\Creator2ea2\java\jre\bin\client;C:\Sun\Creator2ea2\SunAppServer8\lib;C:\Sun\Creator2ea2\SunAppServer8\lib;C:\Sun\Creator2ea2\java\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\Sun\Creator2ea2\SunAppServer8\lib;C:\Sun\Creator2ea2\SunAppServer8\bin;C:\Sun\Creator2ea2\SunAppServer8\lib;C:\Sun\Creator2ea2\SunAppServer8\bin;C:\Sun\Creator2ea2\SunAppServer8\bin;C:\Sun\Creator2ea2\SunAppServer8\bin;C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\;C:\Program Files\Borland\BDS\4.0\Bin;C:\PROGRA~1\Borland\CBUILD~3\Bin;C:\PROGRA~1\Borland\CBUILD~3\Projects\Bpl;C:\Oracle\OraHomeAPISOFT\bin;C:\Program Files\Oracle\jre\1.1.7\bin;C:\Program Files\Borland\Delphi7\Bin;C:\Program Files\Borland\Delphi7\Projects\Bpl\;C:\PROGRA~1\Borland\CBUILDER5\Projects\Bpl;C:\PROGRA~1\Borland\CBUILDER3\bin;C:\PROGRA~1\Borland\CBUILDER5\bin;C:\PROGRA~1\Borland\CBUILDER\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\WinSCP3\;C:\Program Files\Fichiers communs\GTK\2.0\bin;C:\Tools;C:\Program Files\vPoint_XP;C:\Program Files\Sybase\SQL Anywhere 9\win32;C:\Program Files\Sybase\Shared\win32;C:\Program Files\Sybase\SQL Anywhere 9\drivers;C:\Program Files\Sybase\Shared\Sybase Central 4.3\win32;C:\SuperWabaSDK\SuperWabaSDK\bin;C:\Java\Ant\bin\;c:\JbuilderX\jdk1.4\bin;C:\Java\SuperWabaSDK\qrfSQL\win32;C:\Java\SuperWabaSDK\WExtLib\jni\VC\Release;C:\Java\FirebirdSQL\jaybird.dll;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\SOTI\MobiControl;;C:\Documents and Settings\Microtec\Mes documents\Borland Studio Projects\Bpl;C:\PROGRA~1\FICHIE~1\ORACLE\BIN
    -Dcom.sun.aas.instanceName=server
    -Dcom.sun.aas.processLauncher=SE
    -cp
    C:/Sun/Creator2ea2/java/lib/tools.jar;C:/Sun/Creator2ea2/SunAppServer8/lib/appserv-rt.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\activation.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\admin-cli.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\appserv-admin.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\appserv-cmp.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\appserv-env.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\appserv-ext.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\appserv-jstl.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\appserv-upgrade.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\commons-launcher.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\commons-logging.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\dom.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\driveradapter.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\j2ee-svc.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\j2ee.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jax-qname.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jaxr-api.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jaxr-impl.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jaxrpc-api.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jaxrpc-impl.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jdic_0_9.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jmxremote.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jmxremote_optional.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jsf-api.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jsf-impl.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\mail.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\PEtray.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\relaxngDatatype.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\rmissl.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\saaj-api.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\saaj-impl.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smbase.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smdb2.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\sminformix.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smoracle.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smresource.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smspy.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smsqlserver.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smsybase.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smutil.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\xalan.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\xercesImpl.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\xsdlib.jar;C:/Sun/Creator2ea2/SunAppServer8/lib/install/applications/jmsra/imqjmsra.jar;C:/Sun/Creator2ea2/SunAppServer8/imq/lib/jaxm-api.jar;C:/Sun/Creator2ea2/SunAppServer8/imq/lib/fscontext.jar;C:/Sun/Creator2ea2/SunAppServer8/lib/ant/lib/ant.jar;C:/Sun/Creator2ea2/SunAppServer8/pointbase/lib/pbclient.jar;C:/Sun/Creator2ea2/SunAppServer8/pointbase/lib/pbembedded.jar
    com.sun.rave.tray.RavePEMain
    start
    display
    native|#]
    *** EXITING ERROR:
    Can't create Java VM
    ***

Maybe you are looking for

  • Can I share music library's with different apple ID accounts

    I would like to share music library's with my daughter. However, she has a differet User ID then myself. Is this still possible? So far I have set up home sharing and auhorized her computer. I can see and play the music in her library. However, I am

  • Why do we need 2 JNDI while congifuring DB or OA Adapters

    Hi, i have a question why do we need to have 2 JNDI's while configuring DB or OA adapters. I mean first we create a JDBC connection and specify a JNDI , and again in Deployments -> DBadapter/OAadapter-> we go and configure a JNDI with JDBC name . Why

  • Can't move or resize Chromium in Awesome WM

    Hello All, I recently noticed that chromium has started launching as a floating window by default in awesome. Along with this, I can no longer resize or move it by holding MOD4 and dragging with the left/right mouse buttons. (the cursor changes to th

  • Lightroom 3.2 runs slow

    Can I revert back to lightroom 3.0?  I installed the upgrade earlier this week, and am having stalling problems.  I have 8G of memory and a 1T drive, so don't think it's my system.  LR3.0 ran fine, but now 3.2 is really lagging. Need some help. Marga

  • Cannot Add Art Board

    Hi, I have created a huge art card measuring 1817mm x 1043mm and would like to duplicate more. I am not allowed to add further, is it because it has exceeded the canvas size? Take a look at the screen shot as shown below.