remote

Is it possible to embed a Citrix XenApp in a webpage and pass it parameters dynamically?

So, I know nothing about the Citrix applications, so maybe I can be pointed in the right direction or even be given examples. I need to be able to run an desktop application (which is installed on servers), but have it embedded in a web application (ASP.NET). We need it to feel like it is pretty integrated, so We were going to pass a...

PHP - Get the md5 of remote file?

Is it possible to get the md5 of a file on a remote server? If so how? ...

Does trac have remote API?

I know there is xmlrpc plugin for trac. But I is not my trac site nor do I have admin rights. I just have a normal user account with limited priviledges. Beside the obvious low level of doing things (submitting requests by emulating web browser), is there a better way to do this? I'm interested mainly in these: View wiki page Edit wi...

How to schedule remote mysql backups on windows

Hi guys and gals! I am looking for a smart way to take care of scheduling backups on a remote Mysql Unix/Linux server from my own personal Windows XP computer. Is there any (free if possible, preferable of course) software that i can schedule that logs in to a mysql database and downloads a complete backup? Would also need an alterna...

Mysql Backup with Mercurial

Hi friends, is it possible to take ? I researched at Google, I found few articles, but in German and other langs, so didnt understand well. It would be great if we could get mysql back-up from server to localhost with Mercurial [at localhost]. maybe with Remote Mysql Connection, etc. do you know any way of doing this? is it possible? ...

Remote debugging using gnu DDD

Question: Is it possible to debug, when the target is on a remote host? Example: # ddd --debugger /usr/bin/bashdb <sript-name> (on remote host) ...

'reg' is not recognized as an internal or external command, operable program or batch file.

I'm running a batch file command on a server which is using reg query to find out the procesor_architecture of the machine(AMD64 or x86). And I'm getting this error, does anyone know what could be the issue. And what all things have to be checked first before running this command on that specific server. This is the command: reg quer...

Is there an Erlang command to read BEAM files from a remote repository?

I need to distribute some Erlang code which is closed source to a client. I think the easiest way would be to simply give an Erlang shell command to pull the code from a remote host. The remote host will be an Erlang VM which does not shared the same secret cookie as the client. How can I do this? For example, if I am in the Erlang shel...

Silverlight play file from samba enabled remote server

Hello, Im currently working on Silverlight app, which resides on our ASP.NET webpage. I want to populate listbox with names of (audio wav) files that are on remote linux machine. I also want to be able to play those files using MediaElement. Im wondering if it is possible to get stream of remote samba enabled linux server. thx, for ...

jQuery. Using json data on remote server fails.

Hello, I am working with json data together with jQuery. It works perfectly fine when using a local json file, but shows just a blank page when using a remote json file from another server (even when using a complete URL from my own server). This works: $.getJSON('9.json', function(data) { Does does not work: $.getJSON('http://beta...

Data exchange with remote server in Android

Hello! I'm building an application for android which collects user data. Also I'm going to build a website which will use that data where users can have an account and synchronize data with phone and website (I guess it's quite common setup). Site will be using MySQL database, but I want it to be database independent using some kind of...

Is there a way to add detailed remote crash reporting to a Flex Air application?

I will be releasing my Air/Flex application soon, but I am pretty sure there are a couple of bugs that may pop up on the various platforms that Air is available for. So I was wondering if there is a way to implement a mechanism, that would send an error report, logging where the error happened, to a remote server each time an app crashes...

Launching and debugging a Java appliation on a remote or virtual machine

I know how to remote debug a java application on a machine where it already exists, but does anyone know of a solution that can launch from a local workspace (e.g. eclipse), transfer any code in the local classpath to a remote or virtual machine, execute it there and connect a remote debugger, all in one step? I expect some kind of serve...

Which TCP port does Erlang use for connecting to a remote node?

I need to open a firewall port so that I can connect from one Erlang node to another. Is there a standard port? ...

Running A Bash Script Over SSH

I'm trying to write a Bash script that will SSH into a machine and create a directory. The long-term goal is a bit more complicated, but for now I'm starting simple. However, as simple as it is, I can't quite seem to get it. Here's my code: #!/bin/bash ssh -T [email protected] <<EOI # Fix "TERM environment variable undefined" ...

Turning a remote file into an input stream over HTTP in Java

Hi. I have the URL of a text file and I want my Java program to read that text file. But the plot thickens! The file is constantly being appended with new lines and I want to read these lines as they come in. I think the right approach is to open a URLConnection to the URL of the file and somehow put that URLConnection under the 'supe...

Git: create copy of (historic) remote read-only tag

Here's the deal: A Github repo features a historical import from CVS, divided in tags of previous releases. I would like to locally build the various releases to document the UI changes (need screenshots for a writeup). So there is absolutely no need for tracking / further development on the tagged release. I just want the specific f...

RadioButton click on another form

We have a legacy program with a GUI that we want to use under control of a C# program to compute some values. We can successfully enter values in the numerical input controls, press the compute button, and read the produced answers from text display boxes. But we can't seem to control a pair of radio buttons . Calling CheckRadioButton...

Ant task to remotely delete a directory

Is there a way except the sshexec task to do this? I know that you can copy files with the scp task. However, I need to do additional things like check if some folders are there then delete them. I would like to use something like the condition task and delete task for this. For now I have set it up with the sshexec task. But this will m...

How do you obtain modified date from a remote file (Java)?

I've a function to download a file from a remote URL (using Java). Now I want to know the real modified date, because when I download it I lost this info. Thanks in advance. public void downloadFile(String remoteFile, String localFile) throws IOException { BufferedInputStream in; try { URL url = new URL(remoteFil...