remote-access

PHP code safeguard technique for Remote call, scenario based

hi, I am thinking about safeguardimg my php code in a different way for my project, but it may be childish method. Please let me know alternative or pros and cons of this method. Both client and server has LAMP. Client system holds client sensitive data, which will not be shared to the server. Client will have Auth key to access serve...

how to access remote registry access between xp and vista using vb.net?

I have to access remote connection from XP os to Vista os in vb.net How to do that? ...

how to read list of running processes on a remote computer in C++

What can be done to know and list all running processes on a remote computer? One idea is to have a server listening to our request on the remote machine and the other one is to use ssh. The problem is i dont know whether there will be such a server running on the remote machine and i cannot use ssh because it needs authentication. Is th...

Enabling Server Manager Remote Management on Windows Server 2008 (not R2)

I am trying to enable server manager remote management on a Windows Server 2008 (not R2) machine. I get the following error when I try to connect to the server remotely. Connecting to remote server failed with the following error message: The WS-Management service cannot process the request. The resource URI ...://schemas.microsoft.c...

Is there a software/hardware combination that will let you control a at the hardware level via USB?

What I'm looking for is a device that does the following: One end has a male VGA and a USB cable. This end gets plugged into any pc or server device that has the correct outputs. The other end is just USB and gets plugged into a laptop cable. In between is a "something" that grabs the VGA output and can pass USB back to the target fro...

Error in remote mySQL access

hi, I am trying to remotely access mySQL server. This is the code used by me. Connection conn = null; try { String url = "jdbc:mysql://172.18.227.237:3306/struts2"; Class.forName ("com.mysql.jdbc.Driver"); conn = DriverManager.getConnection (url,"root","admin"); System.out.println ("Database co...

Library for remote file access in linux?

Hi all, Im working on a program to access files from remote hosts. Basically what i want to do is logging in remote Windows/Linux host with valid credentials, check what files exist in a specific folder, read those files. Is there a library I can use to fulfill the above purpose in Linux? Thanks. Additional info: I'm using C. The remo...

Running Emacs Remotely between several machines

I use Emacs remotely using X-Server in a Windows client and Linux server. I noticed that I can halt it using ctrl-z and then type fg 1 to get it working again. Is there some way that I could get it to halt on the machine that I am on, and then log into a different machine and start where I left off? When I start a new ssh session, the...

Keeping access to a Fedora Amazon EC2 instance

Hej, I runned a Fedora instance in Amazon EC2. I can access and work on it perfectly by Putty. I also set Seconds between keepalives to 1 for not losing the connection due to inactivy (I mean in Putty). Nevertheless, if a network/electric failure happens in my local computer, it shuts down the Putty connection, so the session logs off...

Read file on a remote server

hello , I have a file on a remote server and I want to read this file. lets say the files location is: string filePath = @"\\192.168.101.15\c$\program files\xxx\test.xml"; XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load(filePath); This code is for sure throwing an error: Logon failure: unknown user name or bad password. How can ...

Remote SQLite manager

Does someone know of a Sqlite manager that I can put on my site, so that I can access it over the web and create/edit SQlite databases. I guess something like phpMyAdmin for MySQL. ...

How do I pass credentials to a machine so I can use Microsoft.Win32.RegistryKey.OpenRemoteBaseKey() on it?

This .NET API works OK if I'm trying to open the Registry in a machine that's in the same domain as I am (and my logged-on user has admin rights on the target machine). It gets tricky if it's an out-of-domain machine with a different, local administrative user (of whom I do have the password). I tried to use WNetUseConnection() (which ...

Remote application sharing tool used at ASP.NET MVC podcasts

Hello Does anybody know what tool used while podcasts were recorded here: http://www.asp.net/mvc/application-development/ For example at lesson #17 (with Atwood) The sample of what i'm talking about you can see at 6m28s at the window title, near minimize/maximize/close button. There is a green circle with "Currently sharing" Cannot g...

use dll from remote computer

I have two computer PC1 and PC2 In PC1 I have a .Net C# dll file that provides operations on SQL Server database. My question is - "how can I use this dll file on PC2 through VBScript within Outlook 2003". I tried this same task on PC1 and I succeeded using the CreateObject("dllfilename.classname") method of VBScript within outlook 20...

how to downlaod remote files using c#

RED 5 server installed in our server , i want to download files from red 5 server, is it possible in c#. ...

Using 'expect' in a secure fashion to automate logins/remote work

I have a server with which I cannot use pre-shared keys and ssh - all authentication is via interactive prompts. That server also has cron and at disabled for non-root users. I would like to be able to cron a job on my local machine that will run a script against the remote server to do periodic maintenance/reporting. I've dallied wit...

Using the WebConfigurationManager.OpenWebConfiguration() function using remote server and port?

Can someone tell me if there is a way for me to use the WebConfigurationManager.OpenWebConfiguration() using a remote server, port and virtual directory? Examples cited in http://msdn.microsoft.com/en-us/library/ms228063.aspx and http://quickstart.developerfusion.co.uk/QuickStart/aspnet/doc/management/mgmtapi.aspx only use the virtual ...

advice on working on remote asp.net applications

Hi folks, I'm a (relatively new) developer using asp.net with VB.NET. Currently all my applications are developed on my PC and then are built and moved onto the web server. I'm going to be working remotely for 3 months in which time I'll be connecting to the company network via VPN. What is the best way to access my projects? I need to ...

Client to access and edit a MySQL database remotely

Hey guys, So I have been given the host, username, and login information for a MySQL Database. I need a client that I can use to log in to the Database remotely and create/update tables and edit all the data. I found the MySQL Administrator client provided by them, but it seems you can do everything BUT edit the actual data with it. I...

How to upload files and store them in a server local path when MS SQL SERVER allows remote connections?

I am developing a win32 windows application with Delphi and MS SQL Server. it works fine in LAN but I am trying to add the support for SQL Server remote connections (= working with a DB that can be accessed with an external IP, as described in this article: http://support.microsoft.com/default.aspx?scid=kb;EN-US;914277). Basically I hav...