-
Calling C function within a Servlet (4 messages)
- Posted by: aj nabi
- Posted on: September 04 2003 09:28 EDT
I have a legacy search function which was implemented in 'C' language. Now I have to use this function in one of my servlets. I will be passing some parameters to the search engine which will in turn return the search results in structures. How can I integrate these two?Threaded Messages (4)
- Calling C function within a Servlet by David Rabinowitz on September 04 2003 10:30 EDT
- Java Native Interface by Sean Sullivan on September 04 2003 14:07 EDT
- Calling C function within a Servlet by aj nabi on September 04 2003 22:37 EDT
- Calling C function within a Servlet by aj nabi on September 08 2003 00:05 EDT
-
Calling C function within a Servlet[ Go to top ]
- Posted by: David Rabinowitz
- Posted on: September 04 2003 10:30 EDT
- in response to aj nabi
JNI -
Java Native Interface[ Go to top ]
- Posted by: Sean Sullivan
- Posted on: September 04 2003 14:07 EDT
- in response to aj nabi
-
Calling C function within a Servlet[ Go to top ]
- Posted by: aj nabi
- Posted on: September 04 2003 22:37 EDT
- in response to aj nabi
Thanks for the suggestions. -
Calling C function within a Servlet[ Go to top ]
- Posted by: aj nabi
- Posted on: September 08 2003 00:05 EDT
- in response to aj nabi
If I use JNI, can I pass 'C' structure to the java servlet?. Is there any info on accessing 'C' structures in java? Please help!