-1
votes
1answer
19 views

Remote access project [closed]

Okay, I have been trying to figure out some challenging projects to work on to force me to bring my skills up in Java programming. That being said, I know the basics and then some. I came across an ...
0
votes
0answers
32 views

Have JBoss 6 provide an implementation for the result of a remote EJB method call

I am working with JBoss 6 and a JEE5 project under eclipse. Currently, there are several local business interfaces and only one remote business interface. The project is split in modules so that the ...
0
votes
1answer
44 views

Remote Acces To Jpa Entity

So, I'm currently working on system that consists of Java Web app and C# client app. Web app has Java Web Service, which has method that returns entity object of Program class: ...
-2
votes
1answer
55 views

call a android-function from the PC

I would like to call some functions in my Android-app from the PC. On the PC I would like to write a short java or C program. Simplified, I think on something like this call on the PC: ...
1
vote
3answers
284 views

Reading remote Ubuntu directory using ssh in java?

I want to read the content of a remote directory using java. The directory is on a machine running Ubuntu. Right clicking on the folder should give the share folder option and its installed samba ...
1
vote
3answers
167 views

Query Remote mysql database from php and get result set

I have my website(in php) running in Yahoo small business and Application(in java) in Rackspace.com.both server has got mysql database. I want to query my application database(in rackspace) from my ...
2
votes
3answers
120 views

Control running Java SE program remotely

I wrote Java SE program which has deal with really huge dataset of matrices(10^12 matrices). I am generating them through iterator and saving special ones (which satisfy some criteria) either to Java ...
0
votes
2answers
142 views

How to open a file and view on remote windows machine

I want to open a file on remote windows machine from my local windows machine. The file should be visible on remote machine only. My problem is, I should open a bat file on remote pc which creates ...
0
votes
1answer
117 views

Virtual filesystem mapping to local file

How can I decorate some remote filesystem like a path to directory in java? For example something like this: File decoratorFileSystem = new File("ftp://host/path"); // this does not work of course ...
0
votes
0answers
63 views

ssh remote access to java [closed]

So I am trying to connect to my computer at home and then run the java environment on that computer from a remote client through ssh. The following two steps of the output I am getting: Make the ...
1
vote
1answer
145 views

Java - How to access Windows Registry remotely

I found that it is possible to access Windows Registry remotely using C++. But is it possible to do remote Windows Registry access through JAVA? Just be able to read the registry remotely would be ...
0
votes
2answers
393 views

SSH tunneling to remote access MySQL database

I am trying to write Java program to access a remote mySQL database using ssh tunneling. Below is my code: int lport = 5656; int rport = 3306; String rhost = "111.222.333.444"; String host = ...
-1
votes
1answer
112 views

Execute commands using ssh in java [closed]

Here is what I want to do in java: Open an ssh session ( remote or local). Send commands ( this is just an example): cleartool lsview cleartool setview cleartool catcs For ssh connection there ...
0
votes
1answer
59 views

A thread calling Remote service waits for method to finish?

I have made a simple test of calling a remote service (on a different process) and I found something very suprising. Suppose we have two processes: Process-A with Thread-A and Process-B. If process ...
0
votes
0answers
41 views

Invoking jar file placed in multiple shared windows directory

Is there any way for invoking jar file placed in multiple shared windows directory? I somewhere heard about xcmd (a third party tool to run services remotely in windows machines). I have a jar file ...
0
votes
0answers
331 views

I am Connecting Remote machine with PSExec through java Program

I am working on a java utility to connect to remote host using PsExec v1.98. where i have to perform start, stop of certain services. I am facing following problem 1) Psexec takes lot of time to ...
0
votes
1answer
115 views

JSCH run graphical application only in remote machine, no using X11Fordward

i want to run an remote graphical application in any OS with Jsch that only runs in that remote machine, for example i want to run gedit (Ubuntu) and it will apears in the desktop machine, i dont need ...
-2
votes
3answers
88 views

