Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Download and install the exact same version of IKVM that was used to create converted assemblies. At the moment of writing this is http://sourceforge.net/projects/ikvm/files/ikvm/7.2.4630.5/ 

Info

Instead of installing IKVM manually you can also use the NuGet package manager to add IKVM to you project.

 

 

A first project

Create a new project/solution in your favorite .NET IDE. Add references to at least the following assemblies:

  • IKVM.OpenJDK.Beans
  • IKVM.OpenJDK.Charsets
  • IKVM.OpenJDK.Core
  • IKVM.OpenJDK.Misc
  • IKVM.OpenJDK.Security
  • IKVM.OpenJDK.Text
  • IKVM.OpenJDK.Tools
  • IKVM.OpenJDK.Util
  • IKVM.Reflection
  • IKVM.Reflection.JNI
  • org.openscada.external
  • org.openscada.aurora
  • org.openscada.oxygen
  • org.openscada.atlantis
  • And the default .NET Assemblies that you need anyway (System.*)

 

Info

Instead of adding the IKVM assemblies manually you can use the NuGet package manager to add IKVM.

...

Use the following C# sharp code to connect to the publicly accessible openSCADA server and read out some data:

...