can a C# application call a java application.
for example in C#
public int Sum(int a, int b)
{
return // call java function to do the sum
}
then in Java will have a function do the actual sum
public int Sum(int a, int b)
{
return a+b;
}
will COM+ help??
Thanks
One thing you could try:
Use .NET's svcutil.exe
against it to generate a c# client
Use the c# client to call Sum