SSH from a website to laptop [closed]

looking for help of guidance, is there a way, that if you created a website to monitor your laptop you could from the website get into a laptop, and run some commands, such as webcam or view running ...
2
votes
0answers
179 views

Need a java library to read/write files to a remote system using DFS [closed]

I need to read and write files on a remote domain. On top of that, the needed files are situated in a DFS system. And there lies the problem. I do not mention authentication (or domains) in the rest ...
0
votes
0answers
157 views

Android RDP Client Connection Failed

I am working on the following order send Connection Request(sending username and password) send Initial connection with received data Receiving response from server(Remote machine) When I do the ...
0
votes
1answer
665 views

Runnning Hadoop map-reduce job remotely causes EOFException?

I have written a Hadoop map-reduce program and now I want to test it on Cloadera Hadoop distribution that is running on the same computer in virtual box. Here is how do I submit that map-reduce job: ...
0
votes
1answer
246 views

Unable to consume messages from an embedded remote broker in ActiveMQ

I am an ActiveMQ begginer. My main looks like this: public static void main(String[] args) throws Exception { BrokerService broker = new BrokerService(); if(isProducer(args)){ ...
0
votes
3answers
122 views

Reading a Remote File Partially Without Downloading Completely

Is it possible to write a program that reads last N lines of a big file that is located on a remote machine (accessible via network) without downloading all the file to local machine? The ...
0
votes
1answer
124 views

Two calls access a static variable with different results

I'm getting this issue while trying to access a shared static variable between two different methods... Suppose that the environment should be like this: Method 1 with RMI interface CommonUtils: ...
0
votes
0answers
288 views

DSM plugin support for Ultra VNC remote access java viewer?

I am trying to build java viewer using UVNC viewer android source code. My server uses UVNC windows C and c++ source code with support for DSMP plugin. My query is whether DSMP plugin based encryption ...
-1
votes
1answer
84 views

Control JavaSE application remotely using a web page

I am designing a JavaSE application that uses the webcam as an IP Cam. This application has 2 modes i. Live video stream ii. Motion Detection Image Capture (When motion is detected it captures a ...
0
votes
1answer
598 views

Remote file access using java on Windows

I'm developing an application using struts that can read .txt files from a remote system. I cant figure out how to do that. Could someone please suggest some example where it is explained how to enter ...
1
vote
2answers
482 views

Java API to access Mainframe remotely

I am looking for a java API to access mainframe remotely. I am looking for something similar to JTOpen or IBM Toolbox for iseries systems. Through this API, I should be able to connect to the ...
1
vote
2answers
429 views

Is that possible to get file content continuously from remote server

I know locally it is possible to get file content line by line. just like Scanner s = new Scanner(new File("D:\\Users\\qding\\Desktop\\spy.log")); while (s.hasNextLine()) { String line = ...
0
votes
1answer
3k views

Unable to access Tomcat Apache server from remote machine using browser

I am having Apache Tomcat 5.5 version installed on a remote machine. Application is using Java servlets and mysql database. I need to access that pages using a specific ip ...
4
votes
1answer
350 views

Checking out remote source as a Java project with Eclipse using RSE

I believe I've scanned the web pretty thoroughly and exhaustively on this issue by now, so here goes. I have some source files (Java) that live on a remote machine (Amazon EC2 hosted). I can SSH into ...
0
votes
1answer
324 views

Creating android app to remotely control my computer

I wish to control my computer remotely from my android mobile. I know that apps are available for the same. But what if i wish to develop one on my own? Kindly someone suggest the available API's to ...
1
vote
1answer
270 views

Invoking a Remote .bat file over http

I have a .bat file on a remote machine. I want to invoke it through http call. I dont want to make any changes on the remote machine. Is there a way to do it using java and http? String command = ...
0
votes
2answers
2k views

Error in MySQL Connection when accessing a remote server

I've hosted a MySQL DB in a webserver. I've granted all privledges and allowed my IP to connect to this database remotely from my local computer. It gets connected and I'm able to retrieve data from ...
0
votes
1answer
309 views

Remote access implementation in Android

Want to implement remote access app on android. As I'm still amateur in Android, needed some pointers on implementation of remote access app. In which I should be able to provide A screen that is ...
6
votes
1answer
4k views

Eclipse Tomcat7 Server Doesnt support Remote Host

My Problem is: When I try to add my Tomcat7 to Eclipse EE as a server, I get an error message that says: "The currently selected server type does not support remote hosts" Does anyone know how ...
0
votes
2answers
1k views

Mobile to Mobile Remote Access using Android

i am developing an APP in Android which share screen to all android mobile phone connected in a session. i want to know that android provides any sdk which provides same service like desktop to ...
4
votes
4answers
159 views

prevent access to mysql database from unauthorized software

i am writing an application in java and i want to enable it to access a mysql remote server. my problem is that if the application have the user name and password someone can take them and use my db ...
1
vote
0answers
386 views

To develop a VNC server applet using the VNCJ library

I need to develop an applet using vncj such that the applet can act as a VNC server and the system can be viewed by other using VNC viewer. A sample applet is provided in the this site ...
4
votes
1answer
120 views

Automatically installing software on the client machine

Its more of a design and architecture scenario. I want to have number of nodes in the cluster and initially all the nodes are pre-installed with java 6 and windows/linux. In all the nodes I want to ...
0
votes
1answer
1k views

How to perform scp between 2 remote unix boxes using Jsch?

I am writing a Java code using Jsch in which I need to perform scp between 2 remote UNIX boxes. I tried to execute the scp command in the same way as to execute a normal command from my java code ...
2
votes
3answers
2k views

How to connect to a remote unix box from java and run unix script in it?

I need help in writing java code that can connect to a remote UNIX box, and run a script on that box. I have scoured the internet, but I have been unable to find proper documentation on how this can ...
0
votes
1answer
200 views

Mounting of file systems remotely

I have a unix machine (unix1) and another remotely connected unix machine (unix2). using sshfs i am able to mount a unix2 file system on the unix1 machine (of course, I am the unix1 machine user and ...
1
vote
1answer
2k views

Monitoring remote system using Jconsole

I am connecting to remote Unix system using putty and .ppk key file. Now i want to monitor this remote unix system using Jconsole. On remote system jmx port is enabled on 8080. I have its ip address ...
1
vote
1answer
433 views

Copying and executing local files to a remote server with windows and linux using java

What I'm attempting to do is copy a number of files from one host machine to a remote server using java and after the copy is made, I'll execute those files that I transferred. The host machine may ...
0
votes
1answer
897 views

Using RCP or FTP to copy files from a remote unix machine onto a local windows machine

I'm trying to write a piece of code that uses a ProcessBuilder to transfer a file on a remote UNIX machine onto the local Windows machine. On a brief bit of research I've found that either RCP or FTP ...
3
votes
2answers
910 views

Access JMX enabled application running behind an HTTP proxy server

I have a JMX enabled Java application (Java 1.5) sitting behind an HTTP proxy server. So I cannot access it directly through the JConsole. A solution I imagine would be to have an in-VM JMX client in ...
1
vote
1answer
948 views

How can I run an application on a remote machine by ssh?

How can I run an application on a remote machine via ssh? I tried using JSCH, this way: Properties props = new Properties(); props.put("StrictHostKeyChecking", "no"); String host = ...
2
votes
1answer
484 views

Java multiple monitor issue

I am developing an application with three monitors configured with one system. Two monitors are having different display contents which is achieved using java GraphicsEnvironment and GraphicsDevice ...
3
votes
2answers
4k views

how to connect remote windows machine by java?

I want to connect to a remote windows desktop from a local machine with a Java program. I have to check the disk space and several other services in the remote machine.

1 2