473,385 Members | 1,848 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

c++ calling java calling c++ ...

Hi,

i'm currently working on a plugin for Adobe InDesign and i have some
problems with that. I'm not really a c++ guru, maybe somebody here has
an idea how to solve this.

The plugin is written in C++ and it's calling a java application. This
application displays a window and pushing a button is calling back the
c++-plugin again.

// The plugin class. CActionComponent is part of the InDesign SDK
class MyJNIComponent : public CActionComponent {
public:
...
static void onCreateDocument();
...
private:
...
void registerCallbacks();
...
}

// this is called from the java application
JNIEXPORT void JNICALL Java_createDocument(JNIEnv *e, jobject o);

// this is called from Java_createDocument()
void MyJNIComponent::onCreateDocument() {
...
// Here i'm using SDK-methods and functions to create and display a
document.
// And here is the problem - i get an assertion from the SDK.
// The code to create the document is ok, i used this code before
and i can
// call this method from inside the plugin without assertion
...
}

// Register Callback from the Java Application back to the Plugin
void MyJNIComponent::registerCallbacks() {
jint res;
JNINativeMethod nm;

// if this method is called in the java application ..
CJavaClassInstance layoutSystemToolBox("path/to/my/java/class");
nm.name="createDocument";
nm.signature="()V";

// .. call this function in the plugin
nm.fnPtr=Java_createDocument;

res=CJavaVM::env()->RegisterNatives(layoutSystemToolBox.getClassDefin ition(),&nm,1);
if (res!=0) {
CJavaVM::reportError("Can't find the Java_createDocument
method.");
return ;
}
}

// this function is called from java
JNIEXPORT void JNICALL Java_createDocument(JNIEnv *e, jobject o){
CJavaVM::env()->ExceptionClear();
// calling method in plugin class
MyJNIComponent::onCreateDocument();
}

I think the problem is, that Java_createDocument() is not part of the
MyJNIComponent class and when i'm calling
MyJNIComponent::onCreateDocument() from Java_createDocument() some
variables are not proper initialized.
And i don't know how to make Java_createDocument() part of the class.
Or if there is another way to solve this?

Thanks for any suggestions.
Aug 12 '05 #1
7 6563
I don't know but have you tried communicating via socket?

Ben
Aug 12 '05 #2
>I don't know but have you tried communicating via socket?
No. It's an idea but we have to change everything. At the moment the
java application works standalone and we're using some code and
dialogs for the plugin and for an extension for QuarkXPress.
Aug 12 '05 #3
comp.lang.c++

The name implies questions concerning the C++ language. Questions about
JNI and interaction with C++ should go to Java newsgroup because it
relates to JNI. Not C++.

-vijai.

Aug 13 '05 #4
* Klaus Friese <kfriese at dataplan punkt de>:
// And here is the problem - i get an assertion from the SDK.
// The code to create the document is ok, i used this code before
// and i can call this method from inside the plugin without
// assertion
...
}


So, the problem is in the code you haven't shown.

Anyway, the title is probably wrong: it seems your problem is "Java calling
C++ calling Java", or "Java calling C++ calling some Adobe API".

I do not think at all that the general area is off-topic, because such
integration is what C++ is often used for. Many questions in that area
would most be accepted in [clc++m]. However, it seems that what you have is
not a problem related to C++ usage in general, or the language, but rather
it seems to be a bug in your code, which would make the question -- with
relevant code included! -- more appropriate for e.g. [comp.programming].

But in general, if you can get rid of the Java part, do that: pure C++.

And in general, your problem description seems to be to vague to say more.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Aug 13 '05 #5
On Sat, 13 Aug 2005 04:11:51 GMT, al***@start.no (Alf P. Steinbach)
wrote:
* Klaus Friese <kfriese at dataplan punkt de>:
// And here is the problem - i get an assertion from the SDK.
// The code to create the document is ok, i used this code before
// and i can call this method from inside the plugin without
// assertion
...
}
So, the problem is in the code you haven't shown.

