Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Java.NET : Integration of Java and .NET

0.00/5 (No votes)
26 May 2008 1  
A Approch To Integrate Java with .NET Web Application
Java_Net_Logo.gif Download IntegratedNETJavaWeb.zip - 4.21 KB

Introduction

This article describes how we can integrate Java with Microsoft Technology. Sometimes we may need an application where we integrate both technologies. I am writing this article keeping all beginners in mind, so they can learn something from it. This article describes how we can call some Java methods from .NET code, and pass some values to Java or .NET and vice versa. This is a simple ASP.NET application, which interacts with Java Applets while performing another  operation. The application is very simple to do, but the main thing behind the scene is the idea and implementation logic.

Background

I have used two IDE for this Application

  1. Visual Studio 2005
  2. Eclipse

This digaram describes the main flow between Java nad .NET.

Flow

The main concept behind the scene is Applet, I have created a JAR file which contains one applet and I have called Java methods using applet from .NET. Once you get the data using JavaScript, it is up to you to decide how you going to use it on the server side.

Using the Code

First of all, we have to create a JAR file using Java. As I already explained, I have used Eclipse, just take a look the hierarchy of my Java applet and function.

JAVA_Tree.JPG

I have created these methods and created a "Jar" file, named JavaNet.Jar. Now I am going to interact with this using .NET. The following is the Java Applet code.

//Welcome Methods will call from .NET
public void WelcomeToJava()
{
  JOptionPane.showMessageDialog(null,"Hi .NET Welcome To Java");
}
//Return Value To .NET
public String  MessageForNetFromJava()
{
 return "Hi .NET, Nice To Meet you !!";	
}
//Take Argument from .NET and Reply
public String MessageFromNETServerSide(String Message)
{
 return "From Java : " + Message ;
}

Now, in the ASP.NET page, I have used an Applet tag for invoking the applet. Now from the ID, MyJavaApplet, I can call any Java methods from file.

Applet.JPG

The following is the JavaScript I'm using to call all Java methods

var ID= "<%=txtnum1.ClientID%>"; //Read Client ID of TextBox
//Call Java Welcome Message
function btnCallJava_onclick() 
{
MyJavaApplet.WelcomeToJava();
}
// Get Message From Java
function btnNetMessage_onclick() {
var message=MyJavaApplet.MessageForNetFromJava();
alert(message);
}
//Pass Argument To Java Methods
function btnServerValueSend_onclick()
 {
   var Message= document.getElementById(ID);
   var result=MyJavaApplet.MessageFromNETServerSide(Message.value);
  alert(result);
}

OutPut

Call Welcome Message

CallJava.JPG

Send Server Side Value To Java

ServerText.JPG

Get Message From Java

MessageForNet.JPG

Points of Interest

.NET and Java, both are leading the world's technology, and by integreting both of them we can do anything we want to do .

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here