remote

PHP Connect to Remote Registry

I have some code that can read a key from the local registry. $shell = new COM('WScript.Shell'); $data=$shell->regRead('HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\Symantec Endpoint Protection\SMC\ProductVersion'); How can I open another computer's registry with this assuming that I have full access to that computer? ...

Simple C# Screen sharing application

Hi guys, I am looking to create a very basic screen sharing application in C#. No remote control necessary. I just want a user to be able to broadcast their screen to a webserver. How should I implement this? (Any pointer in the right direction will be greatly appreciated). It does NOT need to be high FPS. Would be sufficient to even ...

Bitvise Tunnelier Disconnect Sessions

Hi, I am using Bitvise Tunnelier to connect to a server. I got 'Too Many Connections' error when I am trying to connect this morning. I am not able to find a place where I can disconnect the existing sessions. Could anyone please help?? Thanks, Mahesh ...

Is it possible to remotely call methods on another computer through AIDL (Android Interface Definition Language)?

I am curious whether the AIDL only serves for inter-process communication between several Android apps on the same device, or AIDL provides much wider functionality. Let's say I have a Java application running on some server, is it possible to remotely call methods on that server through AIDL from an Android phone? If yes, do I need som...

Remote development tools/skripts for Linux?

Hi folks, I do some RTAI development. I have a Server which has a modified Linux-Kernel with RTAI. I'am not the only developer on this server. Are there some tools/scripts which support copying sources to the server and compile/run them? (using SSH/SCP maybe) I'am developing with a simple editor and scripts - so a solution which supp...

Free resources while waiting for remote gate in (PHP, Apache, Nginx)

Hi, My php script waits for remote gate response, normally for ~20 seconds. It causes apache httpd threads to live in memory with opened MySQL connection and finally to exceed MaxClients value. How it can be managed to free idle resources until remote gate reponse. One solution is: 1) run remote gate request and then redirect user to ...

Can Netbean edit remote files

If yes, how to do it? ...

qemu vnc server for remote address

qemu -vnc 0.0.0.0:1 -monitor stdio -hda ubunt* I am running this command but it isn't opening a port. I have checked it with netstat. My goal is to log into the VNC server somewhere else besides locally. ...

Remote Client-Server Application in C#

Hello everyone, In my dotNet class, we are making a simple chat application. Our professor gave us a sample code as follows: SERVER: TcpChannel channel = new TcpChannel(8085); ChannelServices.RegisterChannel(channel); RemotingConfiguration.RegisterWellKnownServiceType(typeof(RemoteObject), "myobject", WellKnownObjectMode.Singleton); C...

Testing a Remote Client-Server Application in C#

Hello everyone, Yesterday, i've posted a question on some tips doing this Remote Client-Server Application in C#. So now, our group was able to create one. The problem is, we cannot think of ways on how we can test it since we are currently on different locations for our weekend break. If anyone of you has any idea on how we can test i...

Browse on remote computer using SaveFileDialog in WPF

Hi all, I am doing a WPF applications that controls different processes (every process communicates with the GUI over the network). I want to be able to send a command to those processes asking them to save some information in a file on their computer. For now, in the GUI, I simply display a TextBox and the user must enter the correct f...

WCF SelfHosted Remote Access

Hello friends, I try to develop a WCF Service which I can able to access remotely but it's getting difficult for me to implement that in a remote machine I have developed a WCF Self Hosted service and also prepare a client that can run on a local machine easily but I don't able to understand how can I access that service from remote mach...

How can i connect remote sql server by Entity Framework?

Hello everybody. I have no enough experience on database systems. I have to connect to remote sql server and process some queries on it. How can i connect remote server by Entity Framework ? ...

Cycle through remote javascripts to create multiple weather feeder

Hi guys, I'm using a weather feed to show weather on a page. I want to cycle through 2 or more weather locations at, say, 5 second intervals. I thought I could adapt something like this http://stackoverflow.com/questions/84163/how-can-i-cycle-through-pages but haven't had any luck. The source code is as follows for 3 feeds that I woul...

How to clean a remote GIT repository?

I've a hosted GIT repository with limited disk space available but connected with a RedMine system. I'm packaging some software and pushing and pulling on the repository, I'm run out of space. Now I need to clean (the packages are note needed anymore). How can I delete these packages from the remote repository history, considering that I...

Trying to connect using ssh2_auth_pubkey_file()

I am trying to make a php script that runs on the terminal that would connect to a remote server by ssh and retrieve a file. this is my code so far #!/usr/bin/php -q <?php $cwd = dirname(__FILE__).'/'; $filename = 'retrive-this.file'; $host = 'hostip'; $connection = ssh2_connect($host, 22, array('hostkey'=>'ssh-rsa')); $methods = ssh2_...

compare uitextfield input with responseData of ASITTHPRequest

Hi, I am writing an application for Registration form (with fields--> firstName, EMail, password, postalCode etc.,.). while, user enters value in first textfield(ex: firstName in my app), it should connect to the remote URL.. and check the user entered value with the responseData(0/1). (1)How to check 'firstName.text' (IB field) with r...

Remote download script needed

Im looking for a script where the server will allow the user to download a file from a mirror but through the servers IP. ...

Unable to login to MySQL 5 remotely

Hi, I'm stuck at the seemingly simple task of connecting remotely to MySQL. I inherited the server, so don't know how it was installed. Took a look at /etc/my.cnf (the only my.cnf on the system as far as I can tell) and found [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock user=mysql # Default to using old password f...

Problem running web server through perl script

I am starting a web server(Cassini) on a remote machine through a perl script from my local machine. I am also specifying the virtual path, root directory settings, etc. However, I am not able to request files from the server as its giving me System.Net.WebException : The remote server returned an error: (500) Internal Server Error. ...