Re: IKVM.NET with Spring

Paul Chambre <[email protected]> Mon, 21 Nov 2016 10:25:32 -0700
Newsgroups gmane.comp.java.ikvm.devel
Message-ID <CAJwVo5GTjqeboGvifJzk=VO8Wg0Lwv=PtodAjvw5k+OAcGpcKw@mail.gmail.com>
--===============8751521230047494990==
Content-Type: multipart/alternative; boundary=001a114d89ea6ab7a60541d2f1c4

--001a114d89ea6ab7a60541d2f1c4
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Hi Volker,

This sounds similar to something I am seeing. In our app, we sometimes push
updated classes to a server. This does not work from the ikvmc DLL. I had
thought it might be another pathing issue, but it sounds more like what
you're mentioning here.

This is how we are loading class definitions for packaging and push:

InputStream inStream =3D classLoader.getResourceAsStream(path);


Am I correct in understanding that we'll need to use a more generic file
stream, instead, to load the classes under IKVM?

Thanks,
Paul




On Mon, Nov 21, 2016 at 5:06 AM, Volker Berlin <[email protected]>
wrote:

> It look like that your framework try to access the stream of
> com.datastax.driver.core.Cluster$Builder.class. Because class resources
> are not available IKVM that it try to generate a stub of the stream which
> is failing. If this is the case then it look like a bug in IKVM.
>
> Which version of IKVM do you use?
> Volker
>
>
>
> Am 18.11.2016 um 17:58 schrieb [email protected]:
>
> Hi folks,
>
>
>
> I am looking for help on using IKVM with the spring framework. We are
> using the =E2=80=98one large DLL=E2=80=99 solution to compile a large num=
ber of our
> libraries. We recently added the spring framework to these.
>
>
>
> Compiling everything together with ikvmc works but on initialization of
> the spring framework, the ikvm class loader behaves differently than the
> class loader of the standard JVM. The class loader of the standard JVM
> tolerates that some extensions of the spring framework are missing, where=
as
> the ikvm class loader throws an exception:
>
>
>
> "ClassNotFoundException: com.datastax.driver.core.Cluster$Builder\r\n
> at IKVM.Internal.ClassLoaderWrapper.LoadClass(String name, LoadMode
> mode)\r\n   at IKVM.Internal.ClassLoaderWrapper.LoadClassByDottedName(Str=
ing
> name)\r\n   at IKVM.Internal.CompiledTypeWrapper.get_InnerClasses()\r\n
> at IKVM.StubGen.StubGenerator.WriteClass(Stream stream, TypeWrapper tw,
> Boolean includeNonPublicInterfaces, Boolean includeNonPublicMembers,
> Boolean includeSerialVersionUID, Boolean includeParameterNames)\r\n   at
> IKVM.Internal.VirtualFileSystem.VfsAssemblyClass.Populate()\r\n   at
> IKVM.Internal.VirtualFileSystem.VfsAssemblyClass.Open()\r\n   at
> IKVM.Internal.VirtualFileSystem.Open(String name, FileMode fileMode,
> FileAccess fileAccess)\r\n   at Java_java_io_FileDescriptor.open(String
> name, FileMode fileMode, FileAccess fileAccess)\r\n   at
> java.io.FileDescriptor.open(String , FileMode , FileAccess )\r\n   at
> java.io.FileDescriptor.open(String , Int32 , Int32 )\r\n   at
> java.io.FileDescriptor.openReadOnly(String )\r\n   at Ja
>
> va_java_io_FileInputStream.open0(Object _this, String name,
> FileDescriptor fd)\r\n   at java.io.FileInputStream.open0(String )\r\n
> at java.io.FileInputStream.open(String )\r\n   at
> java.io.FileInputStream..ctor(File file)\r\n   at java.util.zip.
> ClassStubZipEntry.getInputStream()\r\n   at java.util.zip.ZipFile.getInpu=
tStream(ZipEntry
> entry)\r\n   at java.util.jar.JarFile.getInputStream(ZipEntry ze)\r\n
> at sun.net.www.protocol.jar.JarURLConnection.getInputStream()\r\n   at
> java.net.URLClassLoader.getResourceAsStream(String name)\r\n   at
> org.springframework.core.io.ClassPathResource.getInputStream() in
> ClassPathResource.java:line 166\r\n   at org.springframework.core.type.
> classreading.SimpleMetadataReader..ctor(Resource resource, ClassLoader
> classLoader) in SimpleMetadataReader.java:line 50\r\n   at
> org.springframework.core.type.classreading.SimpleMetadataReaderFactory.ge=
tMetadataReader(Resource
> resource) in SimpleMetadataReaderFactory.java:line 98\r\n   at
> org.springframework.boot.type.classreading.Concurre
>
> ntReferenceCachingMetadataReaderFactory.createMetadataReader(Resource
> resource) in ConcurrentReferenceCachingMetadataReaderFactory.java:line
> 89\r\n   at org.springframework.boot.type.classreading.
> ConcurrentReferenceCachingMetadataReaderFactory.getMetadataReader(Resourc=
e
> resource) in ConcurrentReferenceCachingMetadataReaderFactory.java:line
> 76\r\n   at org.springframework.core.type.classreading.
> SimpleMetadataReaderFactory.getMetadataReader(String className) in
> SimpleMetadataReaderFactory.java:line 93\r\n   at
> org.springframework.boot.autoconfigure.AutoConfigurationSorter.
> AutoConfigurationClasses..ctor(MetadataReaderFactory
> metadataReaderFactory, Collection classNames) in
> AutoConfigurationSorter.java:line 110\r\n   at org.springframework.boot.
> autoconfigure.AutoConfigurationSorter.getInPriorityOrder(Collection
> classNames) in AutoConfigurationSorter.java:line 54\r\n   at
> org.springframework.boot.autoconfigure.EnableAutoConfigurationImportSelec=
tor.sort(List
> configurations) in EnableAutoConfigurationImportSelector.j
>
> ava:line 193\r\n   at org.springframework.boot.autoconfigure.
> EnableAutoConfigurationImportSelector.selectImports(AnnotationMetadata
> metadata) in EnableAutoConfigurationImportSelector.java:line 89\r\n   at
> org.springframework.context.annotation.ConfigurationClassParser.
> processDeferredImportSelectors() in ConfigurationClassParser.java:line
> 481"
>
>
>
>
>
> Here are the detail of our setup:
>
> IKVM 8.1
>
> Spring 4.3.2.RELEASE
>
> Spring boot 1.4.0.RELEASE
>
> Target .NET 4
>
>
>
> We are using the statement =E2=80=9Cikvm.runtime.Startup.addBootClassPath=
Assembly(
> Assembly.Load("OurLargeAssembly"));=E2=80=9D. We are not using any =E2=80=
=93classloader
> argument in the args of ikvmc.
>
>
>
> We tried downloading the datastax driver and adding it to our large
> assembly. It worked, but right after we faced the same problem with
> =E2=80=98elasticsearch=E2=80=99. But this time, adding this package cause=
d an ikvmc crash:
>
>
>
> *warning IKVMC0100: Class "org.jboss.netty.bootstrap.ServerBootstrap" not
> found*
>
> *warning IKVMC0100: Class
> "org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory" not
> found*
>
> *warning IKVMC0100: Class "org.jboss.netty.channel.group.ChannelGroup" no=
t
> found*
>
> *warning IKVMC0100: Class
> "org.jboss.netty.channel.group.ChannelGroupFuture" not found*
>
>
>
> **** INTERNAL COMPILER ERROR ****
>
>
>
> *PLEASE FILE A BUG REPORT FOR IKVM.NET <http://IKVM.NET> WHEN YOU SEE THI=
S
> MESSAGE*
>
>
>
> *ikvmc, Version=3D8.1.5717.0, Culture=3Dneutral,
> PublicKeyToken=3D13235d27fcbfff58*
>
> *C:\Windows\Microsoft.NET\Framework64\v2.0.50727\*
>
> *2.0.50727.5485 64-bit*
>
>
>
> *System.AccessViolationException: Attempted to read or write protected
> memory. This is often an indication that other memory is corrupt.*
>
> *   at IKVM.Reflection.Impl.ISymUnmanagedWriter2.CloseMethod()*
>
> *   at IKVM.Reflection.Impl.PdbWriter.Close()*
>
> *   at
> IKVM.Reflection.Writer.ModuleWriter.WriteModuleImpl(StrongNameKeyPair
> keyPair, Byte[] publicKey, ModuleBuilder moduleBuilder, PEFileKinds
> fileKind, PortableExecutableKinds portableExecutableKind, ImageFileMachin=
e
> imageFileMachine, ResourceSection resources, Int32 entryPointToken, Strea=
m
> stream)*
>
> *   at IKVM.Reflection.Writer.ModuleWriter.WriteModule(StrongNameKeyPair
> keyPair, Byte[] publicKey, ModuleBuilder moduleBuilder, PEFileKinds
> fileKind, PortableExecutableKinds portableExecutableKind, ImageFileMachin=
e
> imageFileMachine, ResourceSection resources, Int32 entryPointToken, Strea=
m
> stream)*
>
> *   at IKVM.Reflection.Emit.AssemblyBuilder.SaveImpl(String
> assemblyFileName, Stream streamOrNull, PortableExecutableKinds
> portableExecutableKind, ImageFileMachine imageFileMachine)*
>
> *   at IKVM.Reflection.Emit.AssemblyBuilder.Save(String assemblyFileName,
> PortableExecutableKinds portableExecutableKind, ImageFileMachine
> imageFileMachine)*
>
> *   at IKVM.Internal.CompilerClassLoader.Save()*
>
> *   at IKVM.Internal.CompilerClassLoader.Compile(String runtimeAssembly,
> List`1 optionsList)*
>
> *   at IkvmcCompiler.Compile(String[] args)*
>
> *   at IkvmcCompiler.Main(String[] args)*
>
>
>
>
>
> Any help would be appreciated.
>
>
>
>
>
> *_________________________________*
>
> *Pascal Dufresne*
>
> Associate - Securitized Products Technology
> Nomura Securities International
> 309 West 49th Street
> New York, New York 10019-7316
> Phone: +1 212 667 1381  Mobile: +1 646 920 9617
>
> Email: [email protected]
>
>
>
> *Connecting Markets East & West*
>
> www.nomura.com
>
>
>
> PLEASE READ: This message is for the named person's use only. It may
> contain confidential, proprietary or legally privileged information. No
> confidentiality or privilege is waived or lost by any mistransmission. If
> you receive this message in error, please delete it and all copies from
> your system, destroy any hard copies and notify the sender. You must not,
> directly or indirectly, use, disclose, distribute, print, or copy any par=
t
> of this message if you are not the intended recipient. Nomura Holding
> America Inc., Nomura Securities International, Inc, and their respective
> subsidiaries each reserve the right to monitor all e-mail communications
> through its networks. Any views expressed in this message are those of th=
e
> individual sender, except where the message states otherwise and the send=
er
> is authorized to state the views of such entity. Unless otherwise stated,
> any pricing information in this message is indicative only, is subject to
> change and does not constitute an offer to deal at any price quoted. Any
> reference to the terms of executed transactions should be treated as
> preliminary only and subject to our formal written confirmation.
>
>
> -------------------------------------------------------------------------=
-----
>
>
>
> _______________________________________________
> Ikvm-developers mailing [email protected]://=
lists.sourceforge.net/lists/listinfo/ikvm-developers
>
>
>
> ------------------------------------------------------------
> ------------------
>
> _______________________________________________
> Ikvm-developers mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/ikvm-developers
>
>


--=20
Paul Chambre

Senior Solutions Architect
(719) 465-6097

Illumon - Big Value From Big Data

--001a114d89ea6ab7a60541d2f1c4
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><div>Hi Volker,</div><div><br></div><div>This sounds simil=
ar to something I am seeing. In our app, we sometimes push updated classes =
to a server. This does not work from the ikvmc DLL. I had thought it might =
be another pathing issue, but it sounds more like what you&#39;re mentionin=
g here. </div><div><br></div><div>This is how we are loading class definiti=
ons for packaging and push:</div><div><br></div><pre style=3D"color:rgb(0,0=
,0);font-family:&quot;courier new&quot;;font-size:9pt;background-color:rgb(=
255,255,255)">InputStream <span style=3D"background-color:rgb(255,228,255)"=
>inStream</span> =3D classLoader.getResourceAsStream(path);</pre><div><br><=
/div><div>Am I correct in understanding that we&#39;ll need to use a more g=
eneric file stream, instead, to load the classes under IKVM? </div><div><br=
></div><div>Thanks,<br>Paul</div><pre style=3D"color:rgb(0,0,0);font-family=
:&quot;courier new&quot;;font-size:9pt;background-color:rgb(255,255,255)"><=
br></pre><pre style=3D"color:rgb(0,0,0);font-family:&quot;courier new&quot;=
;font-size:9pt;background-color:rgb(255,255,255)"><br></pre></div><div clas=
s=3D"gmail_extra"><br><div class=3D"gmail_quote">On Mon, Nov 21, 2016 at 5:=
06 AM, Volker Berlin <span dir=3D"ltr">&lt;<a href=3D"mailto:vberlin@inetso=
ftware.de" target=3D"_blank">[email protected]</a>&gt;</span> wrote:<=
br><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left=
:1px #ccc solid;padding-left:1ex">
 =20
   =20
 =20
  <div text=3D"#000000" bgcolor=3D"#FFFFFF">
    <p>It look like that your framework try to access the stream of
      com.datastax.driver.core.<wbr>Cluster$Builder.class. Because class
      resources are not available IKVM that it try to generate a stub of
      the stream which is failing. If this is the case then it look like
      a bug in IKVM.</p>
    <p>Which version of IKVM do you use?</p>
    Volker<div><div class=3D"h5"><br>
    <br>
    <br>
    <div class=3D"m_5024037736762453314moz-cite-prefix">Am 18.11.2016 um 17=
:58 schrieb
      <a class=3D"m_5024037736762453314moz-txt-link-abbreviated" href=3D"ma=
ilto:[email protected]" target=3D"_blank">[email protected]=
om</a>:<br>
    </div>
    </div></div><blockquote type=3D"cite"><div><div class=3D"h5">
     =20
     =20
     =20
      <div class=3D"m_5024037736762453314WordSection1">
        <p class=3D"MsoNormal">Hi folks,<u></u><u></u></p>
        <p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
        <p class=3D"MsoNormal">I am looking for help on using IKVM with
          the spring framework. We are using the =E2=80=98one large DLL=E2=
=80=99
          solution to compile a large number of our libraries. We
          recently added the spring framework to these.<u></u><u></u></p>
        <p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
        <p class=3D"MsoNormal">Compiling everything together with ikvmc
          works but on initialization of the spring framework, the ikvm
          class loader behaves differently than the class loader of the
          standard JVM. The class loader of the standard JVM tolerates
          that some extensions of the spring framework are missing,
          whereas the ikvm class loader throws an exception:<u></u><u></u><=
/p>
        <p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
        <p class=3D"MsoNormal" style=3D"text-autospace:none"><span style=3D=
"font-size:9.0pt;font-family:Consolas;color:#1e1e1e;background:white">&quot=
;ClassNotFoundException:
            com.datastax.driver.core.<wbr>Cluster$Builder\r\n=C2=A0=C2=A0 a=
t
            IKVM.Internal.<wbr>ClassLoaderWrapper.LoadClass(<wbr>String nam=
e,
            LoadMode mode)\r\n=C2=A0=C2=A0 at
            IKVM.Internal.<wbr>ClassLoaderWrapper.<wbr>LoadClassByDottedNam=
e(String
            name)\r\n=C2=A0=C2=A0 at
            IKVM.Internal.<wbr>CompiledTypeWrapper.get_<wbr>InnerClasses()\=
r\n=C2=A0=C2=A0
            at IKVM.StubGen.StubGenerator.<wbr>WriteClass(Stream stream,
            TypeWrapper tw, Boolean includeNonPublicInterfaces, Boolean
            includeNonPublicMembers, Boolean includeSerialVersionUID,
            Boolean includeParameterNames)\r\n=C2=A0=C2=A0 at
            IKVM.Internal.<wbr>VirtualFileSystem.<wbr>VfsAssemblyClass.Popu=
late()\r\<wbr>n=C2=A0=C2=A0
            at
            IKVM.Internal.<wbr>VirtualFileSystem.<wbr>VfsAssemblyClass.Open=
()\r\n=C2=A0=C2=A0
            at IKVM.Internal.<wbr>VirtualFileSystem.Open(String name,
            FileMode fileMode, FileAccess fileAccess)\r\n=C2=A0=C2=A0 at
            Java_java_io_FileDescriptor.<wbr>open(String name, FileMode
            fileMode, FileAccess fileAccess)\r\n=C2=A0=C2=A0 at
            java.io.FileDescriptor.open(<wbr>String , FileMode , FileAccess
            )\r\n=C2=A0=C2=A0 at java.io.FileDescriptor.open(<wbr>String , =
Int32 ,
            Int32 )\r\n=C2=A0=C2=A0 at java.io.FileDescriptor.<wbr>openRead=
Only(String
            )\r\n=C2=A0=C2=A0 at Ja<u></u><u></u></span></p>
        <p class=3D"MsoNormal" style=3D"text-autospace:none"><span style=3D=
"font-size:9.0pt;font-family:Consolas;color:#1e1e1e;background:white">va_ja=
va_io_FileInputStream.<wbr>open0(Object
            _this, String name, FileDescriptor fd)\r\n=C2=A0=C2=A0 at
            java.io.FileInputStream.open0(<wbr>String )\r\n=C2=A0=C2=A0 at
            java.io.FileInputStream.open(<wbr>String )\r\n=C2=A0=C2=A0 at
            java.io.FileInputStream..ctor(<wbr>File file)\r\n=C2=A0=C2=A0 a=
t
            java.util.zip.<wbr>ClassStubZipEntry.<wbr>getInputStream()\r\n=
=C2=A0=C2=A0 at
            java.util.zip.ZipFile.<wbr>getInputStream(ZipEntry entry)\r\n=
=C2=A0=C2=A0
            at java.util.jar.JarFile.<wbr>getInputStream(ZipEntry ze)\r\n=
=C2=A0=C2=A0
            at
            sun.net.www.protocol.jar.<wbr>JarURLConnection.<wbr>getInputStr=
eam()\r\n=C2=A0=C2=A0
            at java.net.URLClassLoader.<wbr>getResourceAsStream(String
            name)\r\n=C2=A0=C2=A0 at
            <a href=3D"http://org.springframework.core.io">org.springframew=
ork.core.io</a>.<wbr>ClassPathResource.<wbr>getInputStream()
            in ClassPathResource.java:line 166\r\n=C2=A0=C2=A0 at
org.springframework.core.type.<wbr>classreading.<wbr>SimpleMetadataReader..=
ctor(<wbr>Resource
            resource, ClassLoader classLoader) in
            SimpleMetadataReader.java:line 50\r\n=C2=A0=C2=A0 at
org.springframework.core.type.<wbr>classreading.<wbr>SimpleMetadataReaderFa=
ctory.<wbr>getMetadataReader(Resource
            resource) in SimpleMetadataReaderFactory.<wbr>java:line 98\r\n=
=C2=A0=C2=A0
            at org.springframework.boot.type.<wbr>classreading.Concurre<u><=
/u><u></u></span></p>
        <p class=3D"MsoNormal" style=3D"text-autospace:none"><span style=3D=
"font-size:9.0pt;font-family:Consolas;color:#1e1e1e;background:white">ntRef=
erenceCachingMetadataRead<wbr>erFactory.<wbr>createMetadataReader(Resource
            resource) in
            ConcurrentReferenceCachingMeta<wbr>dataReaderFactory.java:line
            89\r\n=C2=A0=C2=A0 at
org.springframework.boot.type.<wbr>classreading.<wbr>ConcurrentReferenceCac=
hingMeta<wbr>dataReaderFactory.<wbr>getMetadataReader(Resource
            resource) in
            ConcurrentReferenceCachingMeta<wbr>dataReaderFactory.java:line
            76\r\n=C2=A0=C2=A0 at
org.springframework.core.type.<wbr>classreading.<wbr>SimpleMetadataReaderFa=
ctory.<wbr>getMetadataReader(String
            className) in SimpleMetadataReaderFactory.<wbr>java:line 93\r\n=
=C2=A0=C2=A0
            at
org.springframework.boot.<wbr>autoconfigure.<wbr>AutoConfigurationSorter.<w=
br>AutoConfigurationClasses..<wbr>ctor(MetadataReaderFactory
            metadataReaderFactory, Collection classNames) in
            AutoConfigurationSorter.java:<wbr>line 110\r\n=C2=A0=C2=A0 at
org.springframework.boot.<wbr>autoconfigure.<wbr>AutoConfigurationSorter.<w=
br>getInPriorityOrder(Collection
            classNames) in AutoConfigurationSorter.java:<wbr>line 54\r\n=C2=
=A0=C2=A0 at
org.springframework.boot.<wbr>autoconfigure.<wbr>EnableAutoConfigurationImp=
ortS<wbr>elector.sort(List
            configurations) in EnableAutoConfigurationImportS<wbr>elector.j=
<u></u><u></u></span></p>
        <p class=3D"MsoNormal" style=3D"text-autospace:none"><span style=3D=
"font-size:9.0pt;font-family:Consolas;color:#1e1e1e;background:white">ava:l=
ine
            193\r\n=C2=A0=C2=A0 at
org.springframework.boot.<wbr>autoconfigure.<wbr>EnableAutoConfigurationImp=
ortS<wbr>elector.selectImports(<wbr>AnnotationMetadata
            metadata) in EnableAutoConfigurationImportS<wbr>elector.java:li=
ne
            89\r\n=C2=A0=C2=A0 at
org.springframework.context.<wbr>annotation.<wbr>ConfigurationClassParser.<=
wbr>processDeferredImportSelectors<wbr>()
            in ConfigurationClassParser.java:<wbr>line 481&quot;<u></u><u><=
/u></span></p>
        <p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
        <p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
        <p class=3D"MsoNormal">Here are the detail of our setup:<u></u><u><=
/u></p>
        <p class=3D"MsoNormal">IKVM 8.1<u></u><u></u></p>
        <p class=3D"MsoNormal">Spring 4.3.2.RELEASE<u></u><u></u></p>
        <p class=3D"MsoNormal">Spring boot 1.4.0.RELEASE<u></u><u></u></p>
        <p class=3D"MsoNormal">Target .NET 4<u></u><u></u></p>
        <p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
        <p class=3D"MsoNormal">We are using the statement
=E2=80=9Cikvm.runtime.Startup.<wbr>addBootClassPathAssembly(<wbr>Assembly.L=
oad(&quot;<wbr>OurLargeAssembly&quot;));=E2=80=9D.
          We are not using any =E2=80=93classloader argument in the args of
          ikvmc.<u></u><u></u></p>
        <p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
        <p class=3D"MsoNormal">We tried downloading the datastax driver
          and adding it to our large assembly. It worked, but right
          after we faced the same problem with =E2=80=98elasticsearch=E2=80=
=99. But this
          time, adding this package caused an ikvmc crash:<u></u><u></u></p=
>
        <p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
        <p class=3D"MsoNormal"><i>warning IKVMC0100: Class
            &quot;org.jboss.netty.bootstrap.<wbr>ServerBootstrap&quot; not =
found<u></u><u></u></i></p>
        <p class=3D"MsoNormal"><i>warning IKVMC0100: Class
            &quot;org.jboss.netty.channel.<wbr>socket.nio.<wbr>NioServerSoc=
ketChannelFactory&quot;
            not found<u></u><u></u></i></p>
        <p class=3D"MsoNormal"><i>warning IKVMC0100: Class
            &quot;org.jboss.netty.channel.<wbr>group.ChannelGroup&quot; not=
 found<u></u><u></u></i></p>
        <p class=3D"MsoNormal"><i>warning IKVMC0100: Class
            &quot;org.jboss.netty.channel.<wbr>group.ChannelGroupFuture&quo=
t; not found<u></u><u></u></i></p>
        <p class=3D"MsoNormal"><i><u></u>=C2=A0<u></u></i></p>
        <p class=3D"MsoNormal"><i>*** INTERNAL COMPILER ERROR ***<u></u><u>=
</u></i></p>
        <p class=3D"MsoNormal"><i><u></u>=C2=A0<u></u></i></p>
        <p class=3D"MsoNormal"><i>PLEASE FILE A BUG REPORT FOR <a href=3D"h=
ttp://IKVM.NET" target=3D"_blank">IKVM.NET</a>
            WHEN YOU SEE THIS MESSAGE<u></u><u></u></i></p>
        <p class=3D"MsoNormal"><i><u></u>=C2=A0<u></u></i></p>
        <p class=3D"MsoNormal"><i>ikvmc, Version=3D8.1.5717.0,
            Culture=3Dneutral, PublicKeyToken=3D<wbr>13235d27fcbfff58<u></u=
><u></u></i></p>
        <p class=3D"MsoNormal"><i>C:\Windows\Microsoft.NET\<wbr>Framework64=
\v2.0.50727\<u></u><u></u></i></p>
        <p class=3D"MsoNormal"><i>2.0.50727.5485 64-bit<u></u><u></u></i></=
p>
        <p class=3D"MsoNormal"><i><u></u>=C2=A0<u></u></i></p>
        <p class=3D"MsoNormal"><i>System.<wbr>AccessViolationException:
            Attempted to read or write protected memory. This is often
            an indication that other memory is corrupt.<u></u><u></u></i></=
p>
        <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at
            IKVM.Reflection.Impl.<wbr>ISymUnmanagedWriter2.<wbr>CloseMethod=
()<u></u><u></u></i></p>
        <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at
            IKVM.Reflection.Impl.<wbr>PdbWriter.Close()<u></u><u></u></i></=
p>
        <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at
            IKVM.Reflection.Writer.<wbr>ModuleWriter.WriteModuleImpl(<wbr>S=
trongNameKeyPair
            keyPair, Byte[] publicKey, ModuleBuilder moduleBuilder,
            PEFileKinds fileKind, PortableExecutableKinds
            portableExecutableKind, ImageFileMachine imageFileMachine,
            ResourceSection resources, Int32 entryPointToken, Stream
            stream)<u></u><u></u></i></p>
        <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at
            IKVM.Reflection.Writer.<wbr>ModuleWriter.WriteModule(<wbr>Stron=
gNameKeyPair
            keyPair, Byte[] publicKey, ModuleBuilder moduleBuilder,
            PEFileKinds fileKind, PortableExecutableKinds
            portableExecutableKind, ImageFileMachine imageFileMachine,
            ResourceSection resources, Int32 entryPointToken, Stream
            stream)<u></u><u></u></i></p>
        <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at
            IKVM.Reflection.Emit.<wbr>AssemblyBuilder.SaveImpl(<wbr>String
            assemblyFileName, Stream streamOrNull,
            PortableExecutableKinds portableExecutableKind,
            ImageFileMachine imageFileMachine)<u></u><u></u></i></p>
        <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at
            IKVM.Reflection.Emit.<wbr>AssemblyBuilder.Save(String
            assemblyFileName, PortableExecutableKinds
            portableExecutableKind, ImageFileMachine imageFileMachine)<u></=
u><u></u></i></p>
        <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at
            IKVM.Internal.<wbr>CompilerClassLoader.Save()<u></u><u></u></i>=
</p>
        <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at
            IKVM.Internal.<wbr>CompilerClassLoader.Compile(<wbr>String
            runtimeAssembly, List`1 optionsList)<u></u><u></u></i></p>
        <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at IkvmcCompiler.Compile(Str=
ing[]
            args)<u></u><u></u></i></p>
        <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at IkvmcCompiler.Main(String=
[] args)<u></u><u></u></i></p>
        <p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
        <p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
        <p class=3D"MsoNormal">Any help would be appreciated.<u></u><u></u>=
