Michal_R
Michal_R

Reputation: 269

Integration JS and Java

I have two systems to integrate: 1)desktop application (Java6) and 2)web-application (HTML,JS). I want first application to share some services to the second one. How could simply I do that ? I want some simple solution.

Thanks!

Upvotes: 0

Views: 672

Answers (2)

Phanindra
Phanindra

Reputation: 137

For an application to serve services, it should start server socket on port and listening on it. Or it should be using webservices. JDK6 comes with WebServices support. May be you can look at it.

Upvotes: 0

Bozho
Bozho

Reputation: 597134

Expose them as standards Web Services or RESTful web-services

Upvotes: 1

Related Questions