Error in serializin​g ImaqdxExce​ption

Hi All,
I am trying to clone an ImaqdxException object using binary serialization and deserialization. I find that the serialization part is going fine but however, the deserialization throws up an error. Please find the sample code below
ImaqdxException exception = new ImaqdxException("Some Exception");
BinaryFormatter Formatter = new BinaryFormatter();
using (var ms = new MemoryStream())
Formatter.Serialize(ms, exception);
ms.Position = 0;
ImaqdxException replica = (ImaqdxException)Formatter.Deserialize(ms);
The exception I am getting is as follows
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Runtime.Serialization.SerializationExceptio​n: Member 'Error' was not found.\r\n at System.Runtime.Serialization.SerializationInfo.Get​Element(String name, Type& foundType)\r\n at System.Runtime.Serialization.SerializationInfo.Get​Int32(String name)\r\n at NationalInstruments.Vision.Acquisition.Imaqdx.Imaq​dxException..ctor(SerializationInfo info, StreamingContext context)\r\n --- End of inner exception stack trace ---\r\n at System.RuntimeMethodHandle._SerializationInvoke(Ob​ject target, SignatureStruct& declaringTypeSig, SerializationInfo info, StreamingContext context)\r\n at System.Reflection.RuntimeConstructorInfo.Serializa​tionInvoke(Object target, SerializationInfo info, StreamingContext context)\r\n at System.Runtime.Serialization.ObjectManager.Complet​eISerializableObject(Object obj, SerializationInfo info, StreamingContext context)\r\n at System.Runtime.Serialization.ObjectMana
ger.FixupSpecialObject(ObjectHolder holder)\r\n at System.Runtime.Serialization.ObjectManager.DoFixup​s()\r\n at System.Runtime.Serialization.Formatters.Binary.Obj​ectReader.Deserialize(HeaderHandler handler, __BinaryParser serParser, Boolean fCheck, Boolean isCrossAppDomain, IMethodCallMessage methodCallMessage)\r\n at System.Runtime.Serialization.Formatters.Binary.Bin​aryFormatter.Deserialize(Stream serializationStream, HeaderHandler handler, Boolean fCheck, Boolean isCrossAppDomain, IMethodCallMessage methodCallMessage)\r\n at System.Runtime.Serialization.Formatters.Binary.Bin​aryFormatter.Deserialize(Stream serializationStream)\r\n at TestIMAQdxCameraDriver.TestForm..ctor() in C:\\Development\\Projects\\CODA\\TestIMAQdxCameraC​omponent\\TestForm.cs:line 52
From the exception I believe that there was a mistake in missing out writing the "Error" property when serializing and when deserializing it is expecting to get that property.
I am using Measurement Studio 2010.
Thanks,
Venkat

Hi Colden,
Thank you for your time and reply. I beileve the binary formatter serializer makes use of the GetObjectData method to serialize the exception.
Also, I am afraid, I cannot say whether the result I am getting by the call to GetObjectData contains the Error property because the only way to find out is to invoke the constructor "protected ImaqdxException(SerializationInfo info, StreamingContext context)" and see the members of the newly created exception clsass; However, this constructor is protected and not public. Also, I believe binary formatter serialization does exactly these serialization and deserialization steps and there seems to be some problem mostly with the serialization I believe. I think it needs to be looked into from the source code level and we do not have the source code.
We find that the capabaility to deep clone the ImaqdxException using binary formatter to be a very useful functionality. Else we need to wrap all the methods we call to the ImaqdxCamera driver in a try catch and copy the exception text from the caught ImaqdxException to a newly created Exception object and throw the newly created exception object. This involves more work for us.
Can you please let me know whether you have a fix for this problem.
Thanks,
Venkat

