remote

Connect Android application to remote data

Sheesh talk about limited information! I'm trying to get my Android application to connect to an online database to access information. There's quite a bit of info including geotags and these are going to be mapped on my app. The developer site has the very informative piece of information: You can use the network (when it's availabl...

git: setting a single tracking remote from a public repo.

I am confused with remote branches. My local repo: (local) ---A---B---C-master My remote repo (called int): (int) ---A---B---C---D---E-master What I want to do is to setup the local repo's master branch to follow that of int. Local repo: (local) ---A---B---C---D---E-master-remotes/int/master So that when int changes to: (int) ...

Getting .net remoting to support IP v4 and v6: how to get a stream mapped to a real ip, not just an argument exception

My company has an existing .Net Remoting service exposing interfaces to external processes. I am configuring this service to support both IP v4 and IP v6 communications by having the following app.config section: <system.runtime.remoting> <application> <service> <wellknown mode="Singleton" type="type, ...

How to get an instance of instance System.Diagnostics.Process by processID on a remote machine

Hi all, I want to run & control a process remotely, I found the best way is the WMI APIs, The WMI gives me information about the remote process but I need more control like waiting it and getting the standard output and errors, how can I do that, and can I get an instance of System.Diagnostics.Process class by instance ID remotely? ...

Read a remote zipped xml with just XSL

Hello there I want to know if it's possible for an XSLT file to read data from an XML located within folders of a remote zip(from the server at work), without any external processors (saxon and so forth) and without downloading it. Failing that, I'll resort to just reading the information from the zip... which brings me to my other (n...

Is SQLite a good solution to backup postgres on Heroku ?

Hi all ! I'm using the Sequel (Taps) ruby gem for a remote backup of my production database (PostgreSQL). I wonder if storing that backup with SQLite is a good solution. What's your feeling ? Thx ! Edit: Thanks! In fact, my app is hoted on Heroku and I though it was simply impossible to run pg_dump. But -- I found that nice rake...

Remote SQL login page C#

Hey, I am trying to create a login page that checks the username and password with the database on the server. The server is located in a different country. This is the code I have so far: #region Building the connection string string Server = "XX.XXX.XX.XX, XXXX"; string Username = "_Username_"; ...

Overall build statistics from Bamboo server

I am trying to use Bamboo's remote API to extract some statistics. It looks like it doesn't support extensive reporting. All I got was a way to get the most recent builds. What I need is a list of all builds (maybe up to a numerical limit) or at least the count of successful/failed builds so far, is this available anywhere? any other ide...

SQL server 2005 remote connection problem

I installed SQL Server 2005 express on two computers. I installed SQL Server Management Studio Express on both computers. I ran each instance of Management Studio and connected to SQL Server using Windows authentication (one computer's connection example: "A-63A9D4D7E7834\SQLEXPRESS"). I created a database named "test1" and created a ...

Java RMI cannot connect to host from external client.

I've been using RMI in this project for a while. I've gotten the client program to connect (amongst other things) to the server when running it over my LAN, however when running it over the internet I'm running into the following exception: java.rmi.ConnectException: Connection refused to host: (private IP of host machine); nested excep...

How do you stop tracking a remote branch in git?

That is, I don't want to actually delete the branch in the remote repository, but I don't want the branch locally anymore. Can I just do git branch -d the_branch and it won't get propagated when I later git push ? Will it only propagate if I were to run git push origin :the_branch later on? ...

How to create PIPE accessible from remote computers in .NET 4.0?

How to create PIPE accessible from remote computers in .NET 4.0? And how to access it? ...

Is it possible to Create a Named Pipe on a remote machine (by IP address)?

Is it possible to Create a Named Pipe on a remote machine (by IP address)? ...

Remote tomcat deployment

I could set up the environment in my local host, But I have no choice like deploying my war file as its shared server, my admin ask me to extract the war file and upload through FTP. Now the problem is I am new to remote server. Please guide me with the remote environment file system and complete directory structure in remote tomcat. And...

Calculating toolbar icon width

I am building an RDP client and I have toolbar that shows the running applications, same as the Windows toolbar. I need to support dual monitors, so my questions are 1) How do I detect that there is more than one monitor and 2) Is there a formula for calculating the width of the icons on the toolbar? I know that at the start, the width...

Adobe Flex, loading a remote swf

I have a flex app running on my server. I have had a request from some clients to have the swf loaded on their server, so that their customers dont have to be transferred to my server to login; i.e. from the user's point of view it looks like they are logging in from theirsite.com instead of mysite.com I tried something really simple, ...

Reboot windows machines at a certain time of day and automatically login with Python

I know how to reboot machines remotely, so that's the easy part. However, the complexity of the issue is trying to setup the following. I'd like to control machines on a network for after-hours use such that when users logoff and go home, or shutdown their computers, whatever, python or some combination of python + windows could restart ...

cURL with PHP question for logging in to https:// remote site

So I have this cURL script for remote login. It works fine for some pages but not the pages I need. For the page that isn't accessible through the script, the remote server requires the url be like this: https://sub.example.com/a/b/thisPage.aspx?aVar=%2Fa%2Fb%2Fc%2Fd%2FFile+Name.nev It seems that cURL or just php automatically conv...

Iphone Push php or certificate error ?

Hi all ! I have made an app using remote notifications, i've used the Apns certificate and his private key to create my cert-production.pem removing the passphrase. An another guy of my team works on php side. We have managed to use it during developpement, get the token and send a push using a payload. But after submission t the a...

how do i start (and bind) a remote service in android that is implemented in another app (different package)?

hi there! i'm a bit stuck with remote services in android. thing is i implemented a remote service in package "a.b.c" and i want other applications to be able to access this service. i got rid of the whole crappy aidl-stuff and designed the "interface" of the service to work via broadcasted intents. works fine so far... problem is: how...