</p>
        <p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
        <p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
        <p class=3D"MsoNormal"><b><span lang=3D"EN-GB" style=3D"font-size:9=
.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#333333">__=
____________________________<wbr>___<u></u><u></u></span></b></p>
        <p class=3D"MsoNormal"><b><span lang=3D"EN-GB" style=3D"font-size:9=
.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#333333">Pa=
scal Dufresne<u></u><u></u></span></b></p>
        <p class=3D"MsoNormal"><span lang=3D"EN-GB" style=3D"font-size:8.0p=
t;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#333333">Assoc=
iate - Securitized Products Technology<br>
            Nomura Securities International<br>
            309 West 49th Street<br>
            New York, New York 10019-7316<br>
            Phone: <a href=3D"tel:%2B1%20212%20667%201381" target=3D"_blank=
" value=3D"+12126671381">+1 212 667 1381</a>=C2=A0 Mobile: <a href=3D"tel:%=
2B1%20646%20920%209617" target=3D"_blank" value=3D"+16469209617">+1 646 920=
 9617</a></span><span style=3D"font-size:8.0pt"><u></u><u></u></span></p>
        <p class=3D"MsoNormal"><span lang=3D"EN-GB" style=3D"font-size:8.0p=
t;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#333333">Email=
:
          </span><span lang=3D"EN-GB" style=3D"font-size:8.0pt;font-family:=
