Hosts not set in QueueConnectionFactory

Hello all,
I am trying to access a queue with QueueConnectionFactory. When I am doing the factory.createConnection(), I am getting the Exception Stack as :
javax.jms.JMSException: The following hosts (hostname:port) cannot be accessed: . Check host names and ports.
     at com.sap.jms.client.connection.ConnectionFactory.getSocket(ConnectionFactory.java:447)
     at com.sap.jms.client.connection.ConnectionFactory.createConnection(ConnectionFactory.java:300)
     at com.sap.jms.client.connection.ConnectionFactory.createConnection(ConnectionFactory.java:244)
     at com.sap.jms.client.connection.ConnectionFactory.createConnection(ConnectionFactory.java:212)
     at com.fwk.jms.MessageBroker.init(MessageBroker.java:128)
     at com.fwk.jms.MessageBroker.<init>(MessageBroker.java:82)
     at com.fwk.jms.MessageBroker.<init>(MessageBroker.java:76)
     at com.fwk.jms.test.FwkTest.main(FwkTest.java:25)
When I debug the application using SAP NetWeaver, I find that the size of LinkedList for Hosts and ports in QueueConnectionFactory is 0 (zero)(i.e. there are no elements in them).
Why is this happening ? How to set the host names and ports manually?
The settings of the environment go like this:
INITIAL_CONTEXT_FACTORY=com.sap.engine.services.jndi.InitialContextFactoryImpl
PROVIDER_URL=localhost:50004
CONNECTION_FACTORY=jmsfactory/default/QueueConnectionFactory
INPUT_QUEUE=jmsqueues/default/IN
Please note that the look up is happening perfectly. The casting from com.sap.jms.client.connection.QueueConnectionFactory to the javax.jms.ConnectionFactory is also happening fine.
Any ideas ?
Thanks,
Pawan

In com.sap.jms.client.connection.QueueConnectionFactory you can find the method addDispatcher(String, int) to add the dispatcher, before creating the connection.
But where can I find more about this method and required parameter values? And where can I find the complete javadoc API from the Netweaver application server? I didn't find it in the installation directory, nor in the help from the IDE.
Does someone has a pointer to an example dispatcher? And any reference why this deviates from standard J2EE?

