views:

160

answers:

2

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

Thanks in advance.

+1  A: 

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

Teknolog
+2  A: 

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.

Rob Charlton