Controlling a computer remotely

I am location independent and advertise my services on CL throughout the US and Canada.  I travel a lot and work from a 11' MBA but am not able to use CL when overseas (because of IP or geo-something or another).
I am wondering if I could set up a Mac Mini at home in the US and connect to it remotely to post my ads when I am out of town.  It seems like a pretty easy solution, but I feel like I might be missing something.  I am pretty much a novice when it comes to these things. 
Any thoughts on the viability of this solution?
Lastly, I am traveling to China, India and London in a few weeks.  While I am not too worried about India and London, does anyone know if accessing a remote desktop is an option from within China?
Sorry if this is the wrong forum for this question!
Thanks for any help.  I really appreciate it.

I am having trouble with passing a socket to a timer task. The #### comments show what I want to do.
* To change this template, choose Tools | Templates
* and open the template in the editor.
package clienttcp;
import java.net.*;
import java.io.*;
import java.lang.String.*;
import java.util.Timer;
import java.util.TimerTask;
public class clientTCP {
public static void main(String[] args) throws IOException {
String host = "localhost";
int port = 4444;
Socket OrderSocket = null;
PrintWriter fromClient = null;
BufferedReader toClient = null;
try {
OrderSocket = new Socket(host, port);
fromClient = new PrintWriter(OrderSocket.getOutputStream(), true);
toClient = new BufferedReader(new InputStreamReader(OrderSocket.getInputStream()));
} catch (UnknownHostException e) {
System.err.printf("Don't know about host: %s.\n", host);
System.exit(1);
} catch (IOException e) {
System.err.printf("Couldn't get I/O for the connection to: %s.\n", host);
System.exit(1);
BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
String fromServer;
fromClient.println("First hi");
//###### I want a timer to do this every 10 seconds ##########################
// fromClient.println("hi");
while (true) {
// first process the reply then drop down to body
if ((fromServer = toClient.readLine()) != null) {
System.out.println("GrocServer: " + fromServer);
if (fromServer.equals("Bye.")) {
break;
fromClient.close();
toClient.close();
stdIn.close();
OrderSocket.close();
}

Similar Messages

  • How to control my computer remotely

    Can I (or how do I) control my home iMac from my iPad?  For example, access all my iPhoto pictures from my home computer while I'm on vacation with my iPad. 

    A great application to do so (allbeit expensive from what I hear) is Log Me In.

  • I have 3dparty software wirelessly with a cryptographic authentication system without my consent (seems to be new technology developed by stanford) obtaining ownership of my iPhone 4s software and controlling it with remote device to jail break. Now what?

    I have 3rd party software wirelessly injected and used on my iphone with a cryptographic authentication system without my consent (seems to be new technology developed by stanford and apple security is not updated for this technology) obtaining ownership of my iPhone 4s software and controlling it with remote device to jail breaking my phone, adding and removing software, changing settings all from a remotely controled device from different location (I have a Mac address I'd of this device to know for sure). Almost undetectable. When I look at the legal section of my phone it shows a list of all the unauthorized 3rd party software "as is" copyright encrypted on the phone.  This is the most basic way to legally steal software of any kind.  Because of this legalality 3rd party ownership have total control of certain software correlated with hardware use including visualization technology, etc.  most people luckily will never have this happen to them so it's unlikely many readers have not a clue of what I'm saying currently.  Either way, without needing to obtain specific warranty of any kind "as is" copyright control makes system restores not a solution because the source code is not directly encrypted on the actual hardware device only a copy right notice must appear on the specific device 3rd party software validation making it extremely difficult for me to take control of the situation. Apple claims their iOS technology prevents this type copyright obstruction from being possible, however, according to my phone a new form of technology was used developed by Tom wu of Stanford university called the STANFORD SRP AUTHENTICATION TECHNOLOGY which uses Some form of cryptographic authentication system and uses quote "secure remote password" which seems to suceed in hacking iOS apple technology apple claims is not possible to jailbreak an unstolen phone or without the owners consent As well as loading the device with 3rd party copyright Notices to make all of this legalized. My phone shows atleast 30 pages worth of legalized 3rd party copyright permissions! Yesterday my apple care provider labeled me a jailbreaker and refused to look at my legal documented proof which completely blew my mind because it voides my apple care contract I spent 100 on. This employee did not take all factors into consideration and made quick assumptions as well as verbally speaking to me as I'm an automatic criminal. I left the store yesterday with no payed insurance help on a problem I had no control over and couldn't prevent, leaving with voided contracts. This is an apple users worst nightmare and I have spent days researching all of this like i am some kind of lawyer only to be able to use my phone the way it should and spent alot of money on.  I can legally backup any claim I have just wrote above currently and have a large source of data collected to prove apple is wrong in voiding insurance support on this issue. The problem lies in apple avoiding and not wanting to believe their software can legally be obtained ot "hacked". Yet still labeled a jailbreaker basically.. What should I do????? Been to local apple store 3 times and rebooted my phone as well sprint service restore 4 times and spoke with reps twiice on the phone. Spoke with my phone provider who said apple has full control over these matters so they can't help me.  My case is according to apple "still open"...Anyone else heard of this or of Stanford's office of technology licensing? Maybe I need to buy a blackberry again or just use a landline so I can stop being my own lawyer and focus on other productive areas in life instead of this horrible mess. I shouldn't have to prove to apple I not a jailbreaker they should have to prove I'm one before voiding support I desperately need!!

    Mullaly75 wrote:
    I assume u guys don't understand what open source software is
    Yes, I think most of us do understand what open source software is. It sounds as if you don't. Here's some information:
    Open-source software (OSS) is computer software that is available in source code form: the source code and certain other rights normally reserved forcopyright holders are provided under an open-source license that permits users to study, change, improve and at times also to distribute the software.
    Open source software is very often developed in a public, collaborative manner. Open-source software is the most prominent example of open-sourcedevelopment and often compared to (technically defined) user-generated content or (legally defined) open content movements.
    from http://en.wikipedia.org/wiki/Open_source_software
    Yes, Tom Wu of Stanford wrote a paper on something called Secure Remote Access Protocol. It's a form of Asymetric Key Exchange and has nothing to do with hacking anything. It's actually intended to protect data.

  • Dialog box problem when controlling front panel remotely

    I have encountered an issue with the Web Publishing Tool- I have a VI that calls a subvi that uses the Promt User for Input function.  When controlling the front panel from another computer I get a message saying that you "Cannot control subVI front panels remotely" and points you to the machine actually running LabView to enter the information in the Prompt User dialog box.  I set the subVI front panel to show when called, which does show the front panel of the subVI, but still get the error related to the dialog box.
    Is there any way to make this work?  Am I missing something obvious?
    Thanks,
    Nathan

    Hi Nathan.
    There are some limitations with dialog boxes in remote applications.  This tutorial has some good examples and explanations on functionality to avoid with web applications.  Additionally, the LabVIEW online Help offers some general guidance for Viewing and Controlling Front Panels Remotely, which may help you in further developing your application.
    Hope that helps!
    Lorielle P.
    Applications Engineer
    National Instruments

  • "You are not authorised to control this computer"

    We have a new Mac that has been installed at a remote site, and I am trying to remote control this for the first time. I have added discovered this in ARD and can 'observe' the machine - but when attempting to 'control' it, I receive the message "*You are not authorised to control this computer*"
    I have checked the settings on the Network/Sharing screen, and 'all network users' are permitted to gain access.
    Anyone have any ideas?
    Many thanks -

    Oops... missed a setting in 'Remote Management' (Options).
    All sorted now - as you were.

  • Does Firefox have some kind of firewall??? Recently I can't print or connect to my work computer remotely. Two things I was always to do in the past.

    Recently I can't connect to my work computer remotely and I can't print things even when I am using my desktop which is directly connected to the printer. If I go to Internet Explorer or AOL I have no problems but since I mainly use Firefox this has become a major problem.

    I encounter similar problem. My TC detects my OKI printer which is connected to the TC via USB but I can't print unless I connect my printer to the TC via Ethernet. Would anyone know how to solve it. Thanks.

  • HT4352 How can I get Home Sharing turned on my Apple TV if I have lost my remote control and my remote apps on my ipad and iphone can not get access to my apple tv, only my itunes.

    How can I get Home Sharing turned on my Apple TV if I have lost my remote control and my remote apps on my ipad and iphone can not get access to my apple tv, only my itunes.

    You can't, you will need to get a new remote.

  • Is it possible to change the default language of a computer remotely?

    Hi
    Is it possible to change the default language of a computer remotely?
    We have Apple Remote desktop and network home folders with managed prefs but i don't seem to be able to use either of these to change the default language of all of our macs to "British English".
    is there a UNIX command that can do this?

    The simple way is via the Internationalization settings via ARD or RDP or Screen Sharing, either via System Preferences or (if enabled) via the menu bar. If you're looking for a lower-level approach, there's not AFAIK a direct command for this. As for one possible approach, might [threadID=2106201|http://discussions.apple.com/thread.jspa?threadID=2106201] help?

  • N8 as remote control and life remote viewer for wi...

    I am going to buy wifi camera. I would like to use my N8 as remote control and life remote viewer.
    Is there any software for N8 Belle ?

    You need to contact the camera manufacturer and ask them if they are releasing an app for the N8 for that purpose. 

  • How can I find if someone is using my computer remote

    how can I find if someone is using my computer remote

    Do you mean "using your computer remotely," as in accessing it from another location?  That's extremely unlikely, as it's no trivial task to set up sharing over the internet, and would require physical access to your computer to get that done.  What symptoms are you seeing that lead you to believe this is happening?
    Alternately, if you mean literally "using your computer remote," if someone is fiddling with an Apple Remote in the same room, you would probably see iTunes opening, music starting to play, volume changing, etc.  My 2-year-old got hold of my remote once and caused me no end of frustration trying to figure out what the *%&*#(& was going on! 

  • Can you tell if someone is logging on to your computer remotely?

    can you tell if someone is logging on to your computer remotely?
    can you tell is someone has downloaded dodgy programs to maybe spy on you?

    you can effectively change your system password if you think this is happening. if you change it, they shouldn't have access to your computer however you never know.
    some things that will give it away are deliberate mouse movements when you're not using the computer, the camera on your mbp to flash a green light meaning it's taking a picture or applications like iTeleport connect and other VNC type clients running in activity monitor.
    There is an app called "hidden" that will trace your information (it's used to recover a stolen computer) but it's tell tail sign would be the camera turning on and off unexpectedly.
    what makes you think someone is spying on you?
    “Just because you're paranoid doesn't mean they aren't after you”
    -Joseph Heller

  • Connecting to my computer remotely?

    Hey there. I am trying to make it to where I can connect to my computer remotely using FTP file sharing. In Sharing preferences, I have FTP access turned on and have set my local hostname to The Chariot. When I select File Sharing, it tells me that other people can access my FTP server at ftp://thechariot/.
    The problem is, they cant. I have tried it from my friends mac at his house, and it says connection failed. the weird thing is that I can access it from my computer. when I try to connect to it from my own computer, it prompts me for my computer user name and password, I enter it, and there I am connected to my own FTP server. Why does it not do this from anyone else's computer?
    Does anyone know how to resolve this?

    You are currently protected from the internet through your router. Your router has an ip address which the world knows, sort of. Nobody outside your router knows what your ip address on The Chariot is at all. Further, your router prevents anything from getting through from the outside world.
    So, first, you have to learn how to open up your router to forward the ftp port (21) to your Mac's IP address. You then need to learn that the rest of the world will be able to access your computer. Further, you may find out that FTP passwords are passed in the clear, so it is possible, while not likely, that someone can sniff your password and gain access to your Mac. Now, if you are running as an Admin user, that person can do all sorts of things to your computer.
    While you are learning about this, you should look into sftp or ssh instead.

  • I had a Microsoft tech access my computer remotely to resolve issues with my hotmail acct. There were files that needed to be deleted and he also changed some settings.   Later, when I tried to open InDesign I received the following error:  AMT Subsystem

    I had a Microsoft tech access my computer remotely to resolve issues with my hotmail acct. There were files that needed to be deleted and he also changed some settings.
    Later, when I tried to open InDesign I received the following error:
    AMT Subsystem Failure
    The licensing subsystem has failed catastrophically. You must reinstall or call customer support.
    I rebooted the computer and tried again:
    Licensing for this product has stopped working.
    You cannot use this product at this time. You must repair the problem by uninstalling and then reinstalling this product or contacting your IT administrator or Adobe customer support for help.
    I can access Acrobat and MS Office programs, it's just the CS3 programs that I can't access. Can I uninstall and then reinstall CS3 without an access (un-lock) code?

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • Can I control a computer through a phone line instead of the internet?

    I have used a program called procontrol in the past which allows me to adjust sensor set points and get readings over a phone modem. How can I adapt this to labview. I am currently using logmein to control the computer, but the cost for internet is more than phone.

    How much control do you need?  If you simply want to transfer a file every once in a while it shouldn't be too difficult, but if you want to see a front panel and set values on it then it would be a lot of work.  For file transfer, there's an example of using a modem to communicate with a Fieldpoint unit that you could adapt to run on a computer.

  • I want to share files from iMac to MacBookPro.  In "Sharing" setup I want to check "screen Sharing" but get the error message"Screen Sharing is currently being controlled by the Remote Management service."  What do I need to FIX???

    I want to share files from iMac to MacBookPro.  In "Sharing" setup I want to check "screen Sharing" but get the error message"Screen Sharing is currently being controlled by the Remote Management service."  What do I need to FIX???

    Care to share which OS you are using? 
    Have you read for possible solutions over in the "More Like This" thread over here?-----------------------> 

Maybe you are looking for

  • Report for open PO's

    how do i get a report of open PO's with feilds like MRP controller. std. cost per unit, PO open quantity etc.?

  • Calling a Web Service from another Web Service

    Hello, I have the following scenario: Web Service -> XI -> RFC. I have created the XI -> RFC configurations in the XI and exposed them as a Web Service. I tested the generated WSDL with WebDynpro for Java and it works well (I also uploaded the WSDL t

  • Crystal report viewer 13 are displaying blank page after deploying in web server

    Dear friends, i have designed crystal report (in VS2012 &  CRRuntime_32bit_13_0_8 installed in web server) it's working fine in machine VS2012, but when deploying in web server (Windows Server 2008 R2 64bit) it's getting blank page. I have read the h

  • Macbook camera changes colors

    When I use my macbook webcam for skype or iphoto, my image color changes from normal to sepia to red to green and so on. Is my macbook web cam broken and need to get it repaired internally or can I fix it?

  • Restore and Recovery basics!!!

    Hi All, Can somebody provide some useful links for restore and recovery basics... Thanks in advance, Regards, Nick.