Re: Remote web interface to a Java Application
From: Sheetal Khemani (sheetal.khemani_at_gmail.com)
Date: 11/08/04
- Next message: Mickey Segal: "Re: Why would file reading stop at 1124 bytes with this code?"
- Previous message: Mickey Segal: "Re: Why would file reading stop at 1124 bytes with this code?"
- In reply to: Andrew Thompson: "Re: Remote web interface to a Java Application"
- Next in thread: Andrew Thompson: "Re: Remote web interface to a Java Application"
- Reply: Andrew Thompson: "Re: Remote web interface to a Java Application"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 8 Nov 2004 10:22:49 -0800
> On 7 Nov 2004 20:59:51 -0800, Sheetal Khemani wrote:
>
> > If I have a Java application running on a server,
>
> Do you control the application on the server?
> Did you write it?
>
> >..is there some Java
> > technology by which I can remotely access/modify the memory of that
> > application ?
>
> What *exactly* do you mean by that?
> Perhaps it is better to state what you want to *achieve*
> than what you want to *do*. So, what do you hope to gain
> through this 'memory modification'?
The application consists of a complex schedule, that I am yet to
write. I control everything about this application. The application
sits on some server on the web.
I need ways to interface into this application via the web browser to
do two things:
a) I need to be able to run an algorithm on this schedule.
b) I need to be able to modify the schedule within the application.
I am investigating the easiest way to design/implement this.
I know I could save the schedule in a database, and have an html
frontend. I can map the html requests to operations on the schedule.
Everytime someone modifys it I can update the database. Also if I need
to run the algorithm on it, I can load the database into memory (build
the schedule), run the algorithm, return the result in html.
What I am wondering is, can I skip the need of a database, store the
schedule prepetually in memory - and have java applets (or something
similar?) that can directly access the memory of the application ?
This would help me skip the whole html part too.
I don't know if this is possible, it's just a thought I'd like to
investigate. What got me thinking along these lines, is that in Unix
we can define shared memory across processes; this would be similar
only the memory would be shared across processes on seperate machines.
> > Basically, I need to write an interface, preferably within a web
> > browser, that can remotely access/modify memory of an application
> > running on a remote server.
>
> Again you state what you want to *do*, rather than what
> you are trying to achieve.
>
> > Any input is appreciated.
>
> There are probably a number of ways to achieve the end
> result you are after, but that depends on what that
> 'end result' is. Back to you.
- Next message: Mickey Segal: "Re: Why would file reading stop at 1124 bytes with this code?"
- Previous message: Mickey Segal: "Re: Why would file reading stop at 1124 bytes with this code?"
- In reply to: Andrew Thompson: "Re: Remote web interface to a Java Application"
- Next in thread: Andrew Thompson: "Re: Remote web interface to a Java Application"
- Reply: Andrew Thompson: "Re: Remote web interface to a Java Application"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]