Anyway, the title is probably wrong: it seems your problem is "Java calling
C++ calling Java", or "Java calling C++ calling some Adobe API". Java calling c++ is the standard way to use JNI, but i have the other
direction here.
We have an large application written in java and now we are writing
c++ code that uses parts of the java application. So people can use
the main application and they can use InDesign or XPress and they see
the same windows and dialogs.
I do not think at all that the general area is off-topic, because such
integration is what C++ is often used for. Many questions in that area
would most be accepted in [clc++m].

I can try it in clc++m tomorrow (i'm writing from my home account at
the moment). I also tried to find help in the Adobe User Forums, but
calling Java from the Plugin is not very commom.

---
Mail-Antworten bitte an klaus punkt friese at hamburg punkt de
Die andere Adresse ist nur ein Spam-Collector.
Aug 14 '05 #6
An easier route would be to use J-Integra for COM. It is a
bi-directional Java/COM interop bridge which allows C++ to talk to Java
and vice-versa. It supports callbacks, events, etc. It even has a high
performance native mode (i.e. JNI) built in. Have a look...

http://j-integra.intrinsyc.com/

Shane Sauer
J-Integra Interoperability Solutions
http://j-integra.intrinsyc.com/
When Web Services are not enough

Aug 15 '05 #7
On Sun, 14 Aug 2005 10:38:15 +0200, Klaus Friese <klaus punkte friese
at hamburg punkt de> wrote:
Java calling c++ is the standard way to use JNI, but i have the other
direction here.
No, JNI is both directions, see e.g.
http://java.sun.com/docs/books/jni/html/jniTOC.html
http://www.haertfelder.com/jni.html
http://www.jguru.com/faq/topicindex.jsp?topic=JNI
We have an large application written in java and now we are writing
c++ code that uses parts of the java application. So people can use
the main application and they can use InDesign or XPress and they see
the same windows and dialogs.


I've used JNI to call Java from C++ but I wouldn't do it again. The
JNI C++-to-Java interface is _very_ ugly and clumsy (but not the
Java-to-C++ interface, guess why). Moreover, a minimal Swing
application consumes at least 40 MB (up to 80MB or more) and you
cannot unload Java once it has been loaded with the shared library.
I'd rather communicate by socket (or COM?) with the Java application
or use a commercial product. You have been warned!!

Best wishes,
Roland Pibinger
Aug 15 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: F. GEIGER | last post by:
I've dev'ed a Python prototype of an app, that besides the internals making it up has a gui. While test-driven dev'ing the app's internals in Python is fun as usual, dev'ing the GUI is not so...
2
by: Radha News | last post by:
Hi, I am looking for reference books/tools/code samples for calling java objects/methods from COM/C++ classes. I am reasonably familiar with JNI. If you have used JNI, please let me know of...
1
by: Lakshmi | last post by:
Hi All, I am having performance issues with the .NET client calling the Java Webservice running on axis. Have detailed the problem below. Please help. I wrote a webservice in Java. Lets name...
7
by: Christian Wilhelm | last post by:
Hi! I'm trying to call a Java WebService out of a .net Client. There are two Methods, one Method requires one Parameter of type Parameter, the other Method requires one Parameter of type...
3
by: Jerome Cohen | last post by:
AI am trying to call a third-party web service. this service expects an XML fragment that contains the request plus other parameter. adding the web reference created the syntax below(reference.vb)....
6
by: Sascha Schmidt | last post by:
Hi again! Well, the first part of my "mission" (calling remoting objects from a webservice) is solved. But there's another part: Calling this C#-Webservice from a java client. Is this a...
4
by: simon | last post by:
hello, may have a need shortly to call a java class from a vb.net web app. basically the java class would serve as an email creation/sending function. i realize this all could be done in .net,...
1
by: amgupta8 | last post by:
Note: This problem occurred when I updated the JDK from 1.3.1 to 1.4.1 or 1.4.2. Nothing else was changed in the code, other than updating the JDK on the database server (dbm cfg parm jdk_path) and...
4
by: raghuvendra | last post by:
Hi I have a jsp page with 4 columns: namely Category name , Category order, Input field and a submit button. All these are aligned in a row. And Each Category Name has its corresponding Category...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.