&quot;Arial&quot;,&quot;sans-serif&quot;;color:#cc0000"><a href=3D"mailto:P=
[email protected]" target=3D"_blank">[email protected]</a>=
</span><span style=3D"font-size:8.0pt;color:#cc0000"><u></u><u></u></span><=
/p>
        <p class=3D"MsoNormal"><span lang=3D"EN-GB" style=3D"font-size:10.0=
pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#cc0000"><u><=
/u>=C2=A0<u></u></span></p>
        <p class=3D"MsoNormal"><b><i><span lang=3D"EN-GB" style=3D"font-siz=
e:8.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#cc0000"=
>Connecting Markets East &amp; West<u></u><u></u></span></i></b></p>
        <p class=3D"MsoNormal"><span lang=3D"EN-GB" style=3D"font-size:8.0p=
t;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#cc0000"><a hr=
ef=3D"http://www.nomura.com/" target=3D"_blank"><span style=3D"color:#cc000=
0;text-decoration:none">www.nomura.com</span></a><u></u><u></u></span></p>
        <p class=3D"MsoNormal"><u></u>=C2=A0<u></u></p>
      </div>
      <br>
      <div><font face=3D"Arial" size=3D"2"><span class=3D"m_502403773676245=
3314272370717-27032000">PLEASE
            READ: This message is for the named person&#39;s use only. It
            may contain confidential, proprietary or legally privileged
            information. No confidentiality or privilege is waived or
            lost by any mistransmission. If you receive this message in
            error, please delete it and all copies from your system,
            destroy any hard copies and notify the sender. You must not,
            directly or indirectly, use, disclose, distribute, print, or
            copy any part of this message if you are not the intended
            recipient. Nomura Holding America Inc., Nomura Securities
            International, Inc, and their respective subsidiaries each
            reserve the right to monitor all e-mail communications
            through its networks. Any views expressed in this message
            are those of the individual sender, except where the message
            states otherwise and the sender is authorized to state the
            views of such entity. Unless otherwise stated, any pricing
            information in this message is indicative only, is subject
            to change and does not constitute an offer to deal at any
            price quoted. Any reference to the terms of executed
            transactions should be treated as preliminary only and
            subject to our formal written confirmation.
          </span></font></div>
      <br>
      <fieldset class=3D"m_5024037736762453314mimeAttachmentHeader"></field=
