Click here to Skip to main content
15,878,970 members
Articles / Programming Languages / Javascript
Article

Java.NET : Integration of Java and .NET

Rate me:
Please Sign up or sign in to vote.
4.33/5 (42 votes)
26 May 2008CPOL2 min read 100.1K   1.5K   45   24
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.

JavaScript
//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

JavaScript
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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India
.NET Consultant | Former Microsoft MVP - ASP.NET | CodeProject MVP, Mentor, Insiders| Technology Evangelist | Author | Speaker | Geek | Blogger | Husband

Blog : http://abhijitjana.net
Web Site : http://dailydotnettips.com
Twitter : @AbhijitJana
My Kinect Book : Kinect for Windows SDK Programming Guide

Comments and Discussions

 
GeneralGreat Pin
Brij23-Dec-08 2:58
mentorBrij23-Dec-08 2:58 
GeneralRe: Great Pin
Abhijit Jana18-Oct-09 11:25
professionalAbhijit Jana18-Oct-09 11:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.