Re: IKVM.NET with Spring
Paul Chambre <[email protected]> Tue, 22 Nov 2016 06:43:53 -0700
| Newsgroups | gmane.comp.java.ikvm.devel |
|---|---|
| Message-ID | <CAJwVo5EjZgNvuBQbK4vqH7kSMF9XTy8AySvHPvG7SU2hpAJ46Q@mail.gmail.com> |
--===============5511445607236646247== Content-Type: multipart/alternative; boundary=94eb2c083c889958c00541e3f6df --94eb2c083c889958c00541e3f6df Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable This isn't for use at the client side. This is to upload classes from the client to the server to use at the server side... The server is, and will always be, a Java process. On Tue, Nov 22, 2016 at 2:25 AM, Volker Berlin <[email protected]> wrote: > Hi Paul, > > What do you want do? There does not exists Java classes in the .NET world= . > Your Java classes was compiled to .NET IL code. > > Volker > > Am 21.11.2016 um 18:25 schrieb Paul Chambre: > > 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 wh= at > 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 whic= h >> 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 nu= mber 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, wher= eas >> 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(St= ring >> 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.getInputStream(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.SimpleMetadataRea >> derFactory.getMetadataReader(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.ConcurrentReferen >> ceCachingMetadataReaderFactory.getMetadataReader(Resource resource) in >> ConcurrentReferenceCachingMetadataReaderFactory.java:line 76\r\n at >> org.springframework.core.type.classreading.SimpleMetadataRea >> derFactory.getMetadataReader(String className) in >> SimpleMetadataReaderFactory.java:line 93\r\n at >> org.springframework.boot.autoconfigure.AutoConfigurationSort >> er.AutoConfigurationClasses..ctor(MetadataReaderFactory >> metadataReaderFactory, Collection classNames) in >> AutoConfigurationSorter.java:line 110\r\n at >> org.springframework.boot.autoconfigure.AutoConfigurationSort >> er.getInPriorityOrder(Collection classNames) in >> AutoConfigurationSorter.java:line 54\r\n at >> org.springframework.boot.autoconfigure.EnableAutoConfigurationImportSele= ctor.sort(List >> configurations) in EnableAutoConfigurationImportSelector.j >> >> ava:line 193\r\n at org.springframework.boot.autoc >> onfigure.EnableAutoConfigurationImportSelector. >> selectImports(AnnotationMetadata metadata) in >> EnableAutoConfigurationImportSelector.java:line 89\r\n at >> org.springframework.context.annotation.ConfigurationClassPar >> ser.processDeferredImportSelectors() in ConfigurationClassParser.java:li= ne >> 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.addBootC >> lassPathAssembly(Assembly.Load("OurLargeAssembly"));=E2=80=9D. We are no= t 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 caus= ed an ikvmc crash: >> >> >> >> *warning IKVMC0100: Class "org.jboss.netty.bootstrap.ServerBootstrap" no= t >> found* >> >> *warning IKVMC0100: Class >> "org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory" not >> found* >> >> *warning IKVMC0100: Class "org.jboss.netty.channel.group.ChannelGroup" >> not 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 >> THIS 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, ImageFileMachi= ne >> imageFileMachine, ResourceSection resources, Int32 entryPointToken, Stre= am >> stream)* >> >> * at IKVM.Reflection.Writer.ModuleWriter.WriteModule(StrongNameKeyPair >> keyPair, Byte[] publicKey, ModuleBuilder moduleBuilder, PEFileKinds >> fileKind, PortableExecutableKinds portableExecutableKind, ImageFileMachi= ne >> imageFileMachine, ResourceSection resources, Int32 entryPointToken, Stre= am >> 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 <%2B1%20212%20667%201381> Mobile: +1 646 920 961= 7 >> <%2B1%20646%20920%209617> >> >> 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. I= f >> 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 pa= rt >> 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 t= he >> individual sender, except where the message states otherwise and the sen= der >> is authorized to state the views of such entity. Unless otherwise stated= , >> any pricing information in this message is indicative only, is subject t= o >> 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 > > -- > Paul Chambre > Senior Solutions Architect > (719) 465-6097 > Illumon - Big Value From Big Data > > > ------------------------------------------------------------ > ------------------ > > _______________________________________________ > 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 --94eb2c083c889958c00541e3f6df Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable <div dir=3D"ltr">This isn't for use at the client side. This is to uplo= ad classes from the client to the server to use at the server side... The s= erver is, and will always be, a Java process.</div><div class=3D"gmail_extr= a"><br><div class=3D"gmail_quote">On Tue, Nov 22, 2016 at 2:25 AM, Volker B= erlin <span dir=3D"ltr"><<a href=3D"mailto:[email protected]" targ= et=3D"_blank">[email protected]</a>></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>Hi Paul,</p> <p>What do you want do? There does not exists Java classes in the .NET world. Your Java classes was compiled to .NET IL code.</p><span = class=3D"HOEnZb"><font color=3D"#888888"> <p>Volker<br> </p></font></span><div><div class=3D"h5"> <br> <div class=3D"m_-944067022458315276moz-cite-prefix">Am 21.11.2016 um 18= :25 schrieb Paul Chambre:<br> </div> <blockquote type=3D"cite"> =20 <div dir=3D"ltr"> <div>Hi Volker,</div> <div><br> </div> <div>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. </div> <div><br> </div> <div>This is how we are loading class definitions for packaging and push:</div> <div><br> </div> <pre style=3D"color:rgb(0,0,0);font-family:"courier new";= font-size:9pt;background-color:rgb(255,255,255)">InputStream <span style=3D= "background-color:rgb(255,228,255)">inStream</span> =3D classLoader.<wbr>ge= tResourceAsStream(path);</pre> <div><br> </div> <div>Am I correct in understanding that we'll need to use a mor= e generic 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:"courier new";= font-size:9pt;background-color:rgb(255,255,255)"></pre> <pre style=3D"color:rgb(0,0,0);font-family:"courier new";= font-size:9pt;background-color:rgb(255,255,255)"></pre> </div> <div class=3D"gmail_extra"><br> <div class=3D"gmail_quote">On Mon, Nov 21, 2016 at 5:06 AM, Volker Berlin <span dir=3D"ltr"><<a href=3D"mailto:vberlin@inetsoftwa= re.de" target=3D"_blank">[email protected]</a>></span> wrote:<br> <blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;bord= er-left:1px #ccc solid;padding-left:1ex"> <div text=3D"#000000" bgcolor=3D"#FFFFFF"> <p>It look like that your framework try to access the stream of com.datastax.driver.core.Clust<wbr>er$Builder.cla= ss. 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"m_-944067022458315276h5"><br> <br> <br> <div class=3D"m_-944067022458315276m_5024037736762453314m= oz-cite-prefix">Am 18.11.2016 um 17:58 schrieb <a class=3D"m_-944067022458= 315276m_5024037736762453314moz-txt-link-abbreviated" href=3D"mailto:Pascal.= [email protected]" target=3D"_blank">[email protected]</a>:<br> </div> </div> </div> <blockquote type=3D"cite"> <div> <div class=3D"m_-944067022458315276h5"> <div class=3D"m_-944067022458315276m_502403773676245331= 4WordSection1"> <p class=3D"MsoNormal">Hi folks,</p> <p class=3D"MsoNormal">=C2=A0</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.</p> <p class=3D"MsoNormal">=C2=A0</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:</p> <p class=3D"MsoNormal">=C2=A0</p> <p class=3D"MsoNormal" style=3D"text-autospace:none">= <span style=3D"font-size:9.0pt;font-family:Consolas;color:#1e1e1e;backgroun= d:white">"ClassNotFoundException: com.datastax.driver.core.Clust<wbr>er$Builder\r\n= =C2=A0=C2=A0 at IKVM.Internal.ClassLoaderWrapp<wbr>er.LoadClas= s(String name, LoadMode mode)\r\n=C2=A0=C2=A0 at IKVM.Inte= rnal.ClassLoaderWrapp<wbr>er.LoadClassByDottedName(<wbr>String name)\r\n=C2=A0=C2=A0 at IKVM.Internal.CompiledTy= peWrap<wbr>per.get_InnerClasses()\r\n=C2=A0=C2=A0 at IKVM.StubGen.StubGenerator.Wri<wbr>teClass(Str= eam stream, TypeWrapper tw, Boolean includeNonPublicInterfaces, Boolean includeNonPublicMembers, Boolean includeSerialVersionUID, Boolean includeParameterNames)\r\n=C2=A0=C2=A0 at IKVM.In= ternal.VirtualFileSyste<wbr>m.VfsAssemblyClass.Populate()\<wbr>r\n=C2=A0=C2= =A0 at IKVM.Internal.VirtualFileSyste<wbr>m.VfsAssemb= lyClass.Open()\r\n=C2=A0<wbr>=C2=A0 at IKVM.Internal.VirtualFileSyste<wbr>m.Open(Stri= ng name, FileMode fileMode, FileAccess fileAccess)\r\n=C2=A0=C2=A0 at Java_java_io_FileDescriptor.op<wbr>en(String name, FileMode fileMode, FileAccess fileAccess)\r\n=C2=A0=C2=A0 at java.io.FileDescriptor.open(St<wbr>ring , FileMode , FileAccess )\r\n=C2=A0=C2=A0 at java.io.FileDescriptor.open(St<wbr>ring , Int32 , Int32 )\r\n=C2=A0=C2=A0 at java.io.FileDescriptor.openRea<wbr>dOnly(String )\r\n=C2=A0=C2=A0 at Ja</span></p> <p class=3D"MsoNormal" style=3D"text-autospace:none">= <span style=3D"font-size:9.0pt;font-family:Consolas;color:#1e1e1e;backgroun= d:white">va_java_io_FileInputStream.ope<wbr>n0(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= (S<wbr>tring )\r\n=C2=A0=C2=A0 at java.io.FileInputStream..cto= r(<wbr>File file)\r\n=C2=A0=C2=A0 at java.util.zip.ClassStubZ= ipEntr<wbr>y.getInputStream()\r\n=C2=A0=C2=A0 at java.util.zip.ZipFile.getInput<wbr>Stream(ZipE= ntry entry)\r\n=C2=A0=C2=A0 at java.util.jar.JarFile.g= etInput<wbr>Stream(ZipEntry ze)\r\n=C2=A0=C2=A0 at sun.net.www.protocol.jar.J= arUR<wbr>LConnection.getInputStream()\<wbr>r\n=C2=A0=C2=A0 at java.net.URLClassLoader.getRes<wbr>ourceAsStre= am(String name)\r\n=C2=A0=C2=A0 at <a href=3D"http://org.sp= ringframework.core.io" target=3D"_blank">org.springframework.core.io</a>.Cl= <wbr>assPathResource.getInputStream<wbr>() in ClassPathResource.java:line 166\r\n=C2=A0=C2= =A0 at org.springframework.core.type.<wbr>classreading.S= impleMetadataRea<wbr>der..ctor(Resource resource, ClassLoader classLoader) in SimpleMetadataReader.java:line 50\r\n=C2=A0=C2=A0= at org.springframework.core.type.<wbr>classreading.S= impleMetadataRea<wbr>derFactory.getMetadataReader(<wbr>Resource resource) in SimpleMetadataReaderFactory.ja<wbr>v= a:line 98\r\n=C2=A0=C2=A0 at org.springframework.boot.ty= pe.<wbr>classreading.Concurre</span></p> <p class=3D"MsoNormal" style=3D"text-autospace:none">= <span style=3D"font-size:9.0pt;font-family:Consolas;color:#1e1e1e;backgroun= d:white">ntReferenceCachingMetadataRead<wbr>erFactory.createMetadataReader<= wbr>(Resource resource) in ConcurrentReferenceCachingMeta<wbr>d= ataReaderFactory.java:line 89\r\n=C2=A0=C2=A0 at org.springframework.boot.type.<wbr>classreading.C= oncurrentReferen<wbr>ceCachingMetadataReaderFactory<wbr>.getMetadataReader(= Resource resource) in ConcurrentReferenceCachingMeta<wbr>d= ataReaderFactory.java:line 76\r\n=C2=A0=C2=A0 at org.springframework.core.type.<wbr>classreading.S= impleMetadataRea<wbr>derFactory.getMetadataReader(<wbr>String className) in SimpleMetadataReaderFactory.ja<wbr>= va:line 93\r\n=C2=A0=C2=A0 at org.springframework.boot.autoc<wbr>onfigure.AutoC= onfigurationSort<wbr>er.AutoConfigurationClasses..c<wbr>tor(MetadataReaderF= actory metadataReaderFactory, Collection classNames) in AutoConfigurationSorter.java:l<wbr>ine 110\r\n=C2=A0=C2=A0 at org.springframework.boot.autoc<wbr>onfigure.AutoC= onfigurationSort<wbr>er.getInPriorityOrder(<wbr>Collection classNames) in AutoConfigurationSorter.java:l<wbr= >ine 54\r\n=C2=A0=C2=A0 at org.springframework.boot.autoc<wbr>onfigure.Enabl= eAutoConfigurati<wbr>onImportSelector.sort(List configurations) in EnableAutoConfigurationImportS<wbr>elector.j</spa= n></p> <p class=3D"MsoNormal" style=3D"text-autospace:none">= <span style=3D"font-size:9.0pt;font-family:Consolas;color:#1e1e1e;backgroun= d:white">ava:line 193\r\n=C2=A0=C2=A0 at org.springframework.boot.autoc<wbr>onfigure.Enabl= eAutoConfigurati<wbr>onImportSelector.<wbr>selectImports(AnnotationMetada<w= br>ta metadata) in EnableAutoConfigurationImportS<wbr>e= lector.java:line 89\r\n=C2=A0=C2=A0 at <a href=3D"http://org.springframework.context.an"= >org.springframework.context.an</a><wbr>notation.ConfigurationClassPar<wbr>= ser.processDeferredImportSelec<wbr>tors() in ConfigurationClassParser.java:<wbr>line 481"</span></p> <p class=3D"MsoNormal">=C2=A0</p> <p class=3D"MsoNormal">=C2=A0</p> <p class=3D"MsoNormal">Here are the detail of our setup:</p> <p class=3D"MsoNormal">IKVM 8.1</p> <p class=3D"MsoNormal">Spring 4.3.2.RELEASE</p> <p class=3D"MsoNormal">Spring boot 1.4.0.RELEASE</p> <p class=3D"MsoNormal">Target .NET 4</p> <p class=3D"MsoNormal">=C2=A0</p> <p class=3D"MsoNormal">We are using the statement =E2=80=9Cikvm.runtime.Startup.addBootC<wbr>lassPath= Assembly(Assembly.<wbr>Load("OurLargeAssembly"));=E2=80=9D. We are not using any =E2=80=93classloader argument = in the args of ikvmc.</p> <p class=3D"MsoNormal">=C2=A0</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:</p= > <p class=3D"MsoNormal">=C2=A0</p> <p class=3D"MsoNormal"><i>warning IKVMC0100: Class "org.jboss.netty.bootstrap.Ser<wbr>verBootst= rap" not found</i></p> <p class=3D"MsoNormal"><i>warning IKVMC0100: Class "org.jboss.netty.channel.socke<wbr>t.nio.Nio= ServerSocketChannelFa<wbr>ctory" not found</i></p> <p class=3D"MsoNormal"><i>warning IKVMC0100: Class "org.jboss.netty.channel.group<wbr>.ChannelG= roup" not found</i></p> <p class=3D"MsoNormal"><i>warning IKVMC0100: Class "org.jboss.netty.channel.group<wbr>.ChannelG= roupFuture" not found</i></p> <p class=3D"MsoNormal"><i>=C2=A0</i></p> <p class=3D"MsoNormal"><i>*** INTERNAL COMPILER ERROR ***</i></p> <p class=3D"MsoNormal"><i>=C2=A0</i></p> <p class=3D"MsoNormal"><i>PLEASE FILE A BUG REPORT FOR <a href=3D"http://IKVM.NET" target=3D"_blank"= >IKVM.NET</a> WHEN YOU SEE THIS MESSAGE</i></p> <p class=3D"MsoNormal"><i>=C2=A0</i></p> <p class=3D"MsoNormal"><i>ikvmc, Version=3D8.1.5717.0= , Culture=3Dneutral, PublicKeyToken=3D13235d27fcbff= f5<wbr>8</i></p> <p class=3D"MsoNormal"><i>C:\Windows\Microsoft.NET\Fr= ame<wbr>work64\v2.0.50727\</i></p> <p class=3D"MsoNormal"><i>2.0.50727.5485 64-bit</i></= p> <p class=3D"MsoNormal"><i>=C2=A0</i></p> <p class=3D"MsoNormal"><i>System.AccessViolationExcep= tio<wbr>n: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.</i></p> <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at IKVM.Reflection.Impl.ISymUnman<wbr>agedWriter2.Cl= oseMethod()</i></p> <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at IKVM.Reflection.Impl.PdbWriter<wbr>.Close()</i></= p> <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at IKVM.Reflection.Writer.ModuleW<wbr>riter.WriteMod= uleImpl(StrongNa<wbr>meKeyPair keyPair, Byte[] publicKey, ModuleBuilder moduleBuilder, PEFileKinds fileKind, PortableExecutableKinds portableExecutableKind, ImageFileMachine imageFileMachine, ResourceSection resources, Int32 entryPointToken, Stream stream)</i></p> <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at IKVM.Reflection.Writer.ModuleW<wbr>riter.WriteMod= ule(StrongNameKe<wbr>yPair keyPair, Byte[] publicKey, ModuleBuilder moduleBuilder, PEFileKinds fileKind, PortableExecutableKinds portableExecutableKind, ImageFileMachine imageFileMachine, ResourceSection resources, Int32 entryPointToken, Stream stream)</i></p> <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at IKVM.Reflection.Emit.AssemblyB<wbr>uilder.SaveImp= l(String assemblyFileName, Stream streamOrNull, PortableExecutableKinds portableExecutableKind, ImageFileMachine imageFileMachine)</i></p> <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at IKVM.Reflection.Emit.AssemblyB<wbr>uilder.Save(St= ring assemblyFileName, PortableExecutableKinds portableExecutableKind, ImageFileMachine imageFileMachine)</i></p> <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at IKVM.Intern= al.CompilerClassLoa<wbr>der.Save()</i></p> <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at IKVM.Intern= al.CompilerClassLoa<wbr>der.Compile(String runtimeAssembly, List`1 optionsList)</i></p> <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at IkvmcCompiler.Compile(String[] args)</i></p> <p class=3D"MsoNormal"><i>=C2=A0=C2=A0 at IkvmcCompiler.Main(String[] args)</i></p> <p class=3D"MsoNormal">=C2=A0</p> <p class=3D"MsoNormal">=C2=A0</p> <p class=3D"MsoNormal">Any help would be appreciated.</p> <p class=3D"MsoNormal">=C2=A0</p> <p class=3D"MsoNormal">=C2=A0</p> <p class=3D"MsoNormal"><b><span lang=3D"EN-GB" style= =3D"font-size:9.0pt;font-family:"Arial","sans-serif";co= lor:#333333">______________________________<wbr>___</span></b></p> <p class=3D"MsoNormal"><b><span lang=3D"EN-GB" style= =3D"font-size:9.0pt;font-family:"Arial","sans-serif";co= lor:#333333">Pascal Dufresne</span></b></p> <p class=3D"MsoNormal"><span lang=3D"EN-GB" style=3D"= font-size:8.0pt;font-family:"Arial","sans-serif";color:= #333333">Associate - 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" ta= rget=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.0= pt"></span></p> <p class=3D"MsoNormal"><span lang=3D"EN-GB" style=3D"= font-size:8.0pt;font-family:"Arial","sans-serif";color:= #333333">Email: </span><span lang=3D"EN-GB" style=3D"font-size:8.0pt;font-f= amily:"Arial","sans-serif";color:#cc0000"><a href=3D"ma= ilto:[email protected]" target=3D"_blank">[email protected]= om</a></span><span style=3D"font-size:8.0pt;color:#cc0000"></span></p> <p class=3D"MsoNormal"><span lang=3D"EN-GB" style=3D"= font-size:10.0pt;font-family:"Arial","sans-serif";color= :#cc0000">=C2=A0</span></p> <p class=3D"MsoNormal"><b><i><span lang=3D"EN-GB" sty= le=3D"font-size:8.0pt;font-family:"Arial","sans-serif";= color:#cc0000">Connecting Markets East & West</span></i></b></p> <p class=3D"MsoNormal"><span lang=3D"EN-GB" style=3D"= font-size:8.0pt;font-family:"Arial","sans-serif";color:= #cc0000"><a href=3D"http://www.nomura.com/" target=3D"_blank"><span style= =3D"color:#cc0000;text-decoration:none">www.nomura.com</span></a></span></p= > <p class=3D"MsoNormal">=C2=A0</p> </div> <br> <div><font face=3D"Arial" size=3D"2"><span class=3D"m_-= 944067022458315276m_5024037736762453314272370717-27032000">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 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_-944067022458315276m_5024037736762= 453314mimeAttachmentHeader"></fieldset> <br> </div> </div> <pre>------------------------------<wbr>-------------------= -----------<wbr>------------------ </pre> =20 <fieldset class=3D"m_-944067022458315276m_5024037736762453314mimeAtta= chmentHeader"></fieldset> =20 <pre>______________________________<wbr>_________________ Ikvm-developers mailing list <a class=3D"m_-944067022458315276m_5024037736762453314moz-txt-link-abbrevia= ted" href=3D"mailto:[email protected]" target=3D"_blank= ">[email protected]<wbr>rge.net</a> <a class=3D"m_-944067022458315276m_5024037736762453314moz-txt-link-freetext= " href=3D"https://lists.sourceforge.net/lists/listinfo/ikvm-developers" tar= get=3D"_blank">https://lists.sourceforge.net/<wbr>lists/listinfo/ikvm-devel= opers</a> </pre> </blockquote> =20 </div> ------------------------------<wbr>------------------------------<wbr>-----= ------------- ______________________________<wbr>_________________ Ikvm-developers mailing list <a href=3D"mailto:[email protected]" target=3D"_blank">= [email protected]<wbr>rge.net</a> <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> </blockquote></div> --=20 <div class=3D"m_-944067022458315276gmail_signature" data-smartmail=3D"gmail= _signature"><div dir=3D"ltr"><div>Paul Chambre</div><div> </div><div>Senior Solutions Architect</div><div><a href=3D"tel:%28719%29%20= 465-6097" target=3D"_blank" value=3D"+17194656097">(719) 465-6097</a></div>= <div> </div><div>Illumon - Big Value From Big Data</div></div></div> </div> </blockquote> </div></div></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> --94eb2c083c889958c00541e3f6df-- --===============5511445607236646247== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline ------------------------------------------------------------------------------ --===============5511445607236646247== 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 --===============5511445607236646247==--