Similar Messages

  • Error:Provide Host List - SSH User equivalence is not set up on the remote

    Hello,
    I've been receiving an error from OEM 10g GC when I attempt to execute a fresh install of the Agent:
    "1. Provide Host List - SSH User equivalence is not set up on the remote nodes."
    I'm using OEM Grid Control version 10.1.0.4 on a Solaris 10 platform. The agent will be installed on many 8i (post-8.1.7.4), 9i, and 10g clients.
    I've tried most, if not all, of the standard fixes that I've found online (such as Metalink note 376355.1).
    Has anybody had difficulties with this error, and what other fixes could I try besides the one in note 376355.1? Could this be an OS configuration issue, or something else?
    Thanks.

    How are you pushing the agent from 10104. This feature is not there in 10104
    this is supported from 10201
    http://www.oracle.com/technology/products/oem/pdf/10gr2_agent_deploy_bp.pdf

  • VM Creation - host name not set

    Hi,
    I'm creating vm using createVmTemplate api where i assign the hostname in NICConfig
    But i see that the given hostname is not set in the vm.
    Default hosname - "localhost.localdomain" is seen in the vm.
    how to resolve this

    Sure is, but it will involve some commandline work. First, you're going to need to install the SDK. You only need the Novacom part of the SDK, but AFAIK there's no seperate download for Windows... you have to get the whole thing. The SDK is available here: https://developer.palm.com/content/resources/devel​op/sdk_pdk_download.html
    Next, you're going to need to enable Developer mode on your TouchPad, here's how to do that:
    Start a Just Type search and enter webos20090606
    A Developer Mode icon will display, tap it
    Tap the toggle switch to turn it On
    Leave the password blank and tap Sumbit
    Close the Developer Mode app
    Now, connect your TouchPad to your computer. Next, you're going to find a file called Novaterm.bat. It's buried in the install directory of the SDK. I don't remember the exact path (I don't use Windows anymore) but it's something like C:\Program Files\Palm SDK\Current\bin (keep digging around for bin folders in the C:\Program Files\Palm SDK path and you'll find it eventually). Doubleclick that to start a nice little terminal app. Choose your TouchPad from the drop down list and click connect.
    Now, time for some command line stuff. Run the following commands in the terminal:
    mount -o remount,rw /
    cd /etc/dhcp
    vi dhclient.conf
    Press the I key on your keyboard to go into edit mode (this is a Vi specific thing)
    Remove the # at the beginning of line 14 and change the andare.fugue.com inside the quotes to whatever you want your TouchPad reporting as. For example: #send host-name "andare.fugue.com"; would become send host-name "RidiusTouchPad";
    To save your changes, hit the ESC key (to exit edit mode), then type :wq and hit enter. Note there is a colon in there. Again, this is Vi specific stuff.
    sync
    mount -o remount,ro /
    Once you've done this, disable and re-enable your Wi-Fi and your TouchPad should be reporting a hostname. Kind of a lot of work if you ask me (unless you already have the SDK installed).

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

  • 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 

  • CUCM 8.6 Corporate/Personal Directory "Host Not Found"

    Hi all,
    Could anyone help me with the following issue?
    Users with 7961 phones receive a “Host not found” message after pressing the Corporate or Personal Directory menu item.   For 7940, 7960 and 7962 it works fine.
    Configuration: CUCM version 8.6.2.21900-5, 9 Nodes (1 Pub, 6 Subs, 2 TFTP). Firmware SCCP41.9-2-3S.
    We tried the following to resolve the issue:
    •-          we’ve deleted the ITL file
    •-          performed a Factory reset
    •-          changed the “Services Provisioning  ” from Internal to External/Both
    •-          we changed the “Secured Directory URL” in Enterprise parameters from https to http
    None of those helped us. According the phone logs the issue appears when phone tries to set up a secure connection with the subscribers. We receive the following error message:
    1521: NOT 15:21:29.728225 SECD: clpSetupSsl: Trying to connect to IPV4, IP: 10.128.127.10, Port : 2445
    1522: NOT 15:21:29.735200 SECD: clpSetupSsl: TCP connect() waiting, <10.128.127.10> c:14 s:15 port: 2445
    1523: NOT 15:21:29.736812 SECD: clpSetupSsl: TCP connected, <10.128.127.10> c:14 s:15
    1524: WRN 15:21:29.739053 SECD: WARN:clpSetupSsl: failed to set TOS (96) on srvr sock, <10.128.127.10> c:14 s:15, errno 131
    1525: NOT 15:21:29.740695 SECD: clpSetupSsl: start SSL/TLS handshake, <10.128.127.10> c:14 s:15
    1526: ERR 15:21:29.745568 SECD: EROR:clpSetupSsl: syscall errno 32 in SSL, give up, <10.128.127.10>
    1527: ERR 15:21:29.746954 SECD: EROR:clpSetupSsl: SSL/TLS handshake failed, <10.128.127.10> c:14 s:15
    1528: ERR 15:21:29.748314 SECD: EROR:clpSetupSsl: SSL/TLS setup failed, <10.128.127.10> c:14 s:15
    1529: ERR 15:21:29.749614 SECD: EROR:clpSndStatus: SSL CLNT ERR, srvr<10.128.127.10>
    1530: ERR 15:21:29.763938 SECD: EROR:secErr_errStr: *** bad err table ***
    1531: ERR 15:21:29.765667 SECD: EROR:secErr_errStr: ** SEC-ERR: code:2(N/A) subcode:32(Broken pipe)
    1532: ERR 15:21:29.766974 SECD: EROR:clpSndStatus: ** SEC-ERR: desc <Broken pipe>
    1533: NOT 15:21:29.768626 SECD: clpTvsInit: select returned the TVS proxy server socket, fd : 13
    1534: ERR 15:21:29.770174 SECD: EROR:secSock_isConnected: ** failed to connect to target
    1535: ERR 15:21:29.771572 SECD: EROR:secErr_errStr: *** bad err table ***
    1536: ERR 15:21:29.772917 SECD: EROR:secErr_errStr: ** SEC-ERR: code:2(N/A) subcode:32(Broken pipe)
    1537: ERR 15:21:29.774278 SECD: EROR:secSock_isConnected: ** SEC-ERR: desc <Broken pipe>
    1538: ERR 15:21:29.775800 SECD: EROR:checkTvsSrvrConn: Failed to get TVS TLS session connected - setup failed
    1539: NOT 15:21:29.777170 SECD: cleanupTvsSrvrSock: Clearing TVS proxy server socket, fd : 13
    Does anyone know what the “broken pipe” means (code:2(N/A) subcode:32(Broken pipe)
    )? I attached the logs from the phone.

    UPDATE:
    We performed the factory reset again and now we receive a different error:
    2549: NOT 16:23:08.175874 SECD: clpSetupSsl: Trying to connect to IPV4, IP: 10.128.127.10, Port : 2445
    2550: NOT 16:23:08.177366 SECD: clpSetupSsl: TCP connect() waiting, <10.128.127.10> c:14 s:15 port: 2445
    2551: NOT 16:23:08.181784 SECD: clpSetupSsl: TCP connected, <10.128.127.10> c:14 s:15
    2552: NOT 16:23:08.183024 SECD: clpSetupSsl: start SSL/TLS handshake, <10.128.127.10> c:14 s:15
    2553: ERR 16:23:08.188600 SECD: EROR:clpSetupSsl: syscall errno 131 in SSL, give up, <10.128.127.10>
    2554: ERR 16:23:08.189689 SECD: EROR:clpSetupSsl: SSL/TLS handshake failed, <10.128.127.10> c:14 s:15
    2555: ERR 16:23:08.193811 SECD: EROR:clpSetupSsl: SSL/TLS setup failed, <10.128.127.10> c:14 s:15
    2556: ERR 16:23:08.194872 SECD: EROR:clpSndStatus: SSL CLNT ERR, srvr<10.128.127.10>
    2557: ERR 16:23:08.195889 SECD: EROR:secErr_errStr:  *** bad err table ***
    2558: ERR 16:23:08.196900 SECD: EROR:secErr_errStr: ** SEC-ERR: code:2(N/A) subcode:131(Connection reset by peer)
    2559: ERR 16:23:08.197883 SECD: EROR:clpSndStatus: ** SEC-ERR: desc
    2560: NOT 16:23:08.199175 SECD: clpTvsInit: select returned the TVS proxy server socket, fd : 13
    2561: ERR 16:23:08.200449 SECD: EROR:secSock_isConnected: ** failed to connect to target
    2562: ERR 16:23:08.201551 SECD: EROR:secErr_errStr:  *** bad err table ***
    2563: ERR 16:23:08.202560 SECD: EROR:secErr_errStr: ** SEC-ERR: code:2(N/A) subcode:131(Connection reset by peer)
    2564: ERR 16:23:08.203552 SECD: EROR:secSock_isConnected: ** SEC-ERR: desc
    2565: ERR 16:23:08.204524 SECD: EROR:checkTvsSrvrConn: Failed to get TVS TLS session connected - setup failed
    Does anyone know in which cases the peer might terminate the connection?

  • JBO 29114 ADF context is not set up to process messages

    Hi,
    I have created a Rest web service and hosted it on my own IP address..
    I am trying to create a mobile application using the URL data control for the rest service created.
    I get the below error when I do so:
    *"JBO 29114 ADF context is not set to process messages for this exception.Root cause error code is DCA - 50000."*
    The jdev version I am using is 11.1.2.3 and I have created it successfully in Jdev 11.1.1.4.
    Also I have set proxy settings in my HTTP Analyzer and 'Web Browser and Proxy Settings'.
    The proxy seems to work fine and also I have tested the rest service.It seems to be ok.
    Please advice on the error msg.
    Thanks in advance,
    Malathy.

    Malathy,
    as you use a version which is not available to the public (us) I assume that you are an Oracle employee. In this case you should ask this on an internal forum.
    Timo

  • QAAWS Log in Error - Object reference not set to an instance of an object

    I get the following error when trying to log into QAAWS query designer:-
    "Object reference not set to an instance of an object"
    I'm trying to get this working on a virtual workstation, version 3.1 base install. My host is set up correctly, as the same config works on my desktop machine.
    e.g.
    http://xxxxxxxdev:8080/dswsbobje/services/Session
    I'm using Windows AD in conjunction with SAP authentication. I have installed the SAP GUI and the integration kit.
    When I click details, QAAWs credentials dialog, I do not have any language in the drop down, even though I installed English (required). I believe this could be the cause of the error.
    It should be noted that all works well with Live Office and I can authenticate and connect to BW, via a Live Office query. Designer also connects to BW successfully.
    Other people have experienced this error, but I have seen no resolution.
    Any ideas?
    Cheers,
    Mark.
    Edited by: Mr Mark on May 27, 2011 11:29 AM

    Hi David,
    Thank you for the reposnse.
    Its quite a generic error to be fair.
    Due to this:-
    *as the same config works on my desktop machine. *
    I don't believe that this is the issue.
    Also, I'm not trying to connect to a universe at this point, I'm purely trying to log in.
    Cheers,
    Mark.

  • FDM Error - object variable or with block variable not set

    Hi all,
    When i try to configure the authentication provider in the fdm load balance manager, I've got an error "object variable or with block variable not set".
    version: 11.1.2.1
    If anybody can help me to resolve this. I will be thankful to him/her
    Waiting for replies.
    Regards,
    Edited by: Antoine on Aug 9, 2011 10:33 AM

    Try the following resolution
    The error "Object Variable or With Block Variable Not Set" is caused when the FDM Service account does not have "Write" share permission to the FDMDATA folder structure, which resulted in the FDM Service account being unable to write the text file that is produced when running a SQL Integration Script. Without being able to write to the directory, the import process cannot complete successfully. Could you please verify the following and update the SR accordingly.
    1) From the FDM Login screen select "Add Application" from the drop down list
    2) Login with a valid user
    3) Highlight the application that is experiencing the issue and click "modify"
    4) Locate the "Application Path", this is the location of the FDM Application Files. Connect to the server hosting the FDMDATA folder.
    5) Right-click on the FDMDATA folder and choose "Properties"
    6) Click on the "Sharing" tab and click the "Permissions" button
    7) Click "Add" and enter the id of the FDM Service Account used for all the FDM Configs and click OK
    8) Check the "Full Control" box and click "Apply"
    9) Click OK to save the changes.

  • Event ID 1502 and 6398 : Translation Service Application is failing to execute. Object reference not set to an instance of an object.

    hi,
    We have deployed Sharepoint 2013 in hosting mode. And i followed this
    guide. And i have 1 web server, 1 app server and 1  DB server. My Application server is logging 2 critical event after every 15 min.
    Event ID: 1502, Task Category: Timer Job, Source: SharePoint Translation Services
    "Timer job '735da5fd-a74a-46b8-9a75-70e85d125eb2' for service application 'Translation Service Application' is failing to execute. More information is included below.
    Object reference not set to an instance of an object. "
    Followed by this one one more critical event,
    Event ID: 6398, Task Category: Timer , Source: SharePoint Foundation
    "The Execute method of job definition Microsoft.Office.TranslationServices.QueueJob (ID 735da5fd-a74a-46b8-9a75-70e85d125eb2) threw an exception. More information is included below.
    Object reference not set to an instance of an object."
    I tried to search everywhere, but no solution. Because of this two critical events AppFabricCaching service is also crashing.
    Any suggestion how i can fix this?
    SaM

    Hi  SaM,
    According to your error message, it says that the Timer job '735da5fd-a74a-46b8-9a75-70e85d125eb2' for service application 'Translation Service Application' fail to create due to some referred object cannot
    be found. For this issue, it can be caused by missing assembly .
    Could you please provide detail error message of ULS log  to determine the exact cause of the error?
    For SharePoint 2013, by default, ULS log is at      
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    Here is a blog you can have a look:
    http://powerpivotgeek.com/2010/10/04/bug-cannot-install-powerpivot-if-a-sql-server-shared-folder-has-been-specified-in-a-previous-installation-to-other-than-the-default-folder/
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Failing to Delete/Remove Project Server Service Application, giving error "Object reference not set to an instance of an object"

    I have installed Project Server 2013 on SharePoint 2013, and installed the first PWA which worked. But I needed to change some configurations and so I deleted the PWA instances, but now I cannot delete the Project Server Service Application. Every attempt
    to delete the Service Application it gives the error above, namely:
    Sorry, something went wrong
    Object reference not set to an instance of an object.
    Technical Details
    Troubleshoot issues with Microsoft SharePoint Foundation.
    Correlation ID: ecaeaf9c-9fec-3049-ba23-d9a18337b9e2
    Date and Time: 8/18/2014 12:55:31 PM
    I'd urgently appreciate help.

    Thanks Paul for the reply. Here's the error, and the logs below covering the time the error occurred.
    I've tried to extract a section of the log file below:
    ==========================================================                                                        
    08/18/2014 19:20:19.07 w3wp.exe (0x542C)                      
    0x6DF4 SharePoint Foundation                 DistributedCache                             
    00000    Unexpected       SPDistributedCachePointerWrapper::InitializeDataCacheFactory - No cache hosts are present or running in the farm.
    08/18/2014 19:20:19.07 w3wp.exe (0x542C)                      
    0x6DF4 SharePoint Foundation                 DistributedCache                             
    ah24w   Unexpected       Unexpected Exception in SPDistributedCachePointerWrapper::InitializeDataCacheFactory for usage 'DistributedLogonTokenCache' - Exception 'System.InvalidOperationException: SPDistributedCachePointerWrapper::InitializeDataCacheFactory
    - No cache hosts are present or running in the farm.     at Microsoft.SharePoint.DistributedCaching.SPDistributedCachePointerWrapper.InitializeDataCacheFactory()'.     
    08/18/2014 19:20:19.07 w3wp.exe (0x542C)                      
    0x6DF4 SharePoint Foundation                 DistributedCache                             
    air4g      Monitorable       Token Cache: Failed to initialize SPDistributedSecurityTokenCache  Exception: 'System.InvalidOperationException: SPDistributedCachePointerWrapper::InitializeDataCacheFactory
    - No cache hosts are present or running in the farm.     at Microsoft.SharePoint.DistributedCaching.SPDistributedCachePointerWrapper.InitializeDataCacheFactory()     at Microsoft.SharePoint.DistributedCaching.SPDistributedCache..ctor(String
    name, TimeSpan timeToLive, SPDistributedCacheContainerType containerType, Boolean encryptData)     at Microsoft.SharePoint.IdentityModel.SPDistributedSecurityTokenCache..ctor(String name, TimeSpan timeToLive, SPDistributedCacheContainerType
    containerType, Boolean encrptyData, TimeSpan minimumTokenExpirationWindow)     at Microsoft.SharePoint.IdentityModel.SPDistributedSecurityTokenC...   
    08/18/2014 19:20:19.07*               w3wp.exe (0x542C)                      
    0x6DF4 SharePoint Foundation                         DistributedCache             
                   air4g      Monitorable       ...acheInitializer.Init(Object state)'.        
    08/18/2014 19:20:19.07 w3wp.exe (0x7240)                      
    0x7370  SharePoint Foundation                 General                      
                    af4yd     High       [Forced due to logging gap, cached @ 08/18/2014 19:20:18.99, Original Level: Verbose] TenantAppEtag
    record requested but there is no sitesubscription or tenantId for site {0} so we will use the WebApp Id for the cache.               f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.07 w3wp.exe (0x7240)                      
    0x7370  SharePoint Foundation                 Asp Runtime                                  
    aj1kp     High       [Forced due to logging gap, Original Level: Verbose] SPRequestModule.PreSendRequestHeaders     f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.10 w3wp.exe (0x7240)                      
    0x7370  Project Server                   Unified Logging Service                      
    b8fx       High       ULS Init Completed (w3wp.exe, Microsoft.Office.Project.Server.Native.dll)        f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.15 w3wp.exe (0x7240)                      
    0x7370                                  0x6FB7007                    
          6t8h       High                    [Forced due to logging gap, cached @ 08/18/2014 19:20:19.07, Original
    Level: Verbose] {0}            f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.15 w3wp.exe (0x7240)                      
    0x7370  Project Server                   Provisioning                      
    9or8                High       [Forced due to logging gap, Original Level: Verbose] Unprovisioning service app {0}        
    f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.16 w3wp.exe (0x7240)                       
    0x7370  Project Server                   Provisioning                      
    8ig5                High       Unregistering project psi shared application timer job.   f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.21 w3wp.exe (0x7240)                      
    0x7370  SharePoint Foundation                 General                      
                    8nca       Medium               Application error when access /_admin/ServiceApplicationDelete.aspx,
    Error=Object reference not set to an instance of an object.   at Microsoft.Office.Project.Server.Administration.PsiServiceApplication.get_ServiceAppTimerJob()     at Microsoft.Office.Project.Server.Administration.ProjectPSISharedApplicationTimerJob.Unregister(PsiServiceApplication
    psi)     at Microsoft.Office.Project.Server.Administration.PsiServiceApplication.Unprovision(Boolean deleteData)     at Microsoft.SharePoint.ApplicationPages.ServiceApplicationDeletePage.OkButton_Click(Object sender,
    EventArgs e)     at System.EventHandler.Invoke(Object sender, EventArgs e)     at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)     at System.Web.UI.Page.ProcessRequestMain(Boolean
    includeStagesBeforeAsyn...             f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.21*               w3wp.exe (0x7240)                      
    0x7370  SharePoint Foundation                 General                      
                    8nca       Medium               ...cPoint, Boolean includeStagesAfterAsyncPoint)           
    f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.23 w3wp.exe (0x7240)                      
    0x7370  SharePoint Foundation                 Runtime                                      
    tkau       Unexpected       System.NullReferenceException: Object reference not set to an instance of an object.    at Microsoft.Office.Project.Server.Administration.PsiServiceApplication.get_ServiceAppTimerJob()    
    at Microsoft.Office.Project.Server.Administration.ProjectPSISharedApplicationTimerJob.Unregister(PsiServiceApplication psi)     at Microsoft.Office.Project.Server.Administration.PsiServiceApplication.Unprovision(Boolean deleteData)    
    at Microsoft.SharePoint.ApplicationPages.ServiceApplicationDeletePage.OkButton_Click(Object sender, EventArgs e)     at System.EventHandler.Invoke(Object sender, EventArgs e)     at System.Web.UI.WebControls.Button.RaisePostBackEvent(String
    eventArgument)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoin... f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.23*               w3wp.exe (0x7240)                      
    0x7370  SharePoint Foundation                 Runtime                      
                    tkau       Unexpected       ...t)         f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.24 w3wp.exe (0x7240)                      
    0x7370  SharePoint Foundation                 General                      
                    ajlz0       High       Getting Error Message for Exception System.Web.HttpUnhandledException (0x80004005): Exception
    of type 'System.Web.HttpUnhandledException' was thrown. ---> System.NullReferenceException: Object reference not set to an instance of an object.     at Microsoft.Office.Project.Server.Administration.PsiServiceApplication.get_ServiceAppTimerJob()    
    at Microsoft.Office.Project.Server.Administration.ProjectPSISharedApplicationTimerJob.Unregister(PsiServiceApplication psi)     at Microsoft.Office.Project.Server.Administration.PsiServiceApplication.Unprovision(Boolean deleteData)    
    at Microsoft.SharePoint.ApplicationPages.ServiceApplicationDeletePage.OkButton_Click(Object sender, EventArgs e)     at System.EventHandler.Invoke(Object sender, EventArgs e)     at System.Web.UI.WebControls.Button.Rais...               
    f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.24*               w3wp.exe (0x7240)                      
    0x7370  SharePoint Foundation                 General                      
                    ajlz0       High       ...ePostBackEvent(String eventArgument)     at System.Web.UI.Page.ProcessRequestMain(Boolean
    includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.HandleError(Exception e)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
    at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest()     at System.Web.UI.Page.ProcessRequest(HttpContext context)    
    at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()     at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)   f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.32 w3wp.exe (0x14A4)                      
    0x6508  SharePoint Foundation                 DistributedCache                             
    00000    Unexpected       SPDistributedCachePointerWrapper::InitializeDataCacheFactory - No cache hosts are present or running in the farm. 67c4af9c-afed-3049-ba23-d538b7dde463
    08/18/2014 19:20:19.32 w3wp.exe (0x14A4)                      
    0x6508  SharePoint Foundation                 DistributedCache                             
    ah24w   Unexpected       Unexpected Exception in SPDistributedCachePointerWrapper::InitializeDataCacheFactory for usage 'DistributedLogonTokenCache' - Exception 'System.InvalidOperationException: SPDistributedCachePointerWrapper::InitializeDataCacheFactory
    - No cache hosts are present or running in the farm.     at Microsoft.SharePoint.DistributedCaching.SPDistributedCachePointerWrapper.InitializeDataCacheFactory()'.               
    67c4af9c-afed-3049-ba23-d538b7dde463
    08/18/2014 19:20:19.32 w3wp.exe (0x14A4)                      
    0x6508  SharePoint Foundation                 DistributedCache                             
    air4g      Monitorable       Token Cache: Failed to initialize SPDistributedSecurityTokenCache  Exception: 'System.InvalidOperationException: SPDistributedCachePointerWrapper::InitializeDataCacheFactory
    - No cache hosts are present or running in the farm.     at Microsoft.SharePoint.DistributedCaching.SPDistributedCachePointerWrapper.InitializeDataCacheFactory()     at Microsoft.SharePoint.DistributedCaching.SPDistributedCache..ctor(String
    name, TimeSpan timeToLive, SPDistributedCacheContainerType containerType, Boolean encryptData)     at Microsoft.SharePoint.IdentityModel.SPDistributedSecurityTokenCache..ctor(String name, TimeSpan timeToLive, SPDistributedCacheContainerType
    containerType, Boolean encrptyData, TimeSpan minimumTokenExpirationWindow)     at Microsoft.SharePoint.IdentityModel.SPDistributedSecurityTokenC...               
    67c4af9c-afed-3049-ba23-d538b7dde463
    08/18/2014 19:20:19.32*               w3wp.exe (0x14A4)                      
    0x6508  SharePoint Foundation                         DistributedCache             
                   air4g      Monitorable       ...acheInitializer.Init(Object state)'.        
    67c4af9c-afed-3049-ba23-d538b7dde463
    08/18/2014 19:20:19.38 w3wp.exe (0x7240)                      
    0x7370  SharePoint Foundation                 Upgrade                      
                    aiaih       High       [Forced due to logging gap, Original Level: Verbose] desiredVersion: {0}               
    f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.41 w3wp.exe (0x7240)                      
    0x7370  SharePoint Foundation                 General                      
                    aat87     Monitorable                      f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.43 w3wp.exe (0x7240)                      
    0x7370  SharePoint Foundation                 DistributedCache                             
    00000    Unexpected       SPDistributedCachePointerWrapper::InitializeDataCacheFactory - No cache hosts are present or running in the farm. f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.43 w3wp.exe (0x7240)                      
    0x7370  SharePoint Foundation                 DistributedCache                             
    ah24w   Unexpected       Unexpected Exception in SPDistributedCachePointerWrapper::InitializeDataCacheFactory for usage 'DistributedViewStateCache' - Exception 'System.InvalidOperationException: SPDistributedCachePointerWrapper::InitializeDataCacheFactory
    - No cache hosts are present or running in the farm.     at Microsoft.SharePoint.DistributedCaching.SPDistributedCachePointerWrapper.InitializeDataCacheFactory()'.               
    f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.43 w3wp.exe (0x7240)                      
    0x7370  SharePoint Foundation                 General                      
                    ajb4s     Monitorable       ViewStateLog: Failed to write to the velocity cache:
    http://sharepoint:48488/_admin/ServiceApplicationDelete.aspx?id=24024e6bfd8f486ea7ab0b68658ce165&IsDlg=1               
    f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:19.46 w3wp.exe (0x7240)                      
    0x7370  SharePoint Foundation                 Monitoring                                   
    b4ly        Medium               Leaving Monitored Scope (Request (POST:http://sharepoint:48488/_admin/ServiceApplicationDelete.aspx?id=24024e6bfd8f486ea7ab0b68658ce165&IsDlg=1)).
    Execution Time=550.415729455012 f1c4af9c-7f7e-3049-ba23-ddc2aa2f9d7b
    08/18/2014 19:20:20.08 w3wp.exe (0x542C)                      
    0x6EC4  SharePoint Foundation                 DistributedCache                             
    00000    Unexpected       SPDistributedCachePointerWrapper::InitializeDataCacheFactory - No cache hosts are present or running in the farm.
    08/18/2014 19:20:20.08 w3wp.exe (0x542C)                      
    0x6EC4  SharePoint Foundation                 DistributedCache                             
    ah24w   Unexpected       Unexpected Exception in SPDistributedCachePointerWrapper::InitializeDataCacheFactory for usage 'DistributedLogonTokenCache' - Exception 'System.InvalidOperationException: SPDistributedCachePointerWrapper::InitializeDataCacheFactory
    - No cache hosts are present or running in the farm.     at Microsoft.SharePoint.DistributedCaching.SPDistributedCachePointerWrapper.InitializeDataCacheFactory()'.     
    08/18/2014 19:20:20.08 w3wp.exe (0x542C)                      
    0x6EC4  SharePoint Foundation                 DistributedCache                             
    air4g      Monitorable       Token Cache: Failed to initialize SPDistributedSecurityTokenCache  Exception: 'System.InvalidOperationException: SPDistributedCachePointerWrapper::InitializeDataCacheFactory
    - No cache hosts are present or running in the farm.     at Microsoft.SharePoint.DistributedCaching.SPDistributedCachePointerWrapper.InitializeDataCacheFactory()     at Microsoft.SharePoint.DistributedCaching.SPDistributedCache..ctor(String
    name, TimeSpan timeToLive, SPDistributedCacheContainerType containerType, Boolean encryptData)     at Microsoft.SharePoint.IdentityModel.SPDistributedSecurityTokenCache..ctor(String name, TimeSpan timeToLive, SPDistributedCacheContainerType
    containerType, Boolean encrptyData, TimeSpan minimumTokenExpirationWindow)     at Microsoft.SharePoint.IdentityModel.SPDistributedSecurityTokenC...   
    08/18/2014 19:20:20.08*               w3wp.exe (0x542C)                      
    0x6EC4  SharePoint Foundation                         DistributedCache             
                   air4g      Monitorable       ...acheInitializer.Init(Object state)'.        
    08/18/2014 19:20:20.30 OWSTIMER.EXE (0x09C4)                             
    0x09F8  SharePoint Foundation                 Monitoring                                   
    nasq      Medium               Entering monitored scope (Timer Job SchedulingUnpublish). Parent No acba9844-723f-4477-901c-adfdcae98e4e
    08/18/2014 19:20:20.30 OWSTIMER.EXE (0x09C4)                             
    0x09F8  SharePoint Foundation                 Logging Correlation Data               xmnv    
    Medium               Name=Timer Job SchedulingUnpublish  f1c4af9c-ffd4-3049-ba23-d4fe1cc1d1d7
    08/18/2014 19:20:20.31 OWSTIMER.EXE (0x09C4)                             
    0x0A10 SharePoint Foundation                 Monitoring                                   
    nasq      Medium               Entering monitored scope (Timer Job SchedulingUnpublish). Parent No 5dbf5387-ba14-4980-bc61-5ba5490870fa
    ==============================================
    Thanks for the attention.

  • Directory - Host Not Foud

    Hi Folks,
    I am setting up a simple CCME using only 7911. I have created local directory using the GUI and had it enabled.
    I noticed that when i access the service>directory, i get an error " Host Not Found'
    Below is an extract of the services.
    caller-id name-only: enable
    system message LAO Asia Pacific Breweries
    web admin system name admin secret xxx
    web admin customer name apb secret xxx
    edit DN through Web: enabled.
    edit TIME through web: enabled.
    Log (table parameters):
    max-size: 150
    retain-timer: 15
    create cnf-files version-stamp 7960 Feb 15 2007 20:00:25
    transfer-system full-consult
    auto assign 1 to 288
    local directory service: enabled.
    PLease let me know what step have i missed.
    Thankyou in advance,
    Kelvin

    Hi,
    Check if the 7911s can resolve the hostname of the host that is hosting the directory. If not, add the DNS entries to the IP Phone configuration.
    Hope this helps,
    Juan Luis

  • Rdisp/mssserv is not set in Java add in installation

    I am in the process of trying to install the Java add-in to the already upgraded WAS ABAP server.  After specifying the location of the profile directory, I continue to get an error message that reads, "Profile parameter rdisp/msserv_internal in not set for instance DVEBMGS00/DV1 on host xxx.  I have ready note 821875 and the [parameter exist exactly like the note suggests and I have restarted the system numerous times and this error continues to exist.  Has anyone else dealt with this issue before?  I could use some assistance right about now.  Thanks in advance.

    Hello Leon
    What is the exact error message that you are recieving?
    Thanks
    Kenny

  • Enable Default Host not forwarding to host

    Hello all,
    Thank you in advance for any insight you can provide to this frustrating problem! 
    Here's the set-up:
    ISP Modem with Static IP on Internet - no ports blocked - confirmed with ISP
    BaseStation connected to the above modem with external IP configured to the static IP of the ISP
    BaseStation internally giving out private IPs in the 192.168.x.x range via wireless and wired connections (section of range 50-100 only within range)
    BaseStation internally providing a guest network in the 172.16 rage (limted to 50 max)
    Targeted client set to static IP in the 192.168 range (not over-lapping with the range being handed out dynamically)
    BaseStation set to use Default Host at the above IP (the one statically assigned to my "target" system that I want to reach from the internet)
    Traffic to and from the internet for browsing and remote Server access works fine.  Including Servers that are using the same ports that I wish this one to answer on.
    Traffic INBOUND destined for the static host at the 192.168.x.x is NOT reaching the host on the ports I need it to.  Even though that host is set as the Default Host.  It is using two specific ports, but there is no port blocking on the ISP and the default host should be..... well.. the default.  This is where traffic should go shouldnt' it?
    The host can browse the internet, so it is a source and destination for that traffic, it just won't "answer the phone" when external traffic comes calling on the ports I want to direct to it.

    1) If it's going to forward all internet traffic to this one specific machine, why bother configuring Port Mappings?
    You wouldn't. If you want only select ports opened, use Port Mapping; for all ports to be open, use Default Host, which is just another name for a DMZ.
    2) If I would like my server (10.5.7 Leopard Server) to handle internet requests and then send the traffic to the appropriate internal computer based on the port request, what service on the Server do I use to do this?
    Sorry, I'm not familiar with Leopard Server features, but I would think this would be something similar to the Proxy Server service provided by Windows Servers.

  • BUG Can not set DML Fetch Mode:

    http://screencast.com/t/m7lEYZ1m5F
    while creating a DML ( Automatic Row Processing ) , can not set value of radio button .
    is this a bug , or i am missing something?

    >
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    It's even more essential to include full version information if you suspect a bug. Knowing the versions involved enables Oracle and other forum members to try to replicate the problem properly. It also allows us to look at the documentation or MOS bug database to compare the problem to known bugs and fixes.
    http://screencast.com/t/m7lEYZ1m5FYou've even managed to crop the screenshot so it doesn't show the version number...
    while creating a DML ( Automatic Row Processing ) , can not set value of radio button .
    is this a bug , or i am missing something?Confirmed as appearing in ARP (DML) processes in APEX 4.2.1.00.08. This does indeed appear to be a bug. However it is only cosmetic. DML Fetch Mode is an ARF (fetch) process option that is deprecated in APEX 4.x. Setting it for ARP (DML) processes is unnecessary, so you can safely ignore it.
    The appearance of the radio group in ARF processes is subject to a bug in APEX 4.2.0: +{message:id=10713985}+
    However it should not be appearing in an ARP (DML) definition at all as it was only an option for fetch behaviour.

Maybe you are looking for