Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have developed an crawler in c++ with curl library and as it is developed in c++ it does not has an GUI and i am planning to implement the GUI using java .I have a question how to develop an API to access it in java...

for example Mongo db is written in c++ and it has API for all languages..how it access the c++ do it uses socket to communicate...

share|improve this question

3 Answers

up vote 3 down vote accepted

You will need to write/wrap the crawler as a service and host it on a server that is listening on a port. You might want to create a text or binary protocol whereby the clients can then talk to this service. Once thats established, you can write the clients in any language including Java.

share|improve this answer
1  
Best for write-once type implementation – Dennis Apr 26 '11 at 8:16

Perhaps you will find this usefull: http://java.sun.com/docs/books/jni/

share|improve this answer

Take a look at Thrift also.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.