Socket operation on nonsocket

Hi,
I have an SMSModule that:
* connects to an SMS center via a socket.
* sends an SMS.
* disconnects
* if SMS send fails then sms is put in queue and we do the whole thing
again.
This worked fine when I only did one sms. But when I put them in a queue
I got this problem.
Any hints or ideas?
//Mikael
Trace
Sending sms to queue
now waiting...
Queue is not empty sending.....
class com.lightlabs.teaching.help.lab3.SMSModule:send()
class com.lightlabs.teaching.help.lab3.SMSModule:connect()
class com.lightlabs.teaching.help.lab3.MSIPProtocolHandler:connect()
MSIPIncomingHandlerThread starting...
GOT: !LogonConf:
mSIP Kommando var: !LogonConf
CoolFlix log: MSIPProtocolHandler;setLoggedin(true)
Is the module connected? :true
CoolFlix log: MSIPProtocolHandler;sendSMS
CoolFlix log: Waiting for response from SMSC
MSIPIncomingHandlerThread starting...
GOT: SubmitConf:MsgReference=9,At=1058494566369,
mSIP Kommando var: SubmitConf
CoolFlix log: MSIPProtocolHandler:setMessageSent()
GOT:
StatusInd:MsgReference=9,Sequence=11,At=1058494567359,Originator=0046702673044,Status=buffered,Reason=0,Time=1058494567,
mSIP Kommando var: StatusInd
CoolFlix log: MSIPProtocolHandler:getMessageSent()
CoolFlix log: Message has been sent
CoolFlix log: MSIPProtocolHandler:setMessageSent()
class com.lightlabs.teaching.help.lab3.SMSModule:disconnect()
class com.lightlabs.teaching.help.lab3.MSIPProtocolHandlerdisconnect()
GOT:
StatusInd:MsgReference=9,Sequence=12,At=1058494576359,Originator=0046702673044,Status=delivered,Reason=0,Time=1058494576,
mSIP Kommando var: StatusInd
GOT: !LogoffConf:
mSIP Kommando var: !LogoffConf
CoolFlix log: MSIPProtocolHandler;setLoggedin(false)
We got LogOffConf
Waiting ......for thread to die
java.net.SocketException: Socket operation on nonsocket: JVM_recv in
socket input stream read
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:116)
at
sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:405)
at
sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:445)
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:179)
at java.io.InputStreamReader.read(InputStreamReader.java:167)
at java.io.BufferedReaMSIPIncomingHandlerThread dying...
der.fill(BufferedReader.java:136)
at java.io.BufferedReader.readLine(BufferedReader.java:299)
at java.io.BufferedReader.readLine(BufferedReader.java:362)
at
com.lightlabs.teaching.help.lab3.MSIPIncomingHandlerThread.run(MSIPIncomingHandlerThread.java:31)
java.net.SocketException: Socket operation on nonsocket: JVM_recv in
socket input stream read
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:116)
at
sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:405)
at
sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:445)
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:179)
at java.io.InputStreamReader.read(InputStreamReader.java:167)
at java.io.BufferedReader.fill(BufferedReader.java:136)
at java.io.BufferedReader.readLine(BufferedReader.java:299)
at java.io.BufferedReader.readLine(BufferedReader.java:362)
at
com.lightlabs.teaching.help.lab3.MSIPIncomingHandlerThread.run(MSIPIncomingHandlerThreaMSIPIncomingHandlerThread
dying...
d.java:31)
Queue is not empty sending.....

