Java apps

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Is it possible to integrate a java application with a .net application ?
or have a .net module in a java application.
 
Hi

There's no such concept as a C# "applet". At most, there are custom Windows
forms controls that are embedded on a page. Of course, just like in Java, you
can't run it if you don't have the corresponding runtime on the client
machine. You can use the <object> tag to add it to an HTML page:

<object id="MyControl"
classid="http://mywebsite/MyClassLibrary.dll#FullNamespace.MyControlClass"
height="480 "width="640">
</object>
The class ID contains the URL of the DLL for downloading and the fully
qualified name of the class that implements the control. The library must not
be placed on the /bin folder of a Web application in order to be served by
IIS/ASP.NET.


HTH
Ravikanth[MVP]
 
Matt said:
There is also JNBridge http://www.jnbridge.com

I have not used it but found that Microsoft has a book about interop between
Java and .Net and they use it in the book. It looks quite expensive.

Hi folks --

JNBridgePro isn't that expensive. It's certainly cheaper than the time you
would spend doing it yourself. See http://www.jnbridge.com/pricing.htm for
more info, or contact me if you have questions.

Wayne
____________________________________

Wayne Citrin
JNBridge, LLC
(e-mail address removed)
www.jnbridge.com
Spanning the Worlds of Java and .NET
____________________________________
 
Back
Top