Originally posted by Barun Das:
Actually the business logic of my application is written with C & C++ and the front end is developed using java swing. I used native methods to access business logic from Java classes.
Option1:
Given the above two facts, i would use the same native methods inside my javawebservices methods to access business logic and returns result.
//** sample code **//
public class someName
{
public
string callBusinessLogic1(string input)
{
return (callC++BusinessLogic1_using_Native_method());
}
}
The outside world will see only the java webservices.
Option2:
Can you use C++ implementation of Apache Axis to expose your methods as webservices?