passing data between Dot net and Java components

  • Thread starter Thread starter jos
  • Start date Start date
J

jos

Hi There,
What would be suitable options to exchange data between a Dot net program
and a java program?

Thanks
Jyotsna Sharan
 
Hi There,
What would be suitable options to exchange data between a Dot net program
and a java program?

What kind of data? Give us an example, please.

sincerely,
--
Sebastian Zaklada
Skilled Software
http://www.skilledsoftware.com
************************************
SQL Source Control 2003 - for
SQL Server Source Safe integration
and custom databases documentation
 
The data actually just consists of strings. It is essentially a part of a
catalog, that needs to be passed from the java end to a dot net program.

Thanks
Jyotsna
 
jos said:
What would be suitable options to exchange data between a Dot net program
and a java program?

There are a number of ways to send data between .NET and Java programs,
including Web services, messaging, and runtime bridges. Using a runtime
bridge is probably the most general, since it allows passing just about any
custom object and offers access to the most fine-grained Java APIs. If
you're looking to use a bridge, check our our JNBridgePro interoperability
bridge. See our Web site at www.jnbridge.com, or contact me for more
information.

Microsoft has published a number of documents on Java/.NET interoperability.
Two documents that were published recently can be found at

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpag/html/jdni.asp
and
http://msdn.microsoft.com/library/d...y/en-us/dnbda/html/dotnetinteroperability.asp

Wayne
____________________________________

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