Xml Socket  policy to connect to a range of IPS cross domain scripting

Dear,
I have a problem with connecting to other servers rather the
one who has served the swf file.
i was facing the problem even on the same machine , so i have
provided the policy file , to be served before opening the
connection, and it works, but still in IE6 i was just skiping the
requset-policy-file that is sent by the movie and it works, rather
the other browsers didn't like this way. At that time i have
written the code to check for the header , and send back the policy
file.
the policy file that i am using is the following:
PolicyFile = @"<?xml
version=""1.0""?><cross-domain-policy><allow-access-from
domain=""192.168.1.100"" to-ports=""843""
/><allow-access-from domain=""192.168.1.101""
to-ports=""843"" /></cross-domain-policy>";
My hope is to be able to connect to 192.168.1.101:843 , and
my server web is the other ip .
Best regerds

Hi, go to
Flash Resources , you can
find a java application that can serve policy files to resolve this
problem.

Similar Messages

  • Cross domain scripting at run time using local connection flash AS2

    Hi
         I want to do live video streaming using FMS and FMLE in Flash As2. Suppose 100 users watching video online and I want to show message to  all 100 users using the Local connection.
    If I am sending message using different browser in same pc then I can get the message which was send from another swf file but I am checking from another pc then message not coming in receiver swf file.
    Please find the code below. 
    receievemovie.swf
    // Code in the receiving SWF file
    this.createTextField("result_txt", 1, 10, 10, 100, 22);
    System.security.allowDomain("*")
    System.security.allowInsecureDomain("*")
    var my_lc:LocalConnection = new LocalConnection();
    my_lc.allowDomain = function(sendingDomain:String) {
    domain_txt.text = sendingDomain;
    return true;
    my_lc.allowDomain = function(sendingDomain:String) {
    return (sendingDomain == "*");
    my_lc.allowInsecureDomain = function(sendingDomain:String) {
    return (sendingDomain == "*");
    my_lc.methodToExecute = function(param1:String) {
        result_txt.text = param1
    myResult.text=param1
    my_lc.connect("lc_name");
    sendmovie.swf
    System.security.allowDomain("*")
    System.security.allowInsecureDomain("*")
    var sending_lc:LocalConnection;
    var sending_lc:LocalConnection = new LocalConnection();
    sending_lc.allowDomain = function(sendingDomain:String) {
    return (sendingDomain == "*");
    sending_lc.allowInsecureDomain = function(sendingDomain:String) {
    return (sendingDomain == "*");
    myButton.onRelease = function(){
    sending_lc = new LocalConnection();
    sending_lc.send("lc_name", "methodToExecute", sendMsg.text);
    sendMsg.text="Message has been sent"
    If you have any other way to do it please suggest me to do that.
    Thanks & regards
    Sunil Kumar

    Hi, go to
    Flash Resources , you can
    find a java application that can serve policy files to resolve this
    problem.

  • Configuring socket policy for flex apps(with blocked port 843)?

    We have built several flex-based ecommerce apps for a fortune 500 customer of ours, that for various reasons, we need to use sockets to a different domain and requires a socket policy file, but were having trouble configuring our flex apps for deployment in thier enviornment where they are blocking virtually everything except port 80 . The current documentation in in regards to socket policy files and crossdomain files in a non-standard configuration not using port 843 is not providing any useful help to us.
    Here is the scenario:
    Flex apps are served from domain www.a.com in  to users browsers via http. The apps then make socket connections to domain www.b.com:80 where there are php scripts serving json data to the flex apps via port 80 using http(we use sockets because we need to set and read back http headers). The problem is the flex apps cannot make socket connections to the www.b.com domain without errors like below(unless we setup a socket policy server on port 843 of www.b.com, in which case everything works):
    Warning: Timeout on xmlsocket://www.b.com:80 (at 3 seconds) while waiting for socket policy file.  This should not cause any problems, but see http://www.adobe.com/go/strict_policy_files for an explanation.
    Error: Request for resource at xmlsocket://www.b.com:80 by requestor from http://www.a.com/bin-debug/DownloadManagerFlex.swf is denied due to lack of policy file permissions.
    Error: Request for resource at xmlsocket://www.b.com:80 by requestor from http://www.a.com.us/bin-debug/DownloadManagerFlex.swf is denied due to lack of policy file permissions.
    Since we cannot use port  843 for the socket policy file server, we setup the socket policy server on a different ip in the same domain: spf.b.com:80 (using the sample perl code Adobe provides), and per the docs(cited below), use Security.loadPolicyFile("xmlsocket://spf.b.com:80") before we invoke "socket.connect", to supposedly tell the flash player to check there for the socket policy file. The problem, as you can see from the error log, is that the  loadPolicyFile("xmlsocket://spf.b.com:80") is ignored.
    No matter what we do or how we set things up, we cannot get the flash player to recognize the loadPolicyFile(), it always wants to go to the port were making the socket connection on. It is unclear how to properly configure the flex app, socket policy file and crossdomain file for the above scenario. The docs allude to being able to serve  the socket policy file from a different port 80 in the same domain as the socket connection were trying to make, but were having no luck with that.
    ->Can anyone shed some light on how to make this work or what are we  missing/doing wrong? Also, if we can get this to work, are we  stuck with a 3 second delay because this(very large) customer is blocking port 843?
    As an aside,  the documentation for all this is a bit scattered, unclear and contrdictory:
    One document says:(http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security_07.html)
    "This warning usually means one of two things: first, that you need to set up a
                socket policy file server on port 843, which is the first location that Flash
                Player checks by default; or second, that you need to provide more explicit
                guidance to Flash Player from ActionScript by calling loadPolicyFile to indicate the location
                of a socket policy file. When you call loadPolicyFile rather than allowing Flash Player to check
                locations by default, Flash Player will wait as long as necessary for a
                response from a socket policy file server, rather than timing out after 3
                seconds."
    Another document says(http://www.adobe.com/devnet/flashplayer/articles/socket_policy_files.html):
    "If an ActionScript Security.loadPolicyFile() command exists within               the SWF file, then the Flash Player runtime checks that location. Flash Player checks               the destination of the loadPolicyFile() only after it has checked the               master policy file on port 843 for permission to acknowledge other policy               files. If the developer has not specified a loadPolicyFile() command,               then Flash Player checks the destination port of the connection."

    I found the reason why the Flex application was ignoring the socket policy (crossdomain.XML). I have a policy server that listens to port 843 and submits the policy to the Flex client. My policy was getting ignored by the Flex application and I was getting the sandbox security error you were getting. The solution to this problem isto write a null byte right after the policy server sends the policy. I'm using Apache Mina that is wrtten is Java and the null byte is written as follows:
    public void sessionCreated (IoSession session)
            throws Exception
            session.write(_policy);  -- > policy string
            session.write("\u0000"); --> null byte
             //session.close(true); ---> No need to close the session because it is closed by the Flex client after it receives the null byte.
    Now my Flex application can read and accept the policy from port 843 and I'm not getting more security violations.
    Thanks for your reply,
    Alberto

  • Load XML file from addon domain without cross-domain Policy file

    Hello.
    Assuming that there are two addon domains on the same server: /public_html/domain1.com       and      /public_html/domain2.com
    I try to load XML file from domain2.com into domain1.com without using cross-domain policy file (since it doesn’t work on xml files in my case).
    So the idea is to use php file in order to load XML and read it back to flash.
    I’ve found an interesting scripts that seems to do the job but unfortunately I can't get it to work. In my opinion there is somewhere problem with AS3 part. Please take a look.
    Here are the AS3/PHP scripts:
    AS3 (.swf in www.domain1.com):
    // location of the xml that you would like to load, full http address
    var xmlLoc:String = "http://www.domain2.com/MyFile.xml";
    // location of the php xml grabber file, in relation to the .swf
    var phpLoc:String = "loadXML.php";
    var xml:XML;
    var loader:URLLoader = new URLLoader();
    var request:URLRequest = new URLRequest(phpLoc+"?location="+escape(xmlLoc) );
    loader.addEventListener(Event.COMPLETE, onXMLLoaded);
    loader.addEventListener(IOErrorEvent.IO_ERROR, onIOErrorHandler);
    loader.load(request);
    function onIOErrorHandler(e:IOErrorEvent):void {
        trace("There was an error with the xml file "+e);
    function onXMLLoaded(e:Event):void {
        trace("the rss feed has been loaded");
        xml = new XML(loader.data);
        // set to string, since it is passed back from php as an object
        xml = XML(xml.toString());
        xml_txt.text = xml;
    PHP (loadXML.php in www.domain1.com):
    <?php
    header("Content-type: text/xml");
    $location = "";
    if(isset($_GET["location"])) {
        $location = $_GET["location"];
        $location = urldecode($location);
    $xml_string = getData($location);
    // pass the url encoded vars back to Flash
    echo $xml_string;
    //cURLs a URL and returns it
    function getData($query) {
        // create curl resource
        $ch = curl_init();
        // cURL url
        curl_setopt($ch, CURLOPT_URL, $query);
        //Set some necessary params for using CURL
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
       //Execute the curl function, and decode the returned JSON data
        $result = curl_exec($ch);
        return $result;
        // close curl resource to free up system resources
        curl_close($ch);
    ?>

    I think you might be right about permissions/settings on the server for php. Unfortunately I'm not allowed to adjust them.
    So I wrote my own script - this time I used file path instead of http address of the XML file.  It works fine in my case.
    Here it is:
    XML file on domain2.com:
    <?xml version="1.0" encoding="UTF-8"?>
    <gallery>
        <image imagePath="galleries/gallery_1/images/1.jpg" thumbPath="galleries/gallery_1/thumbs/1.jpg" file_name= "1"> </image>
        <image imagePath="galleries/gallery_1/images/2.jpg" thumbPath="galleries/gallery_1/thumbs/2.jpg" file_name= "2"> </image>
        <image imagePath="galleries/gallery_1/images/3.jpg" thumbPath="galleries/gallery_1/thumbs/3.jpg" file_name= "3"> </image>
    </gallery>
    swf  on domain1.com:
    var imagesXML:XML;
    var variables:URLVariables = new URLVariables();
    var varURL:URLRequest = new URLRequest("MyPHPfile.php");
    varURL.method = URLRequestMethod.POST;
    varURL.data = variables;
    var MyLoader:URLLoader = new URLLoader;
    MyLoader.dataFormat =URLLoaderDataFormat.VARIABLES;
    MyLoader.addEventListener(Event.COMPLETE, XMLDone);
    MyLoader.load(varURL);
    function XMLDone(event:Event):void {
        var imported_XML:Object = event.target.data.imported_XML;
        imagesXML = new XML(imported_XML);
       MyTextfield_1.text = imagesXML;
       MyTextfield_2.text = imagesXML.image[0].attribute("thumbPath");  // sample reference to attribute "thumbPath" of the first element
    php file on domain1.com:
    <?php
    $xml_file = simplexml_load_file('../../domain2.com/galleries/gallery_1/MyXMLfile.xml');  // directory to XML file on the same server
    $imported_XML = $xml_file->asXML();
    print "imported_XML=" . $imported_XML;
    ?>
    Regards
    PS: for those who read the above discussion: the first and the second script work but you must test which one is better in your situation. The first script will also work between two domains on different servers. No cross domain policy file needed.

  • Flash player skips socket policy on 843

    So, this is a copy of another post I made, but I get a sneaking suspicion I put the post in the wrong forum:
    http://forums.adobe.com/thread/497758?tstart=0
    The summary:
    The Socket class in flash player sometimes, for some users (across all sorts of OS and Browsers) will not ask for the policy file from port 843 first, but instead will go straight to the port of the outgoing request, which in this case is our game server, who doesn't really understand the request.
    In every case so far the user *is* using the latest version of flash too, so it's not an issue without outdated policy methods, which would have been my first guess.
    For most people it works just fine, but I posted a log in the thread for one of the non-working players. It's pretty mysterious, and I haven't found a fix yet... though I'm going to experiment with some work arounds.

    Yes, we use port above 1024 both for socket connection and for gettting a security policy file. You can do the same - FP try to get a policy file from 843 latter when the client try to make a connection via socket if for some reason Fp is not get a socket policy, the  socket will rise a security error. When handle this event client can try to get socket security policy file from additional port. In this way can can eliminate sending a policy file request to your port.

  • Socket Policy in 9,0115,0

    Is there anyone out there who knows how to sort out this
    issue?
    I am trying to access mail.myserver.com from myserver.com, I
    have been told that I need a socket policy file, which is like the
    crossdomain.xml file I think.
    I have spoke with my webmaster admin and I told them that I
    think it has to be served over port 843 per adobe docs. I can't
    seem to get it working, has anyone managed to do this?
    Thanks
    Neil

    Could be. File a support case or open a bug in the public
    bugbase (
    http://www.adobe.com/go/kb403392)

  • Socket read error: connection reset by peer

    Hi.
    Has anybody experienced the error message �Socket read error: connection reset by peer�
    Please see below for detailed information.
    Appreciate your help
    Regards
    RT
    Enviroment specification
    Server: HP/UX 11.00 64-bit, Oracle RDBMS 8.1.6.0.0 64-bit
    2 firewalls between client and db.
    Client:
    Win 2000,
    SP3,
    Oracle Client 8.1.7.0.0 ,JDBC OCI (thin JDBC driver,class12.zip)
    JDK 1.3
    JRUN3.0
    The TCP protocol is being used in the communication
    Error messages
    Web Users receive:           Socket read error: connection reset by peer
    Trace files on the sever:      Read unexpected EOF ERROR on 18.
    Explanation: The error in the server sqlnet trace file, suggests that a client connection has terminated abnormally, i.e. client machine powered off, a cable removed or a network connection aborted without warning. No user has complained of such a problem and there is no client trace with an error.
    The problem
    The users of the java web application, experiencing an exception almost once or twice a day.
    The JRUN web-server reports broken connections to the db and client are receiving "connection reset by peer".
    At the moment when the errors occurs the users just have to wait a while(2-10 min) and then they can use the web application again.(no action is taken)
    This problem can not be reproduced. The problem happens only occasionally when the network is under heavy load and new DB connection is being created.
    The application
    The java web-application uses a customized connection pooling against the database. This pool is shared among all the users of the website. whenever a user process needs to fetch data from the database, a free connection from this pool is allocated. The application is testing if the connection is valid before making a transaction (select '1' from dual). When the error occurs a ORA-3113 end-of-file on communication channel is returned to the application.
    The path between the client and db involves at least two firewalls. The firewalls are opened for sql*net traffic. The network group can tell that enquiries from the app.server is not getting feedback from the db. They have not however, identified if the enquiries are reaching the db-srever, or if they are stopped earlier in the network.
    Around 1000 users, are using other applications which uses dedicated sqlnet connections against the db and they have not experienced any problems.
    Issues considered
    Connection pooling
    It is a customized connection pooling, developed by Lindorff developers.
    I have read through the source code for the connection pooling and it does the job as it should, and in case of bad connection, it tries to create a new connection.
    The log file shows that the call to the method DriverManager.getConnection() hangs until the server goes down, which is probably because of the fact that the method DriverManager.setLoginTimeout(), does not take effect and timeout value is Zero. ( According to oracle , Oracle JDBC does not support login timeouts and calling the static DriverManager.setLoginTimeout() method will have no effect).
    Firewall
    One thing to consider is when the firewall may decide to shut down the socket due to long inactivity of a connection. This will cause problems to JDBC Connection Pool because the pool is not aware of this disconnection at the TCP/IP level; until someone checks out the connection from the pool and tries to use it. The user will get a Socket read error: connection reset by peer.
    Jrun timeout paramter is less than the firewall�s timeout so the firewall will not close a connection before Jrun does.
    Number of processes the DB can handle
    Processes parameter is 1300, , they have not experienced the Oracle error msg �max # of processes reached�.
    Port redirection through a firewall:
    Since the firewall has a sql net proxy Port redirection through a firewall is not a problem. Problems with port redirection only appear at connect time, but in this situation the connections fail long after the connection is established.
    The network group
    The network people who investigaged the problem at Lindorff report that there are a significant amount of "dropped packages" between the database server and the jdbc client (web-application) 24 hrs. The reason for this is "unknown established TCP packet" which means that the firewall does not consider these packages to be part of an already established session. The network group believes this happen because one of the hosts send a RESET or FIN signal which the firewall have noticed but are not received by the other host.
    It seems like the firewall are dropping packages bacause of "Unknown
    established TCP packet" from both the JDBC client and the TNSLISTENER on the database server. The dropped packages are SQL*Net v2 traffic so clearly Oracle products are involved

    Presumably something is working.
    Thus the problem is not with your code. At least not the database part that you have control over.
    That error occurs when the other side closes the socket. Presumably you are catching lost connection exceptions and trying to restore it.

  • TS2570 I tried a safe reboot and my computer still shows a grey screen and the spinning gear when turned on. The last message on the reboot said "Launch_msg(): socket is not connected" have no idea what that means.

    I tried a safe reboot my computer had a grey screen and a spinning gear. Safe boot did not fix the problem.
    The last writing on the safe boot said " Launch_msg(): Socket is not connected.
    Tried re starting and same grey screen and spinning gear

    Can you boot to the Snow Leopard DVD?

  • Lauch_msg() socket is not connected

    I installed Lion Server in my Macmini early 2009 and after a while of use when I boot the system it stays stuck at the gray boot screen.
    If I boot verbose the system last message is lauch_msg() socket is not connected and it remains at it.
    That's the second time this happens. At first time I reinstalled the system using the recover partition and it worked till I rebooted it.
    Is there a solution to this problem ? Is it a known problem of Lion Server ? I would like to found a different solution than reinstall the system again.
    Regards,
    Anderson

    I am having the same issue on a 2009 Unibody MacBook.  Attempts to boot 10.7 Lion Server hang after
    net.inet6.ip6.fw.enable: 1 -> 0
    BootCacheControl: Unable to open /var/db/BootCache.playlist: 2 No such file or directory
    launch_msg(): Socket is not connected
    DNSServiceRegister("afpovertcp"): -65563
    DNSServiceRegister("afpovertcp"): -65563
    DNSServiceRegister("odproxy"): -65563
    DNSServiceRegister("odproxy"): -65563
    DNSServiceRegister("rfb"): -65563
    DNSServiceRegister("rfb"): -65563
    DNSServiceRegister("smb"): -65563
    DNSServiceRegister("smb"): -65563
    DNSServiceRegister("ssh"): -65563
    DNSServiceRegister("sftp-ssh"): -65563
    DNSServiceRegister("ssh"): -65563
    DNSServiceRegister("sftp-ssh"): -65563
    launch_msg(): Socket is not connected
    This is the second time I've reinstalled.  These are normal App Store clean installs on newly formatted hard drives with no additional software or drivers running.
    I have another partition that has 10.7 Lion without Server on the same hard drive in the same computer and it without problems.  I appreciate any feedback.

  • What does 'Socket is not connected' when slow booting mean?

    I updated software and restarted my mac, It didn't move from the grey screen so I powered off and on while pressing Shift + Cmd +V. It now will not not move from 'launch_msg(): Socket is not connected'. What does this mean?

    Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • HT3964 socket is not connected

    My Macbook pro would not boot,
    the Launch Msg says (Socket is not Connected).
    Pls anyone, do help out with steps to get it back on track.
    thanks...

    Wild guess. Is there an ssh-agent running under the username you are logging into?
    I know that in Leopard when you interactively login, you get an ssh-agent created and most likely a socket is used to communicate with it.
    So I'm wondering launchd (which I think starts up the sshd) is having problems creating an ssh-agent for the login session.
    Again, this is a wild guess.

  • Connection object Number Ranges

    Hi Experts,
    Internal number range was not working in Connection object
    When I press enter at ES55 screen the following message was coming
    Internal number assignment not possible for structured key
    Diagnosis
    You have not entered a connection object, device location key, or a property key.
    Since the key has structure XXXX-XXX-AA-NN, a number cannot be assigned internally.
    System Response
    The transaction was terminated.
    Procedure
    Assign a key with structure XXXX-XXX-AA-NN.
    After this message I have deleted the existing number ranges and added new number ranges in configuration settings,
    NO: 01 From No: 1 To No:10000 current no: 0
    NO: 02 From No: 10001 To No:20000 ext after that both internal and external number ranges were not working. How to resolve this error please guide me.
    Regards
    vishnu

    Hi,
    As Connection Object & Device Location are functional locations so you have to be sure to map it to the same structure as defined in PM.
    The structure can be defined in PM through this path:
    Plant Maintenance and Customer Service -> Master Data in Plant Maintenance and Customer Service -> Technical Objects -> Functional Locations -> Create Structure Indicator for Reference Locations/Functional Locations                                                                                                    
    Here you can define your own edit mask for your structure for the functional location.
    according to the error message you got the Edit mask defined in your system must be XXXX-XXX-AA-NN.(kindly Check).
    X means you can enter both number and letters.
    A means only letters can be entered.
    N means only numbers can be entered.
    So try something like 1ABC-1A-QW-77(again check with the old number range that was defined)
    You can change the edit mask to 'XXXXXXX......XXXXXXXX'.(full field filled with X).
    and then I guess you can use the number range you have defined(as you wrote above) in the Connection Object number range(Object : ISU_EHAU)
    Kindly revert back for any clarifications.
    Regards,
    Rakesh..
    Edited by: Rakesh Dasgupta on Feb 12, 2011 2:41 PM

  • HELP Logfile Error: applepushserviced: APSCourier: 0x7f8a6150fad0 : Stream error occurred for APSTCPStream: 0x7f8a61504a40 : The operation couldn't be completed. Socket is not connected

    Two days ago I noticed a noise my MBP started to make all by itself, it started basically right after I changed the sync contacts option in iTunes for my iPhone to sync my contacts along with my gmail contacts. I've changed it back since then but it continues to make the noise and log file error entries are still posting. Below is my error log file for this issue from the first instance to the last one. Can someone please tell me how to fix this?
    5/6/12 5:36:55.323 PM applepushserviced: <APSCourier: 0x7f8a6150fad0>: Stream error occurred for <APSTCPStream: 0x7f8a61504a40>: The operation couldn’t be completed. Socket is not connected
    5/6/12 5:36:55.338 PM applepushserviced: <APSCourier: 0x7f8a6150fad0>: Stream error occurred for <APSTCPStream: 0x7f8a61504a40>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/6/12 5:36:55.343 PM applepushserviced: <APSCourier: 0x7f8a6150fad0>: Stream error occurred for <APSTCPStream: 0x7f8a6152b960>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/6/12 6:19:08.556 PM applepushserviced: <APSCourier: 0x7f8a6150fad0>: Stream error occurred for <APSTCPStream: 0x7f8a6152ab60>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/6/12 6:31:36.063 PM applepushserviced: <APSCourier: 0x7f8a6150fad0>: Stream error occurred for <APSTCPStream: 0x7f8a6152b960>: The operation couldn’t be completed. Socket is not connected
    5/6/12 6:31:36.077 PM applepushserviced: <APSCourier: 0x7f8a6150fad0>: Stream error occurred for <APSTCPStream: 0x10ab5a350>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/6/12 6:31:36.085 PM applepushserviced: <APSCourier: 0x7f8a6150fad0>: Stream error occurred for <APSTCPStream: 0x10ab5a350>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/6/12 6:37:38.014 PM applepushserviced: <APSCourier: 0x7f8a6150fad0>: Stream error occurred for <APSTCPStream: 0x7f8a615291a0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/6/12 6:37:40.525 PM applepushserviced: <APSCourier: 0x7f8a6150fad0>: Stream error occurred for <APSTCPStream: 0x7f8a6152cd20>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/6/12 9:16:16.042 PM applepushserviced: <APSCourier: 0x7f8a6150fad0>: Stream error occurred for <APSTCPStream: 0x7f8a61501990>: The operation couldn’t be completed. Socket is not connected
    5/6/12 9:16:16.065 PM applepushserviced: <APSCourier: 0x7f8a6150fad0>: Stream error occurred for <APSTCPStream: 0x10ab4bf30>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/6/12 9:16:16.070 PM applepushserviced: <APSCourier: 0x7f8a6150fad0>: Stream error occurred for <APSTCPStream: 0x7f8a615291a0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/6/12 9:16:17.575 PM applepushserviced: <APSCourier: 0x7f8a6150fad0>: Stream error occurred for <APSTCPStream: 0x10ab5a350>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/6/12 9:16:18.597 PM applepushserviced: <APSCourier: 0x7f8a6150fad0>: Stream error occurred for <APSTCPStream: 0x10ab58270>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 5:44:10.355 AM applepushserviced: Unable to bootstrap_lookup connection port for 'com.apple.iCalPush': unknown error code
    5/7/12 7:59:36.004 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a6150fc30>: The operation couldn’t be completed. Socket is not connected
    5/7/12 7:59:36.065 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a6150fc30>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 7:59:36.096 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab5d240>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 7:59:36.520 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61501990>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 7:59:39.044 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61501990>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 7:59:41.177 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab7f8d0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 7:59:43.695 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab7f8d0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 8:51:48.271 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab67f60>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 8:51:48.272 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a6150fc30>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 9:16:30.061 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab4bf30>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 9:17:37.165 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a6152b960>: The operation couldn’t be completed. Socket is not connected
    5/7/12 9:17:37.172 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab6c0b0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 9:17:37.188 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a6150fc30>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 10:20:19.760 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a6152b960>: The operation couldn’t be completed. Socket is not connected
    5/7/12 10:20:19.766 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab87a00>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 10:20:19.775 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab87a00>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 10:20:19.781 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a615291a0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 10:21:47.436 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a6150fc30>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 10:21:47.671 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a6150fc30>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 1:45:59.140 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab6e570>: The operation couldn’t be completed. Socket is not connected
    5/7/12 1:45:59.155 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a6152b960>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 1:45:59.243 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab73150>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 1:46:00.308 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab87a00>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 2:09:38.352 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab87a00>: The operation couldn’t be completed. Socket is not connected
    5/7/12 2:09:38.394 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab87a00>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 2:09:38.414 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab73070>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 2:09:39.301 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab73070>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 5:34:43.403 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a6150fc30>: The operation couldn’t be completed. Socket is not connected
    5/7/12 5:34:43.430 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a6150fc30>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 5:34:43.447 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61526790>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 5:34:45.952 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61526790>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 6:20:48.145 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61501990>: The operation couldn’t be completed. Socket is not connected
    5/7/12 6:20:48.169 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61501990>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 6:20:48.178 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab6d360>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 6:20:48.184 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61553e50>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 6:33:59.398 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab58660>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 6:34:01.913 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a6150fc30>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 6:57:20.569 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab66ab0>: The operation couldn’t be completed. Socket is not connected
    5/7/12 6:57:20.583 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61504a40>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 8:11:38.386 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61504a40>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 9:14:13.280 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab68960>: The operation couldn’t be completed. Socket is not connected
    5/7/12 9:14:13.298 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab68960>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 9:14:13.311 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61526790>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 9:14:14.076 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61501990>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 9:23:52.792 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a615479b0>: The operation couldn’t be completed. Socket is not connected
    5/7/12 9:23:52.809 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab58270>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/7/12 9:23:52.828 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab58270>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 1:01:40.292 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab6d360>: The operation couldn’t be completed. Socket is not connected
    5/8/12 1:01:40.307 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab6d360>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 1:01:40.312 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab3fe30>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 2:49:58.175 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab3fe30>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 5:31:59.322 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab6d360>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 5:32:00.256 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61526790>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 5:32:01.763 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61526790>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 5:32:02.767 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a6150fc30>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 6:02:10.243 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a615479b0>: The operation couldn’t be completed. Socket is not connected
    5/8/12 6:02:10.268 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a615479b0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 6:02:10.323 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab3fe30>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 6:02:12.129 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61554bf0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 6:02:14.638 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61554bf0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 10:58:53.278 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab68960>: The operation couldn’t be completed. Socket is not connected
    5/8/12 10:58:53.307 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab68960>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 10:58:53.315 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab68960>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 11:41:08.131 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a615291a0>: The operation couldn’t be completed. Socket is not connected
    5/8/12 11:41:08.152 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a615291a0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 11:41:08.249 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a615168f0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 11:41:09.746 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab73070>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 11:46:54.727 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab63590>: The operation couldn’t be completed. Socket is not connected
    5/8/12 11:46:54.740 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab63590>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 11:46:54.746 AM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x7f8a61504a40>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 1:55:41.541 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab73070>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    5/8/12 1:55:44.051 PM applepushserviced: <APSCourier: 0x7f8a615343a0>: Stream error occurred for <APSTCPStream: 0x10ab66ab0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)

    I get same error, i was trying to, understand why the host in my Terminal was "HOST139cddb40e29 " and not "MacBookHouse", then after the same error you get i see this two lines, just after:
    21/06/12 13:05:22,371 configd: network configuration changed.
    21/06/12 13:05:22,747 configd: setting hostname to "HOST139cddb40e29"
    May be make some sense to somebody. i will see...

  • Oracle XML vaidation causes database connection lost.

    Schema document:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
         <xsd:annotation>
              <xsd:documentation xml:lang="en">
              </xsd:documentation>
         </xsd:annotation>
         <xsd:element name="BDDString" type="xsd:string"/>
    </xsd:schema>
    XML document:
    <?xml version="1.0" encoding="UTF-8"?>
    <BDDString><Path>USA</Path></BDDString>
    Result http://apps.gotdotnet.com/xmltools/xsdvalidator/Default.aspx validation:
    Validation error:
    <?xml version="1.0" encoding="UTF-8"?>
    <BDDString
    Error at (2,14): The element 'BDDString' has invalid child element 'Path'. An error occurred at , (2, 14).
    Error at (2,14): The 'Path' element is not declared. An error occurred at , (2, 14).
    <Path>USA</Path></BDDString>ORACLE validation:
    Declare
         xmlObj XMLType;
    begin
         xmlObj := XMLType('<?xml version="1.0" encoding="UTF-8"?><BDDString><Path>USA</Path></BDDString>',
         'cb78db306e061027a7c4b02b1a84d6fb');
         XMLType.schemavalidate(xmlObj);
    end;
    Result: Oracle XML vaidation causes database connection lost!
    *** SCRIPT START : Session:M1GLOBAL_DEV15@MATRIX(5) 3-&#1084;&#1072;&#1088;-2005 14:05:41 ***
    Start SQL Editor Execution ...
    Processing ...
    xmlObj := XMLType('<?xml version="1.0" encoding="UTF-8"?>
    ORA-03113: end-of-file on communication channel
    *** SCRIPT END : Session:M1GLOBAL_DEV15@MATRIX(5) 3-&#1084;&#1072;&#1088;-2005 14:08:02 ***
    End SQL Editor Execution
    Task "SQL Editor Execution": Operation aborted
    SQL Editor Execution terminated with errors
    Task "SQL Editor Execution" in DoTerminate(): Session Manager: No connection to M1GLOBAL_DEV15@MATRIX
    Help!
    Question:
         1)Why Oracle validation incorrectly works?
         2)How it to correct?

    Hi,
    1- what is the Reports version being used?
    2- What is the error you are getting?
    3- Have you tried to enable reports trace and see what is happening in trace file?
    Thanks, Roberto

  • HELP! iMac won't start up - launch_msg(): Socket is not connected

    I've got an older 1.8GHz Intel iMac that I run as a server. The hard drive is partitioned into two volumes - one with 10.6.8 on it, and the other with Server 10.6.8. It was running fine until I restarted yesterday - I got the apple logo and the spinning progress wheel as though it was starting fine, but it just stayed like that forever. No problem, I'll just start up from the other partition, right? Wrong - same exact problem, no matter which partition I try to start from. When booting in safe mode verbose, the last message I see is "launch_msg(): Socket is not connected". I run disc utility and it finds no problems. Repair permissions finds some files in apple's help documentation that need fixing, which is done, but the problem persists.
    I try to install a fresh system, but the system installer I have is OS 10.6.3, and it won't let me install over the "newer" 10.6.8 system. Argh!
    I have an external USB hard drive, so I install a fresh system on that and am able to boot from it just fine. I rename the system and library folders on the internal drive so it won't recognize there's a system installed there. Then I'm able to do a fresh install of Server 10.6.3 on the internal drive. Installation goes fine, but guess what - when it reboots, the same problem still exists! Grey screen, apple logo, spinning progress wheel forever.
    I'm about at wit's end here and would love some help!
    The signs seem to be pointing to the hard drive being a problem, but disk utility finds no issues, and I'm able to copy files from it just fine. This is a 3TB hard drive that's less than a year old and was functioning just fine. I'm hoping to find a solution that doesn't involve reformatting this beast.
    Any ideas appreciated! TIA.

    It would be useful to know if you have a good backup of the important stuff on your HD. If not, its time to make one first. You should be able to do this using FW Target disk mode as suggested in my earlier post.
    Deleting the iDvd plist file won't have been the cause of the problem, Rhthym.
    Rather it sounds as if the computer is starting up in "single user" mode for some reason. (see http://docs.info.apple.com/article.html?artnum=106388 )
    First try typing "exit" and hitting return, instead of "reboot".
    If this doesn't fix it, I'd reset the PRAM (hold down the command option p r keys while starting up - not just restarting - the computer and wait for the chimes to sound three times ) - see http://docs.info.apple.com/article.html?artnum=2238
    The fact that the computer gets stuck at this point, and the password message, also hints at the possibility that a corrupted "Netinfo database" may be the problem. Netinfo is essentially the system that OSX uses to take you beyond the single user "unix" system that you are currently booting into. Replacing this involves playing around with some significant unix commands though, so its not recommended unless you feel confident with such things. You can find instructions on how to replace it at http://docs.info.apple.com/article.html?artnum=107210
    If you still can't start up normally you should consider doing an "archive and install" from the OS CD. It may be that another OS system file related to the boot process has become corrupted. Doing an archive and install will leave your data correct , but replace the OS. You will need to re-install any OS updates again though - see http://docs.info.apple.com/article.html?artnum=301270
    If you contact Apple technical support tell them that the problem is that your computer is continually booting into "Single User mode".
    Cheers
    Rod

Maybe you are looking for

  • Can I use my Mac OS iTunes Library with Windows XP under Boot Camp?

    Hello. I have a Mac Pro with two drives, a 1TB Mac OS 10.5 drive and a 500GB Windows XP drive. I have a large iTunes library on my Mac OS drive, and I'd like to be able to access it when I'm using XP. I downloaded MacDrive hoping that I'd be able to

  • Can't import from SD Card

    My i-Mac, running OSX 10.5.6 is no longer able to import photo files from my SD cards, into Aperture 2.1.2. I have tried to import both using a USB connection between camera and computer, and by using a USM card reader. Interestingly, there is no pro

  • New machine

    If I download right now to my currents wi.does 7 pc but go buy a new windows 8 pc, that I want to use; do I just download the apps again to the new machine?

  • Parameter in the center header part of the template.

    Hi All, I need to display a parameter in the center header part of the template. I tried <?template: Header?> <?PARTY_NAME ?><?horizontalAlignmentnt="CENTER?><?end template?> but its not displaying center . Could you please suggest Thanks Narsing

  • Firmware error how my nano is'nt responing

    my ipod wasnt updateding on itunes so i tried restroing it but it told my that there was firmware error and now it will not turn on.Can some please help me!!