This might be really obvious, since I'm kind of new to Powershell, but what's the best way to run a Powershell script on one computer that accesses another to run a Powershell script on that one? I'm using V2.0 if that matters.
...
Ok, I'm trying to let a user choose songs from their iPod library to listen to, but I still want to receive remote control notifications (headphones, lock screen osd, etc.) in my app so I can do some extra things. So far I can get either iPod music playing, or headphone events, but not both simultaneously.
Here's what I know so far...
...
Dear All,
I have the following problem. My web application (asp.net, C#) works nicely on a server. When I access it remotely, though, it gradually slows down and eventually experiences time-out. The problems is completely absent when access is not remote.
What could it be? Where can I start to look for errors or bad settings?
Thanks!...
Is there a way to find it programatically? I need this as part of an automated run; So this would be very helpful if there is an existing remote API call which can give this.
...
Hi! I use this script to parse an XML file with jQuery, but it run only if I have the XML file in local server. Do you know how can I parse an XML file on remote server?
<script>$(document).ready(function(){
$.ajax({
type: "GET",
url: "http://www.myotherwebsite.com/folder/myfile.xml",
dataType: "xml",
success: function...
I'm writing a simple xmlrpc programe in python. something like the following:
def foo(data):
# I want get the calling client's IP address here... How can I ?
server=SimpleXMLRPCServer.SimpleXMLRPCServer((host, port))
server.register_function(foo)
server.handle_request()
As can be seen in the above, I want to get the client I...
I have an idea for a web application that involves a multiple users, two different applications (which will be run from a user's local machine), and a remote database server.
Databases stored on remote server:
1) Username database - contains user information
2) application database - contains two rows, one for each application. Stores a...
Hi,
is there any possibility to sync local database on android device (sqlite) and remote database over the air? For example - to sync tasks between device and web application.
...
I am trying to access an SQL database remotely.
Can someone give me a hint or idea about how to do this in the iPhone?
...
I want to use C#/ASP.net to find out whether the user browsing the website is on the same network so that certain links are only displayed while in the office (to those who have access to them).
Anyone accessing from within the office will be doing so by going to it's local IP address (i.e. 192.168.x.x) whereas external users will be br...
Hi there,
Executing SqlScript at the remote DB causes an error:
Failed to connect to SQL database. (-2147467259 myDB1)
The SqlScript is the following:
<sql:SqlString
Id='UpdateSomething1'
SqlDb='myDB1'
ExecuteOnInstall='yes'
User='SQLUser'
ContinueOnError='no'
ExecuteOnReinstall='no'
ExecuteOnUninstall='no'
Sequence='26'
SQL='...
I have a template that renders a list of things.
I have a submitToRemote Button on this template that then pops up another template overlayed.
inside template2:
Now I have it working nicely. If the template2 submits correctly, the action renders template1 and all is well.
The problem is what happens if when submitting template2, the c...
Hi programmers,
does anybody of you know some code snippets on opening an CFSOCKET and sending a two byte sequence via TCP/IP to a WLAN module, which is programmed to serialnet, listening on PORT 5100, the IP-address of the modul is: 192.168.100.1. I try to get those two bytes out of a UART of the WLAN module.
I have bought "pTerm" and...
Assume I have the following java class
public class Square {
private Long id;
private double sideLength;
public void setSideLength(double sideLength) {
this.sideLength = sideLength;
}
public double getSideLength() {
return this.sideLength;
}
public double getArea() {
return sid...
I'm trying to understand remote services at the moment and everything works fine, i can start the service and know how to communicate with it through the AIDL-interface. My problem is that the service seems to still run in the same process like the activity it was started from, because the activity crashes too, if there is an error throw...
I am working on a dropbox like system and I am wondering how the client gets notified when the files change on the server side. It is my impression that both dropbox and ubuntu one operate over HTTP ports and work as follows:
1. if files change on client machine, inotify detects it and preforms a push from the client to the server. (I ge...
I am trying to write a dropbox like system with a linux server and client. So far my java (language chosen randomly) client basically makes calls to unison to sync over ssh.
At this point I would like to add a user account system so multiple people can use the same server, like dropbox. The problem is I am not sure how to support multip...
I'm using Delphi Pro 6 to control the Nintendo Wii remote via the HID interface from my PC. I can change the LED blinking pattern. However, I don't know how to reset the WiiMote so that the LEDs return to their default blink pattern. Because of this, when my program is exited, the LEDs are stuck in the OFF state leading the user to th...
I was trying out Rails again, this time the 3 version, but I got stuck while writing tests for an action that I only call remotely.
A concrete example:
Controller
class PeopleController < ApplicationController
def index
@person = Person.new
end
def create
@person = Person.new(params[:person])
@person.save
end
end
...
Hello,
I am writing a test application which is controlling another computer. The test computer is started by sending a command string via the RS-232 port (from a control computer running Windows XP SP2 using a C# application), at which time the test computer will power-on and boot into Windows XP. I would like to know what would be t...