set>
      <br>
      </div></div><pre>------------------------------<wbr>-----------------=
-------------<wbr>------------------
</pre>
      <br>
      <fieldset class=3D"m_5024037736762453314mimeAttachmentHeader"></field=
set>
      <br>
      <pre>______________________________<wbr>_________________
Ikvm-developers mailing list
<a class=3D"m_5024037736762453314moz-txt-link-abbreviated" href=3D"mailto:I=
[email protected]" target=3D"_blank">Ikvm-developers@lis=
ts.<wbr>sourceforge.net</a>
<a class=3D"m_5024037736762453314moz-txt-link-freetext" href=3D"https://lis=
ts.sourceforge.net/lists/listinfo/ikvm-developers" target=3D"_blank">https:=
//lists.sourceforge.net/<wbr>lists/listinfo/ikvm-developers</a>
</pre>
    </blockquote>
    <br>
  </div>

<br>------------------------------<wbr>------------------------------<wbr>-=
-----------------<br>
<br>______________________________<wbr>_________________<br>
Ikvm-developers mailing list<br>
<a href=3D"mailto:[email protected]">Ikvm-developers@li=
sts.<wbr>sourceforge.net</a><br>
<a href=3D"https://lists.sourceforge.net/lists/listinfo/ikvm-developers" ta=
rget=3D"_blank" rel=3D"noreferrer">https://lists.sourceforge.net/<wbr>lists=
/listinfo/ikvm-developers</a><br>
<br></blockquote></div><br><br clear=3D"all"><br>-- <br><div class=3D"gmail=
_signature" data-smartmail=3D"gmail_signature"><div dir=3D"ltr"><div>Paul C=
hambre</div><div><br></div><div>Senior Solutions Architect</div><div>(719) =
465-6097</div><div><br></div><div>Illumon - Big Value From Big Data</div></=
div></div>
</div>

--001a114d89ea6ab7a60541d2f1c4--


--===============8751521230047494990==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

------------------------------------------------------------------------------

--===============8751521230047494990==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
Ikvm-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ikvm-developers

--===============8751521230047494990==--