Netconnection.connect.failed

hi, all. i am a freshman in the flash media server. I write
the client with the flex, and the server is the flash media
server2, when i connect to the server, the test information tells
me the message: netconnection.connect.failed. but i write some
trace code in the server, the server log has shown them, i don't
know if i have connected the server, but when i connect to my
server with other's computer, it give me a error: Unhandled
NetStatusEvent:level=error, code=NetConnection.Connect.Failed
WebService/linkserver() at WebService/__btn1_click() at
[mouseEvent].
as follow the source code
the client:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="absolute">
<mx:Script>
<![CDATA[
import flash.net.*;
import mx.rpc.events.ResultEvent;
import mx.controls.Alert;
import flash.net.NetConnection;
public function linkserver():void
nc = new NetConnection();
//nc.client;
nc.addEventListener("netStatus", test);
nc.connect("rtmp://localhost/firstApp","b");
public function test(event:NetStatusEvent):void
Alert.show(event.info.code);
<mx:Button id="button2" label="linkserver"
click="linkserver()" x="255" y="397"/>
</mx:Application>
server( main.asc)
application.onConnect=function(client,name){
if(name=="a"){
trace("rejectConnection");
application.rejectConnection(client, {msg:"server don't
let"+name+"connecting~"});
if(name=="b"){
trace("succeful");
this.acceptConnection(client);

You may have the app set to rtmp:/app or rtmp://localhost/app
but should be rtmp://public ip to server/app or
rtmpt://public ip to server:1935/app
Also firewalls and some antivirus or security programs make
stop the connection.
HTH

Similar Messages

  • Get More Info for NetConnection.Connect.Failed Error?

    I have a single server that runs IIS and FMS, both on port 80.  The server has two internal IPs assigned to it, one for IIS and the other for FMS.  I also have two static public IPs.  My router maps one public IP to IIS' internal IP and likewise for FMS.
    IIS works fine.  Using an online port scanner, I was able to determine that port 80 is responsive for both public IPs.  Before I had configured my Adapter.xml and fms.ini, only IIS' public IP was responsive.  This seems to indicate that FMS is fine.
    However, when my ActionScript creates a NetConnection and calls connect(), my netStatus callback takes about half a minute to be invoked, and I get "NetConnection.Connect.Failed".  Which is not very informative.  Is there a way to get more info about the cause of the error?  Also does anyone have suggestions for how to debug this issue?

    Hi,
    Thanks for trying out FMS..
    I can guide you with few checkpoints to first see where the problem might be.
    1. Go to the FMS installation directory and check for the logs folder. See all the logs (according to date) and find if the port bindings are all successful. This might tell us whether FMS actually has started or not.
    2. FMS works on port 1935 for RTMP streaming. It also gets bundled with apache (listening on 8134) but one of the fms processes also takes hold of 80 for its tunneling streaming as well as redirecting to apache. So either you remove this entry from fms.ini or change it to reflect to some other port. ADAPTER.HOSTPORT is the variable to look for.
    3. How are you making sure that FMS is working/not working ?
    4. Please turn off your firewall or other secutiry for testing purposes to see if you are able to hit the FMS .
    Let us know if any of the above are helpful in getting some more information.
    Thank you !

  • FMS3 NetConnection.Connect.Failed

    FMS3 NetConnection.Connect.Failed
    I have two pc ,one have FMS+Apache ,the other have none.
    I access from local (IP: 192.168.0.3),that is OK!
    and I access from (IP: 192.168.0.4 ) ,the flashplayer
    trace a error:NetConnection.Connect.Failed?
    my app named "test" ,app path: "rtmp://192.168.0.3/test"
    help !!

    Is there a firewall on the FMS machine? If so, make sure port
    1935 is open

  • Cisco Show and Share Error: NetConnection.Connect.Failed

    Hi
    I installed Cisco DMM 5.2.0.25 and also CVP. I can able to view videos from the browser of certain PCs . But if i open the same link from another Laptop or PC( which are in same network and domain), I cant able to view the video. It shows an error "NetConnection.Connect.Failed". Am opening through Mozilla Firefox.
    Prasanth Abraham

    Hi Prasanth,
    This looks to be an error of the flash plugin. Could you check if affected PCs have a supported version of Flash or of the Browser, as documented at:
    http://www.cisco.com/en/US/prod/collateral/video/ps9339/ps6681/data_sheet_c78-565776_ps6682_Products_Data_Sheet.html
    Mozilla Firefox 3.5.3 / 3.6.3
    Adobe Flash v.10 recommended
    Regards,
    Marco

  • NetConnection.connected is false upon receiving NetStatus event "NetConnection.Connect.Success"

    I can only reproduce this on Chrome with a non-debug version of Flash.
    I can see that "NetConnection.connected" is still false after receiving NetStatus event "NetConnection.Connect.Success".
    1. I wonder whether this issue only applies to certain versions.
    2. Using a netConnection which is not connected to create a NetStream populates an "arugment error". I wonder what would be the safe thing to do here? Perhaps after receiving the NetConnection.Connect.Success, check "NetConnection.connected" before using it to create the NetStream?

    Are you sure your FMS is up - NetConnection.Connect.Failed comes when  client was not able to reach server kind - which would happen when FMS  is down or your FMS is running on some other machine and your client is  on some other machine as i see you are using localhost. If your FMS is  one "A" machine and your client in on "B" machine please put "ip  address" or "domain name" of "A" machine where FMS is in Netconnection  URI i.e. "rtmp://ipaddressofA/live"
    my fms is on and it is on the same computer as my flash document

  • FMS 3.5 /  server/app1 - netconnect - server/app2 = NetConnect.Connect.FailedHello

    Hello all,
    I've hit a snag with my current FMS project and Im hoping someone out there might be able to help.
    I have a working FMS server with two applications:
    I'm trying to get application 2 to connect to application1.
    I can connect to app1 if i write up a quick client in as3... i CANT seem to connect from FMS server side code in app2. ( which is what I require )
    What am I doing wrong?  Is there something on the server that I need to configure to allow this?
    Do I need to specify something in one of the app's  Application.xml files?
    Thank you for taking the time to read this post,  code is below:
    other info:
         my development server url looks like this:    fms.internal.companyname.com
         my netConnection.uri is simply "rtmp://fms.internal.companyname.com/app1"
         running Flash Media Interactive Server 3.5
         server is working.  I can use live / vod / and some other custom apps that I've written so far.  Just app to app connections aren't functioning.
        I havn't done any other custom configuration to the server.  Its all stock.
    app1's code:
    application.allowDebug = true;
    application.onAppStart = function(){
         trace("[ Booting up app1 ]");
    application.onConnect = function( clientObj ){
        trace("onConnect detected: ");
         application.acceptConnection(clientObj);
    application.onStatus = function(statusObj){
         trace("onStatus detected:  "+ statusObj);
    app2's code:
    application.allowDebug = true;
    nc = new NetConnection();
    nc.onStatus = function(infoObj){
       trace(infoObj.code);
    application.onAppStart = function(){
         trace("[ Booting up app2 ]");
         nc.connect( "rtmp://server/app1");
    application.onStatus = function(statusObj){
         trace("[ onStatus: "+statusObj+" ]");
    So as you can see I'm having app2 connect up to app1 on startup.
    However, no matter what I do I can't seem to get them to connect!  Please help!
    App 2's log tells me that "NetConnection.Connect.Failed".
    When I check the over all server log I just get a "Connection failed"

    Thanks Chess,
    Ok.. sounds like I'm going about this all wrong... 
    I'm building out an Audio/Video Chat application.. ( who doesn't with FMS?    )
    My specific challenge with this project is that I need to pass the client app "secret" data that I can't allow other users to have access to.
    ( By secret I mean I need to push the username and password for another app down to the client. so I'll be using RTMPE or RTMPS by the time this goes live. )
    So how does the following sound?
    My client, ( a flex RIA )  will provide my server "myserver.com/ChatServer"  with a "token":String that can uniquely identify that user.
    So say clientA wants to connect to chat session "42"..   it connects up to "myserver.com/ChatServer/42"  and provides their token.
    1.     When ChatServer/42   onConnect Method fires it will take that token and will put the client into a pending state.
    2.     The server will then hit a webservice on another server with that user's token and the name of the instance.   ( "user_token", "42") and will get back a UserData object... or xml... or whatever FMS uses best for transmitting data i guess... ( would FMS work with ZendAMF?  I'd love to use typed objects for this!)
    3.     Once the ChatServer instance receives the UserData it will pass it back to the client via Client.Call("setClientCredentials", responder, clientData stuff);   // I need to get secret data back to the client that I don't want made available to other users.  ( their passwords etc... )
    4.     ChatServer will also accept the client connection at this point and Add this client to a Roster Shared Object along with some specifics from that ClientData... like name, avatar, etc.
    5.  Once the approved clients begin broadcasting I can then update that Roster_shared_object and use the .sync events to have all connected clients update and start sucking down those streams.
    Does this sound like a better FMS architecture?
    I appreciate everyone's input,
    Thank you for taking the time to read up to this point. 

  • Getting NetConnection.Connect.Rejected

    I signed up with a FMS hosting service. They have a nice
    interface where I was able to install an application. I called it
    "simple", cause its bare bones simple. After installing, it gives
    me the rtmp connection string. Problem is - I get
    NetConnection.Connect.Rejected every time. I tried removing it, and
    installing again. But same thing.
    This is in frame 1. Is there something wrong with this?
    my_nc = new NetConnection();
    my_nc.onStatus = function (info) {
    switch(info.code)
    case "NetConnection.Connect.Success":
    textbox.text = "success" + "\n";
    break;
    case "NetConnection.Connect.Rejected":
    textbox.text = "rejected" + "\n";
    textbox.text += info.application.msg + "\n";
    textbox.text += "Event: " + info.code + "\n";
    textbox.text += "Type: " + info.level + "\n";
    textbox.text += "Message:" + info.description + "\n";
    break;
    case "NetConnection.Connect.Failed":
    textbox.text = "failed";
    break;
    case "NetConnection.Connect.Closed":
    textbox.text += "Connection closed.";
    break;
    my_nc.connect("rtmp://exx3333.rtmphost.com/simple");
    (I didn't put in the exact rtmp string in there, since this
    is a public forum)
    The result I get printed out in the text box is:
    rejected
    undefined
    Event: NetConnection.Connect.Rejected
    Type: error
    Message:[ Server.Reject ] : (_defaultRoot_, _defaultVHost_) :
    Application (simple) is not defined.
    But - the hosting service's interface panel shows that
    application "simple" is there. I sent the hosting service a support
    request, but I probably won't hear back from them until
    Monday.

    Hi Cisco_s,
    Your code looks good - I think there's nothing you can do
    other than wait. Apparently there's something wrong with the VHOST
    configuration on their side.

  • FMS 3 Connect.Failed (very strange!)

    Hi,
    I just downloaded the Developer version of FMS 3 and try to
    get a little application work, but I can't get an connection to the
    server.
    I create a new folder in the appliation directory of the FMS
    root directory named "HelloWorld" which contains only a single .asc
    named "HelloWorld.asc" with a little function in it.
    In another .swf I try to connect to the server via
    "rtmp:/HelloWorld" which leads to the following Error
    "NetConnection.Connect.failed". I opened the Administratin-Tool and
    connected (green light) and saw in the Manage
    Servers-Connections-Panel that there were the same amount of
    connects and disconnects. I also tried disabling the firewall.
    Perhaps I have to mention that hte server is running on a
    Vista 32 system. Possibly there are security restrictions.
    I really hope that anyone of you can help me solve this
    problem. Thanks.

    This message means that the core is unable to register itself with the admin server utilizing interprocess communication (IPC).  Look at fmsdir/conf/Server.xml <AdminServer><IpcHostPort> for configuration information.  The implication here is that you would be unable to use the administration features enabled in the admin server.

  • Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 500

    I get the following error when trying to connect to my BlazeDS Java server from Flex application. Flex application is on localhost:80, blazeDS on tomcat localhost:8080. Please help!
    createUser();faultHandler():(mx.messaging.messages::ErrorMessage)#0
      body = (Object)#1
      clientId = (null)
      correlationId = "9FFDEBE8-EAD0-F3D9-8E9B-E3D7D7F5AE79"
      destination = ""
      extendedData = (null)
      faultCode = "Client.Error.MessageSend"
      faultDetail = "Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 500: url: 'http://77.93.202.150:8080/QuizDS/messagebroker/amf'"
      faultString = "Send failed"
      headers = (Object)#2
      messageId = "98F54E19-7B0D-DCB9-4B86-E3D7D84E484F"
      rootCause = (mx.messaging.events::ChannelFaultEvent)#3
        bubbles = false
        cancelable = false
        channel = (mx.messaging.channels::AMFChannel)#4
          authenticated = false
          channelSets = (Array)#5
          connected = false
          connectTimeout = -1
          enableSmallMessages = true
          endpoint = "http://77.93.202.150:8080/QuizDS/messagebroker/amf"
          failoverURIs = (Array)#6
          id = (null)
          mpiEnabled = false
          netConnection = (flash.net::NetConnection)#7
            client = (mx.messaging.channels::AMFChannel)#4
            connected = false
            maxPeerConnections = 8
            objectEncoding = 3
            proxyType = "none"
            uri = "http://77.93.202.150:8080/QuizDS/messagebroker/amf"
          piggybackingEnabled = false
          polling = false
          pollingEnabled = true
          pollingInterval = 3000
          protocol = "http"
          reconnecting = false
          recordMessageSizes = false
          recordMessageTimes = false
          requestTimeout = -1
          uri = "http://77.93.202.150:8080/QuizDS/messagebroker/amf"
          url = "http://77.93.202.150:8080/QuizDS/messagebroker/amf"
          useSmallMessages = false
        channelId = (null)
        connected = false
        currentTarget = (mx.messaging.channels::AMFChannel)#4
        eventPhase = 2
        faultCode = "Channel.Connect.Failed"
        faultDetail = "NetConnection.Call.Failed: HTTP: Status 500: url: 'http://77.93.202.150:8080/QuizDS/messagebroker/amf'"
        faultString = "error"
        reconnecting = false
        rejected = false
        rootCause = (Object)#8
          code = "NetConnection.Call.Failed"
          description = "HTTP: Status 500"
          details = "http://77.93.202.150:8080/QuizDS/messagebroker/amf"
          level = "error"
        target = (mx.messaging.channels::AMFChannel)#4
        type = "channelFault"
      timestamp = 0
      timeToLive = 0

    halodev:
    I made a CF/Flex site based on the Flexstore sample app,
    using a database instead of XML as the data source; in case you
    want to see it:
    http://www.timos.com/dg/flex/DilemmaGames.html
    At first I had troubles similar to what you describe;
    initially, part of the problem was that my hosting company had not
    yet upgraded to CF 7.02. One other thing I had to correct: when you
    upload to your server, upload the entire ‘bin’ (or
    whatever your output folder is) minus the debug SWF.
    If it would help with other issues, contact me and I will be
    glad to make my project code available to you. Good luck.
    Carlos
    [email protected]

  • Installing Mavericks produced "a connection error occurred" in Mail and "connection failed" in App Store

    Dear Apple Support Community!
    I installed Mavericks OS X on my iMac immediately after it was released. I was soon starting to experience trouble with logging in to Mail and App Store. After contacting Apple Support and trying various tips and tricks to no avail, like re-installing Mavericks for instance, I just decided to wait for an update of the OS X to see if that would solve my problems. Unfortunately, that didn't help either.
    I therefore turn to the Apple Support Communities in hope of expert help that will solve my problems.
    Here are the actions that result in error messages:
    Mail > Choose a mail account to add > Google > Continue > Name/Email Address/Password > Set Up > A connection error occurred.
    App Store > Sign In > Apple ID/Password > Sign In > Connection failed.
    I have three accounts on my computer:
    System Administrator, Guest Account and Other.
    I use the “Other” account as my regular account. When I log in to the System Administrator or Guest Account I don’t experience any problems; Mail and App Store work as they should.
    Booting in safe mode does not solve the problem:
    I disconnected all wired peripherals except those needed for the test, and removed all aftermarket expansion cards. I booted in safe mode and logged in to the account with the problem.
    I tested the said actions while in safe mode. The problems were the same.
    After testing, I rebooted as usual (i.e., not in safe mode) and verified that I still had the problems.
    Info about my Mac:
    iMac
    24-inch Mid 2007
    Processor  2,8 GHz Intel Core 2 Duo
    Memory  4 GB 667 MHz DDR2 SDRAM
    Graphics  ATI Radeon HD 2600 Pro 256 MB
    Serial Number  xxxxxxxxxxx
    Software  OS X 10.9.1 (13B42)
    Console System Logs
    Console log – All Messages
    Action:
    Mail > Choose a mail account to add > Google > Continue > Name/Email Address/Password > Set Up > A connection error occurred.
    02.02.14 12:41:38,030 SafariNotificationAgent[43964]: Error calling realpath on the home directory.
    02.02.14 12:41:38,032 com.apple.launchd.peruser.0[166]: (com.apple.SafariNotificationAgent[43964]) Exited with code: 1
    02.02.14 12:41:38,032 com.apple.launchd.peruser.0[166]: (com.apple.SafariNotificationAgent) Throttling respawn: Will start in 10 seconds
    02.02.14 12:41:38,231 com.apple.internetaccounts[66431]: +[IAGoogleAuthTokenManager keychainEntryForUserName:] [359] -- Failed to fetch keychain item for "xxxxxx@xxxxxx" (code -67674)
    02.02.14 12:41:38,234 com.apple.internetaccounts[66431]: +[IAGoogleAuthTokenManager setKeychainEntry:ForUserName:] [380] -- *** Failed to store token in keychain for "xxxxxx@xxxxxx" (code -67674)
    02.02.14 12:41:38,263 sandboxd[91]: ([66431]) com.apple.intern(66431) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,270 sandboxd[91]: ([66431]) com.apple.intern(66431) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,282 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,291 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,300 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,309 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,318 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,352 Mail[43640]: CFNetwork SSLHandshake failed (-67674)
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,426 Mail[43640]: CFNetwork SSLHandshake failed (-67674)
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,430 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,497 Mail[43640]: CFNetwork SSLHandshake failed (-67674)
    02.02.14 12:41:38,498 Mail[43640]: NSURLConnection/CFURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -67674)
    02.02.14 12:41:38,498 Mail[43640]: -[IAAccountAuthenticator connection:didFailWithError:] [172] -- *** error: Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo=0x6000001b36a0 {NSURLErrorFailingURLPeerTrustErrorKey=<SecTrust 0x7fdf23579d20 [0x7fff75b66eb0]>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, NSUnderlyingError=0x60000084b220 "An SSL error has occurred and a secure connection to the server cannot be made.", NSErrorPeerCertificateChainKey=(
        "<SecCertificate 0x7fdf2357bf90 [0x7fff75b66eb0]>",
        "<SecCertificate 0x7fdf23579ae0 [0x7fff75b66eb0]>",
        "<SecCertificate 0x7fdf23578e00 [0x7fff75b66eb0]>"
    ), NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://www.google.com/accounts/ClientLogin, NSErrorFailingURLStringKey=https://www.google.com/accounts/ClientLogin, NSErrorClientCertificateStateKey=0}
    Full report of the following incident:
    02.02.14 12:41:38,270 sandboxd[91]: ([66431]) com.apple.intern(66431) deny file-write-data /private/var/db/mds/system/mds.lock
    com.apple.intern(66431) deny file-write-data /private/var/db/mds/system/mds.lock
    Process:         com.apple.intern [66431]
    Path:            /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/XPCServ ices/com.apple.internetaccounts.xpc/Contents/MacOS/com.apple.internetaccounts
    Load Address:    0x101a8b000
    Identifier:      com.apple.internetaccounts
    Version:         1 (1.0)
    Build Info:      1-InternetAccountsFramework_executables~192000000000000
    Code Type:       x86_64 (Native)
    Parent Process:  launchd [1]
    Date/Time:       2014-02-02 12:41:38.232 +0100
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  8
    Thread 0:
    0   libsystem_kernel.dylib                  0x00007fff888ce5da __open + 10
    1   Security                                0x00007fff8573d2af Security::MDSSession::updateDataBases() + 693
    2   Security                                0x00007fff8578feef Security::MDSSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 145
    3   Security                                0x00007fff8578fde3 mds_DbOpen(long, char const*, cssm_net_address const*, unsigned int, cssm_access_credentials const*, void const*, long*) + 211
    4   Security                                0x00007fff8573ccd7 Security::MDSClient::Directory::cdsa() const + 93
    5   Security                                0x00007fff857f995b Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 39
    6   Security                                0x00007fff8573c7b2 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 234
    7   Security                                0x00007fff85761ca5 Security::KeychainCore::DynamicDLDBList::_load() + 329
    8   Security                                0x00007fff85761b29 Security::KeychainCore::DynamicDLDBList::searchList() + 29
    9   Security                                0x00007fff8587b2b5 Security::KeychainCore::StorageManager::getSearchList(std::__1::vector<Security ::KeychainCore::Keychain, std::__1::allocator<Security::KeychainCore::Keychain> >&) + 163
    10  Security                                0x00007fff8587da18 Security::KeychainCore::StorageManager::optionalSearchList(void const*, std::__1::vector<Security::KeychainCore::Keychain, std::__1::allocator<Security::KeychainCore::Keychain> >&) + 88
    11  Security                                0x00007fff85754f5c SecKeychainSearchCreateFromAttributes + 142
    12  Security                                0x00007fff858930a8 _CreateSecItemParamsFromDictionary(__CFDictionary const*, int*) + 3493
    13  Security                                0x00007fff8588fca7 SecItemCopyMatching_osx(__CFDictionary const*, void const**) + 133
    14  Security                                0x00007fff8588f95d SecItemCopyMatching + 390
    15  InternetAccounts                        0x00007fff900ad7c5 +[IAGoogleAuthTokenManager keychainEntryForUserName:] + 215
    16  InternetAccounts                        0x00007fff900ad604 +[IAGoogleAuthTokenManager googleTokenForEmailAddress:shouldCreateToken:] + 48
    17  com.apple.internetaccounts              0x0000000101a95c83
    18  CoreFoundation                          0x00007fff8c991dec __invoking___ + 140
    19  CoreFoundation                          0x00007fff8c991c54 -[NSInvocation invoke] + 308
    20  Foundation                              0x00007fff844b5af6 -[NSXPCConnection _decodeAndInvokeMessageWithData:] + 1469
    21  Foundation                              0x00007fff844b26be message_handler + 381
    22  libxpc.dylib                            0x00007fff90ef6510 _xpc_connection_call_event_handler + 58
    23  libxpc.dylib                            0x00007fff90ef5123 _xpc_connection_mach_event + 2124
    24  libdispatch.dylib                       0x00007fff86e1aafe _dispatch_client_callout4 + 9
    25  libdispatch.dylib                       0x00007fff86e1b3b8 _dispatch_mach_msg_invoke + 143
    26  libdispatch.dylib                       0x00007fff86e19633 _dispatch_queue_drain + 359
    27  libdispatch.dylib                       0x00007fff86e1a69e _dispatch_mach_invoke + 154
    28  libdispatch.dylib                       0x00007fff86e19633 _dispatch_queue_drain + 359
    29  libdispatch.dylib                       0x00007fff86e1a9dd _dispatch_queue_invoke + 110
    30  libdispatch.dylib                       0x00007fff86e18fa3 _dispatch_root_queue_drain + 75
    31  libdispatch.dylib                       0x00007fff86e1a193 _dispatch_worker_thread2 + 40
    32  libsystem_pthread.dylib                 0x00007fff8c5ceef8 _pthread_wqthread + 314
    33  libsystem_pthread.dylib                 0x00007fff8c5d1fb9 start_wqthread + 13
    Binary Images:
           0x101a8b000 -        0x101a9efff  com.apple.internetaccounts (1.0 - 1) <fedaf54b-d9b6-3da1-b4bc-e2cef64a8491> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/XPCServ ices/com.apple.internetaccounts.xpc/Contents/MacOS/com.apple.internetaccounts
        0x7fff8441b000 -     0x7fff8471afff  com.apple.Foundation (6.9 - 1056) <d608edfd-9634-3573-9b7e-081c7d085f7a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85738000 -     0x7fff85990ff1  com.apple.security (7.0 - 55471) <233831c5-c457-3ad5-afe7-e3e2de6929c9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff86e16000 -     0x7fff86e30fff  libdispatch.dylib (339.1.9) <46878a5b-4248-3057-962c-6d4a235eef31> /usr/lib/system/libdispatch.dylib
        0x7fff888b9000 -     0x7fff888d5ff7  libsystem_kernel.dylib (2422.1.72) <d14913db-47f1-3591-8daf-d4b4ef5f8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8c5cc000 -     0x7fff8c5d3ff7  libsystem_pthread.dylib (53.1.4) <ab498556-b555-310e-9041-f67ec9e00e2c> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8c958000 -     0x7fff8cb3dff7  com.apple.CoreFoundation (6.9 - 855.11) <e22c6a1f-8996-349c-905e-96c3bbe07c2f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff90096000 -     0x7fff900e5ff7  com.apple.framework.internetaccounts (2.1 - 210) <c77069c7-928c-315c-aa61-d90543901f20> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff90eeb000 -     0x7fff90f0ffff  libxpc.dylib (300.1.17) <4554927a-9467-365c-91f1-5a116989dd7f> /usr/lib/system/libxpc.dylib
    Full report of the following incident:
    02.02.14 12:41:38,282 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    Process:         Mail [43640]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Load Address:    0x10c586000
    Identifier:      com.apple.mail
    Version:         1827 (7.1)
    Build Info:      5-Mail~1827000000000000
    Code Type:       x86_64 (Native)
    Parent Process:  launchd [166]
    Date/Time:       2014-02-02 12:41:38.276 +0100
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  8
    Thread 0:
    0   libsystem_kernel.dylib                  0x00007fff888ce5da __open + 10
    1   Security                                0x00007fff8573d2af Security::MDSSession::updateDataBases() + 693
    2   Security                                0x00007fff8578feef Security::MDSSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 145
    3   Security                                0x00007fff8578fde3 mds_DbOpen(long, char const*, cssm_net_address const*, unsigned int, cssm_access_credentials const*, void const*, long*) + 211
    4   Security                                0x00007fff8573ccd7 Security::MDSClient::Directory::cdsa() const + 93
    5   Security                                0x00007fff857f995b Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 39
    6   Security                                0x00007fff8573c7b2 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 234
    7   Security                                0x00007fff85761ca5 Security::KeychainCore::DynamicDLDBList::_load() + 329
    8   Security                                0x00007fff85761b29 Security::KeychainCore::DynamicDLDBList::searchList() + 29
    9   Security                                0x00007fff8587b2b5 Security::KeychainCore::StorageManager::getSearchList(std::__1::vector<Security ::KeychainCore::Keychain, std::__1::allocator<Security::KeychainCore::Keychain> >&) + 163
    10  Security                                0x00007fff85787bc2 SecIdentityCopyPreference + 319
    11  CFNetwork                               0x00007fff87b4f3e5 HTTPProtocolSSLSupport::getSSLCertsCached(__CFString const*) + 235
    12  CFNetwork                               0x00007fff87b4f073 HTTPProtocol::setupSSLPropertiesOnStream(_CFURLRequest const*) + 363
    13  CFNetwork                               0x00007fff87b3c234 HTTPProtocol::openStream() + 80
    14  CFNetwork                               0x00007fff87b3b67a HTTPProtocol::useNetConnectionForRequest(NetConnection*, __CFHTTPMessage*, unsigned char) + 1750
    15  CFNetwork                               0x00007fff87b3aeae HTTPConnectionCacheEntry::dispatchConnectionToProtocol(NetConnection*, HTTPProtocol*, HTTPRequestMessage*, unsigned char) + 276
    16  CFNetwork                               0x00007fff87b3ac6d HTTPConnectionCacheEntry::notifyNextProtocolOfOpenConnection(NetConnection*, unsigned char) + 301
    17  CFNetwork                               0x00007fff87b37fcf HTTPConnectionCacheEntry::enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 685
    18  CFNetwork                               0x00007fff87b379cc HTTPConnectionCache::_onqueue_enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 178
    19  CFNetwork                               0x00007fff87b378f1 ___ZN19HTTPConnectionCache25enqueueRequestForProtocolEP12HTTPProtocolP15__CFHTT PMessage_block_invoke + 26
    20  CFNetwork                               0x00007fff87b2e3fc ___ZNK17CoreSchedulingSet13_performAsyncEPKcU13block_pointerFvvE_block_invoke + 25
    21  CoreFoundation                          0x00007fff8c9a2e94 CFArrayApplyFunction + 68
    22  CFNetwork                               0x00007fff87b2e2db RunloopBlockContext::perform() + 115
    23  CFNetwork                               0x00007fff87b2e183 MultiplexerSource::perform() + 269
    24  CFNetwork                               0x00007fff87b2dfb2 MultiplexerSource::_perform(void*) + 72
    25  CoreFoundation                          0x00007fff8c9d78f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    26  CoreFoundation                          0x00007fff8c9c9062 __CFRunLoopDoSources0 + 242
    27  CoreFoundation                          0x00007fff8c9c87ef __CFRunLoopRun + 831
    28  CoreFoundation                          0x00007fff8c9c8275 CFRunLoopRunSpecific + 309
    29  Foundation                              0x00007fff84482907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    30  Foundation                              0x00007fff8448270b __NSThread__main__ + 1318
    31  libsystem_pthread.dylib                 0x00007fff8c5cd899 _pthread_body + 138
    32  libsystem_pthread.dylib                 0x00007fff8c5cd72a _pthread_struct_init + 0
    33  libsystem_pthread.dylib                 0x00007fff8c5d1fc9 thread_start + 13
    Binary Images:
        0x7fff8441b000 -     0x7fff8471afff  com.apple.Foundation (6.9 - 1056) <d608edfd-9634-3573-9b7e-081c7d085f7a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85738000 -     0x7fff85990ff1  com.apple.security (7.0 - 55471) <233831c5-c457-3ad5-afe7-e3e2de6929c9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff87b07000 -     0x7fff87c77ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42cfc3db-35c8-3652-af37-4bcc73d8bdef> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff888b9000 -     0x7fff888d5ff7  libsystem_kernel.dylib (2422.1.72) <d14913db-47f1-3591-8daf-d4b4ef5f8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8c5cc000 -     0x7fff8c5d3ff7  libsystem_pthread.dylib (53.1.4) <ab498556-b555-310e-9041-f67ec9e00e2c> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8c958000 -     0x7fff8cb3dff7  com.apple.CoreFoundation (6.9 - 855.11) <e22c6a1f-8996-349c-905e-96c3bbe07c2f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Console log – All Messages
    Action:
    App Store > Sign In > Apple ID / Password > Sign In > Connection failed.
    02.02.14 12:51:07,365 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,372 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,377 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,384 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,390 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,396 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,402 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,409 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:09,730 SafariNotificationAgent[44337]: Error calling realpath on the home directory.
    02.02.14 12:51:09,732 com.apple.launchd.peruser.0[166]: (com.apple.SafariNotificationAgent[44337]) Exited with code: 1
    02.02.14 12:51:09,732 com.apple.launchd.peruser.0[166]: (com.apple.SafariNotificationAgent) Throttling respawn: Will start in 10 seconds
    Full report of the following incident:
    02.02.14 12:51:07,365 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    Process:         App Store [44259]
    Path:            /Applications/App Store.app/Contents/MacOS/App Store
    Load Address:    0x107a6d000
    Identifier:      com.apple.appstore
    Version:         201 (1.3)
    Build Info:      61-Firenze~201000000000000
    Code Type:       x86_64 (Native)
    Parent Process:  launchd [166]
    Date/Time:       2014-02-02 12:51:07.307 +0100
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  8
    Thread 0:
    0   libsystem_kernel.dylib                  0x00007fff888ce5da __open + 10
    1   Security                                0x00007fff8573d2af Security::MDSSession::updateDataBases() + 693
    2   Security                                0x00007fff8578feef Security::MDSSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 145
    3   Security                                0x00007fff8578fde3 mds_DbOpen(long, char const*, cssm_net_address const*, unsigned int, cssm_access_credentials const*, void const*, long*) + 211
    4   Security                                0x00007fff8573ccd7 Security::MDSClient::Directory::cdsa() const + 93
    5   Security                                0x00007fff857f995b Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 39
    6   Security                                0x00007fff8573c7b2 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 234
    7   Security                                0x00007fff85761ca5 Security::KeychainCore::DynamicDLDBList::_load() + 329
    8   Security                                0x00007fff85761b29 Security::KeychainCore::DynamicDLDBList::searchList() + 29
    9   Security                                0x00007fff8587b2b5 Security::KeychainCore::StorageManager::getSearchList(std::__1::vector<Security ::KeychainCore::Keychain, std::__1::allocator<Security::KeychainCore::Keychain> >&) + 163
    10  Security                                0x00007fff85787bc2 SecIdentityCopyPreference + 319
    11  CFNetwork                               0x00007fff87b4f3e5 HTTPProtocolSSLSupport::getSSLCertsCached(__CFString const*) + 235
    12  CFNetwork                               0x00007fff87b4f073 HTTPProtocol::setupSSLPropertiesOnStream(_CFURLRequest const*) + 363
    13  CFNetwork                               0x00007fff87b3c234 HTTPProtocol::openStream() + 80
    14  CFNetwork                               0x00007fff87b3b67a HTTPProtocol::useNetConnectionForRequest(NetConnection*, __CFHTTPMessage*, unsigned char) + 1750
    15  CFNetwork                               0x00007fff87b3aeae HTTPConnectionCacheEntry::dispatchConnectionToProtocol(NetConnection*, HTTPProtocol*, HTTPRequestMessage*, unsigned char) + 276
    16  CFNetwork                               0x00007fff87b3ac6d HTTPConnectionCacheEntry::notifyNextProtocolOfOpenConnection(NetConnection*, unsigned char) + 301
    17  CFNetwork                               0x00007fff87b37fcf HTTPConnectionCacheEntry::enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 685
    18  CFNetwork                               0x00007fff87b379cc HTTPConnectionCache::_onqueue_enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 178
    19  CFNetwork                               0x00007fff87b378f1 ___ZN19HTTPConnectionCache25enqueueRequestForProtocolEP12HTTPProtocolP15__CFHTT PMessage_block_invoke + 26
    20  CFNetwork                               0x00007fff87b2e3fc ___ZNK17CoreSchedulingSet13_performAsyncEPKcU13block_pointerFvvE_block_invoke + 25
    21  CoreFoundation                          0x00007fff8c9a2e94 CFArrayApplyFunction + 68
    22  CFNetwork                               0x00007fff87b2e2db RunloopBlockContext::perform() + 115
    23  CFNetwork                               0x00007fff87b2e183 MultiplexerSource::perform() + 269
    24  CFNetwork                               0x00007fff87b2dfb2 MultiplexerSource::_perform(void*) + 72
    25  CoreFoundation                          0x00007fff8c9d78f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    26  CoreFoundation                          0x00007fff8c9c9062 __CFRunLoopDoSources0 + 242
    27  CoreFoundation                          0x00007fff8c9c87ef __CFRunLoopRun + 831
    28  CoreFoundation                          0x00007fff8c9c8275 CFRunLoopRunSpecific + 309
    29  Foundation                              0x00007fff84482907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    30  Foundation                              0x00007fff8448270b __NSThread__main__ + 1318
    31  libsystem_pthread.dylib                 0x00007fff8c5cd899 _pthread_body + 138
    32  libsystem_pthread.dylib                 0x00007fff8c5cd72a _pthread_struct_init + 0
    33  libsystem_pthread.dylib                 0x00007fff8c5d1fc9 thread_start + 13
    Binary Images:
        0x7fff8441b000 -     0x7fff8471afff  com.apple.Foundation (6.9 - 1056) <d608edfd-9634-3573-9b7e-081c7d085f7a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85738000 -     0x7fff85990ff1  com.apple.security (7.0 - 55471) <233831c5-c457-3ad5-afe7-e3e2de6929c9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff87b07000 -     0x7fff87c77ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42cfc3db-35c8-3652-af37-4bcc73d8bdef> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff888b9000 -     0x7fff888d5ff7  libsystem_kernel.dylib (2422.1.72) <d14913db-47f1-3591-8daf-d4b4ef5f8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8c5cc000 -     0x7fff8c5d3ff7  libsystem_pthread.dylib (53.1.4) <ab498556-b555-310e-9041-f67ec9e00e2c> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8c958000 -     0x7fff8cb3dff7  com.apple.CoreFoundation (6.9 - 855.11) <e22c6a1f-8996-349c-905e-96c3bbe07c2f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation

    I have had somewhat similar problems as Øystein Ange since upgrading from Snow Leopard to Mavericks in January. But fortunately, I have been able to solve many of them after a lot of trial & error, frustration and sweat! I now long for the more than 2 years of previous Snow Leopard usage when problems were small, few and far between, and quickly solvable. I feel as if Apple has cut me adrift and left me to struggle on my own with the seemingly numerous problems of getting the performance of Mavericks to finally stabilize on my iMac.
    Øystein's Feb. 8th post asks some of the same Mavericks questions that I still have. It would be very helpful to me, and to others I'm sure, if someone/anyone has specific suggestions or solutions on what one could/should do to fix specific problems with newly installed Mavericks OSs, short of a clean, full re-install of the OS.
    I have one admin account plus the guest account on my iMac Mavericks. Does this mean my admin account is a/the root account?! How can one tell whether or not they are logging in with a root account?! What's the distinction between the root account, a user's admin account, and other standard users' accounts?! Could someone please recommend a definitive Apple document describing all the various types of Mavericks accounts, in detail, and how/when/where/why each type should be used before or along with any of the others?
    Why is it suddenly a no-no to log on to Mavericks via the root user account, when previous OS versions had no problem with this?! What's the purpose of the root user account if not to use it to log on to the computer?! If it's so dangerous, why isn't it internally safeguarded from inadvertent logins by casual users?! What damage or harm are we talking about, and why weren't personal-use customers given a big warning about this apparent "booby trap" in Mavericks?! Saying NEVER DO THAT is like closing the barn door after the horse has already bolted, and it explains nothing to the casual user.
    We can't just do a clean re-install every time something in Mavericks hiccups?! Based on my recent experience, and on what I'm seeing in this thread, I would have had to re-installed it a half dozen times in the past 2 months alone!! That's nonsensical. There's got to be a better way of fixing a newly installed Mavericks OS than doing a re-install over and over again. Why don't the Mac diagnostic and troubleshooting tools work in Mavericks' case, as they have done for me on many occasions on earlier OS versions?! What is it about Mavericks that makes it different this time?! Could it possibly have something to do with integration of Mavericks and iCloud; and, if so, what specific cautions should the casual user observe to make sure they don't jeopardize the integrity of Mavericks by doing something similar to logging in from the root account?!
    Many customers need to be brought in out of the dark! Is there an Apple Mavericks expert out there who can advise the customer community on specifically how to apply the existing repair tools to solve specific Mavericks teething problems, without having to revert to multiple OS re-installs?

  • Flex/Zend channel connect failed error...

    Hi guys.
        I am using Flex and php to develop my project. Everything works great in my local machine. However, when I upload my files to my server (godaddy.com). I got the error when loading my flex application.
    The pop-up error message is
    send failed
    channel.connect.failed.error
    Netconnection.call.Badversion: url:
    http://mydomail/folder/gateway.php
    I have upload my ZendFramewrok folder into my server and amf_config.ini has been configured. (webroot =http://mydomain)
    I am not sure what's going on here. Please help. Thanks.
    Update: my gateway.php
    <?php
    ini_set("display_errors", 1);
    $dir = dirname(__FILE__);
    $webroot = $_SERVER['DOCUMENT_ROOT'];
    $configfile = "$dir/amf_config.ini";
    //default zend install directory
    $zenddir = $webroot. '/ZendFramework/library'; //I did upload the ZendFramwork folder
    //Load ini file and locate zend directory
    if(file_exists($configfile)) {
    $arr=parse_ini_file($configfile,true);
    if(isset($arr['zend']['webroot'])){
      $webroot = $arr['zend']['webroot'];
      $zenddir = $webroot. '/ZendFramework/library';
    if(isset($arr['zend']['zend_path'])){
      $zenddir = $arr['zend']['zend_path'];
    // Setup include path
    //add zend directory to include path
    set_include_path(get_include_path().PATH_SEPARATOR.$zenddir);
    // Initialize Zend Framework loader
    require_once 'Zend/Loader/Autoloader.php';
    Zend_Loader_Autoloader::getInstance();
    // Load configuration
    $default_config = new Zend_Config(array("production" => false), true);
    $default_config->merge(new Zend_Config_Ini($configfile, 'zendamf'));
    $default_config->setReadOnly();
    $amf = $default_config->amf;
    // Store configuration in the registry
    Zend_Registry::set("amf-config", $amf);
    // Initialize AMF Server
    $server = new Zend_Amf_Server();
    $server->setProduction($amf->production);
    if(isset($amf->directories)) {
    $dirs = $amf->directories->toArray();
    foreach($dirs as $dir) {
         // get the first character of the path.
         // If it does not start with slash then it implies that the path is relative to webroot. Else it will be treated as absolute path
         $length = strlen($dir);
         $firstChar = $dir;
         if($length >= 1)
          $firstChar = $dir[0];
         if($firstChar != "/"){
          // if the directory is ./ path then we add the webroot only.
          if($dir == "./"){      
           $server->addDirectory($webroot);
          }else{
           $tempPath = $webroot . "/" . $dir;
        $server->addDirectory($tempPath);
      }else{
          $server->addDirectory($dir);     
    // Initialize introspector for non-production
    if(!$amf->production) {
    $server->setClass('Zend_Amf_Adobe_Introspector', '', array("config" => $default_config, "server" => $server));
    $server->setClass('Zend_Amf_Adobe_DbInspector', '', array("config" => $default_config, "server" => $server));
    // Handle request
    echo $server->handle();
    Error from gateway.php if I call it directly.
    Warning: require_once(Zend/Loader/Autoloader.php) [function.require-once]: failed to open stream: No such file or directory in /home/content/79/4687979/html/parkerList/gateway.php on line 27
    Fatal error: require_once() [function.require]: Failed opening required 'Zend/Loader/Autoloader.php' (include_path='.:/usr/local/php5/lib/php:http://blackwheels.info//ZendFramework/library') in /home/content/79/4687979/html/parkerList/gateway.php on line 27
    gateway.php is the rat. but I still can't figure out what's wrong. Zend/Loader/Autoloader.php is under the server root "ZendFramework/library" folder. I don't understand why my application can't find it. Thanks again!

    You will get a better response if you repost your question on the Flex forums. This forum is for the Livecycle Data Services product.

  • Flex4 Zend AMF error - NetConnection.Call.Failed: HTTP

    Hi,
    I'm working with FLEX 4 (developing in flash builder 4 plugins for eclipse) and PHP Zend Framework v 1.9.
    When I run the application from the flash builder the AMF comunication work fine, but when I try to run directly from URL in a browser I got the following error: 
    Send failed
    Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Failed: url: 'http://localhost/Project-debug/gateway.php'
    I think that I get this error since I have update my flash builder plugin.... previos version of my .swf project didn't give my this issue.
    Somebody can help me? I don't realy have any idea how to solve this problem.
    P.S.
    I don't have services-config.xml file in my project cause the amf zend samples that I followed don't say to create it, somebody knows why flex 4 doesn't need it?
    Thanks

    The MessageBroker servlet is not installed properly. The context-root of the two Tomcat LC DS installs must be different. Test hitting the context-root Flex_App on both machines (http://hostIP:8080/Flex_App). If the context-root is valid you will hit the index.html page of the valid context-root which looks like this...
    Welcome to Adobe LiveCycle Data Services ES2 Version  3!
    This is an empty LiveCycle Data Services ES application that serves as a  template for creating your custom application.
    Visit the product page for documentation and further information.
    Steve

  • RPC Connect Failed

    Hi,
    I am getting the following error in my application where in
    making RPC calls via RemoteObject.
    [RPC Fault faultString="Send failed"
    faultCode="Client.Error.MessageSend"
    faultDetail="Channel.Connect.Failed error
    NetConnection.Call.Failed: HTTP: Status 404"]
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::faultHandler()
    at mx.rpc::Responder/fault()
    at mx.rpc::AsyncRequest/fault()
    at mx.messaging::ChannelSet/::faultPendingSends()
    at mx.messaging::ChannelSet/channelFaultHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.messaging::Channel/mx.messaging:Channel::connectFailed()
    at
    mx.messaging.channels::PollingChannel/mx.messaging.channels:PollingChannel::connectFailed ()
    at
    mx.messaging.channels::AMFChannel/mx.messaging.channels:AMFChannel::statusHandler()
    I have checked the entries in services-config.xml and
    remoting-config.xml but still unable to figure out the problem.
    Any help is appreciated.
    Regards,
    Kshama

    take a closer look to the path to the remote object, error
    404 means that your rpc can't find the remoteobject

  • Remoting Connection Issue: Channel.Connect.Failed

    Solution: Turns out my client had installed a new
    firewall/web management system without telling me. My app was being
    blocked. :(
    Hi there,
    I have a Flex app using remoting and ColdFusion. My client
    has suddenly experienced the following error:
    Channel.Connect.Failed
    NetConnection.Call.BadVersion: url: '
    http://mysite/flex2gateway/'
    The weird thing is the app works when you access it from
    outside of my client's office. I'm wondering if it is some sort of
    firewall issue on their end. Any thoughts?
    Thanks.

    The issue is probably do to a problem with your configuration.  There is probably a destination or endpoint issue.  A nice and short tutorial on this can be found at http://flexbandit.com/archives/55.

  • Getting Channel.Connect.Failed

    I'm building a Flex 3 app, with BlazeDS deploying to Tomcat
    6.0 I have built/Run the example BlazeDS code with out error. When
    I try to access my remote bean from my app I get
    [RPC Fault faultString="Send failed"
    faultCode="Client.Error.MessageSend"
    faultDetail="Channel.Connect.Failed error
    NetConnection.Call.Failed: HTTP: Status 404: url: '
    http://localhost:8400/WebContent/messagebroker/amf'"
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::faultHandler()[E:\dev\3.0.x\frameworks\project s\rpc\src\mx\rpc\AbstractInvoker.as:216
    at
    mx.rpc::Responder/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\Responder.as:49 ]
    at
    mx.rpc::AsyncRequest/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncRequest .as:103]
    at
    mx.messaging::ChannelSet/faultPendingSends()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\ messaging\ChannelSet.as:1399]
    at
    mx.messaging::ChannelSet/channelFaultHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src\m x\messaging\ChannelSet.as:935]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.messaging::Channel/connectFailed()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\messagi ng\Channel.as:997]
    at
    mx.messaging.channels::PollingChannel/connectFailed()[E:\dev\3.0.x\frameworks\projects\rp c\src\mx\messaging\channels\PollingChannel.as:354]
    at
    mx.messaging.channels::AMFChannel/statusHandler()[E:\dev\3.0.x\frameworks\projects\rpc\sr c\mx\messaging\channels\AMFChannel.as:369]

    Hi,
    Can you please try tracing the FaultEvent.fault.rootCause
    object and see if there is any error message. Usually exceptions
    thrown from the server is available in this rootCause object.
    Hope this helps.

Maybe you are looking for