Hi,
I just provided the output trace. I have a zip file with the code I am using and it is a bit to much to copy and paste. I am willing to send you the code in a zip if you would like to look at it.
Basically in my SMSModule I start a thread that that checks if a queue has an sms. If It has an sms then we do send().
Send () --> connect(), sendSMS(),disconnect()
For some reason the is a problem when we disconnect.
Any ideas?
//Mikael
SMSModule.java
public class SMSModule extends Thread{
public static final int MSIP_PROTOCOL=1;
public static final int SMPP_PROTOCOL=2;
private static SMSModule instance;
//Properties
private String protocol = null;
private String host = null;
private int port = 0;
private String userid = null;
private String passwd = null;
//SMS
private Sms smsCurrent = null;
private Sms smsOldest = null;
private Sms smsFailed = null;
private QueueHandler qh;
private int protocolType;
private SMSProtocolHandler myProtocolHandler;
private SMSModule(){
//Create a queue
qh = new QueueHandler();
public static SMSModule getInstance(){
if(instance == null){
instance = new SMSModule();
return instance;
public void run (){
while(true){
//Check queue
if(!qh.empty()){
send();
public void setProtocol(int protocolType){
this.protocolType=protocolType;
public void connect(String ip,
int port,
String username,
String password)
throws Exception{
if(myProtocolHandler!=null)
throw new Exception("SMS Module already connected!");
switch(protocolType){
case MSIP_PROTOCOL:
myProtocolHandler=new MSIPProtocolHandler();
break;
// case SMPP_PROTOCOL:
// myProtocolHandler=new SMPPProtocolHandler();
// break;
default:
throw new Exception("Protocoltype "+protocolType+" unknown or not set.");
myProtocolHandler.connect(ip,port,username,password);
public void disconnect() throws Exception{
if(myProtocolHandler==null)
throw new Exception("SMS Module not connected!");
myProtocolHandler.disconnect();
public boolean isLoggedIn(){
if(myProtocolHandler==null)
return false;
return myProtocolHandler.isLoggedIn();
public void sendSMS(){
if(isLoggedIn()){
//We have connection to SMSC
//Get sms from queue
smsCurrent =(Sms)qh.get();
//Get originator, body and destination
String from = smsCurrent.getOriginator();
String message = smsCurrent.getBody();
String to = smsCurrent.getDestination();
//send SMS
myProtocolHandler.sendSMS(from, message,to);
debug("Waiting for response from SMSC");
try{
Thread.sleep(5000);
}catch(Exception e){}
if(myProtocolHandler.getMessageSent()){
debug("Message has been sent");
myProtocolHandler.setMessageSent(false);
}else{
debug("Message not successfully sent");
//Put message back in queue
qh.add(smsCurrent);
}else{
System.err.println("There is no connection");
public void setHost(String host){
this.host = host;
public void setPort(int port){
this.port = port;
public void setUserid(String userid){
this.userid = userid;
public void setPasswd(String passwd){
this.passwd = passwd;
private void send(){
try {
connect(host,port,userid,passwd);
try{
Thread.sleep(5000);
}catch(Exception e){}
sendSMS();
try{
Thread.sleep(5000);
}catch(Exception e){}
disconnect();
}catch (Exception e){
e.printStackTrace();
/* Debug support */
private static boolean debugOn = true;
private static void debug(String msg){
if(debugOn)
System.out.println("\nCoolFlix log: "+msg+"\n");
public class MSIPProtocolHandler implements SMSProtocolHandler{
private MSIPHelper myHelper;
private Socket connection;
private BufferedReader in = null;
private PrintWriter out = null;
private boolean hasLoggedIn=false;
private boolean messageSent=false;
private MSIPIncomingHandlerThread myIncomingHandlerThread;
public MSIPProtocolHandler(){
myHelper=new MSIPHelper();
* F���rs���ker koppla upp sig mot en SMS-server.
* @param ip address till SMS-servern
* @param port port p��� SMS-servern
* @param username anv���ndarnamn f���r inloggning
* @param password l���senord f���r inloggning
public synchronized void connect( String ip,
int port,
String username,
String password){
System.out.println("MSIPProtocolHandler;connect");
if(connection!=null){
try{connection.close();}catch(Exception e){
System.out.println("MSIPProtocolHandler;connect;closing old connection:"+e.toString());}
try{
connection=new Socket(ip,port);
in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
out = new PrintWriter(connection.getOutputStream(), true);
if(myIncomingHandlerThread!=null&&myIncomingHandlerThread.isAlive())
myIncomingHandlerThread.destroy();
myIncomingHandlerThread=new MSIPIncomingHandlerThread(in,this);
myIncomingHandlerThread.start();
String logonMessage=myHelper.createLogonRequest(username,password);
out.println(logonMessage);
}catch(Exception e){
e.printStackTrace();
try{connection.close();
in.close();
out.close();
}catch(Exception f){}
connection=null;
in=null;
out=null;
* F���rs���ker st���nga ner uppkopplingen mot SMS-servern om den ���r uppkopplad.
public synchronized void disconnect(){
System.out.println("MSIPProtocolHandler;disconnect");
try{
if(connection!=null){
//skicka en LogoffReq innan vi st���nger ner (egentligen ska man
//inte st���nga socketen innan man f���tt en LogoffConf, men...
out.println(myHelper.createLogoffRequest());
try{Thread.sleep(2000);}catch(Exception e){}
connection.close();
in.close();
out.close();
myIncomingHandlerThread.destroy();
}catch(Exception e){
e.printStackTrace();
connection=null;
in=null;
out=null;
* Skickar en SMS-PDU till SMS-servern.
* @param originator avs���ndare eller 'header'
* @param body SMS-texten
* @param destination slut-telefonnummer
* @return boolean 'true' om det kunde skickas.
public boolean sendSMS(String originator, String body, String destination){
/* H���r f���r man skriva hantering f���r att skapa en SubmitReq-PDU med
r���tt parametrar och skicka den till SMS-servern*/
debug("MSIPProtocolHandler;sendSMS");
if(connection !=null){
try {
//Create buffers for in-& out-streams.
in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
out = new PrintWriter(connection.getOutputStream(), true);
//Start listener for incoming messages
if(myIncomingHandlerThread!=null&&myIncomingHandlerThread.isAlive()){
myIncomingHandlerThread.destroy();
myIncomingHandlerThread=new MSIPIncomingHandlerThread(in,this);
myIncomingHandlerThread.start();
//Create String to send on out stream
String sendMessage=myHelper.createSubmitRequest(body, destination);
out.println(sendMessage);
}catch (Exception e){
System.err.println("Exception caught :"+e.getMessage());
e.printStackTrace();
return false;
return true;
}else{
//No connection
return false;
public void setMessageSent(boolean status){
debug("MSIPProtocolHandler:setMessageSent()");
messageSent=status;
public boolean getMessageSent(){
debug("MSIPProtocolHandler:getMessageSent()");
return messageSent;
public boolean isLoggedIn(){
return this.hasLoggedIn;
public void setLoggedIn(boolean login){
debug("MSIPProtocolHandler;setLoggedin("+login+")");
this.hasLoggedIn=login;
/* Debug support */
private static boolean debugOn = true;
private static void debug(String msg){
if(debugOn)
System.out.println("\nCoolFlix log: "+msg+"\n");
public class MSIPIncomingHandlerThread extends Thread{
private Socket mySocket;
private BufferedReader myReader;
private boolean destroyed=false;
private MSIPHelper myHelper;
MSIPProtocolHandler myHandler;
public MSIPIncomingHandlerThread(BufferedReader myReader,
MSIPProtocolHandler myHandler){
this.myReader=myReader;
this.myHandler=myHandler;
myHelper=new MSIPHelper();
public void destroy(){
destroyed=true;
public void run(){
System.out.println("MSIPIncomingHandlerThread starting...");
String temp;
while(!destroyed){
try{
while((temp=myReader.readLine())!=null&&temp.length()>0){
System.out.println("GOT: "+temp);
myHelper.decodeMessage(temp);
if(myHelper.getMessageType().equals(MSIPHelper.LOGON_CONFIRMED))
myHandler.setLoggedIn(true);
else if(myHelper.getMessageType().equals(MSIPHelper.LOGON_REJECTED))
myHandler.setLoggedIn(false);
else if(myHelper.getMessageType().equals(MSIPHelper.LOGOFF_CONFIRMED))
myHandler.setLoggedIn(false);
else if(myHelper.getMessageType().equals(MSIPHelper.SUBMIT_CONFIRMED))
myHandler.setMessageSent(true);
else if (myHelper.getMessageType().equals(MSIPHelper.SUBMIT_REJECTED))
myHandler.setMessageSent(false);
}catch(Exception e){
e.printStackTrace();
System.out.println("MSIPIncomingHandlerThread dying...");
**********************************************************************

Similar Messages

  • SocketExceptopn: Socket Operation on nonsocket: JVM_Bind - what ?

    Hi,
    I'm a new Java-application developer. I'm stadying Java at university in Kassel (germany) an now in university holiday I wnat to development a little messanging tool. So I have tried some basic technics.... but the simplesed things won't work!
    I've wrote this code:
    import java.net.*;
    import java.io.*;
    class MulClient
    public static void main( String args[] ) throws IOException
    Socket server = new Socket("localhost", 450 );
    But if I complie the code an run it....the JVM throws an Exception:
    Exception in thread "main" java.net.SocketException: Socket operation on nonsocket: JVM_Bind
    at java.net.PlainSocketImpl.socketBind(Native Method)
    at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
    at java.net.Socket.bind(Socket.java:553)
    at java.net.Socket.<init>(Socket.java:363)
    at java.net.Socket.<init>(Socket.java:178)
    at MulClient.main(MulClient.java:8)
    I'm using windows xp Sp1 an a firewall (kerio personal firewall), ie 6 sp1....I'm behind a router but protocolls such as TCP/ip are installed..of course....
    Excause me bad english.....
    Thanks!
    Faithfully MrSandman

    Hi,
    1) You haven't created a ServerSocket so nothing's
    listening on that port. I doubt this is it, as it
    would probabl time out.If I start the server class-file (changed port 1044):
    import java.net.*;
    import java.io.*;
    public class MulServer
      public static void main( String args[] ) throws IOException
        ServerSocket server = new ServerSocket( 1044 );
         while ( true )
          Socket client = server.accept();
          InputStream  in  = client.getInputStream();
          OutputStream out = client.getOutputStream();
          int start = in.read();
          int end = in.read();
          int result = start * end;
          out.write( result );
          client.close();
    }the same exception appears. So there can't be a server listining on that port. But why doesn't this work?
    on MS developers page the exception or winsocket error is explained:
    "An operation was attempted on something that is not a socket. Either the socket handle parameter did not reference a valid socket, or for select, a member of an fd_set was not valid."
    But I don't understand; what does this mean?
    2) There is a server/listener type dealy bound to
    that port, but it's a FIFO or named pipe or
    something, rather than a Socket.What? do you think there is another application running on that port. There isn't anyone.
    I can't believe. I've tried another network-sample file taken from an internet tutorial...(I thought...this should work...) but the same exception....
    Any ideas? Please help!
    Thanks MrSandman

  • Socket operation on nonsocket: recv failed

    I get this Exception when operating with Socket : Socket operation on nonsocket: recv failed
    What does this exception mean?

    Looking on google,
    http://www.google.co.uk/search?num=20&hl=en&c2coff=1&q=+Socket+operation+on+nonsocket%3A+recv+failed+&btnG=Search&meta=
    this appears to be a windows error
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winsock/winsock/windows_sockets_error_codes_2.asp

  • Getpeername: Socket operation on non-socket

    when i am starting the in.ftpd service. i am getting the below error
    in.ftpd&#91;5418&#93;: &#91;ID 572618 daemon.error&#93; getpeername: Socket operation on non-socket.
    Thanks in advance.

    I had the same problem with VMware.  I also tried to connect with the VMware  remote console, but got a similar error.  In both cases it seems that it can not connect to the server for some very strange reasons.
    I gave it another try with VMware player.  The latest available version 3.1.0 and the previous version 3.0.1.  Both versions did not start.  The version 3.1.0 did not install a init script and 3.0.1 failed to start.  In the end I gave up searching for errors.
    Now I'm using VirtualBox and I am quite impressed of it's speed and stability.  As long as you need a desktop virtualisation virtualbox will be probably all you need.  I found it easier than vmware server.  Sadly I was unable to try vmware player.  So I can not compare the speed, but it is definetly faster than vmware servers remote console.  But on the other hand the remote console of vmware server was developed for other purposes.  It's not intended to be used as a desktop solution like vmware player.
    If you need a full vmware server replacement then maybe xen would be a good try.  Did not use it though, yet.

  • A socket operation was attempted to an unreachable host

    hi
    while iam connecting from sftp client software to sap sftp server to upload the databade to sap.business one support and after entering the host ip adress,port no,suer name and password iam getting
    "A socket operation was attempted to an unreachable host"
    this error
    can anyone know pls help me out and explain briefly
    thanks in advance
    janaki

    hi,
    Check this link
    http://www.4-asp.net/forums/ShowPost.aspx?PostID=20
    Jeyakanthan

  • Non-blocking sockets operation, block/pausing for milli-seconds at a time.

    The stack trace is always as follows. This operation can block for 1.0 to 2.1 ms approx once every 3 minutes, sometimes a second apart or not at all for 8 minutes. Have Java 6 update 18 on Centos 5.3. The server is lightly loaded.
            at sun.nio.ch.NativeThread.current(Native Method)
            at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:182)Looking at what this function does, its not clear why it should block/pause or how to fix it.
    Any suggestions welcome.

    I would try running with hotspot disabled
    in case something is optimized away
    and you are actually blocked on some lock
    and it only looks like you are blocked on NativeTread.current().

  • Problem with socket and Threads

    Hi,
    I have coded a package that sends an sms via a gateway.
    Here is what is happening:
    * I create a singleton of my SMSModule.
    * I create an sms object.
    * I put the object in a Queue.
    * I start a new Thread in my sms module that reads sms from queue.
    * I connect to sms gateway.
    * I send the sms.
    * I disconnect from socket! This is where things go wrong and I get the following error (see below).
    I have a zip file with the code so if you have time to take a look at it I would appreciate it.
    Anyway all hints are appreciated!
    //Mikael
    GOT: !LogoffConf:
    mSIP Kommando var: !LogoffConf
    CoolFlix log: MSIPProtocolHandler;setLoggedin(false)
    We got LogOffConf
    Waiting ......for thread to die
    java.net.SocketException: Socket operation on nonsocket: JVM_recv in
    socket input stream read
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:116)
    at
    sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:405)

    Off the top of my head, probably the garbage collector cleared your SMSModule coz all classes loaded through other classloaders will be unloaded when that classloader is unloaded.
    mail in the code if you want me to look at it with greater detail.

  • UCCX8.5 connectivity issue using C++ Based CIL

    Dear,
    I have a custom CTI created with C++ Based CIL. The DLL was working ok with UCC4.6 on port number 42027 but with UCCX8.5 I am getting socket error(
    10038 ErroMsg: Socket operation on nonsocket.) while sending KeepAlive message/HeartBeat request. I had changed different ports including 42028 that was found in ICM8.5 Ports utilization guide but no success.
    Can any one help me to find the solution. I am assuming that it is happening due to wrong port number.
    And yes, my application is able to connect the socket on port number 42028 and the ports I found using netstat command after I successfully logged in using CAD Desktop Application.
    Your early response will help me a lot.
    Regards
    Kashif Surhio

    Hi Mukesh Devrani,
    Thank you for posting.
    Your question is more like SQL. I suggest that you can ask your question in SQL forum.
    http://social.msdn.microsoft.com/Forums/en/category/sqlserver/
    Best Regards,
    Larcolais
    MSDN Subscriber Support in Forum
    If you have any feedback of our support, please contact [email protected]
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.
    Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.

  • Ftp Adapter Inbound operation not working

    Hi All,
    I'm running on SOA 11g on a Oracle Linux machine.
    FtpAdapter is configured and works well for outbound operations (my test composite can put a file on a ftp location).
    For inbound operation something is not working, my composite, a simple ftp adapter + bpel process, never start (no instances) .
    I'm able to get the file using an ftp client (tested from the soa server machine too).
    I just increased the server log and I can see the ftp communication but an exception is raised in socket operation after *FTP Adapter Project2 FTP Command: LIST, reply:[[*
    *125 Data connection already open; Transfer starting.;*
    This is the log:
    [2011-09-17T12:57:07.780+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common.listener] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.listener.DBLocker] [APP: soa-infra] [SRC_METHOD: enqueueLockedMessages] Spining ...........Sleeping for 2000 milliseconds oracle.tip.mediator.dispatch.db.DeferredDBLocker
    [2011-09-17T12:57:07.905+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: <anonymous>] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 FTPManagedConnectionFactory::getPasswordCredential using mcf for credentials
    [2011-09-17T12:57:07.906+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: <anonymous>] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Constructed new Managed Connection
    [2011-09-17T12:57:07.907+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: <anonymous>] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Adding Event Listener
    [2011-09-17T12:57:07.908+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: <anonymous>] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Constructed new CCI Connection
    [2011-09-17T12:57:07.909+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Host name is '10.17.29.80'.
    [2011-09-17T12:57:07.911+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Control socket SO_TIMEOUT is [15000]
    [2011-09-17T12:57:07.911+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Reading reply from 10.17.29.80
    [2011-09-17T12:57:07.911+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 FTP::getReply2()
    [2011-09-17T12:57:07.912+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 FTP::getMappedCommand() with command =[USER]
    [2011-09-17T12:57:07.912+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Got tuple =>MappedCommand==> command[USER], arguments=[ftpadmin]
    [2011-09-17T12:57:07.912+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Sending cmd[USER ftpadmin]
    [2011-09-17T12:57:07.912+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Host 10.17.29.80 FTP command: USER ftpadmin
    [2011-09-17T12:57:07.912+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 FTP::getReply()
    [2011-09-17T12:57:07.913+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 FTP Command: USER, reply:[[
    331 Password required for ftpadmin.
    [2011-09-17T12:57:07.913+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 FTP::getMappedCommand() with command =[PASS]
    [2011-09-17T12:57:07.913+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Got tuple =>MappedCommand==> command[PASS], arguments will not be displayed
    [2011-09-17T12:57:07.913+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Sending cmd[PASS]
    [2011-09-17T12:57:07.913+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Host 10.17.29.80 FTP command: PASS
    [2011-09-17T12:57:07.914+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 FTP::getReply()
    [2011-09-17T12:57:07.915+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 FTP Command: PASS, reply:[[
    230 User logged in.
    [2011-09-17T12:57:07.915+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 FTP::getMappedCommand() with command =[PASV]
    [2011-09-17T12:57:07.915+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Got tuple =>MappedCommand==> command[PASV], arguments=[null]
    [2011-09-17T12:57:07.915+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Sending cmd[PASV]
    [2011-09-17T12:57:07.916+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Host 10.17.29.80 FTP command: PASV
    [2011-09-17T12:57:07.916+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 FTP::getReply()
    [2011-09-17T12:57:07.916+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 FTP Command: PASV, reply:[[
    227 Entering Passive Mode (10,17,29,80,200,109).
    [2011-09-17T12:57:07.917+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Passive: ip = 10.17.29.80, port = 51309
    [2011-09-17T12:57:07.917+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Connecting to 10.17.29.80:51309
    [2011-09-17T12:57:07.918+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 FTP::getMappedCommand() with command =[LIST]
    [2011-09-17T12:57:07.918+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Got tuple =>MappedCommand==> command[LIST], arguments=[input]
    [2011-09-17T12:57:07.918+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Sending cmd[LIST /input]
    [2011-09-17T12:57:07.918+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Host 10.17.29.80 FTP command: LIST /input
    [2011-09-17T12:57:07.918+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 FTP::getReply()
    [2011-09-17T12:57:07.919+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 FTP Command: LIST, reply:[[
    125 Data connection already open; Transfer starting.
    [2011-09-17T12:57:07.922+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 UnixFtpListParser::doConfig endpointProperties=[ {SingleThreadModel=true, Recursive=false, PollingFrequency=30, bpel.process.revision.id=Project2, bpel.process.guid=default/Project2!1.0*soa_64b06fdd-9667-4739-8835-5a585f55abb8:getMyFile, UseHeaders=false, IncludeFiles=.*\..*, wsdl.service.name=getMyFile, DeleteFile=true, MinimumAge=0, PhysicalDirectory=/input, wsdl.service.port.jcaAddress.adapterInstanceJndi=eis/Ftp/CustomAdapter, FileType=ascii, instance=0}], [false]
    [2011-09-17T12:57:08.303+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common.listener] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.listener.DBLocker] [APP: soa-infra] [SRC_METHOD: run] Locker running
    [2011-09-17T12:57:08.304+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common.listener] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.listener.DBLocker] [APP: soa-infra] [SRC_METHOD: lockMessages] Trying to obtain locks
    [2011-09-17T12:57:08.304+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: beginTransaction] Transaction begins
    [2011-09-17T12:57:08.304+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: getTransactionStatus] TransactionManager status
    [2011-09-17T12:57:08.304+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: getTransactionStatus] Getting Transaction status
    [2011-09-17T12:57:08.305+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: beginTransaction] TransactionManager begin
    [2011-09-17T12:57:08.305+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: getTransactionStatus] TransactionManager status
    [2011-09-17T12:57:08.305+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: getTransactionStatus] Getting Transaction status
    [2011-09-17T12:57:08.307+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common.error] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.error.ErrorDBLocker] [APP: soa-infra] [SRC_METHOD: lock] Updated rows :0
    [2011-09-17T12:57:08.308+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common.listener] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.listener.DBLocker] [APP: soa-infra] [SRC_METHOD: lockMessages] Obtained locks
    [2011-09-17T12:57:08.308+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: commitTransaction] Commiting Transaction
    [2011-09-17T12:57:08.308+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: getTransactionStatus] TransactionManager status
    [2011-09-17T12:57:08.308+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: getTransactionStatus] Getting Transaction status
    [2011-09-17T12:57:08.308+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: commitTransaction] TransactionManager commit
    [2011-09-17T12:57:08.310+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common.error] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.error.ErrorDBLocker] [APP: soa-infra] [SRC_METHOD: getLockedMessages] Error instance list size :0
    [2011-09-17T12:57:08.311+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common.listener] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1b5b1ef] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.listener.DBLocker] [APP: soa-infra] [SRC_METHOD: enqueueLockedMessages] Spining ...........Sleeping for 5000 milliseconds oracle.tip.mediator.common.error.ErrorDBLocker
    [2011-09-17T12:57:09.829+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common.listener] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.listener.DBLocker] [APP: soa-infra] [SRC_METHOD: run] Locker running
    [2011-09-17T12:57:09.829+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common.listener] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.listener.DBLocker] [APP: soa-infra] [SRC_METHOD: lockMessages] Trying to obtain locks
    [2011-09-17T12:57:09.830+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: beginTransaction] Transaction begins
    [2011-09-17T12:57:09.830+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: getTransactionStatus] TransactionManager status
    [2011-09-17T12:57:09.830+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: getTransactionStatus] Getting Transaction status
    [2011-09-17T12:57:09.830+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: beginTransaction] TransactionManager begin
    [2011-09-17T12:57:09.830+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: getTransactionStatus] TransactionManager status
    [2011-09-17T12:57:09.830+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: getTransactionStatus] Getting Transaction status
    [2011-09-17T12:57:09.830+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.dispatch.db] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.dispatch.db.DeferredDBLocker] [APP: soa-infra] [SRC_METHOD: lock] Obtaining locks for max rows 200
    [2011-09-17T12:57:09.830+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.dispatch.db] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.dispatch.db.DeferredDBLocker] [APP: soa-infra] [SRC_METHOD: lock] Counter reset as end of cycle
    [2011-09-17T12:57:09.831+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common.listener] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.listener.DBLocker] [APP: soa-infra] [SRC_METHOD: lockMessages] Obtained locks
    [2011-09-17T12:57:09.831+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: commitTransaction] Commiting Transaction
    [2011-09-17T12:57:09.831+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: getTransactionStatus] TransactionManager status
    [2011-09-17T12:57:09.831+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: getTransactionStatus] Getting Transaction status
    [2011-09-17T12:57:09.831+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.JTAHelper] [APP: soa-infra] [SRC_METHOD: commitTransaction] TransactionManager commit
    [2011-09-17T12:57:09.833+02:00] [soa_server1] [TRACE:32] [] [oracle.soa.mediator.common.listener] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@119f93f] [userId: <anonymous>] [ecid: 0000J9mBB^i6qID5zBo2yW1ESnuZ000001,0] [SRC_CLASS: oracle.tip.mediator.common.listener.DBLocker] [APP: soa-infra] [SRC_METHOD: enqueueLockedMessages] Spining ...........Sleeping for 2000 milliseconds oracle.tip.mediator.dispatch.db.DeferredDBLocker
    [2011-09-17T12:57:09.969+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Timed out in [2046] msecs
    [2011-09-17T12:57:09.970+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 Exception caught while reading control socket
    [2011-09-17T12:57:09.970+02:00] [soa_server1] [TRACE] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@aac370] [userId: weblogic] [ecid: 0000J9r1a3a6qID5zBo2yW1ESnuZ000CS^,1:20913] [SRC_CLASS: oracle.integration.platform.blocks.adapter.fw.log.LogManagerImpl] [APP: soa-infra] [SRC_METHOD: log] FTP Adapter Project2 [[
    java.net.SocketTimeoutException: Read timed out
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:264)
         at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:306)
         at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:158)
         at java.io.InputStreamReader.read(InputStreamReader.java:167)
         at java.io.BufferedReader.fill(BufferedReader.java:136)
         at java.io.BufferedReader.readLine(BufferedReader.java:299)
         at java.io.BufferedReader.readLine(BufferedReader.java:362)
         at oracle.tip.adapter.ftp.FTPClient$BufferedTimedReader.readLine(FTPClient.java:2385)
         at oracle.tip.adapter.ftp.FTPClient.populateListResults(FTPClient.java:2562)
         at oracle.tip.adapter.ftp.FTPClient._listFilesUsingKey(FTPClient.java:2513)
         at oracle.tip.adapter.ftp.FTPClient.listFiles(FTPClient.java:753)
         at oracle.tip.adapter.ftp.FTPAgent.getFileList(FTPAgent.java:505)
         at oracle.tip.adapter.file.inbound.FileSource.getFileList(FileSource.java:260)
         at oracle.tip.adapter.file.inbound.PollWork.processFilesInSameThread(PollWork.java:844)
         at oracle.tip.adapter.file.inbound.PollWork.run(PollWork.java:335)
         at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
         at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
         at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Someone can point me to the right way to solve this issue?

    I have posted one solution in this forum..Please check whether this can help you...
    Re: FTP adapter not picking files

  • Socket error 10038 on URLConnection

    We put a Java 1.2.2 applet into production on our intranet starting in April. Of the more than 800 users (all running Windows and IE), 3 have been unsuccessful in getting it to work; the appliet will not make a connection to our application server via a URLConnection to a CGI. The error returned is a connection error, code = 10038, "Socket operation on a non-socket."
    This week the applet failed for two more of our users who had been using it successfully. They both reported that a Windows application (Remedy software, I think it is their Help Desk product) had been upgraded.
    Any ideas as to why our applet fails with the 10038 on a small number of machines? Or what other environmental factors (Winsock problems?, etc.) might cause the 10038 error as evidenced by the upgrade of another application?
    Stephen

    We have same problem with 10038 error. It appears after installing Ws2help.dll in C:\Windows\System. This dll was required by "trillian", a instant messenger software. The problem disappears after removing this library.

  • WebService Socket Timeout Exception before reaching timeout duration

    Hi
    My Server is Websphere Application Server 6.0.2.17
    i got some times socket timeout exception before reach timeout duration. and also i have only default websphere settings for web service .
    The exception is occurred in 19 seconds after hitting the service . i am not able to get the exact problem . because default timeout time is 300 seconds (i think like that)
    Error Log
    2/12/09 11:01:28:323 CET 00000f6a SystemOut O WebService Started --> Begin webservice method invocation (Method Name : getCustomerInfo(String cusID))
    2/12/09 11:01:47:840 CET 00000f6d SystemOut Exception Occurred : java.net.SocketTimeoutException: Socket operation timed out before it could be completed
    WebService Method Invocation Started time 11:01:28
    WebService Timeout exception raised time 11:01:47
    TimeoutDuration 00:00:19

    Hi Mark,
    with synchronous messages it is important to consider timeouts from each connection to be established. So soapUI-PI, then PI-BackendSystem plus anything that might be in between. If your timeout soapUI-PI is smaller than the following ones, you'll get that phenomenon. soapUI will cut the connection, but PI will hold it and maybe receive an answer from the backend. This answer will end up in the void, since the original requester (your soapUI) has already disconnected. But for PI, this will be OK and status "successful". PI does not control and monitor the client's connection.
    In other words, the cancel of the connection is only performed for that same connection, it is not propagated to any subsequent connections.
    Hope that I was clear enough,
    Jörg

  • Asynchronous/On-Demand Comunication using Sockets

    I need to write an API which (on request of the user clicking on a button in the UI) writes a message onto a socket irrespective of whether the other side of the socket is up and running or not.
    Consequtive calls to this API may or may not involve the same host & port to which the message needs to be written.
    Any suggestions on how I can achieve this Asynchronous "on-demand" socket operation.

    ejp wrote:
    It's not like that UPD packet is going to remain in one peice anyway.But if it doesn't stay in one piece there is no guarantee that it will ever be reassembled.
    UDP packets larger than 534 should only be used on networks where you know there will be no fragmentation by routers. In practice this limits you to less that 1500 bytes anyway.Yeah. For that matter, there's also no guarentee that the packet won't just get dropped if it's bigger than the MTU at some hop along its path. Sometimes I wonder how packets ever get anywhere...
    @op Moral of the story is, you should avoid sending out Datagrams that are bigger than the maximum transmission unit (MTU) of your network, which is guarenteed to be at least 576 over the internet and 1492 over ethernet. You factor in the 40 bytes for the header, you don't want put in more than 536 / 1452 bytes of actual data into your datagram.
    Sending more data than that per packet risks making everything slower and less reliable.
    Separate your data out into the appropriate sized chunks (536 for internet connections, 1452 for local data transport), wrap each chunk into a UDP packet, and send it on its way.

  • SIGPIPE and socket accept() calls

    Hi!
    I am developing a client/server application that utilises TCP stream sockets for communication between multiple clients and a single server. The main server thread creates a socket, binds it, listens and waits to accept incoming socket connections. When a connection is established it farms of a thread to handle the client's request. The server is being developed on SunOS 5.8 (sparc).
    My problem is that the server receives a SIGPIPE during a blocking call to accept() shortly after a one (and only one) client initiates a connection.
    I can't find any suporting documentation as to why SIGPIPE would be raised during an accept() call.
    I mean, accept() accepts the socket and returns a file descriptor to the socket. If the client teared down the connection (which the client ISN'T doing) after connecting then I would expect the server to have a valid socket descriptor and EPIPE or SIGPIPEs to occur whenever the server calls socket operations like send() or recv().
    Any ideas why the SIGPIPE might be happening in accept()?

    Get a new iPhone. it's very difficult to get all the water out of the phone and corrosion will occur inside. Your phone will likely not be reliable even if it recovers.

  • Push notification cannot use socket

    Hello
    I get this error in my error.log:
    Warning: push-notify: connect() to socket: "/var/dovecot/push_notify" failed: Socket operation on non-socket
    I can't really tell if the push works or not, but it seems that it won't download new mail unless I manually press "Download all new mail" (so it doesn't work)
    So, is there any way to restart/reset the dovecot service?

    10022 = invalid argument.
    That is a rather odd exception to get from java.
    As a guess....
    I would suspect that you are trying something that is not possible on the target architecture - either it can't listen at all or the socket range is limited (and 8068) isn't in it.

  • My Mac booted in Apple or Windows crashes without warning.  I do have some logs captured from the Console I would like to share, as I don't know how to interpret them.

    As you can see, the crash happened shortly after 10:00am.  can anyone see what may be wrong here.  The same happens on the Windows side of the MAC.
    2013-05-11 10:01:52.617 AM sandboxd[298]: ([297]) mdworker(297) deny mach-lookup com.apple.ls.boxd
    2013-05-11 10:01:52.625 AM sandboxd[298]: ([296]) mdworker(296) deny mach-lookup com.apple.ls.boxd
    2013-05-11 10:01:52.000 AM kernel[0]: Sandbox: sandboxd(298) deny mach-lookup com.apple.coresymbolicationd
    2013-05-11 10:02:15.775 AM WindowServer[78]: handle_will_sleep_auth_and_shield_windows: releasing authw 0x7f8a73442670(2000), shield 0x7f8a741ec6a0(2001), lock state 2
    2013-05-11 10:02:15.775 AM WindowServer[78]: handle_will_sleep_auth_and_shield_windows: errs 0x0, 0x0, 0x0
    2013-05-11 10:02:15.777 AM WindowServer[78]: Created shield window 0x40 for display 0x003f003d
    2013-05-11 10:02:15.777 AM WindowServer[78]: handle_will_sleep_auth_and_shield_windows: releasing authw 0x7f8a73442670(2000), shield 0x7f8a741ec6a0(2001), lock state 2
    2013-05-11 10:02:15.777 AM WindowServer[78]: handle_will_sleep_auth_and_shield_windows: errs 0x0, 0x0, 0x0
    2013-05-11 10:02:15.778 AM WindowServer[78]: Created shield window 0x41 for display 0x003f003e
    2013-05-11 10:02:15.778 AM WindowServer[78]: handle_will_sleep_auth_and_shield_windows: releasing authw 0x7f8a73442670(2000), shield 0x7f8a741ec6a0(2001), lock state 2
    2013-05-11 10:02:15.778 AM WindowServer[78]: handle_will_sleep_auth_and_shield_windows: errs 0x0, 0x0, 0x0
    2013-05-11 10:02:15.779 AM WindowServer[78]: Created shield window 0x42 for display 0x003f003f
    2013-05-11 10:02:15.779 AM WindowServer[78]: handle_will_sleep_auth_and_shield_windows: releasing authw 0x7f8a73442670(2000), shield 0x7f8a741ec6a0(2001), lock state 2
    2013-05-11 10:02:15.779 AM WindowServer[78]: handle_will_sleep_auth_and_shield_windows: errs 0x0, 0x0, 0x0
    2013-05-11 10:04:14.589 AM WindowServer[78]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    2013-05-11 10:04:14.590 AM loginwindow[40]: find_shared_window: WID -1
    2013-05-11 10:04:14.590 AM loginwindow[40]: CGSGetWindowTags: Invalid window 0xffffffff
    2013-05-11 10:04:14.590 AM loginwindow[40]: find_shared_window: WID -1
    2013-05-11 10:04:14.590 AM loginwindow[40]: CGSSetWindowTags: Invalid window 0xffffffff
    2013-05-11 10:04:14.597 AM loginwindow[40]: ERROR | -[LWBuiltInScreenLockAuthLion preLoad] | guestEnabled is true, but guest mode is not set to a usable value
    2013-05-11 10:04:14.668 AM WindowServer[78]: Created shield window 0x46 for display 0x042731c0
    2013-05-11 10:04:14.669 AM WindowServer[78]: device_generate_desktop_screenshot: authw 0x7f8a73442670(2000), shield 0x7f8a73610b10(2001)
    2013-05-11 10:04:14.683 AM WindowServer[78]: device_generate_lock_screen_screenshot: authw 0x7f8a73442670(2000), shield 0x7f8a73610b10(2001)
    2013-05-11 10:05:54.149 AM mdworker[306]: Unable to talk to lsboxd
    2013-05-11 10:05:54.152 AM mdworker[307]: Unable to talk to lsboxd
    2013-05-11 10:05:54.224 AM sandboxd[308]: ([306]) mdworker(306) deny mach-lookup com.apple.ls.boxd
    2013-05-11 10:05:54.233 AM sandboxd[308]: ([307]) mdworker(307) deny mach-lookup com.apple.ls.boxd
    2013-05-11 10:05:54.000 AM kernel[0]: Sandbox: sandboxd(308) deny mach-lookup com.apple.coresymbolicationd
    2013-05-11 11:01:10.000 AM bootlog[0]: BOOT_TIME 1368284470 0
    2013-05-11 11:01:22.000 AM kernel[0]: PMAP: PCID enabled
    2013-05-11 11:01:22.000 AM kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    2013-05-11 11:01:22.000 AM kernel[0]: Darwin Kernel Version 12.3.0: Sun Jan  6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
    2013-05-11 11:01:22.000 AM kernel[0]: vm_page_bootstrap: 1972728 free pages and 108040 wired pages
    2013-05-11 11:01:22.000 AM kernel[0]: kext submap [0xffffff7f80735000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000735000]
    2013-05-11 11:01:22.000 AM kernel[0]: zone leak detection enabled
    2013-05-11 11:01:22.000 AM kernel[0]: standard timeslicing quantum is 10000 us
    2013-05-11 11:01:22.000 AM kernel[0]: standard background quantum is 2500 us
    2013-05-11 11:01:22.000 AM kernel[0]: mig_table_max_displ = 74
    2013-05-11 11:01:22.000 AM kernel[0]: TSC Deadline Timer supported and enabled
    2013-05-11 11:01:22.000 AM kernel[0]: corecrypto kext started!
    2013-05-11 11:01:22.000 AM kernel[0]: Running kernel space in FIPS MODE
    2013-05-11 11:01:22.000 AM kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    2013-05-11 11:01:22.000 AM kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    2013-05-11 11:01:22.000 AM kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    2013-05-11 11:01:22.000 AM kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    2013-05-11 11:01:22.000 AM kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    2013-05-11 11:01:22.000 AM kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    2013-05-11 11:01:22.000 AM kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    2013-05-11 11:01:22.000 AM kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    2013-05-11 11:01:22.000 AM kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    2013-05-11 11:01:22.000 AM kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    2013-05-11 11:01:22.000 AM kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    2013-05-11 11:01:22.000 AM kernel[0]: corecrypto.kext FIPS POST passed!
    2013-05-11 11:01:22.000 AM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    2013-05-11 11:01:22.000 AM kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    2013-05-11 11:01:22.000 AM kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    2013-05-11 11:01:22.000 AM kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    2013-05-11 11:01:22.000 AM kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    2013-05-11 11:01:22.000 AM kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    2013-05-11 11:01:22.000 AM kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    2013-05-11 11:01:22.000 AM kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    2013-05-11 11:01:22.000 AM kernel[0]: calling mpo_policy_init for TMSafetyNet
    2013-05-11 11:01:22.000 AM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    2013-05-11 11:01:22.000 AM kernel[0]: calling mpo_policy_init for Sandbox
    2013-05-11 11:01:22.000 AM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    2013-05-11 11:01:22.000 AM kernel[0]: calling mpo_policy_init for Quarantine
    2013-05-11 11:01:22.000 AM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    2013-05-11 11:01:22.000 AM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    2013-05-11 11:01:22.000 AM kernel[0]: The Regents of the University of California. All rights reserved.
    2013-05-11 11:01:22.000 AM kernel[0]: MAC Framework successfully initialized
    2013-05-11 11:01:22.000 AM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    2013-05-11 11:01:22.000 AM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    2013-05-11 11:01:22.000 AM kernel[0]: ACPI: System State [S0 S3 S4 S5]
    2013-05-11 11:01:22.000 AM kernel[0]: PFM64 (36 cpu) 0xf80000000, 0x80000000
    2013-05-11 11:01:22.000 AM kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    2013-05-11 11:01:22.000 AM kernel[0]: AppleIntelCPUPowerManagement: (built 23:03:24 Jun 24 2012) initialization complete
    2013-05-11 11:01:22.000 AM kernel[0]: [ PCI configuration begin ]
    2013-05-11 11:01:22.000 AM kernel[0]: console relocated to 0xf80000000
    2013-05-11 11:01:13.300 AM com.apple.launchd[1]: *** launchd[1] has started up. ***
    2013-05-11 11:01:22.000 AM kernel[0]: PCI configuration changed (bridge=15 device=4 cardbus=0)
    2013-05-11 11:01:22.000 AM kernel[0]: [ PCI configuration end, bridges 11 devices 15 ]
    2013-05-11 11:01:22.000 AM kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID a82066fffeaae616; max speed s800.
    2013-05-11 11:01:22.000 AM kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    2013-05-11 11:01:22.000 AM kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    2013-05-11 11:01:22.000 AM kernel[0]: rooting via boot-uuid from /chosen: 0C9AE181-7306-3008-90F2-7CB9660B9490
    2013-05-11 11:01:22.000 AM kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    2013-05-11 11:01:22.000 AM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    2013-05-11 11:01:22.000 AM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    2013-05-11 11:01:22.000 AM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    2013-05-11 11:01:22.000 AM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    2013-05-11 11:01:22.000 AM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    2013-05-11 11:01:22.000 AM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchSeriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDriver/APPLE HDD HTS547550A9E384 Media/IOGUIDPartitionScheme/Customer@2
    2013-05-11 11:01:22.000 AM kernel[0]: BSD root: disk0s2, major 1, minor 2
    2013-05-11 11:01:22.000 AM kernel[0]: BTCOEXIST off
    2013-05-11 11:01:22.000 AM kernel[0]: BRCM tunables:
    2013-05-11 11:01:13.300 AM com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    2013-05-11 11:01:22.000 AM kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    2013-05-11 11:01:22.000 AM kernel[0]: jnl: unknown-dev: replay_journal: from: 33966080 to: 36210688 (joffset 0x1238a000)
    2013-05-11 11:01:22.000 AM kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    2013-05-11 11:01:22.199 AM com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    2013-05-11 11:01:22.000 AM kernel[0]: jnl: unknown-dev: journal replay done.
    2013-05-11 11:01:22.000 AM kernel[0]: Kernel is LP64
    2013-05-11 11:01:22.000 AM kernel[0]: hfs: Removed 15 orphaned / unlinked files and 27 directories
    2013-05-11 11:01:29.000 AM kernel[0]: Waiting for DSMOS...
    2013-05-11 11:01:29.503 AM fseventsd[45]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (83392 19 86653)
    2013-05-11 11:01:29.506 AM fseventsd[45]: log dir: /.fseventsd getting new uuid: 83225B70-C75D-4F4E-93BD-F5546B3475B4
    2013-05-11 11:01:29.509 AM distnoted[19]: Bug: 12D78: liblaunch.dylib + 23849 [2F71CAF8-6524-329E-AC56-C506658B4C0C]: 0x25
    2013-05-11 11:01:29.512 AM hidd[44]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    2013-05-11 11:01:29.000 AM kernel[0]: macx_swapon SUCCESS
    2013-05-11 11:01:29.000 AM kernel[0]: BCM5701Enet: Ethernet address a8:20:66:39:75:af
    2013-05-11 11:01:29.000 AM kernel[0]: AirPort_Brcm4331: Ethernet address 5c:96:9d:77:66:61
    2013-05-11 11:01:29.000 AM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    2013-05-11 11:01:29.000 AM kernel[0]: IO80211Interface::efiNVRAMPublished():
    2013-05-11 11:01:30.631 AM mDNSResponder[37]: mDNSResponder mDNSResponder-379.37 (Dec 16 2012 19:43:09) starting OSXVers 12
    2013-05-11 11:01:30.661 AM appleeventsd[50]: main: Starting up
    2013-05-11 11:01:30.678 AM airportd[64]: _processDLILEvent: en1 attached (down)
    2013-05-11 11:01:30.708 AM com.apple.usbmuxd[24]: usbmuxd-296.4 on Dec 21 2012 at 16:11:14, running 64 bit
    2013-05-11 11:01:30.000 AM kernel[0]: createVirtIf(): ifRole = 1
    2013-05-11 11:01:30.000 AM kernel[0]: in func createVirtualInterface ifRole = 1
    2013-05-11 11:01:30.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff801b880800
    2013-05-11 11:01:30.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    2013-05-11 11:01:30.000 AM kernel[0]: Created virtif 0xffffff801b880800 p2p0
    2013-05-11 11:01:30.727 AM hidd[44]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    2013-05-11 11:01:31.000 AM kernel[0]: Previous Shutdown Cause: 5
    2013-05-11 11:01:31.000 AM kernel[0]: [IOBluetoothHCIController][start] -- completed
    2013-05-11 11:01:31.000 AM kernel[0]: IOBluetoothUSBDFU::probe
    2013-05-11 11:01:31.000 AM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821D FirmwareVersion - 0x0100
    2013-05-11 11:01:31.000 AM kernel[0]: [BroadcomBluetoothHCIControllerUSBTransport][start] -- completed
    2013-05-11 11:01:31.000 AM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification
    2013-05-11 11:01:31.000 AM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    2013-05-11 11:01:31.000 AM kernel[0]: DSMOS has arrived
    2013-05-11 11:01:32.000 AM kernel[0]: m_tail has not been written to hardware: m_tail = 0x00000000, hardare tail register = 0x00000060
    2013-05-11 11:01:33.303 AM com.apple.SecurityServer[15]: Session 100000 created
    2013-05-11 11:01:33.510 AM coreservicesd[60]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    2013-05-11 11:01:33.513 AM mds[36]: (Normal) FMW: FMW 0 0
    2013-05-11 11:01:34.000 AM kernel[0]: NTFS driver 3.10 [Flags: R/W].
    2013-05-11 11:01:34.000 AM kernel[0]: NTFS volume name BOOTCAMP, version 3.1.
    2013-05-11 11:01:35.152 AM configd[18]: setting hostname to "Daniels-MacBook-Pro.local"
    2013-05-11 11:01:35.000 AM kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    2013-05-11 11:01:35.000 AM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    2013-05-11 11:01:35.158 AM configd[18]: network changed.
    2013-05-11 11:01:36.596 AM WindowServer[81]: Server is starting up
    2013-05-11 11:01:38.461 AM com.apple.SecurityServer[15]: Entering service
    2013-05-11 11:01:38.557 AM loginwindow[40]: Login Window Application Started
    2013-05-11 11:01:38.580 AM apsd[56]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    2013-05-11 11:01:38.581 AM apsd[56]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    2013-05-11 11:01:38.600 AM UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    2013-05-11 11:01:38.631 AM netbiosd[82]: Unable to start NetBIOS name service:
    2013-05-11 11:01:39.490 AM awacsd[54]: Starting awacsd connectivity-78.2 (Dec 16 2012 19:43:29)
    2013-05-11 11:01:39.493 AM awacsd[54]: InnerStore CopyAllZones: no info in Dynamic Store
    2013-05-11 11:01:40.014 AM digest-service[91]: label: default
    2013-05-11 11:01:40.014 AM digest-service[91]:  dbname: od:/Local/Default
    2013-05-11 11:01:40.014 AM digest-service[91]:  mkey_file: /var/db/krb5kdc/m-key
    2013-05-11 11:01:40.014 AM digest-service[91]:  acl_file: /var/db/krb5kdc/kadmind.acl
    2013-05-11 11:01:40.016 AM digest-service[91]: digest-request: uid=0
    2013-05-11 11:01:40.000 AM kernel[0]: en1: 802.11d country code set to 'CA'.
    2013-05-11 11:01:40.000 AM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    2013-05-11 11:01:40.036 AM aosnotifyd[93]: bootstrap_look_up failed (44e)
    2013-05-11 11:01:40.044 AM rpcsvchost[95]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    2013-05-11 11:01:40.048 AM digest-service[91]: digest-request: init request
    2013-05-11 11:01:40.052 AM digest-service[91]: digest-request: init return domain: BUILTIN server: DANIELS-MACBOOK-PRO
    2013-05-11 11:01:40.720 AM systemkeychain[67]: done file: /var/run/systemkeychaincheck.done
    2013-05-11 11:01:40.732 AM configd[18]: network changed: DNS*
    2013-05-11 11:01:40.735 AM mDNSResponder[37]: D2D_IPC: Loaded
    2013-05-11 11:01:40.735 AM mDNSResponder[37]: D2DInitialize succeeded
    2013-05-11 11:01:41.327 AM apsd[56]: Can not connect to /var/run/systemkeychaincheck.socket: Operation not permitted
    2013-05-11 11:01:41.396 AM apsd[56]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    2013-05-11 11:01:41.000 AM kernel[0]: Sandbox: sandboxd(96) deny mach-lookup com.apple.coresymbolicationd
    2013-05-11 11:01:41.930 AM locationd[41]: NOTICE,Location icon should now be in state 0
    2013-05-11 11:01:41.931 AM locationd[41]: locationd was started after an unclean shutdown
    2013-05-11 11:01:42.000 AM kernel[0]: MacAuthEvent en1   Auth result for: 16:0d:7f:56:a0:bd  MAC AUTH succeeded
    2013-05-11 11:01:42.000 AM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    2013-05-11 11:01:42.000 AM kernel[0]: AirPort: Link Up on en1
    2013-05-11 11:01:42.000 AM kernel[0]: en1: BSSID changed to 16:0d:7f:56:a0:bd
    2013-05-11 11:01:42.000 AM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    2013-05-11 11:01:42.378 AM mds[36]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    2013-05-11 11:01:44.812 AM WindowServer[81]: Session 256 retained (2 references)
    2013-05-11 11:01:44.812 AM WindowServer[81]: Session 256 released (1 references)
    2013-05-11 11:01:46.465 AM WindowServer[81]: Session 256 retained (2 references)
    2013-05-11 11:01:46.466 AM WindowServer[81]: init_page_flip: page flip mode is on
    2013-05-11 11:01:46.589 AM WindowServer[81]: mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe0000001)
    2013-05-11 11:01:46.589 AM WindowServer[81]: mux_initialize: Mode is safe
    2013-05-11 11:01:47.291 AM configd[18]: network changed: v4(en1+:192.168.1.101) DNS+ Proxy+ SMB
    2013-05-11 11:01:47.777 AM fseventsd[45]: Logging disabled completely for device:1: /Volumes/Recovery HD
    2013-05-11 11:01:49.225 AM ntpd[88]: proto: precision = 1.000 usec
    2013-05-11 11:01:49.413 AM airportd[64]: _doAutoJoin: Already associated to “ocallaghanwifi_EXT”. Bailing on auto-join.
    2013-05-11 11:01:49.429 AM airportd[64]: _doAutoJoin: Already associated to “ocallaghanwifi_EXT”. Bailing on auto-join.
    2013-05-11 11:01:49.808 AM UserEventAgent[11]: Captive: en1: Not probing 'ocallaghanwifi_EXT' (protected network)
    2013-05-11 11:01:49.812 AM configd[18]: network changed: v4(en1!:192.168.1.101) DNS Proxy SMB
    2013-05-11 11:01:51.046 AM WindowServer[81]: GLCompositor enabled for tile size [256 x 256]
    2013-05-11 11:01:51.046 AM WindowServer[81]: CGXGLInitMipMap: mip map mode is on
    2013-05-11 11:01:51.067 AM WindowServer[81]: WSMachineUsesNewStyleMirroring: true
    2013-05-11 11:01:51.068 AM WindowServer[81]: Display 0x042731c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 10 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc7, S/N 0, Unit 0, Rotation 0
    UUID 0x0000061000009cc700000000042731c0
    2013-05-11 11:01:51.068 AM WindowServer[81]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003f
    2013-05-11 11:01:51.068 AM WindowServer[81]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    2013-05-11 11:01:51.068 AM WindowServer[81]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    2013-05-11 11:01:51.070 AM WindowServer[81]: Created shield window 0x5 for display 0x042731c0
    2013-05-11 11:01:51.070 AM WindowServer[81]: Created shield window 0x6 for display 0x003f003f
    2013-05-11 11:01:51.070 AM WindowServer[81]: Created shield window 0x7 for display 0x003f003e
    2013-05-11 11:01:51.070 AM WindowServer[81]: Created shield window 0x8 for display 0x003f003d
    2013-05-11 11:01:51.071 AM WindowServer[81]: Display 0x042731c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 10 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc7, S/N 0, Unit 0, Rotation 0
    UUID 0x0000061000009cc700000000042731c0
    2013-05-11 11:01:51.071 AM WindowServer[81]: Display 0x003f003f: GL mask 0x8; bounds (2304, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003f
    2013-05-11 11:01:51.071 AM WindowServer[81]: Display 0x003f003e: GL mask 0x4; bounds (2305, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    2013-05-11 11:01:51.072 AM WindowServer[81]: Display 0x003f003d: GL mask 0x2; bounds (2306, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    2013-05-11 11:01:51.072 AM WindowServer[81]: CGXPerformInitialDisplayConfiguration
    2013-05-11 11:01:51.072 AM WindowServer[81]:   Display 0x042731c0: MappedDisplay Unit 0; Vendor 0x610 Model 0x9cc7 S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (0,0)[1280 x 800], Rotation 0, Resolution 1
    2013-05-11 11:01:51.072 AM WindowServer[81]:   Display 0x003f003f: MappedDisplay Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2304,0)[1 x 1], Rotation 0, Resolution 1
    2013-05-11 11:01:51.072 AM WindowServer[81]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2305,0)[1 x 1], Rotation 0, Resolution 1
    2013-05-11 11:01:51.072 AM WindowServer[81]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2306,0)[1 x 1], Rotation 0, Resolution 1
    2013-05-11 11:01:51.072 AM WindowServer[81]: CGXMuxBoot: Unexpected boot switch return value (0xe00002c7)
    2013-05-11 11:01:51.167 AM WindowServer[81]: GLCompositor: GL renderer id 0x01024400, GL mask 0x0000000f, accelerator 0x0000324b, unit 0, caps QEX|QGL|MIPMAP, vram 1156 MB
    2013-05-11 11:01:51.167 AM WindowServer[81]: GLCompositor: GL renderer id 0x01024400, GL mask 0x0000000f, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    2013-05-11 11:01:51.184 AM loginwindow[40]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    2013-05-11 11:01:51.200 AM WindowServer[81]: Unable to open IOHIDSystem (e00002bd)
    2013-05-11 11:01:51.404 AM WindowServer[81]: Created shield window 0x9 for display 0x042731c0
    2013-05-11 11:01:51.404 AM WindowServer[81]: Display 0x042731c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    2013-05-11 11:01:51.000 AM kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    2013-05-11 11:01:51.457 AM launchctl[130]: com.apple.findmymacmessenger: Already loaded
    2013-05-11 11:01:51.466 AM com.apple.SecurityServer[15]: Session 100004 created
    2013-05-11 11:01:51.489 AM hidd[44]: CGSShutdownServerConnections: Detaching application from window server
    2013-05-11 11:01:51.489 AM hidd[44]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    2013-05-11 11:01:51.499 AM airportd[64]: _doAutoJoin: Already associated to “ocallaghanwifi_EXT”. Bailing on auto-join.
    2013-05-11 11:01:51.511 AM loginwindow[40]: Login Window Started Security Agent
    2013-05-11 11:01:51.549 AM UserEventAgent[132]: cannot find useragent 1102
    2013-05-11 11:01:51.602 AM SecurityAgent[138]: This is the first run
    2013-05-11 11:01:51.602 AM SecurityAgent[138]: MacBuddy was run = 0
    2013-05-11 11:01:51.624 AM WindowServer[81]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042731c0 device: 0x10acc4b90  isBackBuffered: 1 numComp: 3 numDisp: 3
    2013-05-11 11:01:53.071 AM WindowServer[81]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2013-05-11 11:01:53.103 AM WindowServer[81]: Display 0x042731c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    2013-05-11 11:01:53.116 AM WindowServer[81]: Display 0x042731c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    2013-05-11 11:01:53.395 AM SecurityAgent[138]: spawn_via_launchd() failed, errno=5 label=[0x0-0x6006].com.apple.AppleSpell path=/System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell flags=0
    2013-05-11 11:01:53.395 AM SecurityAgent[138]: spawn_via_launchd() failed, errno=5 label=[0x0-0x6006].com.apple.AppleSpell path=/System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell flags=0
    2013-05-11 11:01:55.348 AM awacsd[54]: Exiting
    2013-05-11 11:01:57.839 AM sandboxd[96]: ([56]) apsd(56) deny network-outbound /private/var/run/systemkeychaincheck.socket
    2013-05-11 11:01:57.955 AM SecurityAgent[138]: User info context values set for danielocallaghan
    2013-05-11 11:01:58.331 AM SecurityAgent[138]: Login Window login proceeding
    2013-05-11 11:01:58.526 AM loginwindow[40]: Login Window - Returned from Security Agent
    2013-05-11 11:01:58.531 AM loginwindow[40]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    2013-05-11 11:01:58.548 AM loginwindow[40]: USER_PROCESS: 40 console
    2013-05-11 11:01:58.574 AM airportd[64]: _doAutoJoin: Already associated to “ocallaghanwifi_EXT”. Bailing on auto-join.
    2013-05-11 11:01:58.611 AM com.apple.launchd.peruser.501[150]: (com.apple.gamed) Ignored this key: UserName
    2013-05-11 11:01:58.611 AM com.apple.launchd.peruser.501[150]: (com.apple.gamed) Ignored this key: GroupName
    2013-05-11 11:01:58.612 AM com.apple.launchd.peruser.501[150]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    2013-05-11 11:01:58.616 AM loginwindow[40]: Connection with distnoted server was invalidated
    2013-05-11 11:01:58.626 AM distnoted[154]: # distnote server agent  absolute time: 48.384574763   civil time: Sat May 11 11:01:58 2013   pid: 154 uid: 501  root: no
    2013-05-11 11:01:58.854 AM WindowServer[81]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2013-05-11 11:01:58.977 AM WindowServer[81]: Display 0x042731c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    2013-05-11 11:01:59.150 AM blued[53]: kBTXPCUpdateUserPreferences gConsoleUserUID = 501
    2013-05-11 11:01:59.185 AM talagent[167]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, _kLSApplicationIsHiddenKey, hidden ? kCFBooleanTrue : kCFBooleanFalse, NULL) produced OSStatus -50 on line 623 in TCApplication.m
    2013-05-11 11:01:59.185 AM talagent[167]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, TAL_kLSIsProxiedForTALKey, kCFBooleanTrue, NULL) produced OSStatus -50 on line 626 in TCApplication.m
    2013-05-11 11:01:59.216 AM NetworkBrowserAgent[175]: Starting NetworkBrowserAgent
    2013-05-11 11:01:59.468 AM UserEventAgent[153]: cannot find fw daemon port 1102
    2013-05-11 11:01:59.917 AM com.apple.SecurityServer[15]: Session 100006 created
    2013-05-11 11:02:00.179 AM SystemUIServer[168]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    2013-05-11 11:02:00.180 AM SystemUIServer[168]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    2013-05-11 11:02:02.801 AM librariand[185]: MMe quota status changed: under quota
    2013-05-11 11:02:02.808 AM Mail[162]: Using V2 Layout
    2013-05-11 11:02:09.119 AM com.apple.launchd.peruser.501[150]: (com.apple.afpstat-qfa[213]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    2013-05-11 11:02:09.119 AM com.apple.launchd.peruser.501[150]: (com.apple.afpstat-qfa[213]) Job failed

    I guess nobody knows if the crash that occured was legitimate or not?  Apple phone support could do nothing for me, so I guess I am left to drive 45 minutes to the nearest store.

Maybe you are looking for

  • Error:invalid central system in  requet approval process(AE)

    Hi, In AE while approving the request,  in final stage i am getting an error "invalid central system ".anyone please help me to know the solution for this?

  • Meebo: how to get rid of it in Snow Leopard

    Please help me get rid of it. It doesn't show in Spotlight, extensions, finder or applications. Did Google hide it in my macbook?

  • CRM_PARTNER_MAINTAIN_SINGLE_OW - Add Partner

    Hello, In BADI CRM_ORDER_SAVE, method PREPARE, I'm currently calling CRM_PARTNER_MAINTAIN_SINGLE_OW to change BP ID's on a custom Z Partner Function we have at our company.  This works perfectly, however, I'd also like to use CRM_PARTNER_MAINTAIN_SIN

  • How to set a printer for WiFi?

    At home, I am running my MacBook Pro from a Netgear wireless router. Is there a way to connect my Canon Pixma MP500 to my MacBook Pro and eliminate the USB cable? The printer is not bluetooth or WiFi equipped. Thanks.

  • About APA geolocation script and using it in iOS air

    Hi folks,  I wonder how can I use geolocation map in Flah CC? I tried to download google map inside the components file but it didn't show up when I opened the comonents from flash. I used this static map: http://maps.googleapis.com/maps/api/staticma