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...
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) ...
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,
...
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?
...
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...
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...
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_";
...
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...
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 ...
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...
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? And how to access it?
...
Is it possible to Create a Named Pipe on a remote machine (by IP address)?
...
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...
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...
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, ...
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 ...
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...
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...
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...