Capability Not Set Exception

Hi i was just wondering could anybody help me with my first Java 3d program, The program runs but it throws a capability not set exception even though I have set them in the program!!!!
I include the program below, the error is as follows:
Exception occurred during Behavior execution:
javax.media.j3d.CapabilityNotSetException: Group: no capability to set transform
at javax.media.j3d.TransformGroup.setTransform(TransformGroup.java:115)
at javax.media.j3d.TransformInterpolator.processStimulus(TransformInterp
olator.java:156)
at javax.media.j3d.BehaviorScheduler.doWork(BehaviorScheduler.java:172)
at javax.media.j3d.J3dThread.run(J3dThread.java:250)
Exception occurred during Behavior execution:
javax.media.j3d.CapabilityNotSetException: Group: no capability to set transform
at javax.media.j3d.TransformGroup.setTransform(TransformGroup.java:115)
at javax.media.j3d.TransformInterpolator.processStimulus(TransformInterp
olator.java:156)
at javax.media.j3d.BehaviorScheduler.doWork(BehaviorScheduler.java:172)
at javax.media.j3d.J3dThread.run(J3dThread.java:250)
Exception occurred during Behavior execution:
javax.media.j3d.CapabilityNotSetException: Group: no capability to set transform
at javax.media.j3d.TransformGroup.setTransform(TransformGroup.java:115)
at javax.media.j3d.TransformInterpolator.processStimulus(TransformInterp
olator.java:156)
at javax.media.j3d.BehaviorScheduler.doWork(BehaviorScheduler.java:172)
at javax.media.j3d.J3dThread.run(J3dThread.java:250)
Exception occurred during Behavior execution:
javax.media.j3d.CapabilityNotSetException: Group: no capability to set transform
at javax.media.j3d.TransformGroup.setTransform(TransformGroup.java:115)
at javax.media.j3d.TransformInterpolator.processStimulus(TransformInterp
olator.java:156)
at javax.media.j3d.BehaviorScheduler.doWork(BehaviorScheduler.java:172)
at javax.media.j3d.J3dThread.run(J3dThread.java:250)
The program is here:
import java.applet.Applet;
import java.awt.BorderLayout;
import java.awt.event.*;
import java.awt.GraphicsConfiguration;
import com.sun.j3d.utils.applet.MainFrame;
import com.sun.j3d.utils.geometry.ColorCube;
import com.sun.j3d.utils.universe.*;
import javax.media.j3d.*;
import javax.vecmath.*;
import com.sun.j3d.utils.geometry.*;
import com.sun.j3d.utils.universe.*;
import com.sun.j3d.utils.image.*;
import javax.media.j3d.*;
import javax.vecmath.*;
import java.awt.Container;
import java.io.Serializable;
public class HelloUniverse extends Applet
     private SimpleUniverse u = null;
     public BranchGroup createSceneGraph()
                                                  Declarations
          BranchGroup objRoot = new BranchGroup();
          BoundingSphere bounds = new BoundingSphere(new Point3d (0.0, 0.0, 0.0), 100.0);
          Point3f attenuation = new Point3f(-6.0f,-6.0f,-6.0f);
          Vector3f light1Direction = new Vector3f(0.0f, 0.0f, 0.0f);
          Point3f position = new Point3f(6.0f,6.0f,6.0f);
          Color3f light1Color = new Color3f(1.0f, 1.f, 1.f);          
          Color3f black = new Color3f(0.0f, 0.0f, 0.0f);
          Color3f white = new Color3f(1.0f, 1.0f, 1.0f);
          TextureAttributes texAttributes = new TextureAttributes();
          int primflags = Primitive.GENERATE_NORMALS + Primitive.GENERATE_TEXTURE_COORDS;
                                                  Background
          TextureLoader backgroundTexture = new TextureLoader("stars.jpg", this);
          Background background = new Background(backgroundTexture.getImage());
          background.setApplicationBounds(bounds);
          objRoot.addChild(background);
                                                  Earth
          TextureLoader earthTexture = new TextureLoader("earth.jpg", this);
          Texture earthTex = earthTexture.getTexture();
          Appearance appEarth = new Appearance();          
          appEarth.setTextureAttributes(texAttributes);
          appEarth.setTexture(earthTex);
          appEarth.setMaterial(new Material(white, black, white, black, 128.0f));          
          Sphere earth = new Sphere(0.13f, primflags, 80,appEarth);
          TransformGroup objTransEarth = new TransformGroup();     
          objTransEarth.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
          objTransEarth.setCapability(TransformGroup.ALLOW_CHILDREN_READ);
          Transform3D transformEarth = new Transform3D();
          Vector3f vectorEarth = new Vector3f(0.0f, 0.0f, 0.86f);
          transformEarth.set(vectorEarth);
          TransformGroup earthT = new TransformGroup(transformEarth);
          objTransEarth.addChild(earthT);          
          earthT.addChild(earth);          
          objRoot.addChild(objTransEarth);
                                                  Sun
          TextureLoader sunTexture = new TextureLoader("sun.jpg", this);
          Texture sunTex = sunTexture.getTexture();
          Appearance appSun = new Appearance();
          texAttributes.setTextureMode(TextureAttributes.MODULATE);
          appSun.setTextureAttributes(texAttributes);
          appSun.setTexture(sunTex);
          //appSun.setMaterial(new Material(white, black, white, black, 128.0f));
          Sphere sun = new Sphere(0.2f, primflags, 80, appSun);
          TransformGroup objTransSun = new TransformGroup();
          objTransSun.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
          objTransSun.setCapability(TransformGroup.ALLOW_CHILDREN_READ);
          Transform3D transformSun = new Transform3D();
          Vector3f vectorSun = new Vector3f(0.0f, 0.0f, 0.0f);
          transformSun.set(vectorSun);
          TransformGroup sunT = new TransformGroup(transformSun);
          objTransSun.addChild(sunT);          
          sunT.addChild(sun);
          objRoot.addChild(objTransSun);
                                                  Moon
          TextureLoader moonTexture = new TextureLoader("moon.jpg", this);          
          Texture moonTex= moonTexture.getTexture();          
          Appearance appMoon = new Appearance();     
          texAttributes.setTextureMode(TextureAttributes.MODULATE);
          appMoon.setTextureAttributes(texAttributes);          
          appMoon.setTexture(moonTex);               
          appMoon.setMaterial(new Material(white, black, white, black, 128.0f));          
          Sphere moon = new Sphere(0.06f, primflags, 80, appMoon);          
          TransformGroup objTransMoon = new TransformGroup();          
          objTransMoon.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);     
          objTransMoon.setCapability(TransformGroup.ALLOW_CHILDREN_READ);
          Transform3D transformMoon = new Transform3D();
          Vector3f vectorMoon = new Vector3f(0.15f, 0.2f, 0.2f);
          transformMoon.set(vectorMoon);
          TransformGroup moonT = new TransformGroup(transformMoon);     
          objTransMoon.addChild(moonT);               
          moonT.addChild(moon);          
          objRoot.addChild(objTransMoon);
                                                  Saturn
          Material shine = new Material();          
          shine.setShininess(128.0f);     
          TextureLoader saturnTexture = new TextureLoader("saturn.jpg", this);          
          Texture saturnTex= saturnTexture.getTexture();          
          Appearance appSaturn = new Appearance();     
          texAttributes.setTextureMode(TextureAttributes.MODULATE);
          appSaturn.setTextureAttributes(texAttributes);          
          appSaturn.setTexture(saturnTex);                    
          appSaturn.setMaterial(new Material(white, black, white, black, 128.0f));
          Sphere saturn = new Sphere(0.1f,primflags, 80, appSaturn);
          TransformGroup objTransSaturn = new TransformGroup();     
          objTransSaturn.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
          objTransSaturn.setCapability(TransformGroup.ALLOW_CHILDREN_READ);
          Transform3D transformSaturn = new Transform3D();
          Vector3f vectorSaturn= new Vector3f(0.0f, 0.5f, 1.0f);
          transformSaturn.set(vectorSaturn);
          TransformGroup saturnT = new TransformGroup(transformSaturn);
          objTransSaturn.addChild(saturnT);          
          saturnT.addChild(saturn);               
          appSaturn.setMaterial(shine);     
          objRoot.addChild(objTransSaturn);
                                                  Neptune
          TextureLoader neptuneTexture = new TextureLoader("neptune.jpg", this);          
          Texture neptuneTex= neptuneTexture.getTexture();          
          Appearance appNeptune = new Appearance();     
          texAttributes.setTextureMode(TextureAttributes.MODULATE);
          appNeptune.setTextureAttributes(texAttributes);          
          appNeptune.setTexture(neptuneTex);                    
          appNeptune.setMaterial(new Material(white, black, white, black, 128.0f));
          Sphere neptune = new Sphere(0.1f,primflags, 80, appNeptune);
          TransformGroup objTransNeptune = new TransformGroup();     
          objTransNeptune.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
          objTransNeptune.setCapability(TransformGroup.ALLOW_CHILDREN_READ);
          Transform3D transformNeptune = new Transform3D();
          Vector3f vectorNeptune= new Vector3f(1.0f, 0.0f, 0.86f);
          transformNeptune.set(vectorNeptune);
          TransformGroup neptuneT = new TransformGroup(transformNeptune);          
          objTransNeptune.addChild(neptuneT);          
          neptuneT.addChild(neptune);               
          appNeptune.setMaterial(shine);
          objRoot.addChild(objTransNeptune);
                                                  Lights
          PointLight light1 = new PointLight();
          light1.setEnable(true);
          light1.setColor(light1Color);
          light1.setPosition(position);
          light1.setAttenuation(attenuation);
          light1.setInfluencingBounds(bounds);
          light1.setCapability(Light.ALLOW_STATE_WRITE);
          objRoot.addChild(light1);     
          /*PointLight light1 = new PointLight();
          TransformGroup objTransLight = new TransformGroup();     
          objTransLight.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
          light1.setEnable(true);
          light1.setColor(light1Color);
          light1.setPosition(position);
          light1.setAttenuation(attenuation);
          light1.setInfluencingBounds(bounds);
          objTransLight.addChild(light1);     
          objRoot.addChild(objTransLight);*/
                                                  Rotator Declarations
          Alpha rotationAlpha = new Alpha(-1, 6000);
          Alpha rotationSunAlpha = new Alpha(-1, 20000);
          Alpha rotor2Alpha = new Alpha(-1, Alpha.INCREASING_ENABLE,0, 0,1000, 0, 0, 0, 0, 0);
          Alpha rotor3Alpha = new Alpha(-1, Alpha.INCREASING_ENABLE,0, 0,4000, 0, 0, 0, 0, 0);
                                                  Earth Rotator
          Transform3D yAxisEarth = new Transform3D();     
          RotationInterpolator earthRotator = new RotationInterpolator(rotationAlpha, objTransEarth, yAxisEarth, 0.0f,(float) Math.PI*2.0f);
          earthRotator.setSchedulingBounds(bounds);
          objTransEarth.addChild(earthRotator);
          RotationInterpolator earthRotator2 = new RotationInterpolator(rotor2Alpha, earthT, yAxisEarth, 0.0f, 0.0f);
          earthRotator2.setSchedulingBounds(bounds);
          objTransEarth.addChild(earthRotator2);
                                                  Sun Rotator
          Transform3D yAxisSun = new Transform3D();     
          RotationInterpolator sunRotator = new RotationInterpolator(rotationSunAlpha, objTransSun, yAxisSun, 0.0f,(float) Math.PI*2.0f);
          sunRotator.setSchedulingBounds(bounds);
          objTransSun.addChild(sunRotator);
                                                  Moon Rotator
          Transform3D yAxisMoon = new Transform3D();          
          RotationInterpolator moonRotator = new RotationInterpolator(rotationAlpha, objTransMoon, yAxisMoon, 0.0f,(float) Math.PI*2.0f);          
          moonRotator.setSchedulingBounds(bounds);     
          objTransMoon.addChild(moonRotator);     
          RotationInterpolator moonRotator2 = new RotationInterpolator(rotor2Alpha, moonT, yAxisMoon, 0.0f, 0.0f);
          moonRotator2.setSchedulingBounds(bounds);
          objTransMoon.addChild(moonRotator2);
                                                  Saturn Rotator
          Transform3D yAxisSaturn = new Transform3D();     
          Transform3D yAxisSaturn2 = new Transform3D();
          yAxisSaturn.rotZ(-(Math.PI/2.0d));
          RotationInterpolator saturnRotator = new RotationInterpolator(rotor3Alpha,objTransSaturn, yAxisSaturn, 0.0f,(float) Math.PI*2.0f);
          saturnRotator.setSchedulingBounds(bounds);
          objTransSaturn.addChild(saturnRotator);
          RotationInterpolator saturnRotator2 = new RotationInterpolator(rotor2Alpha, saturnT, yAxisSaturn2, 0.0f, 0.0f);
          saturnRotator2.setSchedulingBounds(bounds);
          objTransSaturn.addChild(saturnRotator2);
                                                  Neptune Rotator
          Transform3D yAxisNeptune = new Transform3D();     
          Transform3D yAxisNeptune2 = new Transform3D();
          yAxisNeptune.rotZ((Math.PI*3.0d));
          RotationInterpolator neptuneRotator = new RotationInterpolator(rotor3Alpha,objTransNeptune, yAxisNeptune, 0.0f,(float) Math.PI*2.0f);
          neptuneRotator.setSchedulingBounds(bounds);
          objTransNeptune.addChild(neptuneRotator);
          RotationInterpolator neptuneRotator2 = new RotationInterpolator(rotor2Alpha, neptuneT, yAxisNeptune2, 0.0f, 0.0f);
          neptuneRotator2.setSchedulingBounds(bounds);
          objTransNeptune.addChild(neptuneRotator2);
                                                  Light Rotator
          /*Transform3D yAxisLight = new Transform3D();          
          RotationInterpolator lightRotator = new RotationInterpolator(rotationAlpha, objTransLight, yAxisLight, 0.0f,(float) Math.PI*2.0f);          
          lightRotator.setSchedulingBounds(bounds);     
          objTransLight.addChild(lightRotator);     
          RotationInterpolator lightRotator2 = new RotationInterpolator(rotor2Alpha, objTransLight, yAxisLight, 0.0f, 0.0f);
          lightRotator2.setSchedulingBounds(bounds);
          objTransLight.addChild(lightRotator2);*/
          objRoot.compile();
          return objRoot;
     public HelloUniverse()
     public void init()
          setLayout(new BorderLayout());
          GraphicsConfiguration config = SimpleUniverse.getPreferredConfiguration();
          Canvas3D c = new Canvas3D(config);
          add ("Center", c);
          // Creat simple scene and attach it to virtual universe
          BranchGroup scene = createSceneGraph();
          u = new SimpleUniverse(c);
          // Set ViewPlatform a bit back so objects in scene can be
          //viewed.
          u.getViewingPlatform().setNominalViewingTransform();
          u.addBranchGraph(scene);
     public void destroy()
          u.removeAllLocales();
     // Add main so it can be run as an application as well as an
     //applet
     public static void main(String args[])
          new MainFrame(new HelloUniverse(), 800, 700);
}

