Oracle remote connection without installing the oracle client
Is there a way to connect to a remote oracle DB from a client PC without installing oracle on the client ? ...
Is there a way to connect to a remote oracle DB from a client PC without installing oracle on the client ? ...
Hi I have a php script, which downloads, rescales and stores an image using the following command: exec('convert -sample 100x100 http://someurl.com/pic.jpg images/somename.jpg'); It all worked fine until I put it on a different server (this one's gentoo, if that makes any difference. Apparently convert won't grab remote images, and i...
I have developed a web app (that uses jQuery) which works just fine for me but isn't working for one of my users. I've tried replicating the problem matching his browser/OS but it is of no use. The application works for me but not for him. He has tried with a lot of browsers: Chrome/Firefox/IE but it doesn't work in any for him. The only...
Is it possible to see a list of all tags on a remote mecurial repository, without cloning it first? In git I can run git ls-remote --tags. ...
Is there any way to modify central repository's configuration to disallow any remote pushing to master branch (using git)? It would only be updated via branch merging by a release owner. It is possible to do in child repositories but unfortunately it's not always fool-proof enough, easy to forget to do it on new machine - no way to pro...
i have a server machine where all the helper jars and classes present, which i want to use. is it possible to import those classes in my application? ...
Hi, I have a remote embedded system and it is telnet-able. How can I fetch a binary file from it using ruby? If it were a text file, I could have used: con = Net::Telnet::new("Host"=>ip,"Timeout"=>200) #Host not host File.open("fetched_file","w+") do |f| con.cmd("cat /ect/file") {|data| f.write(data)} end But this wo...
I am trying to use jquery validation to validate some input values on the form. On one of the form I have to make a remote call to the server to check if the required entered value is valid or not. So I have something like: $("#myform").validate({ rules: { zip: { required: true, zip: true, remote: "check-zip.action" } } }); N...
Hello, I have a system with a globally open mysql connection to the local server. In one of my files I am opening an additional connection to a remote machine. Wieldly instead of trying to connect to that machine, I get an access denied message from my ISP (it seems to be trying to connect to the database on that machine). I am trying...
I've set up a msSQL remote connection on a GoDaddy shared hosting account (known as Direct Database Access). I'm doing some javascript/HTML/css work on the site and don't need/want to have to download/manage a separate database. The remote connection works and the pages load as expected. However, each time I request a DB driven page in...
from xml.dom.minidom import parse, parseString datasource = open('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml') dom = parse(datasource) print dom ... the above code throws an IOError: 2, 'No such file or directory'. Python doesn't read remote doc like PHP? What do I need to change in the code to make it read the XML ...
Hi, I've using Netbeans to develop on a windows machine, the files I'm editing are on a remote LAMP server. The document root is mounted on my windows machine as a drive letter (Y:). So, netbeans things I'm developing locally, whereas I'm actually developing remotely on a local mount. My problem starts when I want to use xdebug and net...
below is my code the validation only works without the remote validation. once i include remote validation, it submit the form without completing all the other form validations? $(document).ready(function() { $("#form1").validate({ rules: { firstName: "required",// simple rule, converted to {requ...
Specifically what i'm trying to do is Generate a PassStub field for a Remote Assistance ticket. The problem is that my results look like binary data but somehow Microsoft generates printable characters. In [MS-RAI]: Remote Assistance Initiation Protocol Specification <16> Section 6: Microsoft says that the "PassStub" field "is encrypted...
I have situation when I need to communicate with Java process somehow. Java handling all DB works AIR just UI. It would be very nice to have AFM protocol implementation over sockets. Ideally approach with RemoteObject already existing in framework but working over other medium that HTTP wiuld be the best! Does anybody knows if such thing...
I have coded a pretty nice class and I'd like to install it on the clients server without risking them taking the code and not paying me. If possible, a method where I have the "key" on my server, and encrypt the source code on the clients server with that key and some how code the method for retrieving the key from my server into it, s...
I use GVIM on Ubuntu 9.10. I'm looking for the right way to configure GVIM to be able to edit remote files (HTML, PHP, CSS) by for exemple ftp. When i use :e scp://username@remotehost/./path/to/file i get: error detected while processing BufEnter Auto commands for "*":E472: Command failed. When i open a file on remote via Dolphin or Na...
When simply doing git push to a remote repository, its master branch gets updated. This is undesirable in the case of non-bare repositories, and the warning message displayed by recent Git versions makes that clear. I'd like to be able to push to a remote repository, and have one of its remote tracking branches be updated. Later, when I...
I am trying to install a msi from a network share remotely. $app = [WMICLASS]"\\$pcname\ROOT\CIMV2:Win32_Product" $app.Install($AppPath) I am getting an err 1619. From some sources say that WMI cannot install remotely with first coping it to the local computer and running it. Some sources use this command to exactly. That way works g...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Diagnostics; using System.Security; namespace SampleProject { public partial class Form1 : Form { public Form1() { ...