I need a sample application where the UI part is made with .Net (Windows) and Data Base handling logic/Business Logic part is handled by J2ee.
Thanks
I need a sample application where the UI part is made with .Net (Windows) and Data Base handling logic/Business Logic part is handled by J2ee.
Thanks
A better question is how would I do this?
One way would be to write the business logic in Java and expose it to the .NET client via a Web service, perhaps using Apache Axis on the Java side.
On the .NET side you could use WCF to create a service reference. There are various articles available on Google that describe doing this.
I've done this myself in the past, only the other way round (exposing .NET Web services to Java clients).