i]I honestly cant see why I get this error
I know that feeling. I looked at your code ( but I`m very tired right now & maybe getting it wrong ) and found
TransformGroup earthT = new TransformGroup(transformEarth);
objTransEarth.addChild(earthT);
earthT.addChild(earth);
objRoot.addChild(objTransEarth);that doesn`t have its capabilities set, don`t know whether that helps.
regards

Similar Messages

  • JDOM "IllegalStateException: Root element not set" when reading file

    Hello, I am relatively new to XML. I am trying to read an xml document to parse some information out of it. I basically have a large amount of data I want to load into my program. I could program it all in as static arrays, but I thought xml would be easier, and make changes easier.
    I am trying to use JDOM, and have the project set up. My problem is when I read the document, it always gives a root element not set exception. Here is my xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        Contents
    </root>Very basic, I'm using this to get things started. Here is my code for reading it:
            SAXBuilder sb = new SAXBuilder();
            Document d = new Document();
            try {
                sb.build(new File("test1.xml"));
            catch (JDOMException jdome) {
                System.err.println(jdome);
            catch (IOException ioe) {
                System.err.println(ioe);
            d.getContent();Whenever I try to do anything with the contents of the Document, like d.getContent(), it always throws a java.lang.IllegalStateException: Root element not set. It reads the file successfully (as far as I can tell), but it's like the xml file is empty. I can't find anything on the web about this problem, and every tutorial says to do exactly what I've done, but never mention any possible problem. It can find the file, and I can write to an xml file as in other tutorials, but reading one in is a problem.
    I chose JDOM because it seemed simplest for just reading in a large amount of data and parsing it out into variables. This is a very simple project, so I don't want to spend a lot of time writing xml parsing code, I'm only using xml because it will probably be easier than hard coding the data. Would a different xml api be easier to use for my purposes?
    Message was edited by:
    hunter9000

    You must always give the browser an either an absolute URL from the top of
              the web server (not the
              web application) or a relative path from the current page.
              Sam
              "Vijay Kumar" <[email protected]> wrote in message
              news:[email protected]..
              > Hi
              >
              > I get the 'getResource is called when document root is not set.' error
              > when I access any files in the webapp with their absolute path.
              >
              > Environment: WIN/NT SP3, WL5.1 SP5 as the webserver and app server.
              >
              > My webapp located in d:\temp is deployed as foo
              > weblogic.httpd.webApp.foo=d:/temp
              >
              > For example:
              > I can access a file in d:\temp\secured\home.html using
              > test
              >
              > However if with in an html I try to access the file using the abs path
              > from doc root
              > test I get an error
              >
              > and I guess the default servlet looks for the servlet-context named
              > 'secured'
              >
              > Can someone tell me if I can set the documentRoot in the web.xml or
              > weblogic.xml
              > file OR if there is any other way to access to the file using the abs path
              > of /secured/test/test.html
              >
              >
              > Thanks in advance
              >
              > Vijay
              >
              >
              >
              >
              

  • Error: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. --- System.NullReferenceException: Object reference not set to an instance of an object

    Hi,
    (1) I am trying to get the data from a database table and import into a text file.
    (2) If the record set have the data then it runs ok
    (3) when the record set not having any data it is giving the below error
    Error: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object
    Could you please let me know why this is happening?
    Any help would be appriciated
    Thanks,
    SIV

    You might ask them over here.
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral%2Ccsharpgeneral%2Cvcgeneral&filter=alltypes&sort=lastpostdesc
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • HT5570 I tried to reset setting due to my phone speaker are not functioning except if i plug in earphone.after i key in my phone code,it promp a request for restriction code which i totally cant recall.

    I tried to reset setting due to my phone speaker are not functioning except if i plug in earphone.after i key in my phone code,it promp a request for restriction code which i totally cant recall.how can i resolve this issue.

    Hello Ridhuan,
    Thanks for using Apple Support Communities.
    If you forgot your restrictions passcode you will need to restore your iPhone to its factory settings.
    i forgot my passcode
    https://discussions.apple.com/thread/5196099
    Take care,
    Alex H.

  • I have just inherited my husbands ipad, all transferred well except my hotmail account will not set up, I have read all forums but none have helped, keep getting "can not verify" when I try set it up. I have removed email and re added, turn

    I have just inherited my husbands ipad, all transferred well except my hotmail account will not set up, I have read all forums but none have helped, keep getting "can not verify" when I try set it up. I have removed email and re added, turned on off iPad and iPhone but neither will set up, I have given up and forwarded all new emails from hotmail to icloud until I sort this out. Please help it's doing my brain in!!!! Thanks

    You need to turn off find my ipad in settings
    Then restore to factory settings ipad will then be
    as new then enter you Apple ID and password
    bsydd uk

  • "Object reference not set to an instance of an object" when opening designer

    I have a Windows Forms project which was originally developed in Visual Studio 2010. I migrated the project to VS2013, and now every time I open the project's main form, the designer complains of a null reference. If I hit "Ignore and Continue",
    the code compiles just fine. The error in question appears in the "Windows Form Designer generated code" region. Even more curious, the line in question is not the first reference to the object. It's as if the first few times it needs to interact
    with the object, it's fine, then at a certain point it becomes null.
    Here is the call stack for the error:
    at System.ComponentModel.ReflectPropertyDescriptor.SetValue(Object component,
    Object value)at
    Microsoft.VisualStudio.Shell.Design.VsTargetFrameworkPropertyDescriptor.SetValue(Object
    component, Object value)at
    System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializePropertyAssignStatement(IDesignerSerializationManager
    manager, CodeAssignStatement statement, CodePropertyReferenceExpression
    propertyReferenceEx, Boolean reportError)at
    System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeAssignStatement(IDesignerSerializationManager
    manager, CodeAssignStatement statement)at
    System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeStatement(IDesignerSerializationManager
    manager, CodeStatement statement) 
    And here is the code in question:
    this.optionsControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); 
    this.optionsControl.IsAsciiMode = false;           
    this.optionsControl.Location = new System.Drawing.Point(3, 3);
    this.optionsControl.LogControl = null;           
    this.optionsControl.Name = "optionsControl";           
    this.optionsControl.PlugInManager = null;           
    this.optionsControl.PortFacade = null;           
    this.optionsControl.Size = new System.Drawing.Size(613, 259);
    this.optionsControl.TabIndex = 0;
    The problem is reported at the third line, "this.optionsControl.Location = new System.Drawing.Point(3, 3);".

    Hi Eric,
    I have made a research about your issue, and I found it might be caused by the usercontrol in the project. Was “this.optionsControl” a UserControl? It seems that this issue was difficult to handle.
    If possible, I would recommend you recreate this control in a new project.
    In addition, I think you could turn to the links below, they may be useful to you:
    # How to get more information about exceptions thrown by the designer when switching from code to design view?
    http://community.sharpdevelop.net/forums/p/16124/43105.aspx
    # How to avoid WSODs in the Visual Studio 2005 Designer
    http://www.codeproject.com/Articles/13584/How-to-avoid-WSODs-in-the-Visual-Studio-Desig
    # design time error: object reference not set an instance of an object but runs fine
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/b3676bef-e457-4aac-b438-d3ed8a667e3f/design-time-error-object-reference-not-set-an-instance-of-an-object-but-runs-fine?forum=winforms
    Best Regards,
    Edward
    This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore,
    Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you
    completely understand the risk before retrieving any software from the Internet.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • Object reference not set to an instance of an object. at Microsoft.Office.Server.Administration.UserProfileApplicationProxy.

    Hello.
    I just installed a new farm, the wizard was succesfull in all steps.  However when I try to load the default site it created I got this exception.
    Any idea?
    System.NullReferenceException: Object reference not set to an instance of an object.    at Microsoft.Office.Server.Administration.UserProfileApplicationProxy.get_ApplicationProperties()     at Microsoft.Office.Server.Administration.UserProfileApplicationProxy.get_PartitionIDs()
        at Microsoft.Office.Server.Administration.UserProfileApplicationProxy.IsAvailable(SPServiceContext serviceContext)     at Microsoft.Office.Server.WebControls.MyLinksRibbon.get_PortalAvailable()     at Microsoft.Office.Server.WebControls.MyLinksRibbon.EnsureMySiteUrls()
        at Microsoft.Office.Server.WebControls.MyLinksRibbon.get_PortalMySiteUrlAvailable()     at Microsoft.Office.Server.WebControls.MyLinksRibbon.OnLoad(EventArgs e)     at System.Web.UI.Control.LoadRecursive()     at
    System.Web.UI.Control.LoadRecu...
    Follow me on Twitter <<<

    I tried removing the user profile service application and creating it again, when I did that, and tried to navigate to the page to manager the user profile application it shows me an exception
    According to the uls log viewer its;
    Microsoft.Office.Server.UserProfiles.UserProfileApplicationNotAvailableException: This User Profile Application's connection is currently not available. The Application Pool or User Profile Service may not have been started. Please contact your administrator.
       at Microsoft.SharePoint.Portal.UserProfiles.AdminUI.ProfileAdminPage.get_CurrentApplicationProxy()     at Microsoft.SharePoint.Portal.UserProfiles.AdminUI.ProfileAdminPage.IsProfileSynchronizationRunning()     at Microsoft.SharePoint.Portal.WebControls.UserProfileServiceImportStatisticsWebPart.RenderSectionContents(HtmlTextWriter
    writer)     at Microsoft.SharePoint.Portal.WebControls.UserProfileServiceImportStatisticsWebPart.RenderWebPart(HtmlTextWriter writer)     at Microsoft.SharePoint.WebPartPages.WebPart.Render(HtmlTextWriter ...
    I checked and the sharepoint web services default was stopped, I started and still the same error,  that pool is under Local Service account.
    Follow me on Twitter <<<

  • "Object reference not set to an instance of an object" in WAD

    10:45:09.659 ########## --> com.sap.bi.et.wad.wadhtmlediting.WADctlWADHTMLControl.SwitchEditable ##########
    -EXCEPTION-START- 10:45:09.659: DEBUG ### Browser Init failed. 2nd try will be proceeded. ---
    Exception Message: Object reference not set to an instance of an object.
    Exception    at SAPWADMXHTML.IWADMXBrowser2.AttachAnnotator(Boolean On)
       at com.sap.bi.et.wad.AxSAPWADMXHTML.AxCWADMXBrowser2.AttachAnnotator(Boolean on)
       at com.sap.bi.et.wad.wadhtmlediting.WADctlWADHTMLControl.SwitchEditable(Boolean iBool)
    Full Stack:
         at com.sap.bi.et.wad.Debug.WriteTraceToFile(Level, String, Exception)
         at com.sap.bi.et.wad.Debug.Exception(Exception, String)
         at com.sap.bi.et.wad.wadhtmlediting.WADctlWADHTMLControl.SwitchEditable(Boolean)
         at com.sap.bi.et.wad.wadhtmlediting.WADctlWADHTMLControl.set_BrowserDesignMode(Boolean)
         at com.sap.bi.et.wad.wadhtmlediting.WADctlWADHTMLControl.Navigate(String, Boolean)
         at com.sap.bi.et.wad.wadhtmlediting.WADctlWADHTMLControl.SetHTMLsafe(String, Boolean)
         at com.sap.bi.et.wad.wadhtmlediting.WADctlWADHTMLControl.SetHTML(String, Boolean)
         at com.sap.bi.et.wad.man.WADctlEditViewLayout.SetDocumentHTML(String)
         at com.sap.bi.et.wad.man.WADctlEditViewLayout.TemplateXML2HTMLEdit()
         at com.sap.bi.et.wad.man.WADfrmTemplateMDIWindow.UpdateView(Int32, Int32, Boolean)
         at com.sap.bi.et.wad.man.WADfrmTemplateMDIWindow.tabLayoutTab_Switch(Object, EventArgs)
         at System.Windows.Forms.TabControl.OnSelectedIndexChanged(EventArgs)
         at System.Windows.Forms.TabControl.WmSelChange(Message&)
         at System.Windows.Forms.TabControl.WndProc(Message&)
         at System.Windows.Forms.ControlNativeWindow.OnMessage(Message&)
         at System.Windows.Forms.ControlNativeWindow.WndProc(Message&)
         at System.Windows.Forms.NativeWindow.Callback(IntPtr, Int32, IntPtr, IntPtr)
         at System.Windows.Forms.UnsafeNativeMethods.SendMessage(HandleRef, Int32, IntPtr, IntPtr)
         at System.Windows.Forms.Control.SendMessage(Int32, IntPtr, IntPtr)
         at System.Windows.Forms.Control.ReflectMessageInternal(IntPtr, Message&)
         at System.Windows.Forms.Control.WmNotify(Message&)
         at System.Windows.Forms.Control.WndProc(Message&)
         at System.Windows.Forms.ScrollableControl.WndProc(Message&)
         at System.Windows.Forms.ContainerControl.WndProc(Message&)
         at System.Windows.Forms.Form.WndProc(Message&)
         at System.Windows.Forms.ControlNativeWindow.OnMessage(Message&)
         at System.Windows.Forms.ControlNativeWindow.WndProc(Message&)
         at System.Windows.Forms.NativeWindow.Callback(IntPtr, Int32, IntPtr, IntPtr)
         at System.Windows.Forms.UnsafeNativeMethods.CallWindowProc(IntPtr, IntPtr, Int32, IntPtr, IntPtr)
         at System.Windows.Forms.NativeWindow.DefWndProc(Message&)
         at System.Windows.Forms.Control.DefWndProc(Message&)
         at System.Windows.Forms.Control.WmMouseDown(Message&, MouseButtons, Int32)
         at System.Windows.Forms.Control.WndProc(Message&)
         at System.Windows.Forms.TabControl.WndProc(Message&)
         at System.Windows.Forms.ControlNativeWindow.OnMessage(Message&)
         at System.Windows.Forms.ControlNativeWindow.WndProc(Message&)
         at System.Windows.Forms.NativeWindow.Callback(IntPtr, Int32, IntPtr, IntPtr)
         at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG&)
         at System.Windows.Forms.ComponentManager.System.Windows.Forms.UnsafeNativeMethods+IMsoComponentManager.FPushMessageLoop(Int32, Int32, Int32)
         at System.Windows.Forms.ThreadContext.RunMessageLoopInner(Int32, ApplicationContext)
         at System.Windows.Forms.ThreadContext.RunMessageLoop(Int32, ApplicationContext)
         at System.Windows.Forms.Application.Run(Form)
         at com.sap.bi.et.wad.BexWebApplicationDesigner.Launch.Main()
    -EXCEPTION-END----

    Hello Dieu,
    Have you found a solution of this exception?? i also come across this one.
    Kind Regards,
    Clark

  • Object reference not set to an instance of an object. in Query disigner

    Using the Bex query desingne we get the following message:
    An unhandled exception occured in your application etc
    Object reference not set to an instance of an object.
    Details are:
    System.NullReferenceException: Object reference not set to an instance of an object.
       at com.sap.bi.et.QueryDesigner.QDcElement.Contains(QDbElement iValue)
       at com.sap.bi.et.QueryDesigner.QDbElement.WhereUsedAdd(QDbElement iElement)
       at com.sap.bi.et.QueryDesigner.QDbStructureMemberFormula.WhereUsedAdd(QDbElement iElement)
       at com.sap.bi.et.QueryDesigner.QDbElement.FromUndoTable(RSZ_X_ELTXREF isWhereUsed, QDcElement iElements)
       at com.sap.bi.et.QueryDesigner.QDbElement.FromTables(Hashtable iTables, QDcElement iElements)
       at com.sap.bi.et.QueryDesigner.QDbElement.Undo(QDbUndoRedoBuffer cUndoBuffer, QDbUndoRedoBuffer& cRedoBuffer)
       at com.sap.bi.et.QueryDesigner.QDbCommandEditElement.Undo()
       at com.sap.bi.et.QueryDesigner.QDbCommandEditElement.EditFormula(IQDView iSelectedView)
       at com.sap.bi.et.QueryDesigner.QDbCommandEditElement.ExecuteCommand()
       at com.sap.bi.et.QueryDesigner.QDbCommandBase.Execute()
       at com.sap.bi.et.QueryDesigner.QDbCommandManager.CommandExecute(QDbCommandBase iCommand)
       at com.sap.bi.et.QueryDesigner.QDbCommandManager.InitialCommandExecute(QDbCommandBase iCommand)
       at com.sap.bi.et.QueryDesigner.QDbCommandManager.DoExecuteCommandInternal()
       at com.sap.bi.et.QueryDesigner.QDiButtonCommand.Execute()
       at com.sap.bi.et.QueryDesigner.QDiButtonCommand.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
       at Syncfusion.Windows.Forms.ButtonAdv.OnMouseUp(MouseEventArgs e)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ButtonBase.WndProc(Message& m)
       at System.Windows.Forms.Button.WndProc(Message& m)
       at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

    Thanks for the suggestion Deepu. I looked at the available downloads and saw there was a SP13 available, so I downloaded that and will try this on Monday May 21st.
    I will also check the .NET 1.1 framwork and hotfixes.

  • "Object reference not set to an instance of an object" error while accessing document libraries after in place upgrade to SP 2010

    I performed an inplace upgrade on my sharepoint 2007 installation and post the upgrade while trying to browse the document libraries on the site i get the following Error. HAs anyone encountered a similair error?? What could be the cause and resolution
    for this
    Any pointers/solution appreciated.
    Description: An
    unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
    Exception
    Details: System.NullReferenceException: Object reference not set to an instance of an object.
    Source
    Error: 
    An unhandled exception was generated during the execution of the
    current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack
    Trace: 
    [NullReferenceException: Object reference not set to an instance of an object.]
    Microsoft.SharePoint.WebPartPages.ListViewWebPart.PrepareContentTypeFilter(SPList list, Hashtable[] excludedTransformers) +682
    Microsoft.SharePoint.WebPartPages.ListViewWebPart.GenerateDocConvScriptBlock(SPWeb web, SPList list) +482
    Microsoft.SharePoint.WebPartPages.XsltListViewWebPart.OnPreRender(EventArgs e) +571
    Microsoft.SharePoint.WebPartPages.WebPartMobileAdapter.OnPreRender(EventArgs e) +78
    System.Web.UI.Control.PreRenderRecursiveInternal() +11032094
    System.Web.UI.Control.PreRenderRecursiveInternal() +223
    System.Web.UI.Control.PreRenderRecursiveInternal() +223
    System.Web.UI.Control.PreRenderRecursiveInternal() +223
    System.Web.UI.Control.PreRenderRecursiveInternal() +223
    System.Web.UI.Control.PreRenderRecursiveInternal() +223
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3393
    Version
    Information: Microsoft .NET Framework Version:2.0.50727.4952; ASP.NET Version:2.0.50727.4955
    My SharePoint Blog
    http://dhireny.blogspot.com

    How to be in my case??
    [NullReferenceException: Object reference not set to an instance of an object.]
    Microsoft.SharePoint.WebPartPages.ListViewWebPart.PrepareContentTypeFilter(SPList list, Hashtable[] excludedTransformers) +694
    Microsoft.SharePoint.WebPartPages.ListViewWebPart.GenerateDocConvScriptBlock(SPWeb web, SPList list) +482
    Microsoft.SharePoint.WebPartPages.XsltListViewWebPart.OnPreRender(EventArgs e) +571
    Microsoft.SharePoint.WebPartPages.WebPartMobileAdapter.OnPreRender(EventArgs e) +78
    System.Web.UI.Control.PreRenderRecursiveInternal() +11141054
    System.Web.UI.Control.PreRenderRecursiveInternal() +223
    System.Web.UI.Control.PreRenderRecursiveInternal() +223
    System.Web.UI.Control.PreRenderRecursiveInternal() +223
    System.Web.UI.Control.PreRenderRecursiveInternal() +223
    System.Web.UI.Control.PreRenderRecursiveInternal() +223
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3393

  • "Object reference not set to an instance of an object" after view selection

    Hello,
    I have a Visual Studio LightSwitch project where I connect to a Oracle server and select a view as a new data source.
    I get a error message "Object reference not set to an instance of an object" after selecting the Oracle view as a data source.
    The Visual Studio Log shows me following details in the ActivityLog:
    362 End package load [Visual Studio Explorers and Designers Package] {8D8529D3-625D-4496-8354-3DAD630ECC1B} VisualStudio 2011/09/05 12:17:58.258
    *363 ERROR OracleConnectionUIControl.ProcessParentFormAcceptButtonClick - Exception opening the connection. Oracle Data Provider for .NET ORA-12560: TNS: Fehler bei Protokolladapter at Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, OpoSqlValCtx pOpoSqlValCtx, Object src, String procedure, Boolean bCheck) at Oracle.DataAccess.Client.OracleException.HandleError(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, Object src) at Oracle.DataAccess.Client.OracleConnection.Open() at Oracle.VsDevTools.DDEX.OracleConnectionProperties.Test() at Oracle.VsDevTools.DDEX.OracleConnectionUIControl.ProcessParentFormAcceptButtonClick(Object sender, EventArgs e) {D601BB95-E404-4A8E-9F24-5C1A462426CE} Oracle Developer Tools for Visual Studio 2011/09/05 12:18:05.652*
    364 OracleVSGPkg.QueryClose - Begin Oracle Developer Tools VS Package Query Close {D601BB95-E404-4A8E-9F24-5C1A462426CE} Oracle Developer Tools for Visual Studio 2011/09/05 12:18:32.001
    But this error ORA-12560 does not make any sense, because I have got a working connection to the Oracle server and can see tables and views.
    Any ideas?
    Environment:
    Visual Studio 2010 SP 1
    Windows Server 2008 R2
    ODAC 11.2.0.2.40 Beta 2 for Entity Framework and LINQ to Entities
    Regards
    Benjamin

    Hi, did you ever resolve this? I have the same problem.
    Thanks,
    Mike

  • Object Reference Not Set To An Instance Of An Object - Outlook Add-In - Add-In Express

    Hi,
    My Add-In has been developed in VS2010 using the Add-In Express pack.
    Its a very simple add-in that shows an IT support ticket email detailing PC information. To use it, following installing the add-in, the user must select the tab in outlook and click on the Send IT Support Email button which will generate an Outlook Email
    Template with specific information about the PC that I pull using VB.
    It works fine in Windows 7 & 8, but throws an 'Object Reference Not Set To An Instance Of An Object' exception in Windows XP. Screenshot is shown below:
    The code is below
    Imports System.Runtime.InteropServices
    Imports System.ComponentModel
    Imports System.Drawing
    Imports System.Windows.Forms
    Imports AddinExpress.MSO
    Imports System.Object
    Imports System.Net
    Imports System.Environment
    Imports System.Net.NetworkInformation
    Imports System.Windows.Forms.Application
    Imports Microsoft.Office.Interop.Outlook
    Imports outlook = Microsoft.Office.Interop.Outlook
    'Add-in Express Add-in Module
    <GuidAttribute("735B7BC8-DD2F-44D8-BC37-30D86769C065"), ProgIdAttribute("$safeprojectname$.AddinModule")> _
    Public Class AddinModule
    Inherits AddinExpress.MSO.ADXAddinModule
    #Region " Add-in Express automatic code "
    'Required by Add-in Express - do not modify
    'the methods within this region
    Public Overrides Function GetContainer() As System.ComponentModel.IContainer
    If components Is Nothing Then
    components = New System.ComponentModel.Container
    End If
    GetContainer = components
    End Function
    <ComRegisterFunctionAttribute()> _
    Public Shared Sub AddinRegister(ByVal t As Type)
    AddinExpress.MSO.ADXAddinModule.ADXRegister(t)
    End Sub
    <ComUnregisterFunctionAttribute()> _
    Public Shared Sub AddinUnregister(ByVal t As Type)
    AddinExpress.MSO.ADXAddinModule.ADXUnregister(t)
    End Sub
    Public Overrides Sub UninstallControls()
    MyBase.UninstallControls()
    End Sub
    #End Region
    Public Shared Shadows ReadOnly Property CurrentInstance() As AddinModule
    Get
    Return CType(AddinExpress.MSO.ADXAddinModule.CurrentInstance, AddinModule)
    End Get
    End Property
    Private Sub AddInModule_AddInInitiatize(ByVal sender As Object, ByVal e As EventArgs) _
    Handles MyBase.AddinInitialize
    'Outlook 2010 = 14
    If Me.HostMajorVersion >= 14 Then
    AdxOlExplorerCommandBar1.UseForRibbon = False
    End If
    End Sub
    Public ReadOnly Property OutlookApp() As Outlook._Application
    Get
    Return CType(HostApplication, Outlook._Application)
    End Get
    End Property
    'Gets the MAC Address from the NIC Information
    Function getMacAddress()
    Dim nics() As NetworkInterface = _
    NetworkInterface.GetAllNetworkInterfaces
    Return nics(0).GetPhysicalAddress.ToString
    End Function
    Sub CreateTemplate()
    Dim sHostName As String
    Dim sDomain As String
    Dim sUserName As String
    Dim sOS As String
    Dim s64 As String
    Dim sMAC As String
    Dim host As String = System.Net.Dns.GetHostName()
    Dim LocalHostaddress As String = System.Net.Dns.GetHostEntry(host).AddressList(1).ToString()
    Dim MyItem As Outlook.MailItem
    'Finds the PC Number
    sHostName = Environ$("computername")
    'Finds the Domain
    sDomain = Environ$("userdomain")
    'Finds the Username logged into the PC
    sUserName = (Environment.UserDomainName & "\" & Environment.UserName)
    'Finds the Operating System
    sOS = (My.Computer.Info.OSFullName)
    'Shows the results collected from the getMacAddress Function in the sMac variable
    sMAC = getMacAddress()
    'Finds the Architecture of the Operating System - x86 or x64
    If (Environment.Is64BitOperatingSystem) Then
    s64 = ("64bit")
    Else
    s64 = ("32bit")
    End If
    'Creates a Template Email
    MyItem = OutlookApp.CreateItem(Outlook.OlItemType.olMailItem)
    'Configures the Sender as [email protected]
    MyItem.To = "[email protected]"
    'Shows the template
    MyItem.Display()
    'Shows all of the string in the Email Body
    MyItem.HTMLBody = String.Concat("<b><u>IT SUPPORT TICKET</u></b>", "<br/><br/>", "<tr><b>PC Number: </b></tr>", sDomain, "\", sHostName, "<b></b>", "<br/><br/>", "<b>Username: </b>", sUserName, "<b></b>", "<br/><br/>", "<b>OS Version: </b>", sOS, s64, "<b></b>", "<br/><br/>", "<b>IP Address: </b>", LocalHostaddress, "<b></b>", "<br/><br/>", "<b>MAC Address: </b>", sMAC, "<b></b>", "<br/><br/>", "<b>Comment:</b>", "<br/>", "<i>Please give a brief description of your problem attaching a screen shot if possible</i>", "<br/><br/>") & MyItem.HTMLBody
    End Sub
    Private Sub AdxRibbonButton1_OnClick(ByVal sender As Object, ByVal control As IRibbonControl, ByVal pressed As Boolean) Handles AdxRibbonButton1.OnClick
    'Runs CreateTemplate
    CreateTemplate()
    End Sub
    Private Sub AdxCommandBarButton1_Click(ByVal sender As Object) Handles AdxCommandBarButton1.Click
    'Runs CreateTemplate
    CreateTemplate()
    End Sub
    End Class
    I would appreciate any help with this whatsoever as I am pulling my hair out!!
    Many Thanks!!
    Chris

    Hi,
    Welcome to MSDN forum.
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    Because your Add-in is developed using Add-in Express which is third-party, I suggest consulting Add-in Express forum:
    http://www.add-in-express.com/forum/index.php for better support.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Object reference not set to an instance of an object in live connection

    Each metod for LiveAuthClient drop exception: "Object reference not set to an instance of an object.". I think this is due to the fact that session in LiveAuthClient is null, but i not sure why. I'm not registered in Windows
    Store Dashboard, but early i create app on other LiveID without register. I wonder if I can now use the live api for free?

    If you are writing a Windows Store application, please follow the directions listed for Windows Store apps here:
    http://msdn.microsoft.com/en-us/library/live/hh826551.aspx

  • IMac keeps going to lock screen - not set to do so.

    I am having an issue with having my iMac going to the lock screen when the computer has been idle, although this is not set in System Preferences for the screen to lock.  I would not have too much of an issue with this except it can take up to half an hour or more for the computer to recover to its state before the lock.  Browser windows do not restore, many system processes are shown as non-responsive in Activity Monitor and programs like Acrobat act more like I have had a crash and bring me back up a recovered documents window.  Fore the record, the security update that Apple pushed out last week did not install on my computer and it does not even show up as a manual install option in the Software Updates section of the app store, so that is curious, as well.
    Below is an EtreCheck scan of my system.  Any advice is appreciated as I am currently stumped.
    Tom Ballard
    EtreCheck version: 2.1.5 (108)
    Report generated December 29, 2014 at 8:39:50 PM CST
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
        iMac (27-inch, Late 2009) (Verified)
        iMac - model: iMac10,1
        1 3.06 GHz Intel Core 2 Duo CPU: 2-core
        16 GB RAM Upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1067 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1067 MHz ok
            BANK 0/DIMM1
                4 GB DDR3 1067 MHz ok
            BANK 1/DIMM1
                4 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        ATI Radeon HD 4670 - VRAM: 256 MB
            iMac 2560 x 1440
    System Software: ℹ️
        OS X 10.10.1 (14B25) - Uptime: 5 days 7:43:55
    Disk Information: ℹ️
        Hitachi HDE721010SLA330 disk0 : (1 TB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 999.35 GB (375.49 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        PIONEER DVD-RW  DVRTS09
    USB Information: ℹ️
        Logitech USB Receiver
        Fitbit Inc. Fitbit Base Station
        Apple Inc. Built-in iSight
        Apple Internal Memory Card Reader
        Seagate Desktop 2 TB
            EFI (disk1s1) <not mounted> : 210 MB
            iTunes BU (disk1s2) /Volumes/iTunes BU : 2.00 TB (489.30 GB free)
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Firewire Information: ℹ️
        WD My Book 1112 800mbit - 800mbit max
            disk2s1 (disk2s1) <not mounted> : 32 KB
            WD 2TB (disk2s3) /Volumes/WD 2TB : 2.00 TB (950.65 GB free)
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/DiskWarrior/DiskWarrior.app
        [not loaded]    com.alsoft.Preview (4.3) [Support]
            /Applications/Transmit.app
        [not loaded]    com.panic.TransmitDisk.transmitdiskfs (4.0.0 - SDK 10.6) [Support]
            /Library/Application Support/WDSmartWare
        [not loaded]    com.wdc.driver.1394HP (1.0.8) [Support]
        [not loaded]    com.wdc.driver.USBHP (1.0.10) [Support]
            /Library/Extensions
        [not loaded]    at.obdev.nke.LittleSnitch (4052 - SDK 10.8) [Support]
        [loaded]    org.fuse4x.kext.fuse4x (0.9.2 - SDK 10.5) [Support]
            /Library/Extensions/tap.kext
        [not loaded]    foo.tap (1.0) [Support]
            /Library/Extensions/tun.kext
        [not loaded]    foo.tun (1.0) [Support]
            /System/Library/Extensions
        [loaded]    com.Cycling74.driver.Soundflower (1.5.2) [Support]
        [not loaded]    com.SoundID.driver.SoundIDUpdate (1.0.5 - SDK 10.6) [Support]
        [not loaded]    com.allume.nke.NetBlockade (2.0.2) [Support]
        [loaded]    com.globaldelight.driver.VoilaDevice (1.1 - SDK 10.1) [Support]
        [not loaded]    com.ioxperts.iokit.usbwebcam (1.0.2b3) [Support]
        [not loaded]    com.keyspan.iokit.usb.KeyspanUSAdriver (2.5) [Support]
        [not loaded]    com.livescribe.kext.LivescribeSmartpen (1) [Support]
        [not loaded]    com.logitech.manager.kernel.driver (2.00 - SDK 10.6) [Support]
        [not loaded]    com.markspace.iokit.IOMissingSyncMassStorage (140) [Support]
        [not loaded]    com.markspace.missingsync.palmos.classicseize (1) [Support]
        [not loaded]    com.palm.ClassicNotSeizeDriver (3.2.1) [Support]
        [not loaded]    net.pocketmac.driver.BlackberryUSB (3.0.9) [Support]
        [not loaded]    net.pocketmac.driver.BlackberryUSBDev (3.0.9) [Support]
        [not loaded]    net.pocketmac.driver.PocketMacUSB (2.0.8) [Support]
        [loaded]    net.telestream.driver.TelestreamAudio (1.1.0 - SDK 10.8) [Support]
            /Users/[redacted]/Downloads/Studio IV Firmware Updater.app
        [not loaded]    com.wdc.driver.WdDeviceType00 (1.1) [Support]
        [not loaded]    com.wdc.driver.WdDeviceType05 (1.1) [Support]
    Startup Items: ℹ️
        NetworkOptimizerSC: Path: /Library/StartupItems/NetworkOptimizerSC
        tap: Path: /Library/StartupItems/tap
        tun: Path: /Library/StartupItems/tun
        Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Support]
        [loaded]    com.adobe.CS4ServiceManager.plist [Support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Support]
        [loaded]    com.fujitsu.pfu.ScanSnap.AOUMonitor.plist [Support]
        [loaded]    com.google.keystone.agent.plist [Support]
        [running]    com.logitech.manager.daemon.plist [Support]
        [loaded]    com.oracle.java.Java-Updater.plist [Support]
        [not loaded]    com.smartlaunch.usbdetection.plist [Support]
        [loaded]    org.fuse4x.autoupdater.plist [Support]
        [loaded]    org.gpgtools.Libmacgpg.xpc.plist [Support]
        [loaded]    org.macosforge.xquartz.startx.plist [Support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Support]
        [invalid?]    com.adobe.SwitchBoard.plist [Support]
        [running]    com.bombich.ccchelper.plist [Support]
        [running]    com.connecteddata.CDHelperApp.plist [Support]
        [running]    com.fitbit.galileod.plist [Support]
        [running]    com.freemacsoft.appcleanerd.plist [Support]
        [loaded]    com.google.keystone.daemon.plist [Support]
        [failed]    com.hamachix.tuncfgd.plist [Support] [Details]
        [running]    com.livescribe.PenCommService.plist [Support]
        [loaded]    com.macpaw.CleanMyMac2.Agent.plist [Support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Support]
        [loaded]    com.prosofteng.DriveGenius.locum.plist [Support]
        [invalid?]    com.prosoftnet.idrivesyncdaemon.plist [Support]
        [loaded]    com.timesoftware.timemachineeditor.backup-auto.plist [Support]
        [loaded]    com.timesoftware.timemachineeditor.helper.plist [Support]
        [running]    openbase.plist [Support]
        [loaded]    org.macosforge.xquartz.privileged_startx.plist [Support]
    User Launch Agents: ℹ️
        [not loaded]    ca.madefresh.BodegaAgent.plist [Support]
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Support]
        [loaded]    com.adobe.ARM.[...].plist [Support]
        [invalid?]    com.bombich.ccc-user-agent.plist [Support]
        [running]    com.c-command.SpamSieve.LaunchAgent.plist [Support]
        [invalid?]    com.citrixonline.GoToMeeting.G2MUpdate.plist [Support]
        [running]    com.ecamm.printopia.plist [Support]
        [not loaded]    com.macpaw.CleanMyMac.helperTool.plist [Support]
    User Login Items: ℹ️
        Default Folder X Helper    Application (/Library/PreferencePanes/Default Folder X.prefPane/Contents/Resources/Default Folder X Helper.app)
        Bartender    Application (/Applications/Bartender.app)
        Carbon Copy Cloner    Application (/Applications/Carbon Copy Cloner.app)
        OpenDNS Updater    ApplicationHidden (/Applications/OpenDNS_Updater-2.7/OpenDNS Updater.app)
        ScanSnap Manager    Application (/Applications/ScanSnap/ScanSnap Manager.app)
        TextExpander    UNKNOWNHidden (missing value)
        iClip    Application (/Applications/iClip.app)
        Microsoft Database Daemon    Application (/Applications/Microsoft Office 2011/Office/Microsoft Database Daemon.app)
        TransmitMenu    Application (/Applications/Transmit.app/Contents/MacOS/TransmitMenu.app)
        Dropbox    Application (/Applications/Dropbox.app)
        AppCleaner Helper    Application (/Applications/AppCleaner.app/Contents/Library/LoginItems/AppCleaner Helper.app)
        Alfred 2    Application (/Applications/Alfred 2.app)
        HazelHelper    UNKNOWN (missing value)
        IDriveSync    UNKNOWN (missing value)
        Transporter Desktop    Application (/Applications/Transporter Desktop.app)
        Fitbit Connect Menubar Helper    Application (/Applications/Fitbit Connect.app/Contents/MacOS/Fitbit Connect Menubar Helper.app)
        Livescribe AutoLaunch    Application (/Applications/LiveScribe/LivescribeDesktop.app/Contents/MacOS/PenAutoLaunch.ap p)
        MailTagsHelper    Application (/Users/[redacted]/Library/Application Support/Indev/MailTagsHelper.app)
        TextExpander    ApplicationHidden (/Applications/TextExpander.app)
        SpiderOak    Application (/Applications/SpiderOak.app)
        HazelHelper    Application (/Library/PreferencePanes/Hazel.prefPane/Contents/MacOS/HazelHelper.app)
        Feeds    Application (/Applications/Downloaded Software/Feeds.app)
        DEVONthink Sorter    Application (/Applications/DEVONthink Pro Office 2/DEVONthink Pro.app/Contents/PlugIns/SorterPlugin.bundle/Contents/MacOS/DEVONthink Sorter.app)
        RescueTime    ApplicationHidden (/Applications/RescueTime.app)
        EvernoteHelper    Application (/Applications/Evernote.app/Contents/Library/LoginItems/EvernoteHelper.app)
        Printer Pro Desktop    Application (/Applications/Printer Pro Desktop.app)
        AOUMonitor    Application (/Applications/ScanSnap Online Update.localized/AutoOnlineUpdater.app/Contents/MacOS/AOUMonitor.app)
    Internet Plug-ins: ℹ️
        Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
        LogMeInSafari32: Version: 1.0.530 [Support]
        PrintDialogExt: Version: 6.1 [Support]
        googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
        QuickTime Plugin: Version: 7.7.3
        LogMeInSafari64: Version: 1.0.530 [Support]
        FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
        GarminGpsControl: Version: 4.0.3.0 Release - SDK 10.6 [Support]
        AmazonMP3DownloaderPlugin: Version: AmazonMP3DownloaderPlugin 1.0.16 [Support]
        Silverlight: Version: 4.1.10329.0 [Support]
        LogMeIn: Version: 1.0.530 [Support]
        Google Earth Web Plug-in: Version: 5.2 [Support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.4.0.11 [Support]
        o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Support]
        NPDjVu: Version: Unknown [Support]
        SharePointBrowserPlugin: Version: 14.4.7 - SDK 10.6 [Support]
        JavaAppletPlugin: Version: Java 7 Update 71 Check version
        OfficeLiveBrowserPlugin: Version: 12.3.6 [Support]
    User internet Plug-ins: ℹ️
        fbplugin_1_0_3: Version: Unknown [Support]
        WebEx64: Version: 1.0 - SDK 10.6 [Support]
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 [Support]
        fbplugin_1_0_1: Version: Unknown [Support]
        Picasa: Version: 1.0 [Support]
    Safari Extensions: ℹ️
        Clip to DEVONthink [Installed]
    Audio Plug-ins: ℹ️
        EcammAudioLoader: Version: 1.0.3 - SDK 10.8 [Support]
        CallRecorder: Version: v2.5.12 - SDK 10.8 [Support]
    3rd Party Preference Panes: ℹ️
        Default Folder X  [Support]
        Flash Player  [Support]
        Flip4Mac WMV  [Support]
        GPGPreferences  [Support]
        Hazel  [Support]
        Java  [Support]
        Logitech Preference Manager  [Support]
        OpenBasePreferences  [Support]
        Printopia  [Support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Volumes being backed up:
            Macintosh HD: Disk size: 999.35 GB Disk used: 623.85 GB
        Destinations:
            Data [Network]
            Total size: 3.00 TB
            Total number of backups: 168
            Oldest backup: 2011-11-21 20:40:45 +0000
            Last backup: 2014-12-29 09:10:52 +0000
            Size of backup disk: Excellent
                Backup size 3.00 TB > (Disk size 999.35 GB X 3)
    Top Processes by CPU: ℹ️
            40%    Finder
            15%    WindowServer
            10%    firefox
             6%    plugin-container
             3%    com.apple.preferences.users.remoteservice
    Top Processes by Memory: ℹ️
        567 MB    firefox
        515 MB    Finder
        395 MB    SpamSieve
        361 MB    WindowServer
        223 MB    plugin-container
    Virtual Memory Information: ℹ️
        8.53 GB    Free RAM
        5.02 GB    Active RAM
        1.48 GB    Inactive RAM
        1.89 GB    Wired RAM
        84.63 GB    Page-ins
        519 MB    Page-outs
    Diagnostics Information: ℹ️
        Dec 29, 2014, 02:51:22 PM    /Library/Logs/DiagnosticReports/plugin-container_2014-12-29-145122_[redacted].c rash
        Dec 29, 2014, 02:50:50 PM    /Library/Logs/DiagnosticReports/WindowServer_2014-12-29-145050_[redacted].crash
        Dec 28, 2014, 01:30:06 AM    /Library/Logs/DiagnosticReports/running job_2014-12-28-013006_[redacted].crash
        Dec 27, 2014, 07:14:00 PM    /Library/Logs/DiagnosticReports/WindowServer_2014-12-27-191400_[redacted].crash
        Dec 27, 2014, 04:48:52 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RescueTime_2014-12-27-164852_[ redacted].crash
        Dec 27, 2014, 01:30:03 AM    /Library/Logs/DiagnosticReports/running job_2014-12-27-013003_[redacted].crash

    I will have to try the Guest login later when I am not using my computer since it takes a while for it to crash.
    It appears that WindowServer and/or plugin-container (Firefox) are culprits at some level.  Every time I crash, I get a WindowServer and plugin-container crash report showing up in Console.  Here is the latest:
    Process:          
    plugin-container [7779]
    Path:             
    /Applications/Firefox.app/Contents/MacOS/plugin-container.app/Contents/MacOS/plu gin-container
    Identifier:       
    plugin-container
    Version:          
    1.0
    Code Type:        
    X86-64 (Native)
    Parent Process:   
    ??? [279]
    Responsible:      
    plugin-container [7779]
    User ID:          
    501
    Date/Time:        
    2014-12-31 13:50:10.441 -0600
    OS Version:       
    Mac OS X 10.10.1 (14B25)
    Report Version:   
    11
    Anonymous UUID:   
    FCF11106-90B0-C884-02DC-76DAD93EDD95
    Time Awake Since Boot: 12000 seconds
    Crashed Thread:   
    3  Chrome_ChildThread
    Exception Type:   
    EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:  
    KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
    __TEXT            
    0000000100000000-0000000100001000 [
    4K] r-x/rwx SM=COW  /Applications/Firefox.app/Contents/MacOS/plugin-container.app/Contents/MacOS/pl ugin-container
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   libnss3.dylib           
    0x000000010022dd37 PR_WaitCondVar + 103
    2   XUL                     
    0x00000001005cd97d 0x10030a000 + 2898301
    3   XUL                     
    0x00000001005cdefc 0x10030a000 + 2899708
    4   XUL                     
    0x00000001005cdcc5 0x10030a000 + 2899141
    5   XUL                     
    0x0000000100755387 0x10030a000 + 4502407
    6   XUL                     
    0x000000010130c0b4 0x10030a000 + 16785588
    7   XUL                     
    0x0000000101304c3a 0x10030a000 + 16755770
    8   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be76bda 0x10ba56000 + 4328410
    9   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be78edf 0x10ba56000 + 4337375
    10  com.macromedia.FlashPlayer-10.6.plugin    0x000000010baf29f3 0x10ba56000 + 641523
    11  com.macromedia.FlashPlayer-10.6.plugin    0x000000010baf0bc7 0x10ba56000 + 633799
    12  ???                     
    0x00000001113ce231 0 + 4584170033
    13  com.macromedia.FlashPlayer-10.6.plugin    0x000000010c0998ae 0x10ba56000 + 6568110
    14  com.macromedia.FlashPlayer-10.6.plugin    0x000000010c00eb29 0x10ba56000 + 5999401
    15  ???                     
    0x000000011132412b 0 + 4583473451
    16  ???                     
    0x0000000125d54b72 0 + 4929702770
    17  ???                     
    0x0000000125d492d1 0 + 4929655505
    18  ???                     
    0x0000000124d684fb 0 + 4913005819
    19  ???                     
    0x0000000125d4fab4 0 + 4929682100
    20  ???                     
    0x0000000125d501c7 0 + 4929683911
    21  ???                     
    0x0000000125d497d5 0 + 4929656789
    22  ???                     
    0x0000000124d686fb 0 + 4913006331
    23  ???                     
    0x000000012176ba5b 0 + 4856396379
    24  com.macromedia.FlashPlayer-10.6.plugin    0x000000010bae66f1 0x10ba56000 + 591601
    25  com.macromedia.FlashPlayer-10.6.plugin    0x000000010bae863e 0x10ba56000 + 599614
    26  com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc02b4c 0x10ba56000 + 1755980
    27  ???                     
    0x00000001113ca7f7 0 + 4584155127
    28  ???                     
    0x00000001113ca353 0 + 4584153939
    29  com.macromedia.FlashPlayer-10.6.plugin    0x000000010bde277c 0x10ba56000 + 3721084
    30  com.macromedia.FlashPlayer-10.6.plugin    0x000000010bb36d55 0x10ba56000 + 920917
    31  com.macromedia.FlashPlayer-10.6.plugin    0x000000010bb27eca 0x10ba56000 + 859850
    32  com.macromedia.FlashPlayer-10.6.plugin    0x000000010bb3756d 0x10ba56000 + 922989
    33  com.macromedia.FlashPlayer-10.6.plugin    0x000000010bd8b524 0x10ba56000 + 3364132
    34  com.macromedia.FlashPlayer-10.6.plugin    0x000000010bd8c4dd 0x10ba56000 + 3368157
    35  com.macromedia.FlashPlayer-10.6.plugin    0x000000010be77f61 0x10ba56000 + 4333409
    36  com.apple.CoreFoundation
    0x00007fff901c2661 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    37  com.apple.CoreFoundation
    0x00007fff901b47ed __CFRunLoopDoSources0 + 269
    38  com.apple.CoreFoundation
    0x00007fff901b3e1f __CFRunLoopRun + 927
    39  com.apple.CoreFoundation
    0x00007fff901b3838 CFRunLoopRunSpecific + 296
    40  com.apple.HIToolbox     
    0x00007fff87b7843f RunCurrentEventLoopInMode + 235
    41  com.apple.HIToolbox     
    0x00007fff87b781ba ReceiveNextEventCommon + 431
    42  com.apple.HIToolbox     
    0x00007fff87b77ffb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    43  com.apple.AppKit        
    0x00007fff8f0166d1 _DPSNextEvent + 964
    44  com.apple.AppKit        
    0x00007fff8f015e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    45  com.apple.AppKit        
    0x00007fff8f009e23 -[NSApplication run] + 594
    46  XUL                     
    0x00000001005c025f 0x10030a000 + 2843231
    47  XUL                     
    0x00000001005bfd46 0x10030a000 + 2841926
    48  XUL                     
    0x00000001005b728d 0x10030a000 + 2806413
    49  XUL                     
    0x0000000101e65884 XRE_InitChildProcess + 1412
    50  org.mozilla.plugincontainer 
    0x0000000100000f18 0x100000000 + 3864
    51  org.mozilla.plugincontainer 
    0x0000000100000ee4 start + 52
    Thread 1:
    0   libsystem_kernel.dylib  
    0x00007fff909f452e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff909f369f mach_msg + 55
    2   XUL                     
    0x0000000101e7ba11 0x10030a000 + 28776977
    3   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    4   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    5   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x00007fff909fa22e kevent64 + 10
    1   libdispatch.dylib       
    0x00007fff84731a6a _dispatch_mgr_thread + 52
    Thread 3 Crashed:: Chrome_ChildThread
    0   libmozalloc.dylib       
    0x000000010002887f mozalloc_abort(char const*) + 31
    1   XUL                     
    0x0000000100338496 0x10030a000 + 189590
    2   XUL                     
    0x000000010033825a NS_DebugBreak + 1226
    3   XUL                     
    0x00000001005cfa03 0x10030a000 + 2906627
    4   XUL                     
    0x00000001005d16fd 0x10030a000 + 2914045
    5   XUL                     
    0x00000001005ae2a7 0x10030a000 + 2769575
    6   XUL                     
    0x00000001005a553c 0x10030a000 + 2733372
    7   XUL                     
    0x00000001005aa165 0x10030a000 + 2752869
    8   XUL                     
    0x00000001005b728d 0x10030a000 + 2806413
    9   XUL                     
    0x00000001005bbefd 0x10030a000 + 2825981
    10  XUL                     
    0x00000001005aa3b7 0x10030a000 + 2753463
    11  libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    12  libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    13  libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib  
    0x00007fff909f452e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff909f369f mach_msg + 55
    2   com.apple.CoreFoundation
    0x00007fff901b4b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation
    0x00007fff901b3fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation
    0x00007fff901b3838 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit        
    0x00007fff8f1797a7 _NSEventThread + 137
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 5:: BackgroundThread
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b58b 0x10ba56000 + 3954059
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010ba664ce 0x10ba56000 + 66766
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 6:: BackgroundThread
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b58b 0x10ba56000 + 3954059
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010ba664ce 0x10ba56000 + 66766
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 7:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 8:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 9:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 10:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 11:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 12:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 13:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 14:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda10b4 0x10ba56000 + 3453108
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b58b 0x10ba56000 + 3954059
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bb08780 0x10ba56000 + 731008
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 16:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 17:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 18:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 19:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 20:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 21:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 22:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 23:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 24:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 25:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 26:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 27:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 28:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 29:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 30:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 31:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 32:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 33:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 34:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 35:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 36:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 37:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 38:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 39:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 40:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 41:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 42:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 43:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 44:: ScriptTimeout
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bc47896 0x10ba56000 + 2037910
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 
    0x00007fff8fb354b1 thread_start + 13
    Thread 45:: CoreLoop
    0   libsystem_kernel.dylib  
    0x00007fff909f9132 __psynch_cvwait + 10
    1   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b5fe 0x10ba56000 + 3954174
    2   com.macromedia.FlashPlayer-10.6.plugin    0x000000010bda114f 0x10ba56000 + 3453263
    3   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b39d 0x10ba56000 + 3953565
    4   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b3e2 0x10ba56000 + 3953634
    5   com.macromedia.FlashPlayer-10.6.plugin    0x000000010be1b127 0x10ba56000 + 3952935
    6   libsystem_pthread.dylib 
    0x00007fff8fb372fc _pthread_body + 131
    7   libsystem_pthread.dylib 
    0x00007fff8fb37279 _pthread_start + 176
    8   libsystem_pthread.dylib 

  • Certificate not Trusted Exception

    Hi,
    I am trying to invoke Axis soap call from webshpere (my requirement is to trust all certificates), but getting certificate not trusted exception. Appreciate any suggestions for fixing this issue.
    Code:
    public String transport(String strMessage, String strParticipantUrl, String methodName, String keyStorePwd) throws RouterException {
         String result = null;
         boolean isErrorOccured = false;
         String errorMessage = null;
         LOGGER.info("Calling Carrier Web Service.......");
         LOGGER.info("Web Service URL is :" + strParticipantUrl);
         LOGGER.info("Web Service Method Name is :" + methodName);
         ServiceFactory serviceFactory = new ServiceFactory();
         Service service = null;
         try {
              service = (Service) serviceFactory.createService(new QName(
              FundTransferConstants.QNAME_SERVICE));
              } catch (ServiceException e) {
              isErrorOccured = true;
         Integer connectionTimeOut = FundTransferContext.getInstance()
         .getConnectionTimeOut();
         org.apache.axis.client.Call call = null;
         if (null != service) {
              try {
                   LOGGER.info("setting ssl status to debug");
                   System.setProperty("javax.ssl.debug", "all");
                   String proxyHost = FundTransferUtil.getProperty("PROXY.HOST");
                   String proxyPort = FundTransferUtil.getProperty("PROXY.PORT");
                   String username = FundTransferUtil.getProperty("PROXY.USER");
                   String password = FundTransferUtil
                   .getProperty("PROXY.PASSWORD");
                   if (proxyHost != null && !"".equals(proxyHost)) {
                   System.setProperty("proxySet", "true");
                   System.setProperty("http.proxyHost", proxyHost);
                   if (proxyPort != null && !"".equals(proxyHost)) {
                        System.setProperty("http.proxyPort", proxyPort);
                   if (username != null && !"".equals(username)) {
                        System.setProperty("http.proxyUser", username);
                   if (password != null && !"".equals(password)) {
                        System.setProperty("http.proxyPassword", password);
                   String keyStoreLocation = FundTransferUtil
                   .getProperty("KEYSTORE_LOCATION");
                   String keystore = keyStoreLocation + "/"
                   + FundTransferConstants.KEYSTORE_FILE_NAME;
                   String storetype = FundTransferConstants.KEYSTORE_FILE_TYPE;
                   String][ props = {
                   { FundTransferConstants.TRUST_STORE, keystore, },
                   { FundTransferConstants.KEY_STORE, keystore, },
                   { FundTransferConstants.KEY_STORE_PWD, keyStorePwd, },
                   { FundTransferConstants.KEY_STORE_TYPE, storetype, },
                   { FundTransferConstants.TRUST_STORE_PWD, keyStorePwd, }, };
                   // Commented loading the keystore to test outbound calls
                   /*for (int index = 0; index < props.length; index++)
                   System.getProperties().setProperty(propsindex[0],
                   propsindex[1]);*/
                   // Commented all trusting trust manager
                   /*LOGGER.info("Creating TrustManager...");
                   TrustManager] trustAllCerts = new TrustManager[ { new X509TrustManager() {
                   public java.security.cert.X509Certificate[] getAcceptedIssuers() {
                   LOGGER.info("Acception all issuers");
                   return null;
                   public void checkClientTrusted(
                   java.security.cert.X509Certificate[] certs,
                   String authType) {
                   LOGGER.info("checkClientTrusted method");
                   public void checkServerTrusted(
                   java.security.cert.X509Certificate[] certs,
                   String authType) {
                   LOGGER.info("checkServerTrusted method");
                   // Install the all-trusting trust manager
                   try {
                        LOGGER.info("Creating SSLContext...");
                        SSLContext sc = SSLContext.getInstance("SSL");
                        LOGGER.info("Created SSLContext..." + sc);
                        sc.init(null, trustAllCerts,
                        new java.security.SecureRandom());
                        LOGGER.info("Created SSLContext initiated...");
                        LOGGER.info("sslDefaultSocketFactory......"
                        + sc.getSocketFactory());
                        HttpsURLConnection.setDefaultSSLSocketFactory(sc
                        .getSocketFactory());
                        LOGGER.info("sslDefaultSocketFactory......"
                        + sc.getSocketFactory());
                   } catch (Exception e) {
                   LOGGER.error("Exception is occuring...");
                   LOGGER.error(e.getMessage());
              call = (Call) service.createCall();
         } catch (ServiceException ex) {
         LOGGER.error(ex.getMessage());
              errorMessage = ex.getMessage();
              isErrorOccured = true;
         if (null != call) {
              LOGGER.info("Web Service TimeOut setting :"
              + connectionTimeOut.intValue());
              LOGGER.info("Setting axis propeties to use IBMFakeTrustSocketFactory");
              // This will allow web service requests using the HTTPS protocol without having a valid SSL certificate installed and configured.
              AxisProperties.setProperty("axis.socketSecureFactory","org.apache.axis.components.net.IBMFakeTrustSocketFactory");
              call.setTimeout(connectionTimeOut);
              call.setTargetEndpointAddress(strParticipantUrl);
              call.setProperty(Call.SOAPACTION_USE_PROPERTY,
              new Boolean(true));
              call.setProperty(Call.SOAPACTION_URI_PROPERTY,
              FundTransferConstants.EMPTY_STRING);
              QName qnameTypeStr = new QName(FundTransferConstants.NS_XSD,
              FundTransferConstants.QNAME_TYPE);
              QName header = new QName(FundTransferConstants.NS_XSD,
              FundTransferConstants.QNAME_TYPE);
              call.setReturnType(qnameTypeStr);
              call
              .setOperationStyle(FundTransferConstants.WEB_SERVICE_OPERATION_RPC_STYLE);
              call
              .setOperationName(new QName(
              FundTransferConstants.BODY_NAMESPACE_VALUE,
              methodName));
              call.addParameter("String_1", qnameTypeStr, ParameterMode.IN);
              String[] params = { strMessage };
              if (FundTransferConstants.CARRIER_RESEND_METHOD
              .equalsIgnoreCase(methodName)) {
                   try {
                        call.invoke(params);
                   } catch (Exception ex) {
                        errorMessage = ex.getMessage();
                        isErrorOccured = true;
                        LOGGER.info(ex.getMessage());
              } else {
              int counter = 0;
              while (counter < 3) {
              counter++;
              try {
                   // Here making the call which is failing
                   result = (String) call.invoke(params);
                   counter = 4;
              } catch (AxisFault axisFault) {
                   axisFault.printStackTrace();
                   errorMessage = axisFault.getMessage();
                   isErrorOccured = true;
                   LOGGER.error(axisFault.getMessage());
              } catch (Exception ex) {
                   ex.printStackTrace();
                   errorMessage = ex.getMessage();
                   isErrorOccured = true;
    if (isErrorOccured) {
    throw new RouterException(errorMessage);
    return result;
    System Error:
    12/7/07 13:43:41:639 EST 000000bb SystemErr R AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Certificate not Trusted
    faultActor:
    faultNode:
    faultDetail:
    {http://xml.apache.org/axis/}stackTrace: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Certificate not Trusted
    at com.ibm.jsse2.bx.a(bx.java(Compiled Code))
    at com.ibm.jsse2.by.a(by.java(Compiled Code))
    at com.ibm.jsse2.by.a(by.java:473)
    at com.ibm.jsse2.w.a(w.java(Compiled Code))
    at com.ibm.jsse2.w.a(w.java(Compiled Code))
    at com.ibm.jsse2.v.a(v.java(Compiled Code))
    at com.ibm.jsse2.by.a(by.java(Compiled Code))
    at com.ibm.jsse2.by.l(by.java(Compiled Code))
    at com.ibm.jsse2.by.startHandshake(by.java(Compiled Code))
    at org.apache.axis.components.net.JSSESocketFactory.create(JSSESocketFactory.java:224)
    at org.apache.axis.transport.http.HTTPSender.getSocket(HTTPSender.java:157)
    at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:114)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:180)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2564)
    at org.apache.axis.client.Call.invoke(Call.java:2553)
    at org.apache.axis.client.Call.invoke(Call.java:2248)
    at org.apache.axis.client.Call.invoke(Call.java:2171)
    at org.apache.axis.client.Call.invoke(Call.java:1691)
    at com.dtcc.insurance.fundtransfer.transport.TransportHandler.transport(TransportHandler.java:245)
    at com.dtcc.insurance.fundtransfer.router.MessageRouter.transport(MessageRouter.java:112)
    at com.dtcc.insurance.fundtransfer.controller.MessageController.processMessage(MessageController.java:155)
    at com.dtcc.insurance.fundtransfer.service.FundTransferServiceImpl.fundTransferRequest(FundTransferServiceImpl.java:88)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java(Compiled Code))
    at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
    at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:402)
    at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:309)
    at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:333)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
    at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:481)
    at org.apache.axis.server.AxisServer.invoke(AxisServer.java:323)
    at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:854)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:339)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1572)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:762)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3174)
    at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:253)
    at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:229)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1970)
    at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:114)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:472)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:411)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:288)
    at com.ibm.ws.ssl.channel.impl.SSLConnectionLink.determineNextChannel(SSLConnectionLink.java:950)
    at com.ibm.ws.ssl.channel.impl.SSLConnectionLink$MyReadCompletedCallback.complete(SSLConnectionLink.java:582)
    at com.ibm.ws.ssl.channel.impl.SSLReadServiceContext$SSLReadCompletedCallback.complete(SSLReadServiceContext.java:1704)
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java(Compiled Code))
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled Code))
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java(Compiled Code))
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java(Compiled Code))
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    Caused by: java.security.cert.CertificateException: Certificate not Trusted
    at com.ibm.jsse.bi.a(Unknown Source)
    at com.ibm.jsse.bi.checkServerTrusted(Unknown Source)
    at com.ibm.jsse2.ba.checkServerTrusted(ba.java:16)
    ... 57 more
    12/7/07 13:43:41:640 EST 000000bb SystemErr R AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Certificate not Trusted
    faultActor:
    faultNode:
    faultDetail:
    {http://xml.apache.org/axis/}stackTrace: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Certificate not Trusted
    at com.ibm.jsse2.bx.a(bx.java(Compiled Code))
    at com.ibm.jsse2.by.a(by.java(Compiled Code))
    at com.ibm.jsse2.by.a(by.java:473)
    at com.ibm.jsse2.w.a(w.java(Compiled Code))
    at com.ibm.jsse2.w.a(w.java(Compiled Code))
    at com.ibm.jsse2.v.a(v.java(Compiled Code))
    at com.ibm.jsse2.by.a(by.java(Compiled Code))
    at com.ibm.jsse2.by.l(by.java(Compiled Code))
    at com.ibm.jsse2.by.startHandshake(by.java(Compiled Code))
    at org.apache.axis.components.net.JSSESocketFactory.create(JSSESocketFactory.java:224)
    at org.apache.axis.transport.http.HTTPSender.getSocket(HTTPSender.java:157)
    at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:114)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:180)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2564)
    at org.apache.axis.client.Call.invoke(Call.java:2553)
    at org.apache.axis.client.Call.invoke(Call.java:2248)
    at org.apache.axis.client.Call.invoke(Call.java:2171)
    at org.apache.axis.client.Call.invoke(Call.java:1691)
    at com.dtcc.insurance.fundtransfer.transport.TransportHandler.transport(TransportHandler.java:245)
    at com.dtcc.insurance.fundtransfer.router.MessageRouter.transport(MessageRouter.java:112)
    at com.dtcc.insurance.fundtransfer.controller.MessageController.processMessage(MessageController.java:155)
    at com.dtcc.insurance.fundtransfer.service.FundTransferServiceImpl.fundTransferRequest(FundTransferServiceImpl.java:88)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java(Compiled Code))
    at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
    at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:402)
    at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:309)
    at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:333)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
    at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:481)
    at org.apache.axis.server.AxisServer.invoke(AxisServer.java:323)
    at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:854)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:339)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1572)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:762)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3174)
    at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:253)
    at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:229)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1970)
    at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:114)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:472)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:411)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:288)
    at com.ibm.ws.ssl.channel.impl.SSLConnectionLink.determineNextChannel(SSLConnectionLink.java:950)
    at com.ibm.ws.ssl.channel.impl.SSLConnectionLink$MyReadCompletedCallback.complete(SSLConnectionLink.java:582)
    at com.ibm.ws.ssl.channel.impl.SSLReadServiceContext$SSLReadCompletedCallback.complete(SSLReadServiceContext.java:1704)
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java(Compiled Code))
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled Code))
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java(Compiled Code))
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java(Compiled Code))
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    Caused by: java.security.cert.CertificateException: Certificate not Trusted
    at com.ibm.jsse.bi.a(Unknown Source)
    at com.ibm.jsse.bi.checkServerTrusted(Unknown Source)
    at com.ibm.jsse2.ba.checkServerTrusted(ba.java:16)
    ... 57 more
    javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Certificate not Trusted
    at org.apache.axis.AxisFault.makeFault(AxisFault.java:129)
    at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:131)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:180)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2564)
    at org.apache.axis.client.Call.invoke(Call.java:2553)
    at org.apache.axis.client.Call.invoke(Call.java:2248)
    at org.apache.axis.client.Call.invoke(Call.java:2171)
    at org.apache.axis.client.Call.invoke(Call.java:1691)
    at com.dtcc.insurance.fundtransfer.transport.TransportHandler.transport(TransportHandler.java:245)
    at com.dtcc.insurance.fundtransfer.router.MessageRouter.transport(MessageRouter.java:112)
    at com.dtcc.insurance.fundtransfer.controller.MessageController.processMessage(MessageController.java:155)
    at com.dtcc.insurance.fundtransfer.service.FundTransferServiceImpl.fundTransferRequest(FundTransferServiceImpl.java:88)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java(Compiled Code))
    at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
    at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:402)
    at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:309)
    at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:333)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
    at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:481)
    at org.apache.axis.server.AxisServer.invoke(AxisServer.java:323)
    at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:854)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:339)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1572)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:762)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3174)
    at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:253)
    at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:229)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1970)
    at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:114)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:472)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:411)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:288)
    at com.ibm.ws.ssl.channel.impl.SSLConnectionLink.determineNextChannel(SSLConnectionLink.java:950)
    at com.ibm.ws.ssl.channel.impl.SSLConnectionLink$MyReadCompletedCallback.complete(SSLConnectionLink.java:582)
    at com.ibm.ws.ssl.channel.impl.SSLReadServiceContext$SSLReadCompletedCallback.complete(SSLReadServiceContext.java:1704)
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java(Compiled Code))
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled Code))
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java(Compiled Code))
    at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java(Compiled Code))
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    Caused by: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Certificate not Trusted
    at com.ibm.jsse2.bx.a(bx.java(Compiled Code))
    at com.ibm.jsse2.by.a(by.java(Compiled Code))
    at com.ibm.jsse2.by.a(by.java:473)
    at com.ibm.jsse2.w.a(w.java(Compiled Code))
    at com.ibm.jsse2.w.a(w.java(Compiled Code))
    at com.ibm.jsse2.v.a(v.java(Compiled Code))
    at com.ibm.jsse2.by.a(by.java(Compiled Code))
    at com.ibm.jsse2.by.l(by.java(Compiled Code))
    at com.ibm.jsse2.by.startHandshake(by.java(Compiled Code))
    at org.apache.axis.components.net.JSSESocketFactory.create(JSSESocketFactory.java:224)
    at org.apache.axis.transport.http.HTTPSender.getSocket(HTTPSender.java:157)
    at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:114)
    ... 48 more
    Caused by: java.security.cert.CertificateException: Certificate not Trusted
    at com.ibm.jsse.bi.a(Unknown Source)
    at com.ibm.jsse.bi.checkServerTrusted(Unknown Source)
    at com.ibm.jsse2.ba.checkServerTrusted(ba.java:16)
    ... 57 more

    I found the fix from Oracle Support Knowlededge Base
    sslTool serverInfo --url https://HOST:9043 --certFile newcert.cer
    PStoreTool located in REGISTRY_HOME/bin/PStoreTool add -config
    WEBLOGIC_HOME/user_projects/domains/[osr_domain_name]/servers/[osr_server_name]/tmp/_WL_user/registry/[unique id]/public/conf/pstore.xml -certFile newcert.cer
    I was updating wrong file with the certificate. It had to be pstore.xml. This solved my issue.
    Thanks & Regards,
    Parshant

Maybe you are looking for

  • Deserialization error

    Hello all, I have a deserialization problem with a dynamic web service client.The return type that the service returns is a vector object.I am able to see from the soap (using tcpmon) that the service returns the values that i want to be returned by

  • Mrp control parametrs

    Hi, Pls advise what are control parameters need to maintain in mdbt variant for running mrp immeadietly after golive. pls note cutover data is uploaded and using strategy 20. pls advise.

  • Photoshop 12- Will not open- states Catalog is corrupt

    Here is the error message  Once opened, here is the screen I get next  (all of the additional Catalog expect for My Catalog 1, are attempts to create a new catalog in order to get this opened) I have tried repairing, optimizing, converting and creati

  • Color profiles on export

    I've searched these forums and google for a few hours without finding a concrete answer for this problem. The problem is that, no matter what I do, every jpg I export from iphoto 08 seems to have the Adobe RGB color profile. This is contrary to what

  • Problem to connect node manager

    Hi, When i am trying to connect node manager using below command i am getting error wls:/offline> nmConnect('system','weblogic','localhost',5557,'punedomain') Connecting to Node Manager ... Traceback (innermost last): File "<console>", line 1, in ? F