1

I have a User interface in VB.net(for a desktop application). And i want the backend to be in Java.

How to connect them . VB.net UI

Example: I want to have the search box functionality to be wriiten in Java.

JavaBits
  • 2,005
  • 11
  • 36
  • 40
  • Though this pretty much a dupe of [this](http://stackoverflow.com/questions/152967/can-you-use-java-libraries-in-a-vb-net-program). – pickypg Apr 17 '11 at 17:15
  • @pickypg Not really, this question asked about the use of a backend, the question you linked to wanted to share libraries. – Darryl Braaten Apr 19 '11 at 19:35
  • @Darryl Braaten Backend or not, a Java library is going to be called the same way. For what it's worth, I do think a Web Service is the best and easiest route given the above UI. – pickypg Apr 19 '11 at 20:20
  • Apart from webservices are there any other ways? – JavaBits Apr 20 '11 at 06:25

1 Answers1

5

Yes you can. The easiest way would be to implement your backend as web services.

Darryl Braaten
  • 5,229
  • 4
  • 36
  • 50