>
1. Getting started
2. Calling methods
3. Working with .NET Objects
4. Fields and Properties
5. Methods Arguments
6. Nested Types
7. Enums
8. Arrays and Collections
9. Embeding UI controls
10. Referencing libraries
11. Off-line activation
12. Events and Delegates
13. Disposing and Garabage Collection
14. .NET Configuration Files (AppConfig, WebConfig)
15. Exceptions, Debugging and Testing
16. Strongly-Typed Wrappers
    17. Advanced Activation and Licensing
    18 Other usage scenarios

      XML Configuration File

      There are many benefits to activating and setting up Javonet using an XML configuration file. It simplifies distribution of your application to your team, lets you update the Javonet license, references and framework configuration more quickly, and avoids hardcoded activation and configuration details.

      During the first application use, Javonet searches for, and then automatically uses the XML configuration file to activate and configure your application.

      Simply name the file “javonet.xml” and place it in the root directory of your Java application.

      Below you can find the full structure of the XML configuration file. Some of the tags are optional. You can read more about Javonet XML configuration file in Activating Javonet and Adding references to .NET libraries sections.

      Full Javonet XML Configuration File Structure

      <?xml version="1.0" encoding="ISO-8859-1" ?>
      <javonet>
      <references> <!-- optional -->
          <reference>System.Windows.Forms</reference>
          <reference>System.Drawing</reference>
          <reference>yourDotNet.dll</reference>
      </references>
      <activation> <!-- mandatory -->
          <username>YOUR NAME</username>
          <email>your@email.com</email>
          <licencekey>YOUR-LICENSE-KEY</licencekey>
          <proxy> <!-- optional -->
               <host>your@email.com</host>
               <username>your@email.com</username>
               <password>your@email.com</password>
               <domain>your@email.com</domain>
          </proxy>
      </activation>
      <settings> <!-- optional (default .NET v35 and MTA) -->
          <apartmentState>STA</apartmentState> <!-- optional (default MTA) -->
          <framework>v40</framework> <!-- optional (default .NET v35) -->
      </settings>
      </javonet>