Reputation: 4213
is there a way to call java me application out of Symbian's C++ app? Perhaps some link ?
Upvotes: 1
Views: 456
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
Reputation: 890
There is a Forum Nokia article about how to launch a Java app from Symbian C++.
Upvotes: 1