How Do I Send A File Over An Air-Port Network

I have a good knowledge of mac but ive only just set upa network, weve got three new iMacs with airport networks, i know the networks work because we can chat over iChat but how do i send a file from one computer to another.
Also one of the computers is getting the internet from the school network via Ethernet cable, can te other macs share the internet from this computer over the Airport network.
(we do not have a base station)
please help

]but how do i send a file from one computer to another.
You can do that over iChat if you want.
To share files between the computers you need to network them.
For networking (ie sharing files), System Preferences -> Sharing -> File Sharing
Then in Finder ⌘ K and type in the name of the other computer.
]Also one of the computers is getting the internet from the school network via Ethernet cable, can te other macs share the internet from this computer over the Airport network.
System Preferences -> Sharing -> Internet Tab
Share your connection from built-in-ethernet
To computers using Airport
Airport Options button will allow you to add a WEP password.
I would check with your school network administrator that you are allowed to do this.

Similar Messages

  • How to edit xml file particular value. and how to send xml file over ip address 192.168.2.10 using ftp

    how to edit xml file particular value. and how to send xml file over ip address 192.168.2.10 device using ftp through Ethernet

    Hello
    For using FTP function in LabVIEW, I recommend you to check this document: FTP Basics
    Also, take a look at FTP Browser.vi, which is available at the Example Finder.
    To edit a XML file, try to use VIs in XML palette. Maybe Write to XML.vi helps you.
    Post your current VI if possible.
    Regards
    Mondoni

  • Send wav files over a network

    Hi folks,
    I need to send sound files over a network. The files I'm wanting to send are wav files. I kinda have the mechanism that sends a file, but I am not sure how to convert wav files into something that I can easily send. Do I need to convert them into bytes, serialize them...etc I don't know.
    Can anyone please point me in the right direction? An example would be very much appreciated.
    Thank you,
    E

    hi
    this is very simple
    convert voice to bytearray
    just create one server socket and client socket then connect a sockets and transmit
    download sample from
    http://javasolution.blogspot.com/2007/04/voice-chat-using-java.html

  • How do you accept files over and IR port?

    I am trying to accept files over and IR port and trigger another vi every time a file is received. Has anyone had any luck doing this? I read that you can use the ws2_32.dll to do this but I'm new to calling libraries.

    It depends on the protocol that the sender is using. I've used IR, but it simply acted like a serial port. Even if you know that much, you'll want to know how it sends the files. So, a header explaining the number of bytes, filename, and following the data. That would be pretty simple.
    I looked at the ws2_32.dll and it appears to be winsock (tcp/ip) and nothing to do with IR.
    The LabVIEW Advanced course has a very good section about using Call Library Function nodes. If you find out more about your application, hardware (IR) and communication protocol, we might end up figuring out if we need to use an existing DLL.

  • How can I send a file that CAN NOT be printed or saved by the recipient?

    How can I send a file that CAN NOT be printed or saved by the recipient?

    Impossible. PDF files don't stream, so they cannot be opened until they've been saved.
    You can truly prevent printing by using DRM, or ask nicely by using a permissions password (though that's ignored by non-Adobe software).

  • How can I send scanned files, which are documents changed from doc to PDF, as documents that can be edited if the recipient doesn't have Adobe capabilities?

    How can I send scanned files, which are documents changed from doc to PDF, as documents that can be edited if the recipient doesn't have Adobe capabilities?

    Hi flaviusjack,
    If you still have the .doc files, it might be best to send those to your recipients so they can be edited. Otherwise, you can use ExportPDF to convert the PDF files back to .doc format. But, again, that step would be unnecessary if you have the .doc files.
    Best,
    Sara

  • How do I send a file that is 2 mb via adobe send file now. I have the student version of cs 6

    How do I send a file that is 2 mb via adobe send file now. I have the student version of cs 6. Does this cost money, or can I send a certain size for free. I just want to send a file so I can access it on my ipad. It's a PDF that is too large to email.

    Adobe Send can certainly do that.
    Or you can do it manually:
    upload the file to Acrobat.com
    check the file on the Acrobat.com site and click Send
    use Create Anonymous Link and click the Create Link button
    copy the created download link and send it by email

  • How do I send a file in my itunes library as an email attachment?

    How do I send a file from my iTunes library as an email attachment?

    Add an attachement and point it to the location of the physical file on the computer as you would with any other file you want to attach to an email.

  • How do i send a file via email so it opens in booklet form to other people

    how do i send a file via email so it opens in booklet form to other people

    You would appear to be doing the right method as in this work through:http://support.en.belgacom.be/app/staticpages/devices/en/#/nokia/c3-00/email/sending-an-email-messag...
    Is there similar problem with Email without attachment?
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • How can I send a file of photos by email?

    I have a file of .jpeg and .mov photos and movies. How can I send the file to someone else via email or the next best possible thing?
    Thank you
    Roy

    zip up the folder  control click(right click on the folder)>Compress
    Send the zip file.
    http://appleinsider.com/articles/14/10/17/how-to-use-mail-drop-and-markup-to-sen d-large-emails-in-os-x-yosemite

  • How do you send photos from an iPad air to someone's  cell phone number

    How do I send photos from my iPad air to someones cell phone

    You can only do that if they have an iOS device.  If they don't, you can email it to them, but you can't message it to them if for example they have an Android phone.

  • How to send simple file over network!

    Hi!!
    can any body guide me how to send a simple txt and other files (not media files) over net!
    what would i have to do to do so ?
    do i have to understand the files headers and got to use udp protocols if yes then plz tell me how
    Thank you!

    Well thanks for informing me...
    But what if i want to send a media file using udp not rtp protocol then should i have to so the same ?
    any one going to help me in other way ?
    Thank you !

  • How do I send an Image over a socket ?

    I'm trying to get the output from my webcam and send that data out to a socket. Now the output from the webcam is running I'm just not sure how to send it out over the socket.
    Server.java
    import java.io.*;
    import java.net.*;
    public class Server {
       public static void main(String args[]) {
         ServerSocket serverSocket = null;
         boolean listening = true;
         try {
         serverSocket = new ServerSocket(1354);
         System.out.println("Listening for Connections...");
         } catch (IOException drr) {
         System.out.println("Error Listening :" + drr);
         System.exit(-1);
         try {
         while(listening)
         new ServerThread(serverSocket.accept()).start();
         } catch (IOException er) {
         System.out.println("Error Creating connection:" + er);
         try {
           serverSocket.close();
         } catch (IOException err) {
         System.out.println("Error Closing:" + err);
    }When a connection is made it will start the webcam and send the image.
    ServerThread.java
    import java.net.*;
    import java.io.*;
    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.io.*;
    import javax.media.*;
    import javax.media.format.*;
    import javax.media.util.*;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import com.sun.image.codec.jpeg.*;
    public class ServerThread extends Thread {
        public static Player player = null;
        public CaptureDeviceInfo di = null;
        public MediaLocator ml = null;
        public JButton capture = null;
        public Buffer buf = null;
        public Image img = null;
        public VideoFormat vf = null;
        public BufferToImage btoi = null;
        public ImagePanel imgpanel = null;
        private Socket socket = null;
        Image blah;
        PrintWriter out = null;
        public ServerThread(Socket socket) {
         super("ServerThread");
         this.socket = socket;
        public void run() {
         try {
             out = new PrintWriter(socket.getOutputStream(), true);        
             imgpanel = new ImagePanel();
                 String str1 = "vfw:CompUSA PC Camera:0";
                 String str2 = "vfw:Microsoft WDM Image Capture (Win32):0";
                 di = CaptureDeviceManager.getDevice(str2);
             ml = new MediaLocator("vfw://0");
                try {
               player = Manager.createRealizedPlayer(ml);
                 } catch (Exception npe) {
               System.out.println("Player Exception:" + npe);
                player.start();
             Component comp;
             if ((comp = player.getVisualComponent()) != null) {
               // Grab a frame
               FrameGrabbingControl fgc = (FrameGrabbingControl) player.getControl("javax.media.control.FrameGrabbingControl");
               buf = fgc.grabFrame();
               btoi = new BufferToImage((VideoFormat) buf.getFormat());
               //Send the image over the socket
               out.println(btoi);
         } catch (IOException e) {
             System.out.println("It bombed:" + e);
        public static void playerclose() {
           player.close();
           player.deallocate();
      class ImagePanel extends Panel {
        public Image myimg = null;
        public ImagePanel() {
        public void setImage(Image img) {
          this.myimg = img;
          repaint();
        public void paint(Graphics g) {
          if (myimg != null) {
            g.drawImage(myimg, 0, 0, this);
      }The output I get from running the server is this:
    BufferedImage@c9131c: type = 1 DirectColorModel: rmask=ff0000 gmask=ff00 bmask=ff amask=0 IntegerInterleavedRaster: width = 320 height = 240 #Bands = 3 xOff = 0 yOff = 0 dataOffset[0] 0
    Now how can I turn this into an image If this output is correct?

    HUH?
    I got the one to send the images over the network. I'm now trying to get the exact feed of the webcam and sending that over the network. This is alot more difficult to accomplish but I did see where I messed up my process of sending the images was just having to save the file then open it up put it in a byte array then send that over the network to the client. Once it was at the client i was able to re-construct it and throw it up in the frame. The only problem was lag. So this tells me it would be much more faster if instead of saving the file to send the client and having to reconstruct the image I should just send the webcam feed i used to make the image.
    eh, I guess I didn't need any help.
    Hey no offense or anything but you really have to learn how to spell better.

  • How do you send a file through iMessages

    On my mac I can drag a file over to imessages, I can even download it on another id on the mac. I have tried to send the same file to my iphone and ipad and nada.
    Yet, I have no problem with pictures.
    How do you send files through iMessage to your ipad?

    Yes, that works from mac to mac. That is a wonderful feature.
    I did find Apple's list of supported files and it is not complete. It did not list PDF as a supported file so I suspect there are others. I am afraid that epub and some others that would make life easier are not supported at this time. I did find reference to where the file i on the ipad but you have to jailbreak your iphone and/or ipad to do that and I am not interested in doing that.

  • How can I download a file over the internet from a WebDAV server?

    I am trying to download a file over the internet from a WebDAV server. I've tried doing it with Datasocket as suggested in these articles,
    <a href="http://digital.ni.com/public.nsf/websearch/f3cc5f7e60a75cb2862567e700696abf?opendocument">Retrieving an Unformatted Text File via FTP or HTTP Using DataSocket</a>
    <a href="http://digital.ni.com/public.nsf/websearch/4FA09E7B3674DA34C1256BD400555C41?OpenDocument">Download a Text File from a Password Protected URL Using DataSocket</a>
    but all I get is error 1181 (protocol unrecognized by Datasocket).
    I know I have the URL correct, because I can put it into a web browser and it works fine - I can download the file manually.
    But I want to have a LabVIEW program do the download automatically.
    I have the internet toolkit, but don't have the foggiest clue how to use it, and am using LabVIEW 7.1
    I am a bit out of my depth here, so any advice welcome.
    Regards,
    Mark.

    MIG,
    What is the URL to the website? Is it an FTP site? The articles you referenced are for specific transfer protocols. If the stie you're trying to get to doesn't follow these protocols, then you'll get the error you're seeing. You may have to use ActiveX to control IE and download the files programmatically.
    Chris C
    Chris Cilino
    National Instruments
    LabVIEW Product Marketing Manager
    Certified LabVIEW Architect

Maybe you are looking for

  • Printing in windows 8

    Here's how a picture looks before printing: Here's how it looks printed from Lightroom to my Epson R1900 printer: I can print this picture from picasa and get the correct colors out of the epson r1900 printer. I've uninstalled and reinstalled the lat

  • Need To Turn Off Auto-Renewal

    Hello, I have just boguht a subscription to Unlimited US & Canada for 1 month [$2.99] Without knowing it would be auto renewing. My family is very poor at this time, and I would really like to shut off the auto renew, as Im not going to be able to af

  • How to Translate the Title bars into other languages.

    Hi, I have created a titles using the SET Title statement.  I want to translate the title into other languages.  Please help me ASAP. Thanks, Sreenivas.

  • Can I delete previous Adobe Reader downloads when a new has been updated.

    Can I delete prvious downloads of Adobe Reader as my computer is so slow.

  • IDE subfolder issue with large projects - flat JSP file lists

    Currently some IDE ui components such as ApplicationOutline and Property Binding Dialog box do not show subfolder structure hierarchically. Thus for a 100-page projects ApplicationOutline is almost impossible to use. Please consider adding a level of