can C# methods call Java/J2EE session beans?

  • Thread starter Thread starter Flip
  • Start date Start date
F

Flip

Is there a way for C# methods (either in a WinForm or from ASPX) to call a
j2ee session bean on another server? If so, are there any web references
out there?

Thanks.
 
Flip said:
Is there a way for C# methods (either in a WinForm or from ASPX) to
call a j2ee session bean on another server?

This depends on your remoting protocol.

If you want to use RMI, you need a J2EE/.NET remoting bridge like
Borland's Janeva.

If you can expose your EJB methods through Web Services (either by
proprietary toolkits or using EJB 2.1 features), you can use standard
..NET features to implement your client code.

Cheers,
 
Back
Top