> Folks
>
[quoted text clipped - 12 lines]
> here insisted that we can put a web-server/appserver on each client
> machine (about 200 of these).
Putting an entire server on the client machine
would seem to lose almost the entire benefit
of doing it as a thin-client.
> Swing based solutions are ruled out because that is not a web-based
> architecture.
What do you mean? Of course a Swing
based GUI can be both web-based (hint -
JApplet) and self updating (Java Web Start)
which would, AFAIU, retain most of the
benefits of the thin-client concept.
Of course, if you are force to deal with
that horribly broken 'OS component'
made by MS, it complicates things slightly.
--
Andrew Thompson
* http://www.PhySci.org/ Open-source software suite
* http://www.PhySci.org/codes/ Web & IT Help
* http://www.1point1C.org/ Science & Technology
Am Wed, 04 Feb 2004 09:43:42 -0800 schrieb Vijay Kumar:
> Folks
>
[quoted text clipped - 7 lines]
> forms) should be available, that do not need to be reentered when the
> connectivity is available.
I just started something like this for timereporting. The solution for us
is a webstart application which will synchronize project description and
entered time data if the server is available. But this is of course more
or less a fat client app. Installing a simple http server will give you
IHMO the same, only with additional headache of a splitted client app
(server + browser).
Bye, Carsten
> We are in the process of developing a web-based app that needs to be
> functional when the user is on the road where the Internet connection
> to the server is not available.
Well, this is a contradiction. Without a web server anything beyond
simple file viewing will become difficult or impossible when just using
a browser. In fact, since the web server is responsible for delivering
the web-based application to the thin-client, there is nothing left that
can deliver the application.
> 1. Must be web-based, not a fat client app.
> 2. The UI for the offline mode and on-line should be identical.
> 3. In the off-line mode some basic functionality to enter data (fill
> forms) should be available, that do not need to be reentered when the
> connectivity is available.
No server, no form processing. You either throw in some local web
server, you give them a real application or a local applet, hack tons of
JavaScrip (this is a Java, not a JavaScript group :-)) or you just give
them a text editor :-). In any case, you will not have a thin client. Or
at least not a thin client without some additional fat pieces of
software on the same machine.
> Can some one think of a solution on how one would design this app.
In a totally different way. Instead of first selecting the technology
(web-based thin-cilent), and then trying to work around the limitations,
I would start with some real requirements, and then select a matching
technology.
[Note: What you call requirements are not requirements, but technically
constraints. A requirement defines what should happen, a constraint
defines how it should happen (e.g. choice of technology). A constraint
reduces a developer's ability to find a solution for the problem at
hand, while at the same time it takes the responsibility out of the
hands of the developer. The one insiting on the constraint (the choice
of technology) is responsible now. There is nothing wrong with
constraints in a software project. You usually have a lot of them. But
when they reduce your alternatives to close to zero, you should get rid
of them, and do a fresh start.]
> To
> me disconnect from the network mean no web application, but some one
> here insisted that we can put a web-server/appserver on each client
> machine (about 200 of these).
Sure you can. I would hesitate to call that a thin client, but hey it is
your software. If you do so, your problem will be deployment. Exactly
the problem people try to avoid when going for a web-based thin-client
solution. Since this is a Java group, you could think about using Java
web start for software distribution and updates.
> Swing based solutions are ruled out because that is not a web-based
> architecture.
"Web-based architecture" is a buzzword and meaningless here. Swing is a
GUI toolkit. If you have a decent Java version in your browser (usually
using a plug-in), you can of course have Java Applets who use Swing. If
that qualifies as "web-based architecture" or not is up to you.
/Thomas