Similar Messages

  • Error while calling applet in HTML in SAP NWDS

    Hi,
    We have written a java code with Main method and we are trying to run it on web. So we have written another piece of HTML code where we are calling the othe program with applet. But getting below error.
    Below is exce[ption I am getting while running jree charts made in java :
    Java Plug-in 1.6.0_24
    Using JRE version 1.6.0_24-b07 Java HotSpot(TM) Client VM
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    java.lang.reflect.InvocationTargetException
    at com.sun.deploy.util.DeployAWTUtil.invokeAndWait(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.runOnEDT(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.RuntimeException: java.lang.InstantiationException: org.jfree.chart.demo.BarChartDemo
    at sun.plugin2.applet.Plugin2Manager$12.run(Unknown Source)
    at java.awt.event.InvocationEvent.dispatch(Unknown Source)
    at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    at java.awt.EventQueue.access$000(Unknown Source)
    at java.awt.EventQueue$1.run(Unknown Source)
    at java.awt.EventQueue$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: java.lang.InstantiationException: org.jfree.chart.demo.BarChartDemo
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    ... 15 more
    Exception: java.lang.reflect.InvocationTargetException
    Below is html code run to call applets :
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "" title="http://www.w3.org/TR/html4/loose.dtd">" class="link">http://www.w3.org/TR/html4/loose.dtd">
    (http://www.w3.org/TR/html4/loose.dtd)
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Hello</title>
    </head>
    <body>
    <applet code=org.jfree.chart.demo.BarChartDemo archive="src.jar" width="320" height="120"></applet>
    </body>
    </html>
    Please suggest.
    Regards
    Agamani

    Hi,
    Though there are a lot of importing parameters, you should give only one structure for outtable, and read as index 1 and index 2.
    FORM GET_SPRAS TABLES intable   STRUCTURE itcsy
                                              outtable  STRUCTURE itcsy.
      DATA: lv_kunnr LIKE kna1-kunnr.
      CLEAR: GV_SPRAS.
      lv_kunnr = intable-value.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = lv_kunnr
        IMPORTING
          output = lv_kunnr.
      SELECT SINGLE LAND1 SPRAS INTO (gv_land1, gv_spras) FROM KNA1
        WHERE KUNNR = lv_kunnr.
      IF sy-subrc = 0.
        READ TABLE outtable INDEX 1.
        outtable-value = gv_spras.
        MODIFY outtable INDEX 1.
        READ TABLE outtable INDEX 2.
        outtable-value = gv_land1.
        MODIFY outtable INDEX 2.
      ENDIF.
      IF gv_land1 EQ 'DE'.
        CLEAR: GV_LAND1,
               GV_SPRAS.
      ENDIF.
    ENDFORM.
    Edited by: Srinivas Kalluri on Mar 30, 2009 5:00 AM
    Edited by: Srinivas Kalluri on Mar 30, 2009 5:10 AM

  • Error on Bursting Report for BI Publisher

    hi all,
    i am getting the following error when i am bursting the report for BI Publisher.
    * Nested Exception (Underlying Cause) ---------------
    oracle.apps.xdo.servlet.scheduler.ProcessingException: java.lang.NullPointerExce
    ption
    at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.jav
    a:2116)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:358)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.j
    ava:520)
    Caused by: java.lang.NullPointerException
    at com.sun.java.util.collections.Hashtable.get(Hashtable.java:321)
    at oracle.apps.xdo.batch.bursting.ProcessEnterpriseDocument.processLayou
    t(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unkno
    wn Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(
    Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.endDocument(Unknown Sou
    rce)
    at oracle.xml.parser.v2.XMLContentHandler.endDocument(XMLContentHandler.
    java:119)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingP
    arser.java:311)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:263)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown
    Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.jav
    a:2008)
    ... 3 more
    Kindly Help..
    Thanks.

    Thanks alot Guru for u r reply, i am attaching more Details regarding my error.
    In Reporting options i gave
    Reporting folder CCB
    Reporting server:BIPUbliser url
    Reporting password:Admin     
    Reproting userid:Admin
    I already configured Bill Display Algorithm OBLD_CRYS in installation-frame work
    Now i am getting the error the value in the field is not a valid value for the field.
    In Console I am getting the error '
    SYSUSER - 612791-31-1 2011-05-26 11:32:21,709 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR (schema.rules.BusinessObjectRuleProcessor$Factory) There is more th
    an 1 MO for the service 'CILCSVAP': MaintenanceObject_Id(SA), MaintenanceObject_Id(CM_CONT), using 1st one 'MaintenanceObject_Id(SA)'
    <May 26, 2011 11:32:22 AM IST> <Error> <HTTP> <BEA-101020> <[ServletContext@4736418[app:SPLWeb module:/spl path:/spl spec-version:2.5]] Servlet failed with Exception
    com.splwg.shared.common.ApplicationError: (Server Message)
    Category: 3
    Number: 501
    Call Sequence: ;CIPCSVAP
    Program Name: CIPCSVAP
    Text: You are not allowed access (directly/indirectly) to this account.
    Description: Please contact your security administrator to check your security for this account.
    Table:
    Field:
    at com.splwg.base.support.context.FrameworkSession.addError(FrameworkSession.java:1177)
    at com.splwg.base.support.context.FrameworkSession.addError(FrameworkSession.java:1158)
    at com.splwg.base.support.cobol.CobolSubprogram.populateError(CobolSubprogram.java:142)
    at com.splwg.base.support.cobol.CobolSubprogram.checkForErrors(CobolSubprogram.java:94)
    at com.splwg.base.support.cobol.AbstractCobolProgram$CallCobolClosure.run(AbstractCobolProgram.java:214)
    Truncated. see log file for complete stacktrace

  • Using JSSE : "Invalid Netscape CertType extension for SSL client" Error

    Hi all,
    Im using the sample code given sun site for JSSE with Client Authentication. The sample as such it worked with the testkeys provided in that. But it didn't workout when I tried using other certificates.
    Both client and server certificates I generated from our internal Netscape Certificate Manager.
    Function of the server :
    The server will read a private key from the given keystore and starts listening on a port. This server will server only GET request.
    Function of the client :
    The Client sends a GET request to the server and gets the response back.
    I simply changed the key store name alone in the working sample code.
    It is not working.
    The Exception thrown on client side :
    D:\users\Jp\java\jssesamples\sockets\client\class>java SSLSocketClientWithClientAuth1 localhost 1089 /urls
    localhost
    1089
    /urls
    java.net.SocketException: Software caused connection abort: socket write error
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
    at com.sun.net.ssl.internal.ssl.OutputRecord.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SunJSSE_ax.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SunJSSE_az.j(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SunJSSE_az.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SunJSSE_az.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SunJSSE_ax.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.j(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(DashoA6275)
    at SSLSocketClientWithClientAuth1.main(SSLSocketClientWithClientAuth1.java:119)
    Exception thrown on server side :
    D:\users\Jp\java\jssesamples\sockets\server\class>java ClassFileServer 1089 . TLS true
    USAGE: java ClassFileServer port docroot [TLS [true]]
    If the third argument is TLS, it will start as
    a TLS/SSL file server, otherwise, it will be
    an ordinary file server.
    If the fourth argument is true,it will require
    client authentication as well.
    javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Invalid Netscape CertType extension for SSL client
    at com.sun.net.ssl.internal.ssl.BaseSSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SunJSSE_aw.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SunJSSE_aw.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SunJSSE_ax.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.j(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.AppInputStream.read(DashoA6275)
    at sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:406)
    at sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:446)
    at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:180)
    at java.io.InputStreamReader.read(InputStreamReader.java:167)
    at java.io.BufferedReader.fill(BufferedReader.java:136)
    at java.io.BufferedReader.readLine(BufferedReader.java:299)
    at java.io.BufferedReader.readLine(BufferedReader.java:362)
    at ClassServer.getPath(ClassServer.java:162)
    at ClassServer.run(ClassServer.java:109)
    at java.lang.Thread.run(Thread.java:536)
    Caused by: java.security.cert.CertificateException: Invalid Netscape CertType extension for SSL client
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkClientTrusted(DashoA6275)
    at com.sun.net.ssl.internal.ssl.JsseX509TrustManager.checkClientTrusted(DashoA6275)
    ... 17 more
    error writing response: Connection has been shutdown: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateExce
    ption: Invalid Netscape CertType extension for SSL client
    javax.net.ssl.SSLException: Connection has been shutdown: javax.net.ssl.SSLHandshakeException: java.security.cert.Certificate
    Exception: Invalid Netscape CertType extension for SSL client
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.d(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.e(DashoA6275)
    at com.sun.net.ssl.internal.ssl.AppOutputStream.write(DashoA6275)
    at com.sun.net.ssl.internal.ssl.AppOutputStream.write(DashoA6275)
    at java.io.DataOutputStream.writeBytes(DataOutputStream.java:256)
    at ClassServer.run(ClassServer.java:128)
    at java.lang.Thread.run(Thread.java:536)
    Caused by: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Invalid Netscape CertType extension
    for SSL client
    at com.sun.net.ssl.internal.ssl.BaseSSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SunJSSE_aw.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SunJSSE_aw.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SunJSSE_ax.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.j(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.AppInputStream.read(DashoA6275)
    at sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:406)
    at sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:446)
    at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:180)
    at java.io.InputStreamReader.read(InputStreamReader.java:167)
    at java.io.BufferedReader.fill(BufferedReader.java:136)
    at java.io.BufferedReader.readLine(BufferedReader.java:299)
    at java.io.BufferedReader.readLine(BufferedReader.java:362)
    at ClassServer.getPath(ClassServer.java:162)
    at ClassServer.run(ClassServer.java:109)
    ... 1 more
    Caused by: java.security.cert.CertificateException: Invalid Netscape CertType extension for SSL client
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkClientTrusted(DashoA6275)
    at com.sun.net.ssl.internal.ssl.JsseX509TrustManager.checkClientTrusted(DashoA6275)
    ... 17 more
    The Client code :
    * @(#)SSLSocketClientWithClientAuth.java     1.5 01/05/10
    * Copyright 1995-2002 Sun Microsystems, Inc. All Rights Reserved.
    * Redistribution and use in source and binary forms, with or
    * without modification, are permitted provided that the following
    * conditions are met:
    * -Redistributions of source code must retain the above copyright
    * notice, this list of conditions and the following disclaimer.
    * -Redistribution in binary form must reproduct the above copyright
    * notice, this list of conditions and the following disclaimer in
    * the documentation and/or other materials provided with the
    * distribution.
    * Neither the name of Sun Microsystems, Inc. or the names of
    * contributors may be used to endorse or promote products derived
    * from this software without specific prior written permission.
    * This software is provided "AS IS," without a warranty of any
    * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
    * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
    * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
    * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY
    * DAMAGES OR LIABILITIES SUFFERED BY LICENSEE AS A RESULT OF OR
    * RELATING TO USE, MODIFICATION OR DISTRIBUTION OF THE SOFTWARE OR
    * ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE
    * FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT,
    * SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
    * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF
    * THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN
    * ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
    * You acknowledge that Software is not designed, licensed or
    * intended for use in the design, construction, operation or
    * maintenance of any nuclear facility.
    import java.net.*;
    import java.io.*;
    import javax.net.ssl.*;
    import javax.security.cert.X509Certificate;
    import java.security.KeyStore;
    * This example shows how to set up a key manager to do client
    * authentication if required by server.
    * This program assumes that the client is not inside a firewall.
    * The application can be modified to connect to a server outside
    * the firewall by following SSLSocketClientWithTunneling.java.
    public class SSLSocketClientWithClientAuth1 {
    public static void main(String[] args) throws Exception {
         String host = null;
         int port = -1;
         String path = null;
         for (int i = 0; i < args.length; i++)
         System.out.println(args);
         if (args.length < 3) {
         System.out.println(
              "USAGE: java SSLSocketClientWithClientAuth " +
              "host port requestedfilepath");
         System.exit(-1);
         try {
         host = args[0];
         port = Integer.parseInt(args[1]);
         path = args[2];
         } catch (IllegalArgumentException e) {
         System.out.println("USAGE: java SSLSocketClientWithClientAuth " +
              "host port requestedfilepath");
         System.exit(-1);
         try {
         * Set up a key manager for client authentication
         * if asked by the server. Use the implementation's
         * default TrustStore and secureRandom routines.
         SSLSocketFactory factory = null;
         try {
              SSLContext ctx;
              KeyManagerFactory kmf;
              KeyStore ks;
              char[] passphrase = "passphrase".toCharArray();
              ctx = SSLContext.getInstance("TLS");
              kmf = KeyManagerFactory.getInstance("SunX509");
              ks = KeyStore.getInstance("JKS");
    //          ks.load(new FileInputStream("testkeys"), passphrase);
              ks.load(new FileInputStream("clientkey"), passphrase);
              kmf.init(ks, passphrase);
              ctx.init(kmf.getKeyManagers(), null, null);
              factory = ctx.getSocketFactory();
         } catch (Exception e) {
              throw new IOException(e.getMessage());
         SSLSocket socket = (SSLSocket)factory.createSocket(host, port);
         * send http request
         * See SSLSocketClient.java for more information about why
         * there is a forced handshake here when using PrintWriters.
         socket.startHandshake();
         PrintWriter out = new PrintWriter(
                        new BufferedWriter(
                        new OutputStreamWriter(
                        socket.getOutputStream())));
         out.println("GET " + path + " HTTP/1.1");
              /* Some internet sites throw bad request error for HTTP/1.1 req if hostname is not specified so the foll line */
              out.println("Host: " + host);
         out.println();
         out.flush();
         * Make sure there were no surprises
         if (out.checkError())
              System.out.println(
              "SSLSocketClient: java.io.PrintWriter error");
         /* read response */
         BufferedReader in = new BufferedReader(
                        new InputStreamReader(
                        socket.getInputStream()));
         String inputLine;
         while ((inputLine = in.readLine()) != null)
              System.out.println(inputLine);
         in.close();
         out.close();
         socket.close();
         } catch (Exception e) {
         e.printStackTrace();
    The Server code :
    * @(#)ClassFileServer.java     1.5 01/05/10
    * Copyright 1995-2002 Sun Microsystems, Inc. All Rights Reserved.
    * Redistribution and use in source and binary forms, with or
    * without modification, are permitted provided that the following
    * conditions are met:
    * -Redistributions of source code must retain the above copyright
    * notice, this list of conditions and the following disclaimer.
    * -Redistribution in binary form must reproduct the above copyright
    * notice, this list of conditions and the following disclaimer in
    * the documentation and/or other materials provided with the
    * distribution.
    * Neither the name of Sun Microsystems, Inc. or the names of
    * contributors may be used to endorse or promote products derived
    * from this software without specific prior written permission.
    * This software is provided "AS IS," without a warranty of any
    * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
    * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
    * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
    * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY
    * DAMAGES OR LIABILITIES SUFFERED BY LICENSEE AS A RESULT OF OR
    * RELATING TO USE, MODIFICATION OR DISTRIBUTION OF THE SOFTWARE OR
    * ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE
    * FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT,
    * SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
    * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF
    * THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN
    * ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
    * You acknowledge that Software is not designed, licensed or
    * intended for use in the design, construction, operation or
    * maintenance of any nuclear facility.
    import java.io.*;
    import java.net.*;
    import java.security.KeyStore;
    import javax.net.*;
    import javax.net.ssl.*;
    import javax.security.cert.X509Certificate;
    /* ClassFileServer.java -- a simple file server that can server
    * Http get request in both clear and secure channel
    * The ClassFileServer implements a ClassServer that
    * reads files from the file system. See the
    * doc for the "Main" method for how to run this
    * server.
    public class ClassFileServer extends ClassServer {
    private String docroot;
    private static int DefaultServerPort = 2001;
    * Constructs a ClassFileServer.
    * @param path the path where the server locates files
    public ClassFileServer(ServerSocket ss, String docroot) throws IOException
         super(ss);
         this.docroot = docroot;
    * Returns an array of bytes containing the bytes for
    * the file represented by the argument <b>path</b>.
    * @return the bytes for the file
    * @exception FileNotFoundException if the file corresponding
    * to <b>path</b> could not be loaded.
    public byte[] getBytes(String path)
         throws IOException
         System.out.println("reading: " + path);
         File f = new File(docroot + File.separator + path);
         int length = (int)(f.length());
         if (length == 0) {
         throw new IOException("File length is zero: " + path);
         } else {
         FileInputStream fin = new FileInputStream(f);
         DataInputStream in = new DataInputStream(fin);
         byte[] bytecodes = new byte[length];
         in.readFully(bytecodes);
         return bytecodes;
    * Main method to create the class server that reads
    * files. This takes two command line arguments, the
    * port on which the server accepts requests and the
    * root of the path. To start up the server: <br><br>
    * <code> java ClassFileServer <port> <path>
    * </code><br><br>
    * <code> new ClassFileServer(port, docroot);
    * </code>
    public static void main(String args[])
         System.out.println(
         "USAGE: java ClassFileServer port docroot [TLS [true]]");
         System.out.println("");
         System.out.println(
         "If the third argument is TLS, it will start as\n" +
         "a TLS/SSL file server, otherwise, it will be\n" +
         "an ordinary file server. \n" +
         "If the fourth argument is true,it will require\n" +
         "client authentication as well.");
         int port = DefaultServerPort;
         String docroot = "";
         if (args.length >= 1) {
         port = Integer.parseInt(args[0]);
         if (args.length >= 2) {
         docroot = args[1];
         String type = "PlainSocket";
         if (args.length >= 3) {
         type = args[2];
         try {
         ServerSocketFactory ssf =
              ClassFileServer.getServerSocketFactory(type);
         ServerSocket ss = ssf.createServerSocket(port);
         if (args.length >= 4 && args[3].equals("true")) {
              ((SSLServerSocket)ss).setNeedClientAuth(true);
         new ClassFileServer(ss, docroot);
         } catch (IOException e) {
         System.out.println("Unable to start ClassServer: " +
                   e.getMessage());
         e.printStackTrace();
    private static ServerSocketFactory getServerSocketFactory(String type) {
         if (type.equals("TLS")) {
         SSLServerSocketFactory ssf = null;
         try {
              // set up key manager to do server authentication
              SSLContext ctx;
              KeyManagerFactory kmf;
              KeyStore ks;
              char[] passphrase = "passphrase".toCharArray();
              ctx = SSLContext.getInstance("TLS");
              kmf = KeyManagerFactory.getInstance("SunX509");
              ks = KeyStore.getInstance("JKS");
    //          ks.load(new FileInputStream("testkeys"), passphrase);
              ks.load(new FileInputStream("serverkey"), passphrase);
              kmf.init(ks, passphrase);
              ctx.init(kmf.getKeyManagers(), null, null);
              ssf = ctx.getServerSocketFactory();
              return ssf;
         } catch (Exception e) {
              e.printStackTrace();
         } else {
         return ServerSocketFactory.getDefault();
         return null;
    Could anyone help ?
    thanks in advance
    Jayaprakash

    The same thing.
    I have found the place where the exception throws.
    It is com.sun.net.ssl.internal.ssl.AVA class.
    It has a constructor AVA(StringReader)
    There is a check in this constructor of different certificate extensions
    (if-else). If it sees no familiar extension it throws exception and handshake fails.
    It is not difficult to fix this problem: just ignore unknown extension.
    Everything works fine with this "improved" class (under VA 3.5).
    But the problem is - the using of this class in applets.
    How can I say the browser to use my "improved" class and not the one it downloaded with java plug-in?

  • Linker Error while creating shared object.

    While creating shared object we got "file processing error".
    Below is our compilation line and the error out put.
    ==================
    /net/icom3/opt//SUNWspro/SC5.0/bin/CC -o fn_ctx_onc_fn_files.so.1 -G -h fn_ctx_onc_fn_files.so.1 -z text -z defs -z combreloc -norunpath -nolib -Qo
    ption ld -R/usr/lib/fn pics/FNSP_filesOrgContext_default.o pics/FNSP_filesFlatContext_default.o pics/fnsp_internal_common.o pics/FNSP_nisAddress.o
    pics/FNSP_nisOrgContext_default.o pics/FNSP_nisFlatContext_default.o pics/FNSP_hash_function.o pics/FNSP_filesHierContext.o pics/FNSP_filesDotC
    ontext.o pics/FNSP_filesFlatContext.o pics/FNSP_filesHUContext.o pics/FNSP_filesWeakSlashContext.o pics/FNSP_filesPrinternameContext.o pics/FNSP_
    filesPrinterObject.o pics/FNSP_filesOrgContext.o pics/FNSP_filesImpl.o pics/fnsp_files_internal.o pics/onc_fn_files.o -lnsl -lc -L/user/vts/X
    FN_CHECK/jnk/usr/lib/fn -lxfn -lfn_spf -lfnsp -lfn_p
    ld: fatal: File processing errors. No output written to fn_ctx_onc_fn_files.so.1
    ==================================
    Thanks in advance.
    -Lokesh MS

    Hi,
    The maximum length supported by one CHAR type infoobject is 60. Check whether you have assigned more.
    If you have to load more length ( more than 60) split the total thing into different infoobjects. Create different infoobjects and split the total thing into them - like 1st 60 char in 1st infoobject, char 61-120 in 2nd infoobject and so on. Then you can again concatenate them.
    Thanks,
    Indrashis

  • Strange error in 2.4.0: primary key field is written into DB improperly

    Hi!
    I've tried 2.4.0 RC1 and found strange problem: when new child persistent
    object is created and added to the parent strange value is written into ID
    field in the database. This value changes each time I try to reproduce the
    problem. Now it is: -8,373E23.
    Parent is Ticket class containing Set of Comment classes.
    After that during parent loading I get the following error:
    2002-11-14 14:32:43,726 ERROR [org.jboss.ejb.plugins.LogInterceptor]
    RuntimeExce
    ption:
    javax.jdo.JDOFatalDataStoreException:
    java.lang.ArrayIndexOutOfBoundsException:
    -128
    NestedThrowables:
    java.lang.ArrayIndexOutOfBoundsException: -128
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.instantiateRow(
    LazyResultList.java:195)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.LazyResultList.get(LazyResultL
    ist.java:123)
    at java.util.AbstractList$Itr.next(AbstractList.java:416)
    at
    com.solarmetric.kodo.runtime.objectprovider.ResultListIterator.next(R
    esultListIterator.java:49)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.ResultListFactory.createResult
    List(ResultListFactory.java:91)
    at
    com.solarmetric.kodo.impl.jdbc.ormapping.OneToManyMapping.load(OneToM
    anyMapping.java:83)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.load(JDBCStor
    eManager.java:366)
    at
    com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.load(Dat
    aCacheStoreManager.java:254)
    at
    com.solarmetric.kodo.runtime.StateManagerImpl.loadField(StateManagerI
    mpl.java:1987)
    at
    com.solarmetric.kodo.runtime.StateManagerImpl.isLoaded(StateManagerIm
    pl.java:721)
    at
    net.xtrim.crm.troubleticket.object.Ticket.jdoGetcomments(Ticket.java)
    at
    net.xtrim.crm.troubleticket.object.Ticket.getComments(Ticket.java:387
    at
    net.xtrim.crm.system.TTEntitiesManager.findTTComments(TTEntitiesManag
    er.java:195)
    at
    net.xtrim.crm.troubleticket.ejb.TroubleTicketFacadeBean.getCommentLis
    t(TroubleTicketFacadeBean.java:487)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at
    org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(S
    tatelessSessionContainer.java:660)
    at
    org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invo
    ke(CachedConnectionInterceptor.java:186)
    I've tried to do the same thing on 2.3.4 and get the transaction rolled
    back. The logged SQL looks strange:
    2002-11-14 15:03:35,099 INFO
    [com.solarmetric.kodo.impl.jdbc.ee.ManagedConnectionFactoryImpl.supportcrm/k
    odo]
    INSERT INTO BILLY.TT_COMMENTS(COMMENT_TYPE, TEXT,
    CREATED_BY, ID, SUBJECT, CREATE_DATE, TT_MAIN_ID) VALUES (1, '1', 10, 279,
    '1',
    {ts '2002-11-14 15:03:35.059'}, 147)
    When I change "{ts '2002-11-14 15:03:35.059'}" with "TO_DATE('2002-11-14
    15:03', 'YYYY-DD-MM HH24:MI')" in SQL editor
    and execute it everything works fine.

    I've tried Kodo 2.4.0RC2 and had the same error.
    I don't have much time now to check the second solution but I'll try to find
    it ASAP.
    Just in case I've attached the class file for Category class.
    "Marc Prud'hommeaux" <[email protected]> wrote in message
    news:[email protected]...
    Alexy-
    The problem with metadata not found is a known problem for 2.4.0RC1
    in managed envornments, and should be fixed for RC2. If you get
    a chance, could you download it and see if it fixes the problem?
    Also, you can always get around the problem by explicitely
    referencing the persistent class before you attempt
    JDO operations on it. E.g.,
    public void mySessionBeanMethod ()
    // workaround
    Class c = MyPersistentClass.class;
    persistenceManager.makePersistent (new MyPersistentClass ());
    // etc...
    It is ugly, but it will usually get around the problem.
    Let us know if neither of these solve your issue.
    In <[email protected]> Alexey Maslov wrote:
    Yes, I'm pretty sure.
    I've even decompiled it with JAD to check if it implemented
    PersistenceCapable.
    "Abe White" <[email protected]> wrote in message
    news:[email protected]...
    I hate to ask the obvious, but are you sure you deployed the enhancedclass
    file?
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com
    begin 666 Category.class
    MROZZO@`#`"T!M0<``@$`*VYE="]X=')I;2]C<FTO=')O=6)L971I8VME="]O
    M8FIE8W0O0V%T96=O<GD'``0!`!!J879A+VQA;F<O3V)J96-T!P`&`0`4:F%V
    M82]I;R]397)I86QI>F%B;&4'``@!`"MN970O>'1R:6TO8W)M+W-Y<W1E;2]S
    M96-U<FET>2]396-U<F5D16YT:71Y`0`":60!`!-,:F%V82]L86YG+TEN=&5G
    M97([`0`$;F%M90$`$DQJ879A+VQA;F<O4W1R:6YG.P$`!W1I8VME=',!``],
    M:F%V82]U=&EL+U-E=#L!``5T>7!E<P$`!6=E=$ED`0`5*"E,:F%V82]L86YG
    M+TEN=&5G97([`0`$0V]D90$`#TQI;F5.=6UB97)486)L90$`$DQO8V%L5F%R
    M:6%B;&5486)L90P`"0`*"0`!`!4!``1T:&ES`0`M3&YE="]X=')I;2]C<FTO
    M=')O=6)L971I8VME="]O8FIE8W0O0V%T96=O<GD[`0`%<V5T260!`!8H3&IA
    M=F$O;&%N9R]);G1E9V5R.RE6`0`'9V5T3F%M90$`%"@I3&IA=F$O;&%N9R]3
    M=')I;F<[# `+``P)``$`'0$`!W-E=$YA;64!`!4H3&IA=F$O;&%N9R]3=')I
    M;F<[*58!``IG9714:6-K971S`0`1*"E,:F%V82]U=&EL+U-E=#L,``T`#@D`
    M`0`C# `F`"<!``]U;FUO9&EF:6%B;&53970!`" H3&IA=F$O=71I;"]3970[
    M*4QJ879A+W5T:6PO4V5T.PH`*0`E!P`J`0`5:F%V82]U=&EL+T-O;&QE8W1I
    M;VYS`0`)861D5&EC:V5T`0`N*$QN970O>'1R:6TO8W)M+W1R;W5B;&5T:6-K
    M970O;V)J96-T+U1I8VME=#LI5@P`+@`O`0`(8V]N=&%I;G,!`!4H3&IA=F$O
    M;&%N9R]/8FIE8W0[*5H+`#$`+0<`,@$`#6IA=F$O=71I;"]3970'`#0!`!]J
    M879A+VQA;F<O26QL96=A;%-T871E17AC97!T:6]N!P`V`0`6:F%V82]L86YG
    M+U-T<FEN9T)U9F9E<@@`. $`&U1I8VME="!A;')E861Y(&5X:7-T<RX@260Z
    M( P`.@`@`0`&/&EN:70^"@`U`#D,`! `$0H`/@`\!P`_`0`I;F5T+WAT<FEM
    M+V-R;2]T<F]U8FQE=&EC:V5T+V]B:F5C="]4:6-K970,`$$`0@$`!F%P<&5N
    M9 $`+"A,:F%V82]L86YG+T]B:F5C=#LI3&IA=F$O;&%N9R]3=')I;F="=69F
    M97(["@`U`$ ,`$$`10$`&RA#*4QJ879A+VQA;F<O4W1R:6YG0G5F9F5R.PH`
    M-0!$# !(`!P!``AT;U-T<FEN9PH`-0!'"@`S`#D,`$P`+P$``V%D9 L`,0!+
    M`0`&=&EC:V5T`0`K3&YE="]X=')I;2]C<FTO=')O=6)L971I8VME="]O8FIE
    M8W0O5&EC:V5T.P$`#')E;6]V951I8VME= P`4@`O`0`&<F5M;W9E"P`Q`%$!
    M``AG9714>7!E<PP`#P`."0`!`%4!``IC<F5A=&54>7!E`0!0*$QJ879A+VQA
    M;F<O26YT96=E<CM,:F%V82]L86YG+U-T<FEN9SLI3&YE="]X=')I;2]C<FTO
    M=')O=6)L971I8VME="]O8FIE8W0O5'EP93L'`%H!`"=N970O>'1R:6TO8W)M
    M+W1R;W5B;&5T:6-K970O;V)J96-T+U1Y<&4,`#H`7 $`52A,:F%V82]L86YG
    M+TEN=&5G97([3&IA=F$O;&%N9R]3=')I;F<[3&YE="]X=')I;2]C<FTO=')O
    M=6)L971I8VME="]O8FIE8W0O0V%T96=O<GD[*58*`%D`6P$`!'1Y<&4!`"E,
    M;F5T+WAT<FEM+V-R;2]T<F]U8FQE=&EC:V5T+V]B:F5C="]4>7!E.P$`$FES
    M1&5P96YD96YC:65S1G)E90$``R@I6@P`8P!A`0`':7-%;7!T>0L`,0!B`0`4
    M9V5T4V5C=7)E9%)E<V]U<F-E260,`&<`"@$`'%1R;W5B;&54:6-K971#871E
    M9V]R>5]215-?240)`&D`9@<`:@$`,6YE="]X=')I;2]C<FTO<WES=&5M+W-E
    M8W5R:71Y+U-E8W5R:71Y4F5S;W5R8V5)1',!`!YG971396-U<F5D16YT:71Y
    M06QL;W=S0VAI;&1R96X!`!AG971396-U<F5D16YT:71Y0VAI;&1R96X!`!@H
    M*4QJ879A+W5T:6PO0V]L;&5C=&EO;CL!``AH87-H0V]D90$``R@I20P`;@!O
    M"@!R`' '`',!`!%J879A+VQA;F<O26YT96=E<@$`!F5Q=6%L<PP`= `O"@!R
    M`'4!``-O8FH!`!),:F%V82]L86YG+T]B:F5C=#L!``,H*58!``E3>6YT:&5T
    M:6,'`'P!`!%J879A+W5T:6PO2&%S:%-E= P`.@!Y"@![`'T!`"@H3&IA=F$O
    M;&%N9R]);G1E9V5R.TQJ879A+VQA;F<O4W1R:6YG.RE6"@`#`'T,`!<`>0H`
    M`0"!`0`*4V]U<F-E1FEL90$`#4-A=&5G;W)Y+FIA=F$!``AJ9&]'971I9 $`
    M0BA,;F5T+WAT<FEM+V-R;2]T<F]U8FQE=&EC:V5T+V]B:F5C="]#871E9V]R
    M>3LI3&IA=F$O;&%N9R]);G1E9V5R.PP`A0"&"@`!`(<!``AJ9&]3971I9 $`
    M0RA,;F5T+WAT<FEM+V-R;2]T<F]U8FQE=&EC:V5T+V]B:F5C="]#871E9V]R
    M>3M,:F%V82]L86YG+TEN=&5G97([*58,`(D`B@H``0"+`0`*:F1O1V5T;F%M
    M90$`02A,;F5T+WAT<FEM+V-R;2]T<F]U8FQE=&EC:V5T+V]B:F5C="]#871E
    M9V]R>3LI3&IA=F$O;&%N9R]3=')I;F<[# "-`(X*``$`CP$`"FID;U-E=&YA
    M;64!`$(H3&YE="]X=')I;2]C<FTO=')O=6)L971I8VME="]O8FIE8W0O0V%T
    M96=O<GD[3&IA=F$O;&%N9R]3=')I;F<[*58,`)$`D@H``0"3`0`-:F1O1V5T
    M=&EC:V5T<P$`/BA,;F5T+WAT<FEM+V-R;2]T<F]U8FQE=&EC:V5T+V]B:F5C
    M="]#871E9V]R>3LI3&IA=F$O=71I;"]3970[# "5`)8*``$`EP$`"VID;T=E
    M='1Y<&5S# "9`)8*``$`F@$`#6ID;U-E='1I8VME=',!`#\H3&YE="]X=')I
    M;2]C<FTO=')O=6)L971I8VME="]O8FIE8W0O0V%T96=O<GD[3&IA=F$O=71I
    M;"]3970[*58,`)P`G0H``0">`0`+:F1O4V5T='EP97,,`* `G0H``0"A`0`@
    M:F%V87@O:F1O+W-P:2]097)S:7-T96YC94-A<&%B;&4'`*,!`!9J9&]);FAE
    M<FET961&:65L9$-O=6YT`0`!20$`#6ID;T9I96QD3F%M97,!`!-;3&IA=F$O
    M;&%N9R]3=')I;F<[`0`-:F1O1FEE;&14>7!E<P$`$EM,:F%V82]L86YG+T-L
    M87-S.P$`#6ID;T9I96QD1FQA9W,!``);0@$`'VID;U!E<G-I<W1E;F-E0V%P
    M86)L95-U<&5R8VQA<W,!`!%,:F%V82]L86YG+T-L87-S.P$`#VID;U-T871E
    M36%N86=E<@$`'$QJ879A>"]J9&\O<W!I+U-T871E36%N86=E<CL!``AJ9&]&
    M;&%G<P$``4(!``@\8VQI;FET/@$`$&IA=F$O;&%N9R]3=')I;F<'`+0(``D(
    M``L(``T(``\,`*<`J D``0"Z`0`/:F%V82]L86YG+T-L87-S!P"\`0`88VQA
    M<W,D3&IA=F$D;&%N9R1);G1E9V5R`0`&8VQA<W,D`0`E*$QJ879A+VQA;F<O
    M4W1R:6YG.RE,:F%V82]L86YG+T-L87-S.P$`!V9O<DYA;64,`,$`P H`O0#"
    M`0`>:F%V82]L86YG+TYO0VQA<W-$969&;W5N9$5R<F]R!P#$`0`3:F%V82]L
    M86YG+U1H<F]W86)L90<`Q@$`"F=E=$UE<W-A9V4,`,@`' H`QP#)"@#%`#D!
    M`"!J879A+VQA;F<O0VQA<W-.;W1&;W5N9$5X8V5P=&EO;@<`S P`O@"N"0`!
    M`,X!`!%J879A+FQA;F<N26YT96=E<@@`T P`OP# "@`!`-(!`!=C;&%S<R1,
    M:F%V821L86YG)%-T<FEN9PP`U "N"0`!`-4!`!!J879A+FQA;F<N4W1R:6YG
    M" #7`0`48VQA<W,D3&IA=F$D=71I;"13970,`-D`K@D``0#:`0`-:F%V82YU
    M=&EL+E-E= @`W P`J0"J"0`!`-X,`*L`K D``0#@`0`R8VQA<W,D3&YE="1X
    M=')I;21C<FTD=')O=6)L971I8VME="1O8FIE8W0D0V%T96=O<GD,`.(`K@D`
    M`0#C`0`K;F5T+GAT<FEM+F-R;2YT<F]U8FQE=&EC:V5T+F]B:F5C="Y#871E
    M9V]R>0@`Y0P`K0"N"0`!`.<*``$`?0$`&VIA=F%X+VID;R]S<&DO2D1/26UP
    M;$AE;'!E<@<`Z@$`#7)E9VES=&5R0VQA<W,!`&XH3&IA=F$O;&%N9R]#;&%S
    M<SM;3&IA=F$O;&%N9R]3=')I;F<[6TQJ879A+VQA;F<O0VQA<W,[6T),:F%V
    M82]L86YG+T-L87-S.TQJ879A>"]J9&\O<W!I+U!E<G-I<W1E;F-E0V%P86)L
    M93LI5@P`[ #M"@#K`.X!``YJ9&].97=);G-T86YC90$`4BA,:F%V87@O:F1O
    M+W-P:2]3=&%T94UA;F%G97([3&IA=F$O;&%N9R]/8FIE8W0[*4QJ879A>"]J
    M9&\O<W!I+U!E<G-I<W1E;F-E0V%P86)L93L,`*\`L D``0#R# "Q`+()``$`
    M] $`'&ID;T-O<'E+97E&:65L9'-&<F]M3V)J96-T260!`!4H3&IA=F$O;&%N
    M9R]/8FIE8W0[*58,`/8`]PH``0#X`0! *$QJ879A>"]J9&\O<W!I+U-T871E
    M36%N86=E<CLI3&IA=F%X+VID;R]S<&DO4&5R<VES=&5N8V5#87!A8FQE.P$`
    M%VID;T=E=$UA;F%G961&:65L9$-O=6YT`0`/:F1O4F5P;&%C949I96QD`0`$
    M*$DI5@P`I0"F"0`!`/X!`")J879A+VQA;F<O26QL96=A;$%R9W5M96YT17AC
    M97!T:6]N!P$`"@$!`'T!`!IJ879A>"]J9&\O<W!I+U-T871E36%N86=E<@<!
    M`P$`%')E<&QA8VEN9T]B:F5C=$9I96QD`0`W*$QJ879A>"]J9&\O<W!I+U!E
    M<G-I<W1E;F-E0V%P86)L93M)*4QJ879A+VQA;F<O3V)J96-T.PP!!0$&"P$$
    M`0<!`!1R97!L86-I;F=3=')I;F=&:65L9 $`-RA,:F%V87@O:F1O+W-P:2]0
    M97)S:7-T96YC94-A<&%B;&4[22E,:F%V82]L86YG+U-T<FEN9SL,`0D!"@L!
    M! $+`0`0:F1O4F5P;&%C949I96QD<P$`!2A;22E6# #\`/T*``$!#P$`#VID
    M;U!R;W9I9&5&:65L9 $`$W!R;W9I9&5D3V)J96-T1FEE;&0!`#@H3&IA=F%X
    M+VID;R]S<&DO4&5R<VES=&5N8V5#87!A8FQE.TE,:F%V82]L86YG+T]B:F5C
    M=#LI5@P!$@$3"P$$`10!`!-P<F]V:61E9%-T<FEN9T9I96QD`0`X*$QJ879A
    M>"]J9&\O<W!I+U!E<G-I<W1E;F-E0V%P86)L93M)3&IA=F$O;&%N9R]3=')I
    M;F<[*58,`18!%PL!! $8`0`0:F1O4')O=FED949I96QD<PP!$0#]"@`!`1L!
    M``QJ9&]#;W!Y1FEE;&0!`#$H3&YE="]X=')I;2]C<FTO=')O=6)L971I8VME
    M="]O8FIE8W0O0V%T96=O<GD[22E6`0`-:F1O0V]P>49I96QD<P$`%RA,:F%V
    M82]L86YG+T]B:F5C=#M;22E6"@`S`'T,`1T!'@H``0$B`0`8:F1O1V5T4&5R
    M<VES=&5N8V5-86YA9V5R`0`@*"E,:F%V87@O:F1O+U!E<G-I<W1E;F-E36%N
    M86=E<CL!`!5G971097)S:7-T96YC94UA;F%G97(!`$(H3&IA=F%X+VID;R]S
    M<&DO4&5R<VES=&5N8V5#87!A8FQE.RE,:F%V87@O:F1O+U!E<G-I<W1E;F-E
    M36%N86=E<CL,`28!)PL!! $H`0`.:F1O1V5T3V)J96-T260!`!0H*4QJ879A
    M+VQA;F<O3V)J96-T.P$`"V=E=$]B:F5C=$ED`0`V*$QJ879A>"]J9&\O<W!I
    M+U!E<G-I<W1E;F-E0V%P86)L93LI3&IA=F$O;&%N9R]/8FIE8W0[# $L`2T+
    M`00!+@$`&VID;T=E=%1R86YS86-T:6]N86Q/8FIE8W1)9 $`&&=E=%1R86YS
    M86-T:6]N86Q/8FIE8W1)9 P!,0$M"P$$`3(!``QJ9&])<T1E;&5T960!``EI
    M<T1E;&5T960!`"4H3&IA=F%X+VID;R]S<&DO4&5R<VES=&5N8V5#87!A8FQE
    M.RE:# $U`38+`00!-P$`"FID;TES1&ER='D!``=I<T1I<G1Y# $Z`38+`00!
    M.P$`"&ID;TES3F5W`0`%:7-.97<,`3X!-@L!! $_`0`/:F1O27-097)S:7-T
    M96YT`0`,:7-097)S:7-T96YT# %"`38+`00!0P$`$FID;TES5')A;G-A8W1I
    M;VYA; $`#VES5')A;G-A8W1I;VYA; P!1@$V"P$$`4<!``]J9&]0<F5397)I
    M86QI>F4!``QP<F5397)I86QI>F4!`"4H3&IA=F%X+VID;R]S<&DO4&5R<VES
    M=&5N8V5#87!A8FQE.RE6# %*`4L+`00!3 $`#&ID;TUA:V5$:7)T>0$`"6UA
    M:V5$:7)T>0$`-RA,:F%V87@O:F1O+W-P:2]097)S:7-T96YC94-A<&%B;&4[
    M3&IA=F$O;&%N9R]3=')I;F<[*58,`4\!4 L!! %1`0`/:F1O4F5P;&%C949L
    M86=S`0`.<F5P;&%C:6YG1FQA9W,!`"4H3&IA=F%X+VID;R]S<&DO4&5R<VES
    M=&5N8V5#87!A8FQE.RE"# %4`54+`00!5@$`%FID;U)E<&QA8V53=&%T94UA
    M;F%G97(!`!\H3&IA=F%X+VID;R]S<&DO4W1A=&5-86YA9V5R.RE6`0`*17AC
    M97!T:6]N<P$`&VIA=F$O;&%N9R]396-U<FET>45X8V5P=&EO;@<!6P$`%7)E
    M<&QA8VEN9U-T871E36%N86=E<@$`7"A,:F%V87@O:F1O+W-P:2]097)S:7-T
    M96YC94-A<&%B;&4[3&IA=F%X+VID;R]S<&DO4W1A=&5-86YA9V5R.RE,:F%V
    M87@O:F1O+W-P:2]3=&%T94UA;F%G97([# %=`5X+`00!7P$`$&IA=F$O;&%N
    M9R]3>7-T96T'`6$!`!)G971396-U<FET>4UA;F%G97(!`!TH*4QJ879A+VQA
    M;F<O4V5C=7)I='E-86YA9V5R.PP!8P%D"@%B`64!`!MJ879A>"]J9&\O<W!I
    M+TI$3U!E<FUI<W-I;VX'`6<!`!%3151?4U1!5$5?34%.04=%4@$`'4QJ879A
    M>"]J9&\O<W!I+TI$3U!E<FUI<W-I;VX[# %I`6H)`6@!:P$`&6IA=F$O;&%N
    M9R]396-U<FET>4UA;F%G97('`6T!``]C:&5C:U!E<FUI<W-I;VX!`!TH3&IA
    M=F$O<V5C=7)I='DO4&5R;6ES<VEO;CLI5@P!;P%P"@%N`7$!`!IJ9&]#;W!Y
    M2V5Y1FEE;&1S5&]/8FIE8W1)9 $`32A,:F%V87@O:F1O+W-P:2]097)S:7-T
    M96YC94-A<&%B;&4D3V)J96-T261&:65L9%-U<'!L:65R.TQJ879A+VQA;F<O
    M3V)J96-T.RE6`0`M;F5T+WAT<FEM+V-R;2]T<F]U8FQE=&EC:V5T+V]B:F5C
    M="]#871E9V]R>4ED!P%U`0`V:F%V87@O:F1O+W-P:2]097)S:7-T96YC94-A
    M<&%B;&4D3V)J96-T261&:65L9%-U<'!L:65R!P%W`0`09F5T8VA/8FIE8W1&
    M:65L9 $`%2A)*4QJ879A+VQA;F<O3V)J96-T.PP!>0%Z"P%X`7L)`78`%0$`
    M32A,:F%V87@O:F1O+W-P:2]097)S:7-T96YC94-A<&%B;&4D3V)J96-T261&
    M:65L9$-O;G-U;65R.TQJ879A+VQA;F<O3V)J96-T.RE6`0`V:F%V87@O:F1O
    M+W-P:2]097)S:7-T96YC94-A<&%B;&4D3V)J96-T261&:65L9$-O;G-U;65R
    M!P%_`0`0<W1O<F5/8FIE8W1&:65L9 $`%BA)3&IA=F$O;&%N9R]/8FIE8W0[
    M*58,`8$!@@L!@ &#`0`6:F1O3F5W3V)J96-T261);G-T86YC90$`)BA,:F%V
    M82]L86YG+U-T<FEN9SLI3&IA=F$O;&%N9R]/8FIE8W0["@%V`#D*`78`?0$`
    M#G-E=$]B:F5C=$9I96QD`0!**$QJ879A>"]J9&\O<W!I+U!E<G-I<W1E;F-E
    M0V%P86)L93M)3&IA=F$O;&%N9R]/8FIE8W0[3&IA=F$O;&%N9R]/8FIE8W0[
    M*58,`8D!B@L!! &+`0`(:7-,;V%D960!`"8H3&IA=F%X+VID;R]S<&DO4&5R
    M<VES=&5N8V5#87!A8FQE.TDI6@P!C0&."P$$`8\!``YG9713=')I;F=&:65L
    M9 $`22A,:F%V87@O:F1O+W-P:2]097)S:7-T96YC94-A<&%B;&4[24QJ879A
    M+VQA;F<O4W1R:6YG.RE,:F%V82]L86YG+U-T<FEN9SL,`9$!D@L!! &3`0`.
    M<V5T4W1R:6YG1FEE;&0!`$HH3&IA=F%X+VID;R]S<&DO4&5R<VES=&5N8V5#
    M87!A8FQE.TE,:F%V82]L86YG+U-T<FEN9SM,:F%V82]L86YG+U-T<FEN9SLI
    M5@P!E0&6"P$$`9<!``YG971/8FIE8W1&:65L9 $`22A,:F%V87@O:F1O+W-P
    M:2]097)S:7-T96YC94-A<&%B;&4[24QJ879A+VQA;F<O3V)J96-T.RE,:F%V
    M82]L86YG+T]B:F5C=#L,`9D!F@L!! &;`0`0<V5R:6%L5F5R<VEO;E5)1 $`
    M`4H%^2&,L8I8LP(,`9T!G@D``0&A`0`+=W)I=&5/8FIE8W0!`!\H3&IA=F$O
    M:6\O3V)J96-T3W5T<'5T4W1R96%M.RE6`0`3:F%V82]I;R])3T5X8V5P=&EO
    M;@<!I0P!20!Y"@`!`:<!`!IJ879A+VEO+T]B:F5C=$]U='!U=%-T<F5A;0<!
    MJ0$`$F1E9F%U;'17<FET94]B:F5C= P!JP!Y"@&J`:P!``IR96%D3V)J96-T
    M`0`>*$QJ879A+VEO+T]B:F5C=$EN<'5T4W1R96%M.RE6`0`9:F%V82]I;R]/
    M8FIE8W1);G!U=%-T<F5A;0<!L $`$61E9F%U;'1296%D3V)J96-T# &R`'D*
    M`;$!LP`A``$``P`#`*0`!P`%`! ``@`)``H````"``L`# ````(`#0`.````
    M`@`/``X````*`*4`I@````H`IP"H````"@"I`*H````*`*L`K ````H`K0"N
    M````A "O`+ ```"$`+$`L@````@`O@"N``$`>@``````" #4`*X``0!Z````
    M```(`-D`K@`!`'H```````@`X@"N``$`>@``````&@&=`9X````Y``$`$ `1
    M``$`$@```"\``0`!````!2JX`(BP`````@`3````!@`!````: `4````# `!
    M````!0`7`!@````!`!D`&@`!`!(````^``(``@````8J*[@`C+$````"`!,`
    M```*``(```!L``4`;0`4````%@`"````!@`7`!@```````8`"0`*``$``0`;
    M`!P``0`2````+P`!``$````%*K@`D+ ````"`!,````&``$```!P`!0````,
    M``$````%`!<`& ````$`'P`@``$`$@```#X``@`"````!BHKN "4L0````(`
    M$P````H``@```'0`!0!U`!0````6``(````&`!<`& ``````!@`+``P``0``
    M`"$`(@`!`!(````R``$``0````@JN "8N `HL ````(`$P````8``0```'@`
    M% ````P``0````@`%P`8```````K`"P``0`2````>0`%``(````Y*K@`F"NY
    M`# "`)D`([L`,UF[`#59$C>W`#LKM@`]M@!#$"ZV`$:V`$FW`$J_*K@`F"NY
    M`$T"`%>Q`````@`3````$@`$````? `-`'T`+0!_`#@`@ `4````%@`"````
    M.0`7`!@``````#D`3@!/``$```!0`"P``0`2````1 `"``(````,*K@`F"NY
    M`%,"`%>Q`````@`3````"@`"````@P`+`(0`% ```!8``@````P`%P`8````
    M```,`$X`3P`!``$`5 `B``$`$@```#(``0`!````""JX`)NX`"BP`````@`3
    M````!@`!````AP`4````# `!````" `7`!@````!`%<`6 `!`!(```!H``4`
    M! ```!B[`%E9*RPJMP!=3BJX`)LMN0!-`@!7+; ````"`!,````.``,```"+
    M``L`C `6`(T`% ```"H`! ```!@`7@!?``,````8`!<`& ``````& `)``H`
    M`0```!@`"P`,``(``0!@`&$``0`2````- `!``$````**K@`F+D`9 $`K ``
    M``(`$P````8``0```)$`% ````P``0````H`%P`8`````0!E`!$``0`2````
    M+@`!``$````$L@!HL ````(`$P````8``0```)0`% ````P``0````0`%P`8
    M`````0!K`&$``0`2````+ `!``$````"!*P````"`!,````&``$```"8`!0`
    M```,``$````"`!<`& ````$`; !M``$`$@```"\``0`!````!2JX`)NP````
    M`@`3````!@`!````G `4````# `!````!0`7`!@````!`&X`;P`!`!(```!!
    M``,``0```!<#`RJX`(C&``57!)D`"U<JN "(M@!QK ````(`$P````8``0``
    M`*$`% ````P``0```!<`%P`8`````0!T`"\``0`2````5 `"``(````8*\$`
    M`9D`$BO ``&X`(@JN "(M@!VK .L`````@`3````#@`#````I0`'`*8`%@"H
    M`!0````6``(````8`!<`& ``````& !W`'@``0`2`!<`>0`"`'H``````!(`
    M``!%``,``0```!<JNP![6;<`?K@`GRJ[`'M9MP!^N "BL0````(`$P````H`
    M`@```%(`"P!=`!0````,``$````7`!<`& ````$`.@!_``$`$@```%T``@`#
    M````$RJW`( JMP""*BNX`(PJ++@`E+$````"`!,````2``0```!?``@`8 `-
    M`&$`$@!B`!0````@``,````3`!<`& ``````$P`)``H``0```!,`"P`,``(`
    M`0`Z`'D``0`2````-P`!``$````)*K<`@"JW`(*Q`````@`3````"@`"````
    M9 `(`&4`% ````P``0````D`%P`8````& "S`'D``0`2````Y `.``````#8
    M% &?LP&B![T`M5D#$K936002MU-9!1*X4UD&$KE3LP"[![T`O5D#`+(`S\8`
    M";(`SZ<`#!+1N #36;,`SP!3600`L@#6Q@`)L@#6IP`,$MBX`--9LP#6`%-9
    M!0"R`-O&``FR`-NG``P2W;@`TUFS`-L`4UD&`+(`V\8`";(`VZ<`#!+=N #3
    M6;,`VP!3LP#?![P(60,0&%19!! 55%D%$ I46080"E2S`.$`L@#DQ@`)L@#D
    MIP`,$N:X`--9LP#D`+(`N[(`W[(`X;(`Z+L``5FW`.FX`.^Q```````(`+\`
    MP `"`'H``````!(````F``,``@```!(JN ##L$R[`,59*[8`RK<`R[\``0``
    M``4`!0#-`````0#P`/$``0`2````)0`"``0````9NP`!6;<`Z4XM*[4`\RT$
    MM0#U+2RV`/DML ```````0#P`/H``0`2````( `"``,````4NP`!6;<`Z4TL
    M*[4`\RP$M0#U++ ```````P`^P!O``$`$@````X``0```````@>L```````!
    M`/P`_0`!`!(```"4``4``P```(@;L@#_9#T<G `+NP$!6;<!`K\`'*H`````
    M``!L``````````,````@````,P```$8```!9*BJT`/,J&[D!" ,`P !RM0`6
    ML2HJM #S*ANY`0P#`, `M;4`'K$J*K0`\RH;N0$(`P# `#&U`"2Q*BJT`/,J
    M&[D!" ,`P `QM0!6L;L!`5FW`0*_```````!`0T!#@`!`!(````B``,``P``
    M`!8#/:<`#2HK'"ZV`1"$`@$<*[ZA__.Q```````!`1$`_0`!`!(```"(``4`
    M`P```'P;L@#_9#T<G `+NP$!6;<!`K\`'*H```````!@``````````,````@
    M````, ```$ ```!0*K0`\RH;*K0`%KD!%00`L2JT`/,J&RJT`!ZY`1D$`+$J
    MM #S*ALJM `DN0$5! "Q*K0`\RH;*K0`5KD!%00`L;L!`5FW`0*_```````!
    M`1H!#@`!`!(````B``,``P```!8#/:<`#2HK'"ZV`1R$`@$<*[ZA__.Q````
    M```$`1T!'@`!`!(```!L``,`! ```& <L@#_9#X=G `+NP$!6;<!`K\`':H`
    M``````!$``````````,````@````*0```#(````[*BNT`!:U`!:Q*BNT`!ZU
    M`!ZQ*BNT`"2U`"2Q*BNT`%:U`%:QNP$!6;<!`K\```````$!'P$@``$`$@``
    M`$\`!@`%````0RO ``%.+;0`\RJT`/.E``N[`0%9MP$"OP`JM #SQP`+NP`S
    M6;<!(;\``S8$IP`/*BTL%00NM@$CA 0!%00LOJ'_\+$```````$!) $E``$`
    M$@```" ``@`!````%"JT`//'``4!L"JT`/,JN0$I`@"P```````!`2H!*P`!
    M`!(````@``(``0```!0JM #SQP`%`; JM #S*KD!+P(`L ```````0$P`2L`
    M`0`2````( `"``$````4*K0`\\<`!0&P*K0`\RJY`3,"`+ ```````$!- !A
    M``$`$@```" ``@`!````%"JT`//'``4#K"JT`/,JN0$X`@"L```````!`3D`
    M80`!`!(````@``(``0```!0JM #SQP`%`ZPJM #S*KD!/ (`K ```````0$]
    M`&$``0`2````( `"``$````4*K0`\\<`!0.L*K0`\RJY`4 "`*P```````$!
    M00!A``$`$@```" ``@`!````%"JT`//'``4#K"JT`/,JN0%$`@"L```````!
    M`44`80`!`!(````@``(``0```!0JM #SQP`%`ZPJM #S*KD!2 (`K ``````
    M`0%)`'D``0`2````'P`"``$````3*K0`\\<`!+$JM #S*KD!30(`L0``````
    M`0%.`" ``0`2````( `#``(````4*K0`\\<`!+$JM #S*BNY`5(#`+$`````
    M``$!4P!Y``$`$@```",``P`!````%RJT`//'``2Q*BJT`/,JN0%7`@"U`/6Q
    M```````A`5@!60`"`5H````$``$!7 `2````. `$``,````L*K0`\\8`$RHJ
    MM #S*BNY`6 #`+4`\[&X`69-+,8`"BRR`6RV`7(J*[4`\[$```````$!<P%T
    M``$`$@```"@`! `%````'"S `79.L@#_-@0M*P,5!&"Y`7P"`, `<K4!?;$`
    M``````$!<P#W``$`$@```!X``@`$````$BO `79-L@#_/BPJM `6M0%]L0``
    M`````0#V`7X``0`2````)0`#``4````9+, !=DZR`/\V!"L#%01@+;0!?;D!
    MA ,`L0```````0#V`/<``0`2````&@`"``,````.*\ !=DTJ++0!?;4`%K$`
    M``````$!A0&&``$`$@```!4``P`"````";L!=EDKMP&'L ```````0&%`2L`
    M`0`2````% `"``$````(NP%V6;<!B+ ``````!H`A0"&``$`$@```!$``0`!
    M````!2JT`!:P```````:`(D`B@`!`!(````N``4``@```"(JM #SQP`)*BNU
    M`!:Q*K0`\RJR`/\#8"JT`!8KN0&,!0"Q```````:`(T`C@`!`!(```!$``0`
    M`@```#@JM #UG0`(*K0`'K"R`/\$8#PJM #S*ANY`9 #`)D`""JT`!ZP*K0`
    M\RH;*K0`'KD!E 0`P "UL ``````&@"1`)(``0`2````+@`%``(````B*K0`
    M]9H`"2HKM0`>L2JT`/,JL@#_!& JM `>*[D!F 4`L0``````&@"5`)8``0`2
    M````1 `$``(````X*K0`\\<`""JT`"2PL@#_!6 \*K0`\RH;N0&0`P"9``@J
    MM `DL"JT`/,J&RJT`"2Y`9P$`, `,; ``````!H`G "=``$`$@```"X`!0`"
    M````(BJT`//'``DJ*[4`)+$JM #S*K(`_P5@*K0`)"NY`8P%`+$``````!H`
    MF0"6``$`$@```$0`! `"````."JT`//'``@JM !6L+(`_P9@/"JT`/,J&[D!
    MD ,`F0`(*K0`5K JM #S*ALJM !6N0&<! # `#&P```````:`* `G0`!`!(`
    M```N``4``@```"(JM #SQP`)*BNU`%:Q*K0`\RJR`/\&8"JT`%8KN0&,!0"Q
    M```````"`:,!I `"`5H````$``$!I@`2````%0`!``(````)*K8!J"NV`:VQ
    M```````"`:X!KP`"`5H````&``(!I@#-`!(````1``$``@````4KM@&TL0``
    ,`````0"#`````@"$
    `
    end
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

  • Security error - User is not allowed to execute Proces - Resolved

    Enabled security on my domain by editing message-handlers.xml :
    <inbound-flow>
    <!-- <message-handler id="default" />-->
    <message-handler id="security" />
    </inbound-flow>
    commented out <property id="SecuredProcesses" > .. </property> to apply security to all processes.
    Now when I initiate process through BPELConsole I tick the WS-Security and use bpeladmin/welcome1 as credentials (I'm logged into console as this), I get the following error. In fact I get the very same error if I make up a username/password.
    <2007-10-24 08:17:41,343> <ERROR> <archi2.collaxa.cube> <BaseCubeSessionBean::lo
    gError> Error while invoking bean "delivery": [com.collaxa.cube.engine.handlers.
    HandlerInvocationException: Error while invoking inbound message handler.
    An error has occurred while attempting to invoke the inbound message handler cla
    ss "class com.collaxa.cube.security.Authenticator" for the message "". The exce
    ption reported was: User is not allowed to execute Proces, User[true] process [f
    alse]
    ORABPEL-02175
    In bpel.xml of the process itself I have this:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELSuitcase>
    <BPELProcess id="SQTest2" src="SQTest2.bpel">
    <partnerLinkBindings> ....snip...
    </partnerLinkBindings>
    <preferences>
    <property name="user" encryption="plaintext">bpeladmin</property>
    <property name="pw" encryption="plaintext">welcome1</property>
    </preferences>
    </BPELProcess>
    </BPELSuitcase>
    If I don't supply username/password then I get "Could not apply security [No username provided, security expects user]" which sounds right enough.
    I'm using the default authentication scheme system-jazn-data.xml and using 10.1.3.3 patchset on linux.

    My own fault, putting user credentials in wrong place in bpel.xml:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELSuitcase>
    <BPELProcess id="SQTest2" src="SQTest2.bpel">
    <partnerLinkBindings> ....
    </partnerLinkBindings>
    <configurations>
    <property name="user" encryption="plaintext">bpeladmin</property>
    <property name="pw" encryption="plaintext">welcome1</property>
    </configurations>
    </BPELProcess>
    </BPELSuitcase>

  • Error while starting stand alone applicaitons in Web Center Content

    Hi All,
    I am getting this error while starting any standalone component in Oracle WebCenter Content Server :
    WARNING: Jps platform factory creation failed. Reason: {0}.
    java.security.PrivilegedActionException: oracle.security.jps.JpsException: JPS-0
    *0065: Jps platform factory creation failed. Reason: java.lang.ClassNotFoundExcep*
    tion: oracle.security.jps.tomcat.JpsTomcatPlatformFactory.
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.ee.JpsPlatformFactory.getPlatformFactory(JpsPlatf
    ormFactory.java:185)
    at oracle.security.jps.ee.JpsPlatformFactory.getPlatformFactory(JpsPlatf
    ormFactory.java:146)
    at oracle.security.jps.internal.audit.AuditServiceImpl.initAuditor(Audit
    ServiceImpl.java:319)
    at oracle.security.jps.internal.audit.AuditServiceImpl.getAuditor(AuditS
    erviceImpl.java:238)
    at oracle.security.jps.internal.audit.AuditServiceImpl.getAuditor(AuditS
    erviceImpl.java:373)
    at oracle.security.jps.util.AuthZAuditUtil$3.run(AuthZAuditUtil.java:183
    at oracle.security.jps.util.AuthZAuditUtil$3.run(AuthZAuditUtil.java:181
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.AuthZAuditUtil.initAuditor(AuthZAuditUtil.ja
    va:181)
    at oracle.security.jps.util.AuthZAuditUtil.isEventLoggable(AuthZAuditUti
    l.java:136)
    at oracle.security.jps.util.AuthZAuditUtil.auditAuthZ(AuthZAuditUtil.jav
    a:427)
    at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:554)
    at oracle.security.jps.internal.credstore.util.CsfUtil.checkPermission(C
    sfUtil.java:643)
    at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.getCred
    entialMap(SspCredentialStore.java:497)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at idc.conversion.jps.CSFKeyLoaderAction.run(CSFKeyLoaderAction.java:56)
    at java.security.AccessController.doPrivileged(Native Method)
    at idc.conversion.jps.CSFKeyLoader.readKeys(CSFKeyLoader.java:166)
    at intradoc.conversion.StandardKeyLoader.load(StandardKeyLoader.java:61)
    at intradoc.conversion.SecurityObjects.loadKeys(SecurityObjects.java:528
    at intradoc.conversion.SecurityObjects.init(SecurityObjects.java:133)
    at intradoc.conversion.CryptoPasswordUtils.initSecurityObjects(CryptoPas
    swordUtils.java:75)
    at intradoc.conversion.CryptoPasswordUtils.loadPasswordManagement(Crypto
    PasswordUtils.java:136)
    at intradoc.server.IdcSystemLoader.managePasswords(IdcSystemLoader.java:
    *3118)*
    at intradoc.server.IdcSystemLoader.finishInit(IdcSystemLoader.java:396)
    at intradoc.server.IdcSystemLoader.init(IdcSystemLoader.java:335)
    at intradoc.server.IdcServerManager.init(IdcServerManager.java:120)
    at intradoc.apputilities.idcshell.InteractiveShellStartup.init(Interacti
    veShellStartup.java:253)
    at intradoc.apputilities.idcshell.InteractiveShellStartup.startup(Intera
    ctiveShellStartup.java:52)
    at IdcShell.main(IdcShell.java:27)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at intradoc.loader.IdcClassLoader.invokeMain(IdcClassLoader.java:352)
    at intradoc.loader.IdcClassLoader.startMain(IdcClassLoader.java:170)
    at intradoc.loader.IdcClassLoader.main(IdcClassLoader.java:140)
    Caused by: oracle.security.jps.JpsException: JPS-00065: Jps platform factory cre
    ation failed. Reason: java.lang.ClassNotFoundException: oracle.security.jps.tomc
    at.JpsTomcatPlatformFactory.
    at oracle.security.jps.ee.JpsPlatformFactory$2.run(JpsPlatformFactory.ja
    va:193)
    at oracle.security.jps.ee.JpsPlatformFactory$2.run(JpsPlatformFactory.ja
    va:186)
    *... 41 more*
    Mar 7, 2013 2:55:58 PM oracle.security.jps.internal.audit.AuditServiceImpl initA
    uditor
    WARNING: Failed to get server log directory. Reason: oracle.security.jps.JpsExce
    ption: JPS-00065: Jps platform factory creation failed. Reason: oracle.security.
    jps.JpsException: JPS-00065: Jps platform factory creation failed. Reason: java.
    lang.ClassNotFoundException: oracle.security.jps.tomcat.JpsTomcatPlatformFactory
    intradoc.common.ServiceException:
    at intradoc.server.IdcServerManager.init(IdcServerManager.java:230)
    at intradoc.apputilities.idcshell.InteractiveShellStartup.init(Interacti
    veShellStartup.java:253)
    at intradoc.apputilities.idcshell.InteractiveShellStartup.startup(Intera
    ctiveShellStartup.java:52)
    at IdcShell.main(IdcShell.java:27)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at intradoc.loader.IdcClassLoader.invokeMain(IdcClassLoader.java:352)
    at intradoc.loader.IdcClassLoader.startMain(IdcClassLoader.java:170)
    at intradoc.loader.IdcClassLoader.main(IdcClassLoader.java:140)
    Caused by: intradoc.data.DataException: !apErrorWithTable,DocMetaDefinition
    at intradoc.shared.MetaFieldData.initIndexes(MetaFieldData.java:171)
    at intradoc.shared.MetaFieldData.init(MetaFieldData.java:84)
    at intradoc.server.subject.MetaDataSubjectCallback.cacheMetaData(MetaDat
    aSubjectCallback.java:42)
    at intradoc.server.subject.MetaDataSubjectCallback.refresh(MetaDataSubje
    ctCallback.java:35)
    at intradoc.server.IdcSystemLoader.loadCachedTables(IdcSystemLoader.java
    *:1255)*
    at intradoc.server.IdcSystemLoader.loadCaches(IdcSystemLoader.java:1164)
    at intradoc.server.IdcServerManager.init(IdcServerManager.java:132)
    *... 10 more*
    Caused by: intradoc.data.DataException: !syColumnDoesNotExist,dDecimalScale
    at intradoc.data.ResultSetUtils.getIndexMustExist(ResultSetUtils.java:44
    *7)*
    at intradoc.shared.MetaFieldData.initIndexes(MetaFieldData.java:167)
    *... 16 more*
    Error with table 'DocMetaDefinition'.
    The column 'dDecimalScale' does not exist in this table.
    I am using 11.1.1.6 free version of webcenter content and using appropriate database with required tables created by RCU of appropriate version and also using required weblogic server.
    Is there anything like , we are not allowed to use stand alone application in free version ? or problem is something else.
    Thank you in advance.
    Edited by: 957580 on Mar 7, 2013 2:01 AM

    Hi Deepak,
    Thanks for Reply.
    But in /home/sapcs/conf/http.conf file its already maintained like this, sending you some part of httpd.conf file
    Listen: Allows you to bind Apache to specific IP addresses and/or # ports, instead of the default. See also the #<VirtualHost> # directive.
    Change this to Listen on specific IP addresses as shown below to  prevent Apache from glomming onto all bound IP #addresses.
    Listen 1090
    User/Group: The name (or #number) of the user/group to run httpd as.
    It is usually good practice to create a dedicated user and group for
    running httpd, as with most system services.
    User sapcs
    Group sapsys
    </IfModule>
    </IfModule>
    even after restarting server i am getting same problem
    [sapcs@hpsebdev1 bin]$ apachectl start
    (13)Permission denied: make_sock: could not bind to address [::]:80
    (13)Permission denied: make_sock: could not bind to address 0.0.0.0:80
    no listening sockets available, shutting down
    Unable to open logs
    I am using a non root user to start apachectl command
    Regards
    Gagan Sharma

  • In urgent hurry Please Fatal Error

    Hello.
    First of all i'd like to apologize for my username. I made quite while ago and wasn't even thinking about what i was doing.
    Ok so now back to the topic, today i was going to try manage ftp site with flash catalyst, but when i just clicked, its said
    "An error has occurred. See the log File: C:\users\[Username here]\Application Data\Adobe\Flash Catalyst\workspace\ .metdata\.log
    The kind of "code" is shown below. Please, i need help really fast because I'm working on a project for money and the due date is in 3 days. So I quite need it know. One last thing, I'm new at these (by these y mean errors and how to fix them) so I would be really glad you could tell It in a easy way. Imagine that I'm a baby (joke).
    Thanks,
    Nicolas
    CODE:(LOG file)
    !SESSION 2011-02-05 14:42:26.828 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86 -clean
    !ENTRY com.adobe.thermo.core 1 0 2011-02-05 14:42:52.762
    !MESSAGE Loading ThermoPanels from bundleentry://51/ThermoPanelsSWF/ThermoPanels.swf
    !ENTRY org.eclipse.equinox.p2.ui.sdk 2 0 2011-02-05 14:43:00.395
    !MESSAGE Could not locate the running profile instance
    !SESSION 2011-02-05 19:12:47.534 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86 -clean
    !ENTRY com.adobe.thermo.core 1 0 2011-02-05 19:13:14.426
    !MESSAGE Loading ThermoPanels from bundleentry://51/ThermoPanelsSWF/ThermoPanels.swf
    !ENTRY org.eclipse.equinox.p2.ui.sdk 2 0 2011-02-05 19:13:21.810
    !MESSAGE Could not locate the running profile instance
    !ENTRY org.eclipse.ui 4 4 2011-02-05 19:21:01.013
    !MESSAGE Plug-in 'org.eclipse.ui.editors' contributed an invalid Menu Extension (Path: 'navigate' is invalid): org.eclipse.ui.edit.text.gotoLastEditPosition
    !ENTRY com.adobe.flexbuilder.project 4 43 2011-02-05 19:26:16.406
    !MESSAGE Error deleting or modifying launch configuration "Main" while deleting or renaming a project. You may want to edit it manually.
    !STACK 1
    org.eclipse.debug.core.DebugException: Failed to delete launch configuration.
    at org.eclipse.debug.internal.core.LaunchConfiguration.delete(LaunchConfiguration.java:234)
    at com.adobe.flexide.launching.LaunchCleanupJob.run(LaunchCleanupJob.java:89)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    !SUBENTRY 1 org.eclipse.debug.core 4 5012 2011-02-05 19:26:16.407
    !MESSAGE Failed to delete launch configuration.
    !SESSION 2011-02-05 19:26:18.775 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86 -clean
    !ENTRY com.adobe.thermo.core 1 0 2011-02-05 19:26:25.206
    !MESSAGE Loading ThermoPanels from bundleentry://51/ThermoPanelsSWF/ThermoPanels.swf
    !ENTRY org.eclipse.equinox.p2.ui.sdk 2 0 2011-02-05 19:26:27.924
    !MESSAGE Could not locate the running profile instance
    !SESSION 2011-02-16 13:09:05.540 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86 -clean
    !ENTRY com.adobe.thermo.core 1 0 2011-02-16 13:09:33.629
    !MESSAGE Loading ThermoPanels from bundleentry://51/ThermoPanelsSWF/ThermoPanels.swf
    !ENTRY org.eclipse.equinox.p2.ui.sdk 2 0 2011-02-16 13:09:41.348
    !MESSAGE Could not locate the running profile instance
    !SESSION 2011-02-22 15:13:47.441 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86 -clean
    !ENTRY com.adobe.thermo.core 1 0 2011-02-22 15:14:23.571
    !MESSAGE Loading ThermoPanels from bundleentry://51/ThermoPanelsSWF/ThermoPanels.swf
    !ENTRY org.eclipse.equinox.p2.ui.sdk 2 0 2011-02-22 15:14:32.803
    !MESSAGE Could not locate the running profile instance
    !SESSION 2011-02-24 16:38:43.175 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86 -clean
    !ENTRY com.adobe.thermo.core 1 0 2011-02-24 16:39:22.003
    !MESSAGE Loading ThermoPanels from bundleentry://51/ThermoPanelsSWF/ThermoPanels.swf
    !ENTRY org.eclipse.equinox.p2.ui.sdk 2 0 2011-02-24 16:39:35.359
    !MESSAGE Could not locate the running profile instance
    !SESSION 2011-02-24 17:41:15.894 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86 -clean
    !ENTRY com.adobe.thermo.core 1 0 2011-02-24 17:41:49.884
    !MESSAGE Loading ThermoPanels from bundleentry://51/ThermoPanelsSWF/ThermoPanels.swf
    !ENTRY org.eclipse.equinox.p2.ui.sdk 2 0 2011-02-24 17:42:17.707
    !MESSAGE Could not locate the running profile instance
    !SESSION 2011-02-24 17:48:57.108 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Framework arguments:  C:\Users\NICOLAS\Documents\Untitled Project.fxp
    Command-line arguments:  -os win32 -ws win32 -arch x86 -clean C:\Users\NICOLAS\Documents\Untitled Project.fxp
    !ENTRY org.eclipse.core.resources 2 10035 2011-02-24 17:49:00.079
    !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.
    !SESSION 2011-02-24 17:50:48.516 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Framework arguments:  C:\Users\NICOLAS\Documents\Untitled Project.fxp
    Command-line arguments:  -os win32 -ws win32 -arch x86 -clean C:\Users\NICOLAS\Documents\Untitled Project.fxp
    !ENTRY org.eclipse.core.resources 2 10035 2011-02-24 17:50:51.733
    !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.
    !ENTRY org.eclipse.ui 4 4 2011-02-24 18:05:14.727
    !MESSAGE Plug-in 'org.eclipse.ui.editors' contributed an invalid Menu Extension (Path: 'navigate' is invalid): org.eclipse.ui.edit.text.gotoLastEditPosition
    !SESSION 2011-02-25 14:58:40.205 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86 -clean
    !ENTRY org.eclipse.core.resources 2 10035 2011-02-25 14:58:47.196
    !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.
    !ENTRY org.eclipse.osgi 4 0 2011-02-25 14:58:47.592
    !MESSAGE An error occurred while automatically activating bundle org.eclipse.core.resources (104).
    !STACK 0
    org.osgi.framework.BundleException: Exception in org.eclipse.core.resources.ResourcesPlugin.start() of bundle org.eclipse.core.resources.
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1028)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
    at java.lang.Class.getConstructor0(Unknown Source)
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadBundleActivator(AbstractBundl e.java:141)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 80)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.defineClass(DefaultClassLoader.j ava:165)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClass(ClasspathManager.java:55 4)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findClassImpl(ClasspathManager.java: 524)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClassImpl(ClasspathManager. java:455)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass_LockClassLoader(Class pathManager.java:443)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :423)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :444)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at com.adobe.thermo.core.ThermoCorePlugin.start(ThermoCorePlugin.java:68)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1 009)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1003)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :444)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.loadClass(BundleLoader.java:313)
    at org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:227)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:127 4)
    at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(Re gistryStrategyOSGI.java:160)
    at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionR egistry.java:867)
    at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(Configu rationElement.java:243)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(C onfigurationElementHandle.java:51)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:188)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    Caused by: org.eclipse.core.internal.dtree.ObjectNotFoundException: Tree element '/Project/src/com/adobe/flashcatalyst/components/SWFController.as' not found.
    at org.eclipse.core.internal.dtree.AbstractDataTree.handleNotFound(AbstractDataTree.java:257 )
    at org.eclipse.core.internal.dtree.DeltaDataTree.getData(DeltaDataTree.java:585)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:50)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DeltaDataTree.asBackwardDelta(DeltaDataTree.java:88)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:816)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:792)
    at org.eclipse.core.internal.watson.ElementTree.immutable(ElementTree.java:517)
    at org.eclipse.core.internal.resources.SaveManager.restore(SaveManager.java:670)
    at org.eclipse.core.internal.resources.SaveManager.startup(SaveManager.java:1326)
    at org.eclipse.core.internal.resources.Workspace.startup(Workspace.java:1953)
    at org.eclipse.core.internal.resources.Workspace.open(Workspace.java:1716)
    at org.eclipse.core.resources.ResourcesPlugin.start(ResourcesPlugin.java:376)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1 009)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1003)
    ... 88 more
    Root exception:
    org.eclipse.core.internal.dtree.ObjectNotFoundException: Tree element '/Project/src/com/adobe/flashcatalyst/components/SWFController.as' not found.
    at org.eclipse.core.internal.dtree.AbstractDataTree.handleNotFound(AbstractDataTree.java:257 )
    at org.eclipse.core.internal.dtree.DeltaDataTree.getData(DeltaDataTree.java:585)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:50)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DeltaDataTree.asBackwardDelta(DeltaDataTree.java:88)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:816)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:792)
    at org.eclipse.core.internal.watson.ElementTree.immutable(ElementTree.java:517)
    at org.eclipse.core.internal.resources.SaveManager.restore(SaveManager.java:670)
    at org.eclipse.core.internal.resources.SaveManager.startup(SaveManager.java:1326)
    at org.eclipse.core.internal.resources.Workspace.startup(Workspace.java:1953)
    at org.eclipse.core.internal.resources.Workspace.open(Workspace.java:1716)
    at org.eclipse.core.resources.ResourcesPlugin.start(ResourcesPlugin.java:376)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1 009)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1003)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
    at java.lang.Class.getConstructor0(Unknown Source)
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadBundleActivator(AbstractBundl e.java:141)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 80)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.defineClass(DefaultClassLoader.j ava:165)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClass(ClasspathManager.java:55 4)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findClassImpl(ClasspathManager.java: 524)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClassImpl(ClasspathManager. java:455)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass_LockClassLoader(Class pathManager.java:443)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :423)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :444)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at com.adobe.thermo.core.ThermoCorePlugin.start(ThermoCorePlugin.java:68)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1 009)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1003)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :444)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.loadClass(BundleLoader.java:313)
    at org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:227)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:127 4)
    at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(Re gistryStrategyOSGI.java:160)
    at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionR egistry.java:867)
    at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(Configu rationElement.java:243)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(C onfigurationElementHandle.java:51)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:188)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    !ENTRY org.eclipse.osgi 4 0 2011-02-25 14:58:47.597
    !MESSAGE An error occurred while automatically activating bundle com.adobe.flexbuilder.mxmlmodel (14).
    !STACK 0
    org.osgi.framework.BundleException: The activator com.adobe.flexbuilder.designmodel.DesignModelPlugin for bundle com.adobe.flexbuilder.mxmlmodel is invalid
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadBundleActivator(AbstractBundl e.java:146)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 80)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.defineClass(DefaultClassLoader.j ava:165)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClass(ClasspathManager.java:55 4)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findClassImpl(ClasspathManager.java: 524)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClassImpl(ClasspathManager. java:455)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass_LockClassLoader(Class pathManager.java:443)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :423)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :444)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at com.adobe.thermo.core.ThermoCorePlugin.start(ThermoCorePlugin.java:68)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1 009)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1003)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :444)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.loadClass(BundleLoader.java:313)
    at org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:227)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:127 4)
    at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(Re gistryStrategyOSGI.java:160)
    at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionR egistry.java:867)
    at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(Configu rationElement.java:243)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(C onfigurationElementHandle.java:51)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:188)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    Caused by: java.lang.NoClassDefFoundError: org/eclipse/core/resources/IResource
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
    at java.lang.Class.getConstructor0(Unknown Source)
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadBundleActivator(AbstractBundl e.java:141)
    ... 67 more
    Caused by: org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter$TerminatingClassNotFoundExce ption: An error occurred while automatically activating bundle org.eclipse.core.resources (104).
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:125)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    ... 73 more
    Caused by: org.osgi.framework.BundleException: Exception in org.eclipse.core.resources.ResourcesPlugin.start() of bundle org.eclipse.core.resources.
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1028)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    ... 83 more
    Caused by: org.eclipse.core.internal.dtree.ObjectNotFoundException: Tree element '/Project/src/com/adobe/flashcatalyst/components/SWFController.as' not found.
    at org.eclipse.core.internal.dtree.AbstractDataTree.handleNotFound(AbstractDataTree.java:257 )
    at org.eclipse.core.internal.dtree.DeltaDataTree.getData(DeltaDataTree.java:585)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:50)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DeltaDataTree.asBackwardDelta(DeltaDataTree.java:88)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:816)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:792)
    at org.eclipse.core.internal.watson.ElementTree.immutable(ElementTree.java:517)
    at org.eclipse.core.internal.resources.SaveManager.restore(SaveManager.java:670)
    at org.eclipse.core.internal.resources.SaveManager.startup(SaveManager.java:1326)
    at org.eclipse.core.internal.resources.Workspace.startup(Workspace.java:1953)
    at org.eclipse.core.internal.resources.Workspace.open(Workspace.java:1716)
    at org.eclipse.core.resources.ResourcesPlugin.start(ResourcesPlugin.java:376)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1 009)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1003)
    ... 88 more
    Root exception:
    java.lang.NoClassDefFoundError: org/eclipse/core/resources/IResource
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
    at java.lang.Class.getConstructor0(Unknown Source)
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadBundleActivator(AbstractBundl e.java:141)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 80)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.defineClass(DefaultClassLoader.j ava:165)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClass(ClasspathManager.java:55 4)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findClassImpl(ClasspathManager.java: 524)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClassImpl(ClasspathManager. java:455)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass_LockClassLoader(Class pathManager.java:443)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :423)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :444)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at com.adobe.thermo.core.ThermoCorePlugin.start(ThermoCorePlugin.java:68)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1 009)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1003)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :444)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.loadClass(BundleLoader.java:313)
    at org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:227)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:127 4)
    at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(Re gistryStrategyOSGI.java:160)
    at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionR egistry.java:867)
    at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(Configu rationElement.java:243)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(C onfigurationElementHandle.java:51)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:188)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    Caused by: org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter$TerminatingClassNotFoundExce ption: An error occurred while automatically activating bundle org.eclipse.core.resources (104).
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:125)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    ... 73 more
    Caused by: org.osgi.framework.BundleException: Exception in org.eclipse.core.resources.ResourcesPlugin.start() of bundle org.eclipse.core.resources.
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1028)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    ... 83 more
    Caused by: org.eclipse.core.internal.dtree.ObjectNotFoundException: Tree element '/Project/src/com/adobe/flashcatalyst/components/SWFController.as' not found.
    at org.eclipse.core.internal.dtree.AbstractDataTree.handleNotFound(AbstractDataTree.java:257 )
    at org.eclipse.core.internal.dtree.DeltaDataTree.getData(DeltaDataTree.java:585)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:50)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
    at org.eclipse.core.internal.dtree.DeltaDataTree.asBackwardDelta(DeltaDataTree.java:88)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:816)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
    at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:792)
    at org.eclipse.core.internal.watson.ElementTree.immutable(ElementTree.java:517)
    at org.eclipse.core.internal.resources.SaveManager.restore(SaveManager.java:670)
    at org.eclipse.core.internal.resources.SaveManager.startup(SaveManager.java:1326)
    at org.eclipse.core.internal.resources.Workspace.startup(Workspace.java:1953)
    at org.eclipse.core.internal.resources.Workspace.open(Workspace.java:1716)
    at org.eclipse.core.resources.ResourcesPlugin.start(ResourcesPlugin.java:376)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1 009)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1003)
    ... 88 more
    !ENTRY org.eclipse.osgi 4 0 2011-02-25 14:58:47.625
    !MESSAGE An error occurred while automatically activating bundle com.adobe.thermo.core (51).
    !STACK 0
    org.osgi.framework.BundleException: Exception in com.adobe.thermo.core.ThermoCorePlugin.start() of bundle com.adobe.thermo.core.
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1028)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :444)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.loadClass(BundleLoader.java:313)
    at org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:227)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:127 4)
    at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(Re gistryStrategyOSGI.java:160)
    at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionR egistry.java:867)
    at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(Configu rationElement.java:243)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(C onfigurationElementHandle.java:51)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:188)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(Eclip

    Hi Mithun,
    This problem can occur due to following reasons:
    <b>1. You are not authorized to see this iView</b>
    If you are not authorized to view this iView it will show this runtime error. Some iViews may redirect you to login server. Please set appropriate Role to the user on SAP Enterprise Portal.
    <b>2. The SAP Enterprise Portal session is lost</b>
    If your session is lost, please logout of  Portal and Login again. This will re-establish the SAP Enterprise Portal session and will be able to get the iView content.
    Thanks,
    Vinay

  • Preview app fails to open any file, console log shows errors messages

    Hi,
    I backed up my old mac using TimeMachine and restored the TimeMachine image to my newly purchased iMac running 10.9.4.  There were no errors during restoration, however when I try to open a file with the Preview app (such as a jpeg file), Preview app doesn't open the file and emits a variety of errors to the console log as below. 
    Is there a way to clear the state of the Preview app so I can fix this issue and use the Preview app to open images again?  These image files open fine in Chrome, but I can't seem to use Preview to open any files. 
    Not sure if this is a bug with system restore or a bug in the new OS.  Any ideas?  Thanks in advance for any advice.
    -Norm
    8/2/14 10:35:10.981 PM Preview[2007]: Critical failure: the LastResort font is unavailable.
    8/2/14 10:35:10.981 PM Preview[2007]: Critical failure: the LastResort font is unavailable.
    8/2/14 10:35:10.982 PM Preview[2007]: Critical failure: the LastResort font is unavailable.
    8/2/14 10:35:10.982 PM Preview[2007]: Critical failure: the LastResort font is unavailable.
    8/2/14 10:35:10.982 PM Preview[2007]: Critical failure: the LastResort font is unavailable.
    8/2/14 10:35:10.982 PM Preview[2007]: Critical failure: the LastResort font is unavailable.
    8/2/14 10:35:10.982 PM Preview[2007]: Critical failure: the LastResort font is unavailable.
    8/2/14 10:35:10.983 PM Preview[2007]: Critical failure: the LastResort font is unavailable.
    8/2/14 10:35:10.983 PM Preview[2007]: Critical failure: the LastResort font is unavailable.
    8/2/14 10:35:10.983 PM Preview[2007]: Critical failure: the LastResort font is unavailable.
    8/2/14 10:38:10.886 PM System Information[2440]: Can't open input server /Library/InputManagers/CTLoader
    8/2/14 10:41:23.779 PM QuickLookUIHelper[2446]: Can't open input server /Library/InputManagers/CTLoader
    8/2/14 10:41:23.800 PM Preview[2007]: *** +[NSLayoutConstraint constraintWithItem:attribute:relatedBy:toItem:attribute:multiplier:constant:]: Constraint must contain a first layout item
    8/2/14 10:41:33.561 PM Preview[2007]: -[PVPreferencesController loadWindow]: failed to load window nib file '/Applications/Preview.app/Contents/Resources/Base.lproj/PVPreferences.nib'.
    8/2/14 10:41:33.562 PM Preview[2007]: -[PVPreferencesController loadWindow]: failed to load window nib file '/Applications/Preview.app/Contents/Resources/Base.lproj/PVPreferences.nib'.
    8/2/14 10:41:33.562 PM Preview[2007]: -[PVPreferencesController loadWindow]: failed to load window nib file '/Applications/Preview.app/Contents/Resources/Base.lproj/PVPreferences.nib'.
    8/2/14 10:41:33.562 PM Preview[2007]: -[PVPreferencesController loadWindow]: failed to load window nib file '/Applications/Preview.app/Contents/Resources/Base.lproj/PVPreferences.nib'.
    8/2/14 10:41:33.562 PM Preview[2007]: -[PVPreferencesController loadWindow]: failed to load window nib file '/Applications/Preview.app/Contents/Resources/Base.lproj/PVPreferences.nib'.
    8/2/14 10:41:33.562 PM Preview[2007]: -[PVPreferencesController loadWindow]: failed to load window nib file '/Applications/Preview.app/Contents/Resources/Base.lproj/PVPreferences.nib'.
    8/2/14 10:41:55.744 PM Preview[2448]: Can't open input server /Library/InputManagers/CTLoader
    8/2/14 10:41:55.793 PM Preview[2448]: *** +[NSLayoutConstraint constraintWithItem:attribute:relatedBy:toItem:attribute:multiplier:constant:]: Constraint must contain a first layout item
    8/2/14 10:41:56.100 PM Preview[2448]: *** +[NSLayoutConstraint constraintWithItem:attribute:relatedBy:toItem:attribute:multiplier:constant:]: Constraint must contain a first layout item
    I also can't even get the Preview 'about' info to show:
    8/2/14 10:52:03.330 PM Preview[2461]: Failed to load NSSystemInfoPanel.nib
    One file it is complaining about is present and appears to be readable
    $ ls -l /Applications/Preview.app/Contents/Resources/Base.lproj/PVPreferences.nib
    -rw-r--r--  1 root  wheel  53421 Jun 28 01:33 /Applications/Preview.app/Contents/Resources/Base.lproj/PVPreferences.nib

    Hi,
    I tried both suggestions, but they didn't resolve the issue.   Thank you both for trying to help.
    The font tool was crashing when I tried to validate my font files.  I looked and I didn't see the font in question listed in that tool.  Crash stack is below.
    I reinstalled the OS per Linc's instructions, but Preview still is crashing when opening a jpeg file.  Crash stack is below.
    Weirdly, most everything else seems to work okay: mail, safari, chrome, etc, all seem to function with no issue.  The font tool isn't something I care about, but Preview app is something I use to review my pictures, etc. 
    Any other suggestions?  Is there a good alternative app I should use in the meantime to replace Preview while I get to the bottom of the problem and resolve it?
    Thanks,
    Norm
    Preview crash:
    Process:         Preview [533]
    Path:            /Applications/Preview.app/Contents/MacOS/Preview
    Identifier:      com.apple.Preview
    Version:         7.0 (826.4)
    Build Info:      Preview-826004000000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [239]
    Responsible:     Preview [533]
    User ID:         501
    Date/Time:       2014-08-04 11:51:56.926 -0700
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 0000000107e19000-0000000107ffd000 [ 1936K] r-x/rwx SM=COW  /Applications/Preview.app/Contents/MacOS/Preview
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_platform.dylib       0x00007fff8e13e225 _platform_memcmp + 293
    1   com.apple.CoreGraphics         0x00007fff89b4b760 CGColorTransformConvertColorComponents + 150
    2   libRIP.A.dylib                 0x00007fff88ed9e77 ripc_GetColor + 2041
    3   libRIP.A.dylib                 0x00007fff88ed93d4 ripc_Render + 156
    4   libRIP.A.dylib                 0x00007fff88ed52e1 ripc_DrawRects + 399
    5   com.apple.CoreGraphics         0x00007fff89b48d2a CGContextFillRects + 96
    6   com.apple.CoreGraphics         0x00007fff89b48b76 CGContextClearRect + 60
    7   com.apple.HIToolbox           0x00007fff87fa8ab1 HIMenuBarView::DrawOnce(CGRect, CGRect, bool, bool, bool, bool, CGContext*) + 139
    8   com.apple.HIToolbox           0x00007fff87fa89ed HIMenuBarView::DrawSelf(short, __HIShape const*, CGContext*) + 899
    9   com.apple.HIToolbox           0x00007fff87fa850a HIView::DrawCacheOrSelf(short, __HIShape const*, CGContext*) + 360
    10  com.apple.HIToolbox           0x00007fff87fa8394 HIView::SendDraw(short, OpaqueGrafPtr*, __HIShape const*, CGContext*) + 384
    11  com.apple.HIToolbox           0x00007fff87fa7d06 HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned int, HIView*, CGContext*, unsigned char, double) + 696
    12  com.apple.HIToolbox           0x00007fff87fa7f75 HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned int, HIView*, CGContext*, unsigned char, double) + 1319
    13  com.apple.HIToolbox           0x00007fff87fa6c49 HIView::DrawComposited(short, OpaqueGrafPtr*, __HIShape const*, unsigned int, HIView*, CGContext*) + 689
    14  com.apple.HIToolbox           0x00007fff87fa6992 HIView::Render(unsigned int, CGContext*) + 54
    15  com.apple.HIToolbox           0x00007fff87fa60e8 WindowData::PrepareForVisibility() + 146
    16  com.apple.HIToolbox           0x00007fff87fa4f8b _ShowHideWindows + 287
    17  com.apple.HIToolbox           0x00007fff87fa4e66 ShowHide + 34
    18  com.apple.HIToolbox           0x00007fff87f97239 MBWindows::CreateWindow(CGRect, unsigned int) + 389
    19  com.apple.HIToolbox           0x00007fff87f96e26 MBWindows::GetWindowIDOnDisplay(unsigned int, unsigned char) + 184
    20  com.apple.HIToolbox           0x00007fff87f96c1e MenuBarInstance::ForEachWindowDo(void (unsigned int, unsigned int) block_pointer) + 164
    21  com.apple.HIToolbox           0x00007fff87f96977 MenuBarInstance::UpdateWindowBoundsAndResolution() + 155
    22  com.apple.HIToolbox           0x00007fff87f96521 MenuBarInstance::Show(MenuBarAnimationStyle, unsigned char, unsigned char, unsigned char) + 329
    23  com.apple.HIToolbox           0x00007fff87fc238b SetMenuBarObscured + 208
    24  com.apple.HIToolbox           0x00007fff87fc2024 HIApplication::HandleActivated(OpaqueEventRef*, unsigned char, OpaqueWindowPtr*) + 188
    25  com.apple.HIToolbox           0x00007fff87fc0c8d HIApplication::EventObserver(unsigned int, OpaqueEventRef*, void*) + 217
    26  com.apple.HIToolbox           0x00007fff87f8dac9 _NotifyEventLoopObservers + 155
    27  com.apple.HIToolbox           0x00007fff87fc0795 AcquireEventFromQueue + 527
    28  com.apple.HIToolbox           0x00007fff87fb46bd ReceiveNextEventCommon + 229
    29  com.apple.HIToolbox           0x00007fff87fb45bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    30  com.apple.AppKit               0x00007fff8e2e024e _DPSNextEvent + 1434
    31  com.apple.AppKit               0x00007fff8e2df89b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    32  com.apple.AppKit               0x00007fff8e2d399c -[NSApplication run] + 553
    33  com.apple.AppKit               0x00007fff8e2be783 NSApplicationMain + 940
    34  libdyld.dylib                 0x00007fff90c3f5fd start + 1
    Font tool crash:
    Process:         Font Book [606]
    Path:            /Applications/Font Book.app/Contents/MacOS/Font Book
    Identifier:      com.apple.FontBook
    Version:         5.0.1 (250.1)
    Build Info:      FontUtility-250001000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [239]
    Responsible:     Font Book [606]
    User ID:         501
    Date/Time:       2014-08-04 11:59:29.407 -0700
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000068
    VM Regions Near 0x68:
    -->
        __TEXT                 000000010f172000-000000010f21b000 [  676K] r-x/rwx SM=COW  /Applications/Font Book.app/Contents/MacOS/Font Book
    Application Specific Information:
    Performing @selector(validateFiles:) from sender NSMenuItem 0x6080000b0260
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation       0x00007fff8974a319 CFBundleCopyLocalizedString + 201
    1   com.apple.FinderKit           0x00007fff8c39844c TString::SetFromKeyAndIndex(__CFString const*, __CFString const*, unsigned int) + 86
    2   com.apple.FinderKit           0x00007fff8c3247cf TFENode::Initialize() + 359
    3   com.apple.FinderKit           0x00007fff8c471488 +[FIFinderViewGutsController initializeCounted] + 124
    4   com.apple.FinderKit           0x00007fff8c47a4f9 -[FIFinderView _commonFinderViewInitForSaveMode:importPanel:appCentric:ubiquityContainerURLs:o ptions:] + 53
    5   com.apple.FinderKit           0x00007fff8c47a9de -[FIFinderView initWithFrame:options:] + 218
    6   com.apple.AppKit               0x00007fff8ebe35d0 -[NSNavFinderViewFileBrowser initWithFrame:options:] + 252
    7   com.apple.AppKit               0x00007fff8ebdbdd3 _NSNavFileBrowserWithFinderKit + 147
    8   com.apple.AppKit               0x00007fff8e910db3 -[NSSavePanel(NSSavePanelLayout) _makeFileBrowserView] + 302
    9   com.apple.AppKit               0x00007fff8e910f2d -[NSSavePanel(NSSavePanelLayout) _setupFileBrowserView] + 154
    10  com.apple.AppKit               0x00007fff8e912294 -[NSSavePanel(NSSavePanelLayout) _initContentView] + 4465
    11  com.apple.AppKit               0x00007fff8e8ffc39 -[NSSavePanel initWithContentRect:styleMask:backing:defer:] + 565
    12  com.apple.AppKit               0x00007fff8e8ff49a +[NSSavePanel _crunchyRawUnbonedPanel] + 205
    13  com.apple.FontBook             0x000000010f1a2826 0x10f172000 + 198694
    14  com.apple.AppKit               0x00007fff8e4fe260 -[NSApplication sendAction:to:from:] + 327
    15  com.apple.AppKit               0x00007fff8e5191c8 -[NSMenuItem _corePerformAction] + 394
    16  com.apple.AppKit               0x00007fff8e518f04 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 117
    17  com.apple.AppKit               0x00007fff8e56840d -[NSMenu _internalPerformActionForItemAtIndex:] + 35
    18  com.apple.AppKit               0x00007fff8e568289 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 104
    19  com.apple.AppKit               0x00007fff8e50eff6 NSSLMMenuEventHandler + 716
    20  com.apple.HIToolbox           0x00007fff87f8e1d4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 892
    21  com.apple.HIToolbox           0x00007fff87f8d787 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 385
    22  com.apple.HIToolbox           0x00007fff87fa1880 SendEventToEventTarget + 40
    23  com.apple.HIToolbox           0x00007fff87fd7640 SendHICommandEvent(unsigned int, HICommand const*, unsigned int, unsigned int, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 420
    24  com.apple.HIToolbox           0x00007fff8800a228 SendMenuCommandWithContextAndModifiers + 59
    25  com.apple.HIToolbox           0x00007fff8800a1d0 SendMenuItemSelectedEvent + 178
    26  com.apple.HIToolbox           0x00007fff8800a0af FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 94
    27  com.apple.HIToolbox           0x00007fff88012085 MenuSelectCore(MenuData*, Point, double, unsigned int, OpaqueMenuRef**, unsigned short*) + 718
    28  com.apple.HIToolbox           0x00007fff88011cb1 _HandleMenuSelection2 + 446
    29  com.apple.AppKit               0x00007fff8e48162c _NSHandleCarbonMenuEvent + 284
    30  com.apple.AppKit               0x00007fff8e2e052e _DPSNextEvent + 2170
    31  com.apple.AppKit               0x00007fff8e2df89b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    32  com.apple.AppKit               0x00007fff8e2d399c -[NSApplication run] + 553
    33  com.apple.AppKit               0x00007fff8e2be783 NSApplicationMain + 940
    34  com.apple.FontBook             0x000000010f1737fc 0x10f172000 + 6140
    35  libdyld.dylib                 0x00007fff90c3f5fd start + 1

  • RTC-5260 and RTC-5301 error in Oracle Warehouse Builder (OWB)

    Hi,
    I'm a newbie in OWB and I still have to fix some concept in my mind about the infrastructure.
    I'm experiencing the error in the subject while deploying an object (the first object I'm trying to deploy) in OWB.
    I also tried to execute the $ORACLE_HOME\owb\rtp\sql\start_service.sql script but I got this error:
    Role set.
    Not Available
    Diagnostics:
    service startup failure using command "/u02/app/oracle/product/11.2.0/db_1/owb/
    bin/unix/run_service.sh -manual 2 /u02/app/oracle/product/11.2.0/db_1 OWBSYS 19
    +2.168.100.252:1522:evodw" reason ORA-29532: Java call terminated by uncaught Ja+
    +va exception: java.io.IOException: service early exit: code=255 : err=2010/12/2+
    +8-17:09:00-UTC [C53DCE][] oracle.wh.runtime.platform.adapter.InfrastructureExce+
    +ption: RPE-01003: An infrastructure condition prevented the request from comple+
    +ting.+
    +- ORA-00604: error occurred at recursive SQL level 1+
    +ORA-01882: timezone+
    +region not found+
    +at oracle.wh.runtime.platform.service.controller.PlatformDb+
    +.connect(PlatformDb.java:123)+
    +at oracle.wh.runtime.platform.service.+
    +please invoke [owbhome]/owb/rtp/sql/service_doctor.sql for more information+
    +PL/SQL procedure successfully completed.+
    Any suggestion?
    If it can help I also executed the service_doctor.sql script; this is the output:
    +Role set.+
    +>>>>>> There are errors in one or more PL/SQL packages and functions+
    +Platform properties have been loaded correctly+
    +Platform location has been seeded correctly+
    +NLS messages have been loaded correctly+
    +>>>>>> The platform service is not available+
    +Service script is accessible to the database server+
    +Connection information stored within the repository is correct+
    +PL/SQL procedure successfully completed.+
    Thanks in advance,
    Samuel Rabini
    Edited by: Samuel Rabini on Dec 28, 2010 6:11 PM

    Another thing: I compiled the invalid package of owbsys user and now the service_doctor.sql script returns:
    Role set.
    All PL/SQL packages and functions are valid
    Platform properties have been loaded correctly
    Platform location has been seeded correctly
    NLS messages have been loaded correctly
    +>>>>>> The platform service is not available+
    Service script is accessible to the database server
    Connection information stored within the repository is correct
    PL/SQL procedure successfully completed.

  • Validate errors are not being diplayed. Why?

    Im not sure what im doing wrong, but the errors (ie mandatory fields are left blank) are not being diplayed once the form is being validated.
    Thank you for your time.
    <action input="/HtmlFile.jsp" name="FileForm" path="/HtmlFile"
    scope="session" type="ch12.HtmlFileAction" validate="true">
    <forward name="default" path="/HtmlFile.jsp"/>
    </action>
    <html:html>
    <body >
    <html:errors/>
    <html:form action="HtmlFile.do" enctype="multipart/form-data">
    Item Type
    <html:select name="HtmlFileForm" property="itemType">
    <html ptions collection="itemlists" property="id" labelProperty="description"/>
    </html:select>
    Item ID
    <html:text property="name"/>
    Thumbnail Image
    <html:file property="file"/>
    Price
    <html:text property="price"/>
    <html:submit />
    </html:form>
    public class FileForm extends ActionForm{
    private String submit;
    public ActionErrors validate( ActionMapping mapping, HttpServletRequest request )
    ActionErrors errors = new ActionErrors();
    if(getFile() ==null)
    errors.add("file",new ActionError ("error.file.required"));
    if ( getPrice() == null || getPrice().length() < 1 )
    errors.add("price",new ActionError("error.price.required"));
    return errors;

    I don't think the enctype should be a problem... the form bean should still be getting filed in. Struts handles the multipart forms automatically... at least when I used it it did.

  • WLS 10.3.5 error with JMS

    <entry key="java.naming.factory.initial" value="${xyz.JavaNamingFactoryInitial}" />
    <entry key="java.naming.provider.url" value-ref="foresightconnectionurl" />
    <entry key="java.naming.security.principal" value="" />
    <entry key="java.naming.security.credentials" value="" />
    </map>
    </property>
    </bean>
    When i use these settings in my local weblogic 10.3.5 server to Listen to a TOPIC - it works fine !!I receive messages
    But when the same is deployed in another environment with the same version of weblogic - we dont receive any messages instead the following warning keeps popping up:
    org.springframework.jms.listener.DefaultMessageLis tenerContainer - Could not refresh JMS Connection for destination 'JMSModule1!ForeSightJMSUserRequestedData Topic' - retrying in 120000 ms. Cause: [Security:090398]Invalid Subject: principals=[weblogic, Administrators]
    Strange thing is the same settings worked for Spring 2.5.6 version with out the credentials
    <bean id="jndiTemp" class="org.springframework.jndi.JndiTemplate">
    <property name="environment">
    <map>
    <entry key="java.naming.factory.initial" value="${xyz.JavaNamingFactoryInitial}" />
    <entry key="java.naming.provider.url" value-ref="foresightconnectionurl" />
    </map>
    </property>
    </bean>
    Note : in spring 2.5.6 we did not provide pricipal and credentials.But if i try the same with 3.05 release i get the following error.
    <Apr 16, 2012 7:29:29 PM MDT> <Error> <Console> <BEA-240003> <Console encountered the following error weblogic.application.ModuleException: :org.springframework.beans.PropertyBatchUpdateExce ption:Failed properties: Property 'bus' threw exception; nested exception is org.springframework.beans.factory.BeanCreationExce ption: Error creating bean with name 'xyzTopicConnectionFactory' defined in class path resource [org/ihc/idea/ccc/consentwrapper/appcontext.xml]: Invocation of init method failed; nested exception is java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[USER, Administrators]; Property 'transportIds' threw exception; nested exception is org.springframework.beans.factory.BeanCreationExce ption: Error creating bean with name 'foreSightTopicConnectionFactory' defined in class path resource [org/ihc/idea/ccc/consentwrapper/consentwrapper.xml]: Invocation of init method failed; nested exception is java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[USER, Administrators]
    at org.springframework.beans.AbstractPropertyAccessor .setPropertyValues(AbstractPropertyAccessor.java:1 02)
    USER is my user ID .
    Is this because our DEV environment WLS does not allow anonymous access?
    What should be done to make WLS to allow anonymous access?
    Edited by: 928049 on Apr 16, 2012 8:49 PM

    You have two options:
    OPTION 1: Enable Anonymous Admin Lookup
    We have an option in WebLogic Server Security Configuration called AnonymousAdminLookupEnabled (Domain > Security > General). By default this is diabled. You can check the flag to enable it.
    For further information,
    http://docs.oracle.com/cd/E23943_01/web.1111/e13707/domain.htm#i1174143
    OPTION 2: Pass the username and password credentials. OR setup cross-domain security.
    Check the below documentation
    http://docs.oracle.com/cd/E23943_01/web.1111/e13707/domain.htm#i1176046
    Arun

  • Datapump Import error

    Helo,
    I am trying to import data from one schema to other in the same database(RAC)
    i am getting this error
    Starting "WWSGLS01"."SYS_IMPORT_FULL_02": wwsgls01/******** parfile=table_gls01_imp.par
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    ORA-39014: One or more workers have prematurely exited.
    ORA-39029: worker 1 with process name "DW01" prematurely terminated
    ORA-31671: Worker process DW01 had an unhandled exception.
    ORA-12801: error signaled in parallel query server P001, instance lnax33d:wwbdv0032 (2)
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-31626: job does not exist
    ORA-06512: at "SYS.ORACLE_DATAPUMP", line 19
    ORA-06512: at "SYS.KUPW$WORKER", line 1342
    ORA-06512: at line 2
    ORA-39029: worker 2 with process name "DW02" prematurely terminated
    ORA-31671: Worker process DW02 had an unhandled exception.
    ORA-12801: error signaled in parallel query server P001, instance lnax33d:wwbdv0032 (2)
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-31626: job does not exist
    ORA-06512: at "SYS.ORACLE_DATAPUMP", line 19
    ORA-06512: at "SYS.KUPW$WORKER", line 1342
    ORA-06512: at line 2
    Job "WWSGLS01"."SYS_IMPORT_FULL_02" stopped due to fatal error at 20:23:31

    Are you using parallel option?There are some issues with the paralell ption.Search metalink for the related problem.
    Aman....

  • Error in calling EJB Client from Remote Machine.

    While running the client from local machine, it works perfectly.
    But when I try to run the same client from remote machine it gives me the error.
    I deployed the ejb in sun server 1.4 with jndi as "xxx.xxx.xxx.xxx/MyTemperature".
    Following is the code snippet from the clint.
    Context initial = new InitialContext();
              Object objref = initial.lookup("192.168.0.20/MyTemperature");
              home = (TemperatureHome) PortableRemoteObject.narrow(objref, TemperatureHome.class);
              Temperature degreeConverter = home.create();Following is the error
    E:\EJBRemoteTest>java TempClient.TemperatureClient
    May 14, 2008 10:00:24 AM com.sun.corba.ee.impl.legacy.connection.SocketFactoryCo
    nnectionImpl <init>
    WARNING: ORBUTIL.connectFailure
    org.omg.CORBA.COMM_FAILURE:   vmcid: SUN  minor code: 201  completed: No
            at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(O
    RBUtilSystemException.java:1739)
            at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(O
    RBUtilSystemException.java:1757)
            at com.sun.corba.ee.impl.legacy.connection.SocketFactoryConnectionImpl.<
    init>(SocketFactoryConnectionImpl.java:74)
            at com.sun.corba.ee.impl.legacy.connection.SocketFactoryContactInfoImpl.
    createConnection(SocketFactoryContactInfoImpl.java:77)
            at com.sun.corba.ee.impl.protocol.CorbaClientRequestDispatcherImpl.begin
    Request(CorbaClientRequestDispatcherImpl.java:152)
            at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.request(CorbaC
    lientDelegateImpl.java:121)
            at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.is_a(CorbaClie
    ntDelegateImpl.java:214)
            at org.omg.CORBA.portable.ObjectImpl._is_a(ObjectImpl.java:112)
            at org.omg.CosNaming.NamingContextHelper.narrow(NamingContextHelper.java
    :69)
            at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.jav
    a:58)
            at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:126
            at javax.naming.InitialContext.lookup(InitialContext.java:347)
            at TempClient.TemperatureClient.main(TemperatureClient.java:17)
    Caused by: java.lang.RuntimeException: java.net.ConnectException: Connection ref
    used: connect
            at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSock
    etFactory.java:520)
            at com.sun.corba.ee.impl.legacy.connection.SocketFactoryConnectionImpl.<
    init>(SocketFactoryConnectionImpl.java:58)
            ... 10 more
    Caused by: java.net.ConnectException: Connection refused: connect
            at sun.nio.ch.Net.connect(Native Method)
            at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:460)
            at java.nio.channels.SocketChannel.open(SocketChannel.java:146)
            at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSock
    etFactory.java:511)
            ... 11 more
    Caught an unexpected Exception!
    javax.naming.CommunicationException: Can't find SerialContextProvider [Root exce
    ption is org.omg.CORBA.COMM_FAILURE:   vmcid: SUN  minor code: 201  completed: N
    o]
            at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.jav
    a:66)
            at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:126
            at javax.naming.InitialContext.lookup(InitialContext.java:347)
            at TempClient.TemperatureClient.main(TemperatureClient.java:17)
    Caused by: org.omg.CORBA.COMM_FAILURE:   vmcid: SUN  minor code: 201  completed:
    No
            at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(O
    RBUtilSystemException.java:1739)
            at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(O
    RBUtilSystemException.java:1757)
            at com.sun.corba.ee.impl.legacy.connection.SocketFactoryConnectionImpl.<
    init>(SocketFactoryConnectionImpl.java:74)
            at com.sun.corba.ee.impl.legacy.connection.SocketFactoryContactInfoImpl.
    createConnection(SocketFactoryContactInfoImpl.java:77)
            at com.sun.corba.ee.impl.protocol.CorbaClientRequestDispatcherImpl.begin
    Request(CorbaClientRequestDispatcherImpl.java:152)
            at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.request(CorbaC
    lientDelegateImpl.java:121)
            at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.is_a(CorbaClie
    ntDelegateImpl.java:214)
            at org.omg.CORBA.portable.ObjectImpl._is_a(ObjectImpl.java:112)
            at org.omg.CosNaming.NamingContextHelper.narrow(NamingContextHelper.java
    :69)
            at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.jav
    a:58)
            ... 3 more
    Caused by: java.lang.RuntimeException: java.net.ConnectException: Connection ref
    used: connect
            at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSock
    etFactory.java:520)
            at com.sun.corba.ee.impl.legacy.connection.SocketFactoryConnectionImpl.<
    init>(SocketFactoryConnectionImpl.java:58)
            ... 10 more
    Caused by: java.net.ConnectException: Connection refused: connect
            at sun.nio.ch.Net.connect(Native Method)
            at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:460)
            at java.nio.channels.SocketChannel.open(SocketChannel.java:146)
            at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSock
    etFactory.java:511)
            ... 11 moreThis is a stateless session bean.
    Can anybody provide me solution for this
    I also tried with java.util.Properties class but result is same.

    You are running on Windows 9x or Me, right? The darn OS has 300 or so bytes allocated for environment by default.
    Try setting the Initial environment to 4096 in the Properties|Memory tab for the batch file. That will get rid of "Out of environment space". The syntax error is another matter; Windows (except NT and derivatives) shells do not allow '=' in an environment variables value. You cannot overcome that. Some software (Sybase for instance) interprets # as = just because of that. Unfortunately, the JVM doesn't take such an approach.
    Better, grab copies of Unix utilities for Windows (www.gnu.org) including the wonderful shell 'bash' and write .sh scripts, which are inherently more powerful.

Maybe you are looking for