Trimack
Trimack

Reputation: 4213

connecting symbian application to j2me app

is there a way to call java me application out of Symbian's C++ app? Perhaps some link ?

Upvotes: 1

Views: 456

Answers (2)

Rob Charlton
Rob Charlton

Reputation: 753

If you need to make Symbian code communicate (rather than just launch) with J2ME application code, then one of the simplest ways is to use a local TCP/IP socket. Either make your Symbian or Java code listen on an unused port, then have the other connect to it. Then you can implement some kind of simple protocol to have both sides communicate.

Upvotes: 2

Sebastian Brannstrom
Sebastian Brannstrom

Reputation: 890

There is a Forum Nokia article about how to launch a Java app from Symbian C++.

Upvotes: 1

Related Questions