Large file transfer problems over client/server socket

Hi,
I wrote a simple chat problem in which I can send files from client to client. The problem is when I send large files over 101 MB the transfer freezes. I do not even get any error mesages in the console. The files I am sending are of any type (Ex mp3, movies, etc...). I am serializing the data into a "byteArray[packetSize]" and sending the file packet by packet until the whole file has been sent, and reconstructed on the other side. The process works perfectly for files smaller than 101MB, but for some reason freezes after that if the file is larger. I have read many forums and there aren't too many solutions out there. I made sure to use the .reset() method to reset my ObjectOutputStream each time I write to it.
Here's my file sending code:
byte[] byteArray = new byte[defaultPacketSize];
numPacketsRequired = Math.ceil(fileSize / defaultPacketSize);
try {
int i = 0;
reader = new FileInputStream(filePath);
while (reader.available() > 0) {
if (reader.available() < defaultPacketSize) {
byte[] lastPacket = new byte[reader.available()];
reader.read(lastPacket);
try {
if (socket == null || output == null) {
throw new SocketException("socket does not exist");
output.writeObject(lastPacket);
output.reset();
output.writeObject("DONE");
output.reset();
output.close();
socket.close();
catch (Exception e) {
System.out.println("Exception ***: " + e);
output.close();
socket.close();
else {
reader.read(byteArray);
try {
if (socket == null || output == null) {
throw new SocketException("socket does not exist");
output.writeObject(byteArray);
output.reset();
catch (Exception e) {
System.out.println("Exception ***: " + e);
output.close();
socket.close();
reader.close();
catch (Exception e) {
System.out.println("COULD NOT READ PACKET");
Here's my file receiving code:
try {
// The message from the client
Object streamInput;
FileOutputStream writer;
byte[] packet;
while (true) {
streamInput = input.readObject();
if (streamInput instanceof byte[]) {
packet = (byte[]) streamInput;
try {
writer = new FileOutputStream(outputPath, true);
writer.write(packet); //Storing the bytes on file
writer.close();
catch (Exception e) {
System.out.println("Exception: " + e);
else if (streamInput.equals("DONE")) {
socket.close();
input.close();
break;
catch (Exception e) {
I'm looking for any way I can possibly send large files from client to client without having it freeze. Are there any better file transfer ways other than socket? I don't really want FTP. I think I want to keep it HTTP.
Any suggestions would be helpful.Thanks!
Evan

I've taken a better look a the code you posted, and
there is one problem with the receiving code. You
keep repeatedly opening and closing the
FileOutputStream. This is not going to be efficient
as the file will keep needing to be positioned to its
end.Yes sorry I did change that code so that it leaves the file open until completely done writing. Basically I have a progress bar that records how far along in the writing process the client is, and when the progress bar reaches 100%, meaning the file is complete, the file.close() method is invoked. Sorry about that.
I also ran some memory tests using the "Runtime.getRuntime().totalMemory()", and "Runtime.getRuntime().freeMemory()" methods. I put these methods inside the loop where I read in the file and send it to the client. here's the output:
Sender's free memory: 704672
File reader read 51200 bytes of data.
767548 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 702968
File reader read 51200 bytes of data.
716348 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 701264
File reader read 51200 bytes of data.
665148 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 699560
File reader read 51200 bytes of data.
613948 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 697856
File reader read 51200 bytes of data.
562748 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 696152
File reader read 51200 bytes of data.
511548 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 694448
File reader read 51200 bytes of data.
460348 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 692744
File reader read 51200 bytes of data.
409148 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 691040
File reader read 51200 bytes of data.
357948 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 689336
File reader read 51200 bytes of data.
306748 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 687632
File reader read 51200 bytes of data.
255548 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 685928
File reader read 51200 bytes of data.
204348 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 684224
File reader read 51200 bytes of data.
153148 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 682520
File reader read 51200 bytes of data.
101948 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 680816
File reader read 51200 bytes of data.
50748 left to read.
Sender's runtime memory: 2818048
Sender's free memory: 679112
File reader read 50748 bytes of data.
0 left to read.
Creating last packet of size: 50748
Last packet size after setting it equal to byteArray: 50748
Here's the memory stats from the receiver:
Receiver's free memory: 639856
Receiver's total memory: 2842624
Receiver's free memory: 638920
Receiver's total memory: 2842624
Receiver's free memory: 637984
Receiver's total memory: 2842624
Receiver's free memory: 637048
Receiver's total memory: 2842624
Receiver's free memory: 636112
Receiver's total memory: 2842624
Receiver's free memory: 635176
Receiver's total memory: 2842624
Receiver's free memory: 634240
Receiver's total memory: 2842624
Receiver's free memory: 633304
Receiver's total memory: 2842624
Receiver's free memory: 632368
Receiver's total memory: 2842624
Receiver's free memory: 631432
Receiver's total memory: 2842624
Receiver's free memory: 630496
Receiver's total memory: 2842624
Receiver's free memory: 629560
Receiver's total memory: 2842624
Receiver's free memory: 628624
Receiver's total memory: 2842624
Receiver's free memory: 627688
Receiver's total memory: 2842624
Receiver's free memory: 626752
Receiver's total memory: 2842624
Receiver's free memory: 625816
Receiver's total memory: 2842624
Receiver's free memory: 624880
Receiver's total memory: 2842624
Receiver's free memory: 623944
Receiver's total memory: 2842624
Receiver's free memory: 623008
Receiver's total memory: 2842624
Receiver's free memory: 622072
Receiver's total memory: 2842624
Receiver's free memory: 621136
Receiver's total memory: 2842624
Receiver's free memory: 620200
Receiver's total memory: 2842624
Receiver's free memory: 619264
Receiver's total memory: 2842624
Receiver's free memory: 618328
Receiver's total memory: 2842624
Receiver's free memory: 617392
Receiver's total memory: 2842624
Receiver's free memory: 616456
Receiver's total memory: 2842624
Receiver's free memory: 615520
Receiver's total memory: 2842624
Receiver's free memory: 614584
this is just a sample of both receiver and sender's stats. Everything appears to be fine! Hope this message post isn't too long.
Thanks!

Similar Messages

  • File Transfer b/w Client - Server using JSP

    Hi,
    I need to implement a file transfer between the client and the server using JSP / Beans. The files can be XML Documents, Images (.gif,.jpeg) or even MS Word documents.
    The user has a set directory on his file system where the files are to be saved upon download and retrieved upon upload. This system is similar to a check-in check-out system.
    How do I get a reference to the directory on the users file system and then either save the downloaded files there or retrieve the files that need to be uploaded.
    Thanks
    coffeejava

    The only way you can do this is by using an applet, a jsp page or servlet does not have access to the system that the browser is running on. Furthermore if you were planning on using the html file form object you cannot set a value for that programmatically. It's not allowed for security reasons.

  • FU Ant task failure: java.util.concurrent.ExecutionException: could not close client/server socket

    We sometimes see this failure intermitently when using the FlexUnit Ant task to run tests in a CI environment. The Ant task throws this exception:
    java.util.concurrent.ExecutionException: could not close client/server socket
    I have seen this for a while now, and still see it with the latest 4.1 RC versions.
    Here is the console output seen along with the above exception:
    FlexUnit player target: flash
    Validating task attributes ...
    Generating default values ...
    Using default working dir [C:\DJTE\commons.formatter_swc\d3flxcmn32\extracted\Source\Flex]
    Using the following settings for the test run:
    FLEX_HOME: [C:\dev\vert-d3flxcmn32\302100.41.0.20110323122739_d3flxcmn32]
    haltonfailure: [false]
    headless: [false]
    display: [99]
    localTrusted: [true]
    player: [flash]
    port: [1024]
    swf: [C:\DJTE\commons.formatter_swc\d3flxcmn32\extracted\build\commons.formatter.tests.unit.sw f]
    timeout: [1800000ms]
    toDir: [C:\DJTE\commons.formatter_swc\d3flxcmn32\reports\xml]
    Setting up server process ...
    Entry  [C:\DJTE\commons.formatter_swc\d3flxcmn32\extracted\build] already  available in local trust file at  [C:\Users\user\AppData\Roaming\Macromedia\Flash  Player\#Security\FlashPlayerTrust\flexUnit.cfg].
    Executing 'rundll32' with arguments:
    'url.dll,FileProtocolHandler'
    'C:\DJTE\commons.formatter_swc\d3flxcmn32\extracted\build\commons.formatter.tests.unit.swf '
    The ' characters around the executable and arguments are
    not part of the command.
    Starting server ...
    Opening server socket on port [1024].
    Waiting for client connection ...
    Client connected.
    Setting inbound buffer size to [262144] bytes.
    Receiving data ...
    Sending acknowledgement to player to start sending test data ...
    Stopping server ...
    End of test data reached, sending acknowledgement to player ...
    When the problem occurs, it is not always during the running of any particular test (that I am aware of). Recent runs where this failure was seen had the following number of tests executed (note: the total number that should be run is 45677): 18021, 18, 229.
    Here is a "good" run when the problem does not occur:
    Setting inbound buffer size to [262144] bytes.
    Receiving data ...
    Sending acknowledgement to player to start sending test data ...
    Stopping server ...
    End of test data reached, sending acknowledgement to player ...
    Closing client connection ...
    Closing server on port [1024] ...
    Analyzing reports ...
    Suite: com.formatters.help.TestGeographicSiteUrls
    Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec
    Suite: com.formatters.functionalUnitTest.testCases.TestNumericUDF
    Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.071 sec
    Results :
    Tests run: 45,677, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 201.186 sec
    Has anyone else ran across this problem?
    Thanks,
    Trevor

    I am not sure if this information will help everyone, but here goes...
    For us, these problems with FlexUnit tests crashing the Flash Player appear to be related to couple of factors. Recently, we moved up from Flex 3.2 to Flex 4.1 as our development baseline.  Many people complained that their development environment (Flash Builder, etc.) was much more unstable.  Apparently, 4.1 produces SWFs that require more memory to run than 3.2 does?  Anyway, we still had Flash Player 10.1 as our runtime baseline.  Apparently, that version of the player was not as capable of running larger FlexUnit test SWFs, and would crash (as I posted months earlier).  I upgraded to the latest 10.3 standalone player versions, and the crashes have now ceased.  It would be nice to know exactly what was causing the crashes, but memory management (or lack of) is my best guess.
    So, if you are seeing these issues, try upgrading to the latest Flash Player version.
    Regards,
    Trevor

  • File transfer problem

    I have a 2009 intel iMAC running 10.6.8.  Several months ago it developed a file transfer problem.  When transferring files to an external server via ethernet cable, most of the time it will only let me transfer one file at a time whether is a small word document or a large video file that is several gigabytes.   Even with transferring just one file, the elapsed time bar will not indicate the file has completely transferred.  It stays open and appears as if it is still trying to transfer even though the file size transferred is equal to the size of the file.  Plus the only way I can close the the transfer bar is to relaunch finder.  Then when I go to the folder it was transferring it to, the entire file will be there.
    Suggestions?

    Have you tried restarting the external drive and the computer?

  • New to MacBook - slow LAN file transfer problem

    My new MacBook is painfully slow when wifi-ing to my house LAN.
    I turned in my old G4 iBook for a MacBook (2GHz C2D, 2GB, 10.4.9, all updates). I have a LAN that consists of a wired 1G Ethernet backbone (a Mini and a Powermac G5 are wired in) and a Snow AEB that provides 802.11g wifi access to the LAN. The wired LAN connects to a D-Link GB Ethernet switch so the wired systems can exchange files fast. The switch connects to a D-Link EBR2310 router that connects to a cable modem to ComCast. The router has the latest firmware (1.05, it's an 'A' version router).
    The Mini, G5, and MB are static IPs on the LAN. The D-Link router passes out DHCP addresses >100, with addresses <101 reserved for static LAN IPs. I use static IPs for network reliability when recovering from power outages and other unforeseen glitches. The LAN has worked very well in this configuration, with fast file transfers among machines and good stability.
    With my old 802.11g G4 iBook, I was able to watch DVDs that are stored on an external FW drive connected to the Mini. No stalls, no pauses, no dropouts - MenuMeters showed an average throughput of about 700KBytes/sec on the iBook when viewing a DVD. I used both VLC and DVD Player with good results.
    With my new MacBook, I can't view my DVD files. 802.11g network transfer rates to the MB (indicated by MenuMeters and by Activity Monitor) vary rapidly from a high of about 1.1 MBytes/sec to 20 KBytes/sec. Movies stall, skip, etc.
    Simple file copies from one system to another are also much slower with the MacBook - an average of ~100KBytes/sec vs. ~ 1.5 MBytes/sec with my old iBook. In short, the MacBook is dog-slow in file transfers from the other machines compared with my old iBook when using the wifi connection, with no change to the network infrastructure in going from the old laptop to the new. I would like to fix this.
    My AEB is set up in bridge mode (simple access point) with WPA2 security. All three Macs are completely current with latest updates, as is the Snow AEB. The MB has 4 bars of signal strength. Slow file transfer problem does not change when moving the MB to or from the AEB.
    Curiously, when I download a large file (like the Intel 10.4.9 combo update), the MB shows a steady ~800KBytes/sec download speed, with none of the speed variation it shows with file transfers from either the Mini or the G5. File transfers to/from the MB to either of the other Macs are very slow.
    Both the Mini and the G5 have Airport cards: when I switch them from wired Ethernet LAN to wifi LAN, they transfer files between each other at ~ 2MBytes/sec - about what you'd expect from an 802.11g protocol. So the slow file transfer doesn't seem to be due to the AEB, it seems to be specific to the MacBook. When I connect the MB using its hardware Ethernet port, files transfer just as fast as the other systems.
    I have tried these measures, without effect on the problem:
    - power off/restart of every component in the system;
    - changing the AEB to an open network mode;
    - changing the MB from static IP to DHCP;
    - toggling IPv6 on/off;
    - running no applications other than Finder on all systems;
    Activity Monitor on the MB doesn't show anything sucking up CPU cycles during file transfers. I have plenty of RAM. The only thing I've changed in the network is the swap of the iBook for the MacBook.
    Can anyone suggest what else I can try to make acquisition of this nice shiny MacBook a step forward, rather than a step back? Thank you!
    G5 DP 1.8, Mini CD1.83 GHz, MacBook C2D,2GHz   Mac OS X (10.4.9)  
    G5 DP 1.8, Mini 1.83 GHz, G4 iBook   Mac OS X (10.4.8)  
    G5 DP 1.8, Mini 1.83 GHz, G4 iBook   Mac OS X (10.4.8)  

    Hi,
    Did you want to use the Live Migrations for that?
    We recommend that you configure separate dedicated networks with gigabit or faster speed for live migration traffic and cluster communication, and these networks should be separate from the network used by the management operating system, and from the network
    used by the virtual machines.
    For more and detail information, please refer to:
    http://technet.microsoft.com/en-us/library/ff428137(WS.10).aspx
    Regards.
    Vivian Wang

  • Client/server socket based application

    hi does anyone have example of client/server socket based application using Spring and Maven
    where application do the following
    Client sends a request with a path to any file on the server
    „h Server reads the file and responds back with the content
    „h Client outputs the content to the console
    am trying to follow this
    http://www2.sys-con.com/itsg/virtualcd/java/archives/0205/dibella/index.html
    http://syntx.io/a-client-server-application-using-socket-programming-in-java/
    am using java 6

    i have attempt code but i wht to do the following
    client/server socket based application that will read the content of a file and stream the content of the file to the client. The client must simply output the content of the file to the console using System.out. The client must be able to run in a standalone mode (non-network mode) or in a remote mode.
    Additionally the client must be designed in a way that i can print the output to a console but must be interchangeable where if requirements change i can persist the response to file or persist the response to a database.
    /* Server.java*/
    ///ifgetBoolen= true then...
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.sql.*;
    public class Server
        static String array[][];
        // STEP 1 a1  
        // Server socket
        ServerSocket listener;
        // STEP 1 a2 Client connection
        Socket client;
        ObjectInputStream in;
        ObjectOutputStream out;
        public void createConnection() throws IOException
                System.out.println("\nSERVER >>> Waiting for connection.....");
                client = listener.accept();
                String IPAddress = "" + client.getInetAddress();
                DisplayMessage("SERVER >>> Connected to " + IPAddress.substring(1,IPAddress.length()));
          public void runServer()
            // Start listening for client connections
            // STEP 2
            try
                listener = new ServerSocket(12345, 10);
                createConnection();
                  // STEP 3
    //              processConnection();
            catch(IOException ioe)
                DisplayMessage("SERVER >>> Error trying to listen: " + ioe.getMessage());
        private void closeConnection()
            DisplayMessage("SERVER >>> Terminating connections");
            try
                if(out != null && in != null)
                      out.close();
                    in.close();
                    client.close();                
            catch(IOException ioe)
                DisplayMessage("SERVER >>> Closing connections");
        public static void define2DArray(ResultSet RS, int Size)
            try
                ResultSetMetaData RMSD = RS.getMetaData();
                DisplayMessage("SERVER >>> Requested arraySize: " + Size);
                if (RS.next())
                    array = new String[Size][RMSD.getColumnCount()];
                    for (int Row = 0; Row < Size; Row++)
                        for (int Col = 0; Col < RMSD.getColumnCount(); Col++)
                            array[Row][Col] = new String();
                            array[Row][Col] = RS.getString(Col+1);
                            DisplayMessage(array[Row][Col] + " ");
                        RS.next();
                else
                    array = new String[1][1];
                    array[0][0] = "#No Records";
            catch (Exception e)
                DisplayMessage("SERVER >>> Error in defining a 2DArray: " + e.getMessage());  
        public static void DisplayMessage(final String IncomingSMS)
            System.out.println(IncomingSMS);
    //client
    * @author
    import java.io.*;
    import java.net.*;
    import javax.swing.*;
    public class ClientSystem
        static Socket server;
        static ObjectOutputStream out;
        static ObjectInputStream in;
        static String Response[][];
        static boolean IsConnected = false;
        static int Num = 0;
        public static void connectToServer() throws IOException
            server = new Socket("127.0.0.1", 12345);
    //        server = new Socket("000.00.98.00", 12345);
            String IPAddress = "" + server.getInetAddress();
            DisplayMessage("\nCLIENT >>> Connected to " + IPAddress.substring(1,IPAddress.length()));
        public static void getStreams() throws IOException
            out = new ObjectOutputStream(server.getOutputStream());
            out.flush();
              in = new ObjectInputStream(server.getInputStream());
              IsConnected = true;
              DisplayMessage("CLIENT >>> Got I/O streams");  
        public static void runClient()
            try
                connectToServer();
                getStreams();
                  DisplayMessage("CLIENT >>> Connection successfull....\n");
                  DisplayMessage("CLIENT >>> Want to talk to server");
            catch (IOException ioe)
                System.out.print("."+Num);
                Num++;
        public static void closeConnection()
            try
                out.close();
                in.close();
                server.close();  
            catch(IOException error)
                DisplayMessage("CLIENT >>> Could not close connections");
        public static void Start()
            System.out.print("\nCLIENT >>> Attempting connection.....");
            try
                IsConnected = false;
                while (IsConnected == false)
                    runClient();
                    if (IsConnected == false)
                        Thread.sleep(100);
            catch (Exception e)
                DisplayMessage("CLIENT >>> Attempting connection.....");
        public static String sendSMS(String sms)
            Response = new String[0][0];
            try
                DisplayMessage("CLIENT >>> " + sms);
                out.writeObject(sms);
                out.flush();
                Response = (String[][])in.readObject();
                DisplayMessage("CLIENT >>> Waiting for server to respond...");
                for (int Row = 0; Row < Response.length; Row++)
                    System.out.printf( "_SERVER >>> \t");
                    for (int Col = 0; Col < Response[Row].length; Col++)
                        //DisplayMessage( "_SERVER >>> " + Response[Row][Col] + " ");
                        System.out.printf( "%s\t", Response[Row][Col]);
                    System.out.println();
                DisplayMessage("CLIENT >>> Query processed successfully....\n");
            catch(ClassNotFoundException cnfe)
                DisplayMessage("CLIENT >>> Class not found for casting received object");
            catch(IOException ioe)
                reConnect();          
            catch (Exception sqle)
                DisplayMessage("CLIENT >>> Error sending query ??? " + sqle.getMessage());
            return "transmission successfull";
        public static void reConnect()
            try
                DisplayMessage("CLIENT >>> Connection was lost. Trying to reconnect...");
                closeConnection();
                Thread.sleep(100);
                IsConnected = false;
                while (IsConnected == false)
                    runClient();
                    Thread.sleep(200);
            catch (Exception e)
                DisplayMessage("CLIENT >>> Error trying to Re-Connect...");
        public static void DisplayMessage(final String IncomingSms)
            System.out.println(IncomingSms);
        System.out.printf("Isms: %s", IncomingSms);  ///naah.
        public static String[][] getResponse()
            return Response;
        public static String getResponse(int row, int col)
            return Response[row][col];
    how can i do below using above code
    The program must be able to work in a non-networked mode. In this mode, the server and client must run in the same VM and must perform no networking, must not use loopback networking i.e: no “localhost” or “127.0.0.1”, and must not involve the serialization of any objects when communicating between the client and server components.
    The operating mode is selected using the single command line argument that is permitted.
    imust use a socket connection and define a protocol. networking must be entirely bypassed in the non-network mode.

  • IdeaTab A2109A - large file transfer

    Hello,
    Trying to transfer a large file (4.5GB) to tablet IdeaTab A2109A connected to a laptop, this gets truncated to 1.2GB and transfer stops. Smaller files are copied fine, but seems that larger files have problem.
    Tablet has no SD card attached, thus I'm transfering directly to its internal storage (11GB free space).
    Android ver. 4.1.1/ kernel 3.1.10
    Please share your ideas/experience/solution on transfering large files for IdeaTab A2109A.
    Thanks!

    I've never tried transferring a file that big, but I've found using adb push and pull to transfer faster than using MTP.

  • Client Server Socket With GUI

    Hi,
    As the name of the forum suggests I am very new to this whole thing.
    I am trying to write a client/server socket program that can encrypt and decrypt and has a GUI, can't use JCE or SSL or any built in encryption tools.
    I have the code for everything cept the encryption part.
    Any help, greatly appreciated,

    tnks a million but how do i incorporate that into the following client and server code:
    here's the client code:
    import java.awt.Color;
    import java.awt.BorderLayout;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    import java.net.*;
    class SocketClient extends JFrame
              implements ActionListener {
    JLabel text, clicked;
    JButton button;
    JPanel panel;
    JTextField textField;
    Socket socket = null;
    PrintWriter out = null;
    BufferedReader in = null;
    SocketClient(){ //Begin Constructor
    text = new JLabel("Text to send over socket:");
    textField = new JTextField(20);
    button = new JButton("Click Me");
    button.addActionListener(this);
    panel = new JPanel();
    panel.setLayout(new BorderLayout());
    panel.setBackground(Color.white);
    getContentPane().add(panel);
    panel.add("North", text);
    panel.add("Center", textField);
    panel.add("South", button);
    } //End Constructor
    public void actionPerformed(ActionEvent event){
    Object source = event.getSource();
    if(source == button){
    //Send data over socket
    String text = textField.getText();
    out.println(text);
         textField.setText(new String(""));
    //Receive text from server
    try{
         String line = in.readLine();
    System.out.println("Text received :" + line);
    } catch (IOException e){
         System.out.println("Read failed");
         System.exit(1);
    public void listenSocket(){
    //Create socket connection
    try{
    socket = new Socket("HUGHESAN", 4444);
    out = new PrintWriter(socket.getOutputStream(), true);
    in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
    } catch (UnknownHostException e) {
    System.out.println("Unknown host: HUGHESAN.eng");
    System.exit(1);
    } catch (IOException e) {
    System.out.println("No I/O");
    System.exit(1);
    public static void main(String[] args){
    SocketClient frame = new SocketClient();
         frame.setTitle("Client Program");
    WindowListener l = new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    frame.addWindowListener(l);
    frame.pack();
    frame.setVisible(true);
         frame.listenSocket();
    SERVER Code
    import java.awt.Color;
    import java.awt.BorderLayout;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    import java.net.*;
    class SocketServer extends JFrame
              implements ActionListener {
    JButton button;
    JLabel label = new JLabel("Text received over socket:");
    JPanel panel;
    JTextArea textArea = new JTextArea();
    ServerSocket server = null;
    Socket client = null;
    BufferedReader in = null;
    PrintWriter out = null;
    String line;
    SocketServer(){ //Begin Constructor
    button = new JButton("Click Me");
    button.addActionListener(this);
    panel = new JPanel();
    panel.setLayout(new BorderLayout());
    panel.setBackground(Color.white);
    getContentPane().add(panel);
    panel.add("North", label);
    panel.add("Center", textArea);
    panel.add("South", button);
    } //End Constructor
    public void actionPerformed(ActionEvent event) {
    Object source = event.getSource();
    if(source == button){
    textArea.setText(line);
    public void listenSocket(){
    try{
    server = new ServerSocket(4444);
    } catch (IOException e) {
    System.out.println("Could not listen on port 4444");
    System.exit(-1);
    try{
    client = server.accept();
    } catch (IOException e) {
    System.out.println("Accept failed: 4444");
    System.exit(-1);
    try{
    in = new BufferedReader(new InputStreamReader(client.getInputStream()));
    out = new PrintWriter(client.getOutputStream(), true);
    } catch (IOException e) {
    System.out.println("Accept failed: 4444");
    System.exit(-1);
    while(true){
    try{
    line = in.readLine();
    //Send data back to client
    out.println(line);
    } catch (IOException e) {
    System.out.println("Read failed");
    System.exit(-1);
    protected void finalize(){
    //Clean up
    try{
    in.close();
    out.close();
    server.close();
    } catch (IOException e) {
    System.out.println("Could not close.");
    System.exit(-1);
    public static void main(String[] args){
    SocketServer frame = new SocketServer();
         frame.setTitle("Server Program");
    WindowListener l = new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    frame.addWindowListener(l);
    frame.pack();
    frame.setVisible(true);
         frame.listenSocket();
    Again help on this is very welcomed

  • File transfer to multiple clients from server socket

    I have multiple clients connected to my server socket and I need to copy more than 200mb documents from server to all clients over socket. Can we design the issue considering scalability and performance factor? What I am thinking of we should use thread for transferring file from server to client. But at the same time if we have large number of clients then we can't initialize a thread for each client. I think in this case we should initialize less than 10 threads in the pool as the file size is very large. If we keep number of threads in the pool low then probably we have to read multiple times the large server file (once for each group) which might again be a performance bottleneck. Please pour in your suggestions.

    File would be same for an instance only. For example say I have a "SEND File" button & �File Path� text box. In File Path suppose user enters the absolute path of the file and then clicks on Send File button. The responsibility of Send File button would be sending the file mentioned in the "File Path" text box to all connected client. But next time user can choose a different file.

  • JME Socket File Transfer - Problem with writing file

    Hi everybody, i'm trying to code a P2P app for a school project and i have a problem when trying to write to a file.
    This method recieves a file form a Socket Server computer that tries to send me a file to the mobile client.
    The method recieves the IP adress (String add) and the port of the server.
    Also, i would like to know about the buffer(byte) size.
    This codes runs well in emulation, but it doesn`t write to a file.
    And the main problem is:
    "When i run this in the mobile, the file is created in the cellphone memory with a size of 0kb."
    The server code was tested with a computer client and recieved the file succesfully.
    The server recieves de socket connection form the cellphone without problem.
    public void recibirArch(String add, int port) throws Exception {
    try
    recibArch.setText("Espere por favor...");
    long start = System.currentTimeMillis();
    int bytesRead;
    int pasos = 12;
    int current =0;
    SocketConnection sock = (SocketConnection)Connector.open("socket://"+add+":"+port);
    byte [] mybytearray = new byte [1024];
    InputStream is = sock.openInputStream();
    FileConnection fc = (FileConnection) Connector.open("file:///"+saveRoot+"5letras.txt",Connector.READ_WRITE );
    if( !fc.exists() ){
    fc.create();
    } else
    fc.truncate(0);
    DataOutputStream fos = new DataOutputStream(sock.openOutputStream());
    bytesRead = is.read(mybytearray,0,mybytearray.length);
    current = bytesRead;
    while ((current = is.read(mybytearray)) != -1)
    fos.write(mybytearray, 0, current);
    fos.flush();
    current+=bytesRead;
    long end = System.currentTimeMillis();
    fos.close();
    sock.close()
    catch(Exception err)
    String error = "ERROR: " + err.toString() + "\nDescripción: "+ err.getMessage();
    System.out.println(error);
    txtLog.setString(error);
    Edited by: xtylo on Sep 30, 2008 10:56 AM

    Thank you Tunde for looking at my issues!
    The file size is not an issue here. We tested with empty files or files with smaller than 1KB sizes. They all showed problem. The frequency of file transfer shouldn't be a problem either. Through some user interaction on front panel, a couple of files will be transferred. That's basically how often the file transfer occurs.
    Interestingly enough, I replaced the copy.vi with a subvi I created using DOS command with System Exec.vi and the issue of copying files went away. My co-worker tested on both XP machine and Windows 7 machine. The DOS command worked fine thru Lavview's System Exec.vi. I think I can take that as a work-around if we can't figured out why copy.vi wouldn't work. Still, it would be nice to know why it doesn't work.
    Now I'm still facing some issues with the usage of Check If File or Folder exist.vi. Sometimes it can detect the existing files and sometimes it doesn't.
    Thanks very much! 

  • Applet socket problem in client-server, urgent!

    Dear All:
    I have implemented a client server teamwork environment. I have managered to get the server running fine. The server is responsible for passing messages between clients and accessing Oracle database using JDBC. The client is a Java Applet. The code is like the following. The problem is when I try to register the client, the socket connection get java.security.AccessControlException: access denied(java.net.SocketPermission mugca.its.monash.edu.
    au resolve)
    However, I have written a Java application with the same socket connection method to connect to the same server, it connects to the server without any problem. Is it because of the applet security problem? How should I solve it? Very appreciate for any ideas.
    public class User extends java.applet.Applet implements ActionListener, ItemListener
    public void init()
    Authentication auth = new Authentication((Frame)anchorpoint);
    if(auth.getConnectionStreams() != null) {
    ConnectionStreams server_conn = auth.getConnectionStreams();
    // Authenticates the user and establishes a connection to the server
    class Authentication extends Dialog implements ActionListener, KeyListener {
    // Object holding information relevant to the server connection
    ConnectionStreams server_conn;
    final static int port = 6012;
    // Authenticates the user and establishes connection to the server
    public Authentication(Frame parent) {
    // call the class Dialog's constructor
    super(parent, "User Authentication", true);
    setLocation(parent.getSize().width/3, parent.getSize().height/2);
    setupDialog();
    // sets up the components of the dialog box
    private void setupDialog() {
    // create and set the layout manager
    //Create a username text field here
    //Create a password text field here
    //Create a OK button here
    public void actionPerformed(ActionEvent e) {
    authenticateUser();
    dispose();
    // returns the ConnectionStreams object
    public ConnectionStreams getConnectionStreams() {
    return(server_conn);
    // authenticates the user
    private void authenticateUser() {
    Socket socket;
    InetAddress address;
    try {
    // open socket to server
    System.out.println("Ready to connect to server on: " + port);
    socket = new Socket("mugca.its.monash.edu.au", port);
    address = socket.getInetAddress();
    System.out.println("The hostname,address,hostaddress,localhost is:" + address.getHostName() + ";\n" +
    address.getAddress() + ";\n" +
    address.getHostAddress() + ";\n" +
    address.getLocalHost());
    catch(Exception e) {
    displayMessage("Error occured. See console");
    System.err.println(e);
                                  e.printStackTrace();
    }

    Hi, there:
    Thanks for the help. But I don't have to configure the security policy. Instead, inspired by a message in this forum, I simply upload the applet to the HTTP server (mugca.its.monash.edu.au) where my won server is running. Then the applet is download from the server and running fine in my local machine.
    Dengsheng

  • SharePoint Foundation 2013 Optimization For Large File Transfer?

    We are considering upgrading from  WSS 3.0 to SharePoint Foundation 2013.
    One of the improvements we want to see after the upgrade is a better user experience when downloading large files.  It can be done now, but it is not reliable.
    Our document library consists of mostly average sized Office documents, but it also includes some audio and video files and software installer package zip files ranging from 100MB to 2GB in size.
    I know we can change the settings to "allow" larger than default file downloads but how do we optimize the server setup to make these large file transfers work as seamlessly as possible? More RAM on the SharePoint Foundation server? Other Windows,
    SharePoint or IIS optimizations?  The files will often be downloaded from the Internet, so we will not have control over the download speed.

    SharePoint is capable of sending large files, it is an HTTP stateless system like any other website in that regard. Given your server is sized appropriately for the amount of concurrent traffic you expect, I don't see any special optimizations required.
    Trevor Seward
    Follow or contact me at...
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.
    I see information like this posted warning against doing it as if large files are going to cause your SharePoint server and SQL to crash. 
    http://blogs.technet.com/b/praveenh/archive/2012/11/16/issues-with-uploading-large-documents-on-document-library-wss-3-0-amp-moss-2007.aspx
    "Though SharePoint is meant to handle files that are up to 2 gigs in size, it is not practically feasible and not recommended as well."
    "Not practically feasible" sounds like a pretty dire warning to stay away from large files.
    I had seen some other links warning that large file in the SharePoint database causes problems with fragmentation and large amounts of wasted space that doesn't go away when files are removed or that the server may run out of memory because downloaded
    files are held in RAM.

  • File transfer Crashes 10.8 Server

    I’m reaching out for someone’s more experienced analysis of an ongoing issue we’re having with a client’s server. Approximately once or twice a month for the past four months they’ve experienced server connections dropping for all connected users in their LAN. It “appears” to be caused by a single user moving, copying or saving a file, either a PDF or a Office doc, to different directories on the server. As soon as the user attempts the action their Finder locks up and the server disconnect message pops up. He’s connected via Ethernet. Other users in the LAN will then get the same server disconnect message. This first user isn’t able to screen share into the server and must do a hard shut down at the server to restart it. This user has replicated the issue on another laptop connected to their WiFi network while logged into the server with his credentials. While I thought this was an issue with his account, I’ve since created a new OD account for him with a different user name. The issue still exists.
    Looking through Console logs shows occasional OD and name resolution errors. I’ve verify both host and local DNS names match. DNS records appear to be correct. Kerberos is showing as running correctly. The strange thing is there’s not any crash log matching the most recent event. I’ve included a few sections of log files for what appears to be related issues from the most recent event. I’ve also included the SystemUIServer crash log for a previous event.
    Tech Info:  MacMini5,3   OS 10.8.5 with 8GB ram. Latest version of 10.8 Server app.
    I’m quite stumped by this one. Any assistance or guidance in troubleshooting would be greatly appreciated.
    Thank you,
    Dennis
    Named Log
    19-Jan-2015 14:26:57.846 error (host unreachable) resolving 'us-courier.push-apple.com.akadns.net/A/IN': 2001:500:2f::f#53
    19-Jan-2015 14:26:57.846 error (host unreachable) resolving 'us-courier.push-apple.com.akadns.net/A/IN': 2001:7fe::53#53
    19-Jan-2015 14:26:57.846 error (host unreachable) resolving './NS/IN': 198.41.0.4#53
    19-Jan-2015 14:26:57.846 error (host unreachable) resolving './NS/IN': 2001:500:2f::f#53
    19-Jan-2015 14:26:57.846 error (host unreachable) resolving './NS/IN': 2001:7fe::53#53
    19-Jan-2015 14:26:57.846 error (host unreachable) resolving 'us-courier.push-apple.com.akadns.net/A/IN': 2001:503:c27::2:30#53
    19-Jan-2015 14:26:57.846 error (host unreachable) resolving 'us-courier.push-apple.com.akadns.net/A/IN': 2001:7fd::1#53
    19-Jan-2015 14:26:57.847 error (host unreachable) resolving './NS/IN': 2001:503:c27::2:30#53
    19-Jan-2015 14:26:57.847 error (host unreachable) resolving './NS/IN': 2001:7fd::1#53
    19-Jan-2015 14:26:57.847 error (host unreachable) resolving 'us-courier.push-apple.com.akadns.net/A/IN': 2001:500:3::42#53
    19-Jan-2015 14:26:57.847 error (host unreachable) resolving './NS/IN': 2001:500:3::42#53
    19-Jan-2015 14:27:09.112 error (host unreachable) resolving 'control.app04-01.logmein.com/A/IN': 8.8.4.4#53
    19-Jan-2015 14:27:09.112 error (host unreachable) resolving 'control.app04-01.logmein.com/A/IN': 8.8.8.8#53
    19-Jan-2015 14:27:09.112 error (host unreachable) resolving 'control.app04-01.logmein.com/A/IN': 128.63.2.53#53
    19-Jan-2015 14:27:09.112 error (host unreachable) resolving 'control.app04-01.logmein.com/A/IN': 202.12.27.33#53
    19-Jan-2015 14:27:09.112 error (host unreachable) resolving 'control.app04-01.logmein.com/A/IN': 2001:503:ba3e::2:30#53
    19-Jan-2015 14:27:09.112 error (host unreachable) resolving 'control.app04-01.logmein.com/A/IN': 192.228.79.201#53
    19-Jan-2015 14:27:09.112 error (host unreachable) resolving 'control.app04-01.logmein.com/A/IN': 192.5.5.241#53
    19-Jan-2015 14:27:10.117 error (host unreachable) resolving 'host-delay.logmein-gateway.com/A/IN': 199.7.83.42#53
    19-Jan-2015 14:27:10.117 error (host unreachable) resolving 'host-delay.logmein-gateway.com/A/IN': 192.33.4.12#53
    19-Jan-2015 14:27:10.117 error (host unreachable) resolving 'host-delay.logmein-gateway.com/A/IN': 192.203.230.10#53
    19-Jan-2015 14:27:10.117 error (host unreachable) resolving 'host-delay.logmein-gateway.com/A/IN': 128.8.10.90#53
    19-Jan-2015 14:27:10.117 error (host unreachable) resolving 'host-delay.logmein-gateway.com/A/IN': 192.112.36.4#53
    19-Jan-2015 14:27:10.117 error (host unreachable) resolving 'host-delay.logmein-gateway.com/A/IN': 198.41.0.4#53
    19-Jan-2015 14:27:10.117 error (host unreachable) resolving 'host-delay.logmein-gateway.com/A/IN': 2001:500:2f::f#53
    19-Jan-2015 14:27:10.117 error (host unreachable) resolving 'host-delay.logmein-gateway.com/A/IN': 2001:7fe::53#53
    19-Jan-2015 14:27:10.117 error (host unreachable) resolving 'host-delay.logmein-gateway.com/A/IN': 2001:503:c27::2:30#53
    19-Jan-2015 14:27:10.117 error (host unreachable) resolving 'host-delay.logmein-gateway.com/A/IN': 2001:7fd::1#53
    19-Jan-2015 14:27:10.118 error (host unreachable) resolving 'host-delay.logmein-gateway.com/A/IN': 2001:500:3::42#53
    19-Jan-2015 14:28:05.762 zone 10.10.10.in-addr.arpa/IN/com.apple.ServerAdmin.DNS.public: loaded serial 2015011703
    19-Jan-2015 14:28:09.045 zone 0.0.127.in-addr.arpa/IN/com.apple.ServerAdmin.DNS.public: loaded serial 1997022700
    19-Jan-2015 14:28:09.046 zone localhost/IN/com.apple.ServerAdmin.DNS.public: loaded serial 42
    19-Jan-2015 14:28:09.046 zone filene.private/IN/com.apple.ServerAdmin.DNS.public: loaded serial 2015011703
    19-Jan-2015 14:28:09.046 managed-keys-zone ./IN/com.apple.ServerAdmin.DNS.public: loaded serial 0
    19-Jan-2015 14:28:09.047 running
    19-Jan-2015 14:28:09.047 received SIGHUP signal to reload zones
    System Log
    Jan 19 14:24:01 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  connect on /Volumes/TM failed 60.
    Jan 19 14:24:01 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  connect to the server /Volumes/TM
    Jan 19 14:24:01 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  connect on /Volumes/TM failed 64.
    Jan 19 14:24:01 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  sleep for 1 seconds and then try again
    Jan 19 14:24:02 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  connect to the server /Volumes/TM
    Jan 19 14:24:02 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  connect on /Volumes/TM failed 64.
    Jan 19 14:24:02 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  sleep for 2 seconds and then try again
    Jan 19 14:24:04 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  connect to the server /Volumes/TM
    Jan 19 14:24:04 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  connect on /Volumes/TM failed 64.
    Jan 19 14:24:04 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  sleep for 4 seconds and then try again
    Jan 19 14:24:08 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  connect to the server /Volumes/TM
    Jan 19 14:24:08 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  connect on /Volumes/TM failed 64.
    Jan 19 14:24:08 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  sleep for 8 seconds and then try again
    Jan 19 14:24:16 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  connect to the server /Volumes/TM
    Jan 19 14:24:31 fileneserver01.filene.private KernelEventAgent[54]: tid 00000000 received event(s) VQ_DEAD (32)
    Jan 19 14:24:31 fileneserver01.filene.private KernelEventAgent[54]: tid 00000000 type 'afpfs', mounted on '/Volumes/TM', from '//Filene%20Admin@Filene%20Backups._afpovertcp._tcp.local/TM', dead
    Jan 19 14:24:31 fileneserver01.filene.private KernelEventAgent[54]: tid 00000000 force unmount //Filene%20Admin@Filene%20Backups._afpovertcp._tcp.local/TM from /Volumes/TM
    Jan 19 14:24:31 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  connect on /Volumes/TM failed 60.
    Jan 19 14:24:31 fileneserver01 kernel[0]: ]
    Jan 19 14:24:31 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect:  posting to KEA to unmount /Volumes/TM
    Jan 19 14:24:31 fileneserver01 kernel[0]: ASP_TCP Disconnect: triggering reconnect by bumping reconnTrigger from curr value 1 on so 0xffffff8036ed6000
    Jan 19 14:24:31 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect started /Volumes/TM prevTrigger 1 currTrigger 2
    Jan 19 14:24:31 fileneserver01 kernel[0]: AFP_VFS afpfs_DoReconnect: already in unmount /Volumes/TM
    Jan 19 14:24:31 fileneserver01.filene.private KernelEventAgent[54]: tid 00000000 found 1 filesystem(s) with problem(s)
    Jan 19 14:24:31 fileneserver01 kernel[0]: AFP_VFS afpfs_unmount: /Volumes/TM, flags 524288, pid 54
    Jan 19 14:24:31 fileneserver01 kernel[0]: AFP_VFS afpfs_unmount : afpfs_DoReconnect sent signal for unmount to proceed
    Jan 19 14:27:42 localhost bootlog[0]: BOOT_TIME 1421699262 0
    Last OD Log entries before restart
    2015-01-19 13:11:40.872701 CST - 1286.65318 - Client: AppleFileServer, UID: 0, EUID: 0, GID: 0, EGID: 0
    2015-01-19 13:11:40.872701 CST - 1286.65318, Module: SystemCache - Misconfiguration detected - Failed to insert key '[email protected]' for entry '0x7f93f6d03250' into hash 'Kerberos' as 'non-authoritative'
    2015-01-19 13:23:38.735488 CST - 1286.65928 - Client: AppleFileServer, UID: 0, EUID: 0, GID: 0, EGID: 0
    2015-01-19 13:23:38.735488 CST - 1286.65928, Module: SystemCache - Misconfiguration detected - Failed to insert key '[email protected]' for entry '0x7f93f6201b50' into hash 'Kerberos' as 'non-authoritative'
    2015-01-19 13:50:06.393247 CST - 1286.68829 - Client: AppleFileServer, UID: 0, EUID: 0, GID: 0, EGID: 0
    2015-01-19 13:50:06.393247 CST - 1286.68829, Module: SystemCache - Misconfiguration detected - Failed to insert key '[email protected]' for entry '0x7f93f6d033c0' into hash 'Kerberos' as 'non-authoritative'
    Apple File Service Log
    Jan 19 14:22:11 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.139 - - "OpenFork HomEase - Prototype Agreement - UIECU  Signed 2015.01.16.pdf" 0 0 0
    Jan 19 14:22:11 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.139 - - "OpenFork HomEase - Prototype Agreement - UIECU  Signed 2015.01.16.pdf" 0 0 0
    Jan 19 14:22:11 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.139 - - "OpenFork HomEase - Prototype Agreement - UIECU  Signed 2015.01.16.pdf" 0 0 0
    Jan 19 14:22:18 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.129 - - "CreateFile 2015.01.21 Exec Session Packet PP FINAL.pptx" 0 0 0
    Jan 19 14:22:18 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.129 - - "OpenFork 2015.01.21 Exec Session Packet PP FINAL.pptx" 0 0 0
    Jan 19 14:22:18 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.129 - - "OpenFork 2015.01.21 Exec Session Packet PP FINAL.pptx" 0 0 0
    Jan 19 14:23:17 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.165 - - "Session Network Error Disconnect: " 0 0 0
    Jan 19 14:23:17 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.165 - - "Saved for Reconnect User: dwhoover" 1421675118 1766 0
    Jan 19 14:23:17 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.135 - - "Session Network Error Disconnect: " 0 0 0
    Jan 19 14:23:17 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.135 - - "Saved for Reconnect User: chelminak" 1421675118 664 0
    Jan 19 14:23:23 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.160 - - "Session Network Error Disconnect: " 0 0 0
    Jan 19 14:23:23 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.110 - - "Session Network Error Disconnect: " 0 0 0
    Jan 19 14:23:23 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.107 - - "Session Network Error Disconnect: " 0 0 0
    Jan 19 14:23:23 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.119 - - "Session Network Error Disconnect: " 0 0 0
    Jan 19 14:23:23 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.103 - - "Session Network Error Disconnect: " 0 0 0
    Jan 19 14:23:23 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.139 - - "Session Network Error Disconnect: " 0 0 0
    Jan 19 14:23:23 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.160 - - "Saved for Reconnect User: mnat" 1421675118 1687 0
    Jan 19 14:23:23 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.110 - - "Saved for Reconnect User: mmeyer" 1421675118 1678 0
    Jan 19 14:23:23 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.107 - - "Saved for Reconnect User: tstearns" 1421675118 645 0
    Jan 19 14:23:23 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.119 - - "Saved for Reconnect User: alouden" 1421675118 567 0
    Jan 19 14:23:23 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.103 - - "Saved for Reconnect User: anilsen" 1421675118 485 0
    Jan 19 14:23:23 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.139 - - "Saved for Reconnect User: mrenteria" 1421675118 316 0
    Jan 19 14:23:58 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.153 - - "Client no response timeout: brogers" 0 0 0
    Jan 19 14:23:58 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.153 - - "Saved for Reconnect User: brogers" 1421675118 930 0
    Jan 19 14:24:14 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.113 - - "Client no response timeout: mbell" 0 0 0
    Jan 19 14:24:14 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.113 - - "Saved for Reconnect User: mbell" 1421675118 1765 0
    Jan 19 14:24:30 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.129 - - "Client no response timeout: fileneadmin" 0 0 0
    Jan 19 14:24:30 fileneserver01.filene.private AppleFileServer[1286] <Info>: IP 10.10.10.129 - - "Saved for Reconnect User: fileneadmin" 1421675118 1752 0
    SystemUIServer Crash Log
    Process:         SystemUIServer [207]
    Path:            /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    Identifier:      com.apple.systemuiserver
    Version:         1.7 (369.2)
    Build Info:      SystemUIServer-369002000000000~178
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [184]
    User ID:         501
    Date/Time:       2015-01-14 14:53:29.757 -0600
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Application Specific Information:
    objc_msgSend() selector name: unload
    com.apple.menuextra.airplay
    com.apple.menuextra.battery
    com.apple.menuextra.bluetooth
    com.apple.menuextra.airport
    com.apple.menuextra.eject
    com.apple.menuextra.volume
    com.apple.menuextra.clock
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib               0x00007fff8dbf5250 objc_msgSend + 16
    1   com.apple.Foundation          0x00007fff94e9f59a __NSThreadPerformPerform + 225
    2   com.apple.CoreFoundation      0x00007fff9178cb31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    3   com.apple.CoreFoundation      0x00007fff9178c455 __CFRunLoopDoSources0 + 245
    4   com.apple.CoreFoundation      0x00007fff917af7f5 __CFRunLoopRun + 789
    5   com.apple.CoreFoundation      0x00007fff917af0e2 CFRunLoopRunSpecific + 290
    6   com.apple.HIToolbox           0x00007fff947c8eb4 RunCurrentEventLoopInMode + 209
    7   com.apple.HIToolbox           0x00007fff947c8c52 ReceiveNextEventCommon + 356
    8   com.apple.HIToolbox           0x00007fff947c8ae3 BlockUntilNextEventMatchingListInMode + 62
    9   com.apple.AppKit              0x00007fff8e054533 _DPSNextEvent + 685
    10  com.apple.AppKit              0x00007fff8e053df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    11  com.apple.AppKit              0x00007fff8e04b1a3 -[NSApplication run] + 517
    12  com.apple.systemuiserver      0x0000000100ddf502 0x100dcb000 + 83202
    13  libdyld.dylib                 0x00007fff97ba07e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x00007fff8f1dad16 kevent + 10
    1   libdispatch.dylib             0x00007fff97fe3dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib             0x00007fff97fe39ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib        0x00007fff8f1da6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff97665f1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff97665ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff97650191 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib        0x00007fff8f1da6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff97665f1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff97665ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff97650191 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib        0x00007fff8f1da6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff97665f1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff97665ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff97650191 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib        0x00007fff8f1da6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff97665f1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff97665ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff97650191 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib        0x00007fff8f1da6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff97665f1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff97665ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff97650191 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib        0x00007fff8f1da6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff97665f1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff97665ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff97650191 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib        0x00007fff8f1da6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff97665f1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff97665ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff97650191 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib        0x00007fff8f1da6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff97665f1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff97665ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff97650191 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib        0x00007fff8f1da6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff97665f1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff97665ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff97650191 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib        0x00007fff8f1da6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff97665f1c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff97665ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff97650191 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000078  rbx: 0x00007f8f4940bff0  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x00007f8f4a229180  rsi: 0x00007fff9506542d  rbp: 0x00007fff5ee336e0  rsp: 0x00007fff5ee33690
       r8: 0x0000000000012068   r9: 0x00007fff5ee33650  r10: 0x00000001024f95a0  r11: 0x6000000000000000
      r12: 0x00007f8f4a53b080  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x00007f8f4a243c30
      rip: 0x00007fff8dbf5250  rfl: 0x0000000000010246  cr2: 0x0000000100ddc0f4
    Logical CPU: 1
    Binary Images:
           0x100dcb000 -        0x100e25ff7  com.apple.systemuiserver (1.7 - 369.2) <95ECA072-32A4-3A9D-8AFC-3E94FE5FBF5D> /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
           0x100e54000 -        0x100e5afff  com.apple.framework.SystemUIPlugin (1.7 - 33) <E4707F99-FCC2-34D7-9F39-DEB72D71843E> /System/Library/PrivateFrameworks/SystemUIPlugin.framework/Versions/A/SystemUIP lugin
           0x100e68000 -        0x100e7dff7  com.apple.ImageCaptureNotifications (8.0 - 8.0) <B6F59B1D-986B-35A3-BE91-E2FA89BD23A0> /System/Library/PrivateFrameworks/ICANotifications.framework/Versions/A/ICANoti fications
           0x100e90000 -        0x100e94fff  com.apple.iPod (1.7 - 20) <6C90CD43-C5D5-359D-9A4D-E12A337A7ED1> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
           0x100f25000 -        0x100f31fff  com.apple.framework.calculate (1.3.2 - 17) <BA9E6060-4666-30D8-994A-A3419D9A7B24> /System/Library/PrivateFrameworks/Calculate.framework/Versions/A/Calculate
           0x100f47000 -        0x100f50fe7  libcldcpuengine.dylib (2.2.16) <B6E3B14B-1EAC-3FDD-8AED-87231A033BED> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x100f5b000 -        0x100f5bff1 +cl_kernels (???) <3DB8610B-5D6E-461E-983D-CBC76E145662> cl_kernels
           0x100f60000 -        0x100f60ff3 +cl_kernels (???) <B6FC40A9-90D2-4641-AB76-345ED91C483B> cl_kernels
           0x100f69000 -        0x100f69ffb +cl_kernels (???) <2B9E919E-9B50-4C08-B77A-5A3AE6498BC0> cl_kernels
           0x100f6b000 -        0x100f6efff  com.apple.menuextra.eject (2.0.3 - 255) <D7A6246F-19CA-369B-9D40-2A738FEA87D0> /System/Library/CoreServices/Menu Extras/Eject.menu/Contents/MacOS/Eject
           0x100f73000 -        0x100f87ff7  com.apple.menuextra.airport (8.1 - 810.11) <9698703A-0A37-362B-B447-06BC092C0C32> /System/Library/CoreServices/Menu Extras/AirPort.menu/Contents/MacOS/AirPort
           0x100f94000 -        0x100f9dfff  com.apple.menuextra.airplay (2.4 - 74) <D737B171-EB44-3B06-9997-566E28EBFC47> /System/Library/CoreServices/Menu Extras/Displays.menu/Contents/MacOS/Displays
           0x10231d000 -        0x102386fff  com.apple.spotlight (10.7.0 - 707.12) <11DF8D73-9E10-3126-89FB-D24657C6B292> /System/Library/CoreServices/Search.bundle/Contents/MacOS/Search
           0x1023ba000 -        0x1023c7fff  com.apple.menuextra.bluetooth (4.1.7 - 4.1.7f4) <F91599A9-EEFB-3A7B-8E42-13CC57790AFF> /System/Library/CoreServices/Menu Extras/Bluetooth.menu/Contents/MacOS/Bluetooth
           0x1023d1000 -        0x1023d6fff  com.apple.MonitorPanelFramework (2.1 - 2.1) <C5C30596-BB02-36E5-B6B1-9866E9DFC006> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
           0x1023f0000 -        0x1023f1ffb +cl_kernels (???) <4AC47531-A466-4C88-A034-6167DC078F48> cl_kernels
           0x1023fe000 -        0x1023feff9 +cl_kernels (???) <AF7041CC-1AEA-477B-BD15-173269B0F14B> cl_kernels
           0x102404000 -        0x102409fff  com.apple.audio.AppleHDAHALPlugIn (2.4.7 - 2.4.7fc4) <EA592C9E-AD15-3DD0-85BE-D47BBBE04286> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10447b000 -        0x104515ff7  unorm8_bgra.dylib (2.2.16) <5D62BED8-DF5D-3C51-94B4-57368FF10DDB> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x1047c3000 -        0x104867fff  sfixed14_rgba.dylib (2.2.16) <223EB931-400B-32E2-98D2-72C7E3B3605B> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/sfixed14_rgb a.dylib
        0x7fff609cb000 -     0x7fff609ff93f  dyld (210.2.3) <6900F2BA-DB48-3B78-B668-58FC0CF6BCB8> /usr/lib/dyld
        0x7fff8ccf7000 -     0x7fff8cd02ff7  com.apple.aps.framework (3.0 - 3.0) <DEF85257-2D1C-3524-88F8-CF70980726AE> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8ce2e000 -     0x7fff8ce2effd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8cf3b000 -     0x7fff8cf3bfff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8cf3c000 -     0x7fff8cf98fff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8cfe0000 -     0x7fff8cfe2fff  libCVMSPluginSupport.dylib (8.10.1) <F0239392-E0CB-37D7-BFE2-D6F5D42F9196> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8d01b000 -     0x7fff8d055fff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8d095000 -     0x7fff8d103ff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8d104000 -     0x7fff8d2b2fff  com.apple.QuartzCore (1.8 - 304.4) <84F0B40E-DF91-36F2-9F2E-3922234206A3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8d2b3000 -     0x7fff8d2fffff  com.apple.framework.CoreWLAN (3.4 - 340.18) <3735FB49-30C0-3B11-BE25-2ACDD96041B5> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8d300000 -     0x7fff8d71dfff  FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8d71e000 -     0x7fff8d8a4fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8d8a5000 -     0x7fff8d99afff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff8d99b000 -     0x7fff8d99dff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff8da0e000 -     0x7fff8da5dfff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8da6d000 -     0x7fff8da87fff  com.apple.CoreMediaAuthoring (2.1 - 914) <F0E11E75-03DA-3622-B614-2257EBDABF25> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8da8c000 -     0x7fff8dab8fff  com.apple.framework.Apple80211 (8.5 - 850.252) <73506CA1-CF76-3A98-A6F2-3DDAC10CB67A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8dab9000 -     0x7fff8dbaaff7  com.apple.DiskImagesFramework (10.8.3 - 345) <5C56181F-1E9F-336A-B7BB-620565A8BD6E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8dbab000 -     0x7fff8dbeeff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8dbef000 -     0x7fff8dd0792f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8dd08000 -     0x7fff8dd89fff  com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8dd8a000 -     0x7fff8deaafff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8deff000 -     0x7fff8eb2cfff  com.apple.AppKit (6.8 - 1187.40) <F12CF463-6F88-32ED-9EBA-0FA2AD3CF576> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8eb2d000 -     0x7fff8eb2efff  libodfde.dylib (18) <015DD2A0-D59A-3547-909D-7C028A65C312> /usr/lib/libodfde.dylib
        0x7fff8eb2f000 -     0x7fff8edd3ff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8ede5000 -     0x7fff8eefffff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8efc7000 -     0x7fff8f1c7fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff8f1c8000 -     0x7fff8f1e3ff7  libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8f26f000 -     0x7fff9022eff7  com.apple.WebCore (8536 - 8536.30.2) <3FF4783B-EF75-34F5-995C-316557148A18> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff9022f000 -     0x7fff9023cfff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff9024e000 -     0x7fff9025dfff  com.apple.opengl (1.8.10 - 1.8.10) <AD49CF56-B7C1-3598-8610-58532FC41345> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff9025e000 -     0x7fff902cefff  com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff902cf000 -     0x7fff902cffff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff902d0000 -     0x7fff90318fff  libcurl.4.dylib (69.2.71) <F52E1881-A425-3AE9-8386-A434F10AE0A2> /usr/lib/libcurl.4.dylib
        0x7fff90319000 -     0x7fff90322fff  com.apple.CommerceCore (1.0 - 26.3) <870C7810-0D27-3AC5-95A0-3224BB4890C0> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff90323000 -     0x7fff90325ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff90326000 -     0x7fff9035cfff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff90865000 -     0x7fff908f5ff7  libCoreStorage.dylib (296.18.2) <2FFB6BCA-3033-3AC1-BCE4-ED102DCBECD5> /usr/lib/libCoreStorage.dylib
        0x7fff908f6000 -     0x7fff90b2bff7  com.apple.CoreData (106.1 - 407.7) <A676E1A4-2144-376B-92B8-B450DD1D78E5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff90b5b000 -     0x7fff90b5bfff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff90b5c000 -     0x7fff90b84ff7  com.apple.SystemConfiguration.EAP8021X (12.0.1 - 156.1) <CDDF1A2A-B87F-3ED3-BFC9-760432A32C95> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
        0x7fff90b85000 -     0x7fff90b8bfff  libCGXCoreImage.A.dylib (333.1.1) <971D9275-C3C8-3B4F-AA38-F17E8D58B6B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff90bde000 -     0x7fff90bdfff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff90c1b000 -     0x7fff90c1cff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff90c1d000 -     0x7fff90cb8fff  com.apple.CoreSymbolication (3.0 - 117) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff90cb9000 -     0x7fff90cc6fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff90d80000 -     0x7fff90d93ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff90d94000 -     0x7fff90e14ff7  com.apple.ApplicationServices.ATS (341.2 - 341.2) <0EF1BB57-71AA-304D-A455-55CBE0A4983A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff90e72000 -     0x7fff90e9dfff  com.apple.datadetectors (4.0 - 199.1) <565AFA08-B5CA-3F64-9CD4-F2D9DCFA276E> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff90e9e000 -     0x7fff90edeff7  com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff90edf000 -     0x7fff90ee1fff  com.apple.securityhi (4.0 - 55002) <9B6CBA92-123F-3307-A2D7-D77A8D3BF87E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff90ee2000 -     0x7fff90f1dfff  com.apple.LDAPFramework (2.4.28 - 194.5) <7E4F2C08-0010-34AE-BC46-149B7EE8A0F5> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff90f1e000 -     0x7fff90f87fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff90f88000 -     0x7fff91045ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff91058000 -     0x7fff91307fff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff91308000 -     0x7fff91310ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff91316000 -     0x7fff9131dff7  libcopyfile.dylib (89.0.70) <30824A67-6743-3D99-8DC3-92578FA9D7CB> /usr/lib/system/libcopyfile.dylib
        0x7fff9131e000 -     0x7fff915b9ff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff915d1000 -     0x7fff915d5fff  libCGXType.A.dylib (333.1.1) <3010D3F9-C3A9-3D2E-ACDD-9020FB17482E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff915d6000 -     0x7fff91619ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff9161a000 -     0x7fff91669ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff916ba000 -     0x7fff916cffff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff91770000 -     0x7fff91773fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff91774000 -     0x7fff91779ff7  com.apple.CaptiveNetworkSupport (12.0 - 1) <D917B57A-CDE3-3F01-B676-C068DBAAB7E4> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/Versions/A/CaptiveNe twork
        0x7fff9177a000 -     0x7fff91964ff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff91965000 -     0x7fff919b2fff  com.apple.CoreMediaIO (309.0 - 4163.1) <8FD1C1A9-25C5-3B9E-A76D-BE813253B358> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff91a30000 -     0x7fff91cb1fff  com.apple.AOSKit (1.051 - 152.4) <01C09924-2603-3C1E-97F7-9484CBA35BC9> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff91cb2000 -     0x7fff91d31ff7  com.apple.securityfoundation (6.0 - 55115.4) <64EDD2F2-4DE2-3DE5-BE57-43D413853CF9> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff91d95000 -     0x7fff91ef3fef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff91f3c000 -     0x7fff91f3cfff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff91f3d000 -     0x7fff92017fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff92018000 -     0x7fff92063fff  com.apple.CoreMedia (1.0 - 926.106) <64467905-48DC-37F9-9F32-186768CF2640> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff92064000 -     0x7fff920bbff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff922c1000 -     0x7fff92324fff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff92325000 -     0x7fff92325fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff92331000 -     0x7fff92483fff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff92484000 -     0x7fff924a6ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff924f1000 -     0x7fff924fbfff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff924fc000 -     0x7fff924fdff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff92508000 -     0x7fff92552ff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff92553000 -     0x7fff92575ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff92576000 -     0x7fff9257afff  libGIF.dylib (852) <326C48F1-C892-3AF9-94BC-32768EFF6731> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff9257b000 -     0x7fff925a9ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff925aa000 -     0x7fff925c5ff7  com.apple.frameworks.preferencepanes (15.1 - 15.1) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff925c6000 -     0x7fff92620fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff9265e000 -     0x7fff926ebff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff926ec000 -     0x7fff926f7fff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff9271b000 -     0x7fff930ab807  com.apple.CoreGraphics (1.600.0 - 333.1.1) <E3316BA5-1A34-39B1-8FA7-97727488869B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff930ac000 -     0x7fff931a9fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff931b7000 -     0x7fff931b9fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff931ba000 -     0x7fff931dafff  libPng.dylib (852) <CCBFA9A9-33C0-3189-AFE0-A77E831EEBA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff931db000 -     0x7fff931e2fff  libGFXShared.dylib (8.10.1) <B4AB9480-2CDB-34F8-8D6F-F5A2CFC221B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff931e3000 -     0x7fff931f1fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff931f2000 -     0x7fff932a4ff7  com.apple.LaunchServices (539.11 - 539.11) <A86F44E5-F285-3029-A5D1-00CD3C231A08> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff932cd000 -     0x7fff932d2fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff932d3000 -     0x7fff9345efff  com.apple.WebKit (8536 - 8536.30.1) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff93460000 -     0x7fff934b1ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <581BF463-C15A-363B-999A-E830222FA925> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff934b2000 -     0x7fff934bafff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff93e01000 -     0x7fff93e08fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff93e09000 -     0x7fff93e30fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff93e31000 -     0x7fff93e70ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff93e71000 -     0x7fff93e88fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff93e89000 -     0x7fff943f9ff7  com.apple.CoreAUC (6.22.03 - 6.22.03) <A77BC97A-B695-3F7E-8696-5B2357C2726B> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff943fa000 -     0x7fff9440cff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff9440d000 -     0x7fff9441cff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff9441d000 -     0x7fff9442aff7  com.apple.HelpData (2.1.4 - 85) <EE68BDCC-AF2E-34D3-8E4F-87379E3A4D8E> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff9442b000 -     0x7fff94686ff7  com.apple.QuartzComposer (5.1 - 287.1) <D1DD68D1-05D5-3037-ABB6-BF6EB183C155> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff94695000 -     0x7fff94748ff7  com.apple.PDFKit (2.8.5 - 2.8.5) <EAAED40E-7B2C-3312-826E-26A9DEDBF0FC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff94749000 -     0x7fff94768ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff94769000 -     0x7fff94a99fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff94aaf000 -     0x7fff94ad4ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff94ad5000 -     0x7fff94ad5fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff94ad6000 -     0x7fff94af3ff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff94af4000 -     0x7fff94dabff7  com.apple.MediaToolbox (1.0 - 926.106) <57043584-98E7-375A-89AE-F46480AA5D97> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff94dac000 -     0x7fff94e0bfff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff94e0c000 -     0x7fff9516bfff  com.apple.Foundation (6.8 - 945.19) <C98E55BA-553B-314B-B056-849FFB20C220> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9516c000 -     0x7fff95179ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff9517a000 -     0x7fff951befff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
        0x7fff951bf000 -     0x7fff951f0ff7  com.apple.DictionaryServices (1.2 - 184.4) <FB0540FF-5034-3591-A28D-6887FBC220F7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff951f1000 -     0x7fff95247fff  com.apple.HIServices (1.20 - 417) <BCD36950-013F-35C2-918E-05A93A47BE8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff95248000 -     0x7fff95285fef  libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff95286000 -     0x7fff9529afff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff9529b000 -     0x7fff952a7ff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <5AA375C4-9FD4-3F4F-849D-0329E0D5DC04> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff954f1000 -     0x7fff957c2fff  com.apple.security (7.0 - 55179.16.2) <87489F4C-750E-3183-B404-215097E71054> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff957cd000 -     0x7fff957d0ff7  com.apple.LoginUICore (2.1 - 2.1) <98A808A9-F27D-37A9-84D6-77B61C444F97> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff957d1000 -     0x7fff957dfff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff957e0000 -     0x7fff957eafff  libcsfde.dylib (296.18.2) <08092C5B-2171-3C1D-A98F-CF499A315DDC> /usr/lib/libcsfde.dylib
        0x7fff957ed000 -     0x7fff957edfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <F565B686-24E2-39F2-ACC3-C5E4084476BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff9612e000 -     0x7fff9612ffff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff96130000 -     0x7fff96134fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff96190000 -     0x7fff962a9fff  com.apple.ImageIO.framework (3.2.2 - 852) <1D023BCE-1FA2-3743-B449-7489BC0C5C43> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff962aa000 -     0x7fff962b5ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff962b9000 -     0x7fff962e5fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff962e6000 -     0x7fff96481fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff96482000 -     0x7fff96489fff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff964db000 -     0x7fff9679ffff  com.apple.AddressBook.framework (7.1 - 1170) <A850809B-B087-3366-9FA0-1518C20831D3> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff967a0000 -     0x7fff96846ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <E91B0882-E75C-30E9-8DCD-7A0EEE4405CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff96847000 -     0x7fff9690cff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff9690d000 -     0x7fff96924fff  com.apple.CFOpenDirectory (10.8 - 151.10) <7AD5F6E7-A745-3FF4-B813-9D064A8146EC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff96925000 -     0x7fff96925fff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff96926000 -     0x7fff96a32fff  libFontParser.dylib (84.7) <C3D1121B-B066-34C3-9D31-ADDF387C0B20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff96b29000 -     0x7fff96b2aff7  libSystem.B.dylib (169.3) <FF25248A-574C-32DB-952F-B948C389B2A4> /usr/lib/libSystem.B.dylib
        0x7fff96b2b000 -     0x7fff96b39fff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff96b3a000 -     0x7fff96b85ff7  com.apple.GraphKit (1.0.5 - 30) <3041F39B-5372-334E-9757-3EBFE0CDA293> /System/Library/PrivateFrameworks/GraphKit.framework/Versions/A/GraphKit
        0x7fff96b86000 -     0x7fff96c24ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff96c25000 -     0x7fff96c3bfff  com.apple.MultitouchSupport.framework (237.4 - 237.4) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff96c3c000 -     0x7fff96c40ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff96c41000 -     0x7fff96c62fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff96c9c000 -     0x7fff96ca2ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff96ca3000 -     0x7fff96ca3fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff96ca7000 -     0x7fff96cb2ff7  com.apple.DisplayServicesFW (2.7.2 - 357) <F02E8FC3-18DC-3F03-8763-E6EE3E2A6B5A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff96cb3000 -     0x7fff970aafff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff970ab000 -     0x7fff970adfff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff970f4000 -     0x7fff970f9fff  com.apple.OpenDirectory (10.8 - 151.10) <3EE3D15A-3C79-3FF1-9A95-7CE2F065E542> /System/Library/Frameworks/OpenDirecto

    Thank you for your reply. We had an Apple consultant come in a few days after I posted this (and after a call to Apple support too) and we spent some time going over things. Apple support (and the consultant agreed) to destroy the OD master, remove all currently configured DNS and change the server host name. Afterwards, reconfigure DNS (if required) and OD. As part of this, they both recommended exporting the user accounts and importing them afterwards. This appeared to go fine, but then no fileshares worked at all (AFP and SMB broke).
    The consultant eventually found that with OD disabled AFP worked with a local server user fine. He suggested not importing the user accounts but creating from scratch, and this worked too.
    Really, the problem came down to two things:
    1) When the server was set up originally I chose the first option in the 'what type of server will this be' list, which from what I remember was a local server. This set the host name to server.local which caused a problem when trying to configure DNS, as the server thought it was server.local but I wanted server.domain.local.
    2) When reconfiguring OD, importing the old user accounts created the file sharing problem whereas brand new accounts didn't. We suspected that some part of the old configuration was transferred over with the user account import.
    I configured the server as server.domain.private. I understand you don't recommend using anything other than a valid top level domain and it feels a bit odd coming from a Windows world where either .local or .tld is ok to use. I'll have a look at this a bit more I think.

  • Publishing .fla project including client - server socket connection

    Hi,
    I have designed with Adobe Flash Professional CS5 a .fla project that integrates a client - server connection.
    After publishing it, I have the following issue:
    - when running the generated .exe file for Windows, then the connection to the server works perfectly
    - but when I am running the published .html file, then nothing is sent to the server.
    I have tried to change the Publish Settings.
    When setting the Local Playback Security in Flash menu to "Access network only" instead of "Access local files only" then the last packet that was send using the .exe file is resent once and that's all (the html client does not receive the response from the server and the next connection attemps generate data transfer).
    I guess I have to change some security settings somewhere but I didn't find which.
    Does anybody have a hint ?
    Thanks.

    Hi again,
    I was finally able to solve the issue.
    I did not get any error message when using firefox, but using iExplorer provided me this error:
    "Local-with-filesystem SWF files are not permitted to use sockets"
    Googling did then allow me to find the solution here:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.htm l
    The local locations on which I store my html page during the development has to be added to the trusted locations in the global security settings.
    Hope it will help some other people.
    Best regards

  • Large file uploads  with jersey client

    Hello All,
    I am getting heap spcace iissue while uploading large files via jersey client , the jvm will run out memory
    Can any one help me in understanding how can i send large file about 300mb
    via jersy client.
    code that i have wriiten is:
    WebResource webResource = client.resource(url);
    MultiPart multiPart = new MultiPart();
    FileDataBodyPart filePart = new FileDataBodyPart("file", file,
    MediaType.APPLICATION_OCTET_STREAM_TYPE);
    multiPart.bodyPart(filePart);
    multiPart.bodyPart(new FormDataBodyPart("code", code));
    ClientResponse response = webResource.type(MediaType.MULTIPART_FORM_DATA).post(ClientResponse.class,
    multiPart);
    Thanks

    Thanks for ur reply but i have tried it by using
    client.setChunkedEncodingSize(10000);
    WebResource webResource = client.resource(url);
              // file to multi part Request
              MultiPart multiPart = new MultiPart();
              FileDataBodyPart filePart = new FileDataBodyPart("file", file,
                        MediaType.APPLICATION_OCTET_STREAM_TYPE);
              multiPart.bodyPart(filePart);
              multiPart.bodyPart(new FormDataBodyPart("code",code));
              ClientResponse response = null;
                   response = webResource.type(MediaType.MULTIPART_FORM_DATA).post(ClientResponse.class,
                             multiPart);
    Now the file are easily send in chunked but the problem is i am not able to receive value of code now..
    On the other server where i am sending this file along code is:
    public void upload(@RequestParam("file") MultipartFile uploadedFile,
                   @RequestParam("code") String code,
                   Writer responseWriter) throws IOException
    }

Maybe you are looking for

  • Unexpected behavior when creating Objects in a Vector

    I have a situation where Objects in a Vector appear to be getting corrupted. The context is this: I obtain a ResultSet from a database, create a Vector of Strings for each row, and a Vector of these row vectors for the entire ResultSet. This is passe

  • Missing Tags in upgrade from PSE 10 to PSE 11

    My "people tags" used in pse 10 now show up as groups in pse 11, how do I add photos to these groups? What am I missing? Thanks for any help. jthinpa

  • Error While Importing the oracle 815 database

    The error message i get is "segmentation fault(core dump)". This error Occurs when i import any table from this export file(.dmp). I using the command "imp parfile=filename". When i run the file, the error occure when starting to import the data from

  • Showing all IP Address(es)

    Dear guys, Can you please help me ? I want to display all the IP Address(es) (means includes all the aliases) of other machine. This is my code : private void getOtherIP(InetAddress ia)           NetworkInterface networkInterface=new NetworkInterface

  • HT202157 ATV 5.0 software upgrade

    Hi All, I upgraded ATV software to 5.0, but only two icons (Computers and Settings) are visible. Anyone has similar issue?