One of my friend asking me something related to Client Software and Cloud. Java Desktop Swing as Client and Web as Data Resource (Database -1 single hosting). That's the main thing I've heard.

If there's a common java app used as a client how do the app communicate to the data resource (on the web)...?

I answered with "passing database Query", Database Query from Client to Web (Data Resource). But, after I recalled it back, my method is dangerous. What is the safer thing to be done? Is it needed to create another app on the Web used as a bridge (API)?

Need advice on this matter.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

One way to implement this will be to have REST based API at the backend and your swing GUI interacting with that API using HTTP calls. You can use Apache's HTTPClient library for making HTTP calls.

link|improve this answer
ya @Param, i think i should make this one. The Web Service API, isn't? BUt.... wouldn't dangerous? passing a series of Http Calls.... – gumuruh Jan 19 at 8:35
No, REST API is commonly used by many websites. E.g. twitter clients (desktop/mobile applications) interact with Twitter using REST API. However, you will have to add authentication to your web services. OAuth is commonly used to add authentication to REST services. – Param Jan 19 at 11:11
feedback

Deploy your Swing application via Java Web Start. Running in a sandbox, "the application may only connect to the host on which it resides."—faq.

link|improve this answer
hmmm... @trashgod, never tried that one. Is that more shorter time than making our own API for RestFul type of Web Service as mentioned below? – gumuruh Jan 19 at 8:37
@gumuruh: JWS is a deployment strategy that complements REST. Note that a PersistenceService is available even in a restricted execution environment (sandbox). – trashgod Jan 19 at 10:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.