Thread: [Ikvm-developers] Fails while creating DLL, and error on running
Brought to you by:
jfrijters
From: onelastbreath <fat...@gm...> - 2009-08-01 08:15:28
|
I m trying to convert a JAR file to DLL file to use it in .NET. So downloaded IKVM project and used IKVMC.EXE to convert Jar file to DLL; ikvmc -target:library mylib.jar While converting it failled; But it created DLL even give errors. Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in "com.verisign.epp.c odec.rcccontact.EPPContactAddRemove.equals(Ljava.lang.Object;)Z" ("org.apache.log4j.Logger") Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in "com.verisign.epp.c odec.rcccontact.EPPContactAddRemove.<clinit>()V" ("org.apache.log4j.Logger") Warning IKVMC0105: unable to compile class "com.verisign.epp.codec.rcccontact.EP PContactTst" (missing class "junit.framework.TestCase") Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in "com.verisign.epp.c odec.rccdomain.EPPDomainAddRemove.equals(Ljava.lang.Object;)Z" ("org.apache.log4j.Logger") Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in "com.verisign.epp.c odec.rccdomain.EPPDomainAddRemove.<clinit>()V" ("org.apache.log4j.Logger") And when i add DLL file as refecence to .NET,it seems working well,i m reaching and methods in dll and also i can view inside of DLL with Reflector.So everything look nice but when i run project in .NET it fails; java.lang.NoClassDefFoundError: com.verisign.epp.util.EPPCatFactory$DefaultFactory Could you pls help me on that converting that JAR file to DLL Regards. Fatih CEVIK fatihcewik[at]g m a i l[dot]c o m -- View this message in context: http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on-running-tp24767124p24767124.html Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. |
From: Volker B. <vol...@go...> - 2009-08-01 08:27:17
|
Hi, It look like that your jar file need also log4j. You can * compile both to one dll * compile first log4j and add it as reference * or compile both in one step to 2 different dlls Volker > -----Ursprungliche Nachricht----- > Von: onelastbreath [mailto:fat...@gm...] > Gesendet: Samstag, 1. August 2009 10:15 > An: ikv...@li... > Betreff: [Ikvm-developers] Fails while creating DLL, and > error on running > > > I m trying to convert a JAR file to DLL file to use it in .NET. > So downloaded IKVM project and used IKVMC.EXE to convert Jar > file to DLL; > > ikvmc -target:library mylib.jar > > While converting it failled; > > But it created DLL even give errors. > > Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in > "com.verisign.epp.c > odec.rcccontact.EPPContactAddRemove.equals(Ljava.lang.Object;)Z" > ("org.apache.log4j.Logger") > Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in > "com.verisign.epp.c > odec.rcccontact.EPPContactAddRemove.<clinit>()V" > ("org.apache.log4j.Logger") > Warning IKVMC0105: unable to compile class > "com.verisign.epp.codec.rcccontact.EP > PContactTst" > (missing class "junit.framework.TestCase") > Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in > "com.verisign.epp.c > odec.rccdomain.EPPDomainAddRemove.equals(Ljava.lang.Object;)Z" > ("org.apache.log4j.Logger") > Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in > "com.verisign.epp.c > odec.rccdomain.EPPDomainAddRemove.<clinit>()V" > ("org.apache.log4j.Logger") > > And when i add DLL file as refecence to .NET,it seems working well,i m > reaching and methods in dll and also i can view inside of DLL with > Reflector.So everything look nice but when i run project in > .NET it fails; > > java.lang.NoClassDefFoundError: > com.verisign.epp.util.EPPCatFactory$DefaultFactory > > Could you pls help me on that converting that JAR file to DLL > > Regards. > Fatih CEVIK > fatihcewik[at]g m a i l[dot]c o m > -- > View this message in context: > http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on > -running-tp24767124p24767124.html > Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. > > > -------------------------------------------------------------- > ---------------- > Let Crystal Reports handle the reporting - Free Crystal > Reports 2008 30-Day > trial. Simplify your report design, integration and > deployment - and focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Ikvm-developers mailing list > Ikv...@li... > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > |
From: onelastbreath <fat...@gm...> - 2009-08-01 08:57:12
|
First thansk for your answer Volker. But i am new on java things and also dont know much about IKVM just trying. So i didnt understand log4j anlso dont know how to both to one DLL i ddont know how to do these steps. * compile both to one dll * compile first log4j and add it as reference * or compile both in one step to 2 different dlls Could you please explain me a little. Regards Fatih CEVIK Volker Berlin wrote: > > Hi, > > It look like that your jar file need also log4j. You can > * compile both to one dll > * compile first log4j and add it as reference > * or compile both in one step to 2 different dlls > > Volker > >> -----Ursprungliche Nachricht----- >> Von: onelastbreath [mailto:fat...@gm...] >> Gesendet: Samstag, 1. August 2009 10:15 >> An: ikv...@li... >> Betreff: [Ikvm-developers] Fails while creating DLL, and >> error on running >> >> >> I m trying to convert a JAR file to DLL file to use it in .NET. >> So downloaded IKVM project and used IKVMC.EXE to convert Jar >> file to DLL; >> >> ikvmc -target:library mylib.jar >> >> While converting it failled; >> >> But it created DLL even give errors. >> >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in >> "com.verisign.epp.c >> odec.rcccontact.EPPContactAddRemove.equals(Ljava.lang.Object;)Z" >> ("org.apache.log4j.Logger") >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in >> "com.verisign.epp.c >> odec.rcccontact.EPPContactAddRemove.<clinit>()V" >> ("org.apache.log4j.Logger") >> Warning IKVMC0105: unable to compile class >> "com.verisign.epp.codec.rcccontact.EP >> PContactTst" >> (missing class "junit.framework.TestCase") >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in >> "com.verisign.epp.c >> odec.rccdomain.EPPDomainAddRemove.equals(Ljava.lang.Object;)Z" >> ("org.apache.log4j.Logger") >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in >> "com.verisign.epp.c >> odec.rccdomain.EPPDomainAddRemove.<clinit>()V" >> ("org.apache.log4j.Logger") >> >> And when i add DLL file as refecence to .NET,it seems working well,i m >> reaching and methods in dll and also i can view inside of DLL with >> Reflector.So everything look nice but when i run project in >> .NET it fails; >> >> java.lang.NoClassDefFoundError: >> com.verisign.epp.util.EPPCatFactory$DefaultFactory >> >> Could you pls help me on that converting that JAR file to DLL >> >> Regards. >> Fatih CEVIK >> fatihcewik[at]g m a i l[dot]c o m >> -- >> View this message in context: >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on >> -running-tp24767124p24767124.html >> Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. >> >> >> -------------------------------------------------------------- >> ---------------- >> Let Crystal Reports handle the reporting - Free Crystal >> Reports 2008 30-Day >> trial. Simplify your report design, integration and >> deployment - and focus on >> what you do best, core application coding. Discover what's new with >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> _______________________________________________ >> Ikvm-developers mailing list >> Ikv...@li... >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Ikvm-developers mailing list > Ikv...@li... > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > > -- View this message in context: http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on-running-tp24767124p24767384.html Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. |
From: Volker B. <vol...@go...> - 2009-08-01 15:07:37
|
Hi, log4j is well known open source Java library for logging. If you google then you find the download. But if it required for your project then it should already in the download of your project. If you have all needed jar files in one folder then you can call: ikvmc -target:library -recurse:*.jar -out:mylib.dll This will create one large dll of it. Volker > -----Ursprungliche Nachricht----- > Von: onelastbreath [mailto:fat...@gm...] > Gesendet: Samstag, 1. August 2009 10:58 > An: ikv...@li... > Betreff: Re: [Ikvm-developers] Fails while creating DLL, and > error on running > > > First thanks for your answer Volker. > But i am new on java things and also dont know much about > IKVM just trying. > So i didnt understand log4j > also dont know how to compile both to one DLL > > i dont know how to do these steps. > > * compile both to one dll > * compile first log4j and add it as reference > * or compile both in one step to 2 different dlls > > Could you please explain me a little. > > Regards > Fatih CEVIK > > > > Volker Berlin wrote: > > > > Hi, > > > > It look like that your jar file need also log4j. You can > > * compile both to one dll > > * compile first log4j and add it as reference > > * or compile both in one step to 2 different dlls > > > > Volker > > > >> -----Ursprungliche Nachricht----- > >> Von: onelastbreath [mailto:fat...@gm...] > >> Gesendet: Samstag, 1. August 2009 10:15 > >> An: ikv...@li... > >> Betreff: [Ikvm-developers] Fails while creating DLL, and > >> error on running > >> > >> > >> I m trying to convert a JAR file to DLL file to use it in .NET. > >> So downloaded IKVM project and used IKVMC.EXE to convert Jar > >> file to DLL; > >> > >> ikvmc -target:library mylib.jar > >> > >> While converting it failled; > >> > >> But it created DLL even give errors. > >> > >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in > >> "com.verisign.epp.c > >> odec.rcccontact.EPPContactAddRemove.equals(Ljava.lang.Object;)Z" > >> ("org.apache.log4j.Logger") > >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in > >> "com.verisign.epp.c > >> odec.rcccontact.EPPContactAddRemove.<clinit>()V" > >> ("org.apache.log4j.Logger") > >> Warning IKVMC0105: unable to compile class > >> "com.verisign.epp.codec.rcccontact.EP > >> PContactTst" > >> (missing class "junit.framework.TestCase") > >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in > >> "com.verisign.epp.c > >> odec.rccdomain.EPPDomainAddRemove.equals(Ljava.lang.Object;)Z" > >> ("org.apache.log4j.Logger") > >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in > >> "com.verisign.epp.c > >> odec.rccdomain.EPPDomainAddRemove.<clinit>()V" > >> ("org.apache.log4j.Logger") > >> > >> And when i add DLL file as refecence to .NET,it seems > working well,i m > >> reaching and methods in dll and also i can view inside of DLL with > >> Reflector.So everything look nice but when i run project in > >> .NET it fails; > >> > >> java.lang.NoClassDefFoundError: > >> com.verisign.epp.util.EPPCatFactory$DefaultFactory > >> > >> Could you pls help me on that converting that JAR file to DLL > >> > >> Regards. > >> Fatih CEVIK > >> fatihcewik[at]g m a i l[dot]c o m > >> -- > >> View this message in context: > >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on > >> -running-tp24767124p24767124.html > >> Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. > >> > >> > >> -------------------------------------------------------------- > >> ---------------- > >> Let Crystal Reports handle the reporting - Free Crystal > >> Reports 2008 30-Day > >> trial. Simplify your report design, integration and > >> deployment - and focus on > >> what you do best, core application coding. Discover what's > new with > >> Crystal Reports now. http://p.sf.net/sfu/bobj-july > >> _______________________________________________ > >> Ikvm-developers mailing list > >> Ikv...@li... > >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers > >> > > > > > > > -------------------------------------------------------------- > ---------------- > > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > > 30-Day > > trial. Simplify your report design, integration and > deployment - and focus > > on > > what you do best, core application coding. Discover what's new with > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > _______________________________________________ > > Ikvm-developers mailing list > > Ikv...@li... > > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > > > > > > -- > View this message in context: > http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on > -running-tp24767124p24767384.html > Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. > > > -------------------------------------------------------------- > ---------------- > Let Crystal Reports handle the reporting - Free Crystal > Reports 2008 30-Day > trial. Simplify your report design, integration and > deployment - and focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Ikvm-developers mailing list > Ikv...@li... > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > |
From: onelastbreath <fat...@gm...> - 2009-08-01 18:21:07
|
Ok i placed all my jar files in BIN directory of IKVM and also placed log4j.jar file that directory and then runned; C:\ikvm\bin>ikvmc -target:library -recurse:*.jar -out:verisign.dll But failed Error: invalid path: *.jar Fatih CEVIK Volker Berlin wrote: > > Hi, > > log4j is well known open source Java library for logging. If you google > then you find the download. But if it required > for your project then it should already in the download of your project. > > If you have all needed jar files in one folder then you can call: > ikvmc -target:library -recurse:*.jar -out:mylib.dll > > This will create one large dll of it. > > Volker > >> -----Ursprungliche Nachricht----- >> Von: onelastbreath [mailto:fat...@gm...] >> Gesendet: Samstag, 1. August 2009 10:58 >> An: ikv...@li... >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and >> error on running >> >> >> First thanks for your answer Volker. >> But i am new on java things and also dont know much about >> IKVM just trying. >> So i didnt understand log4j >> also dont know how to compile both to one DLL >> >> i dont know how to do these steps. >> >> * compile both to one dll >> * compile first log4j and add it as reference >> * or compile both in one step to 2 different dlls >> >> Could you please explain me a little. >> >> Regards >> Fatih CEVIK >> >> >> >> Volker Berlin wrote: >> > >> > Hi, >> > >> > It look like that your jar file need also log4j. You can >> > * compile both to one dll >> > * compile first log4j and add it as reference >> > * or compile both in one step to 2 different dlls >> > >> > Volker >> > >> >> -----Ursprungliche Nachricht----- >> >> Von: onelastbreath [mailto:fat...@gm...] >> >> Gesendet: Samstag, 1. August 2009 10:15 >> >> An: ikv...@li... >> >> Betreff: [Ikvm-developers] Fails while creating DLL, and >> >> error on running >> >> >> >> >> >> I m trying to convert a JAR file to DLL file to use it in .NET. >> >> So downloaded IKVM project and used IKVMC.EXE to convert Jar >> >> file to DLL; >> >> >> >> ikvmc -target:library mylib.jar >> >> >> >> While converting it failled; >> >> >> >> But it created DLL even give errors. >> >> >> >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in >> >> "com.verisign.epp.c >> >> odec.rcccontact.EPPContactAddRemove.equals(Ljava.lang.Object;)Z" >> >> ("org.apache.log4j.Logger") >> >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in >> >> "com.verisign.epp.c >> >> odec.rcccontact.EPPContactAddRemove.<clinit>()V" >> >> ("org.apache.log4j.Logger") >> >> Warning IKVMC0105: unable to compile class >> >> "com.verisign.epp.codec.rcccontact.EP >> >> PContactTst" >> >> (missing class "junit.framework.TestCase") >> >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in >> >> "com.verisign.epp.c >> >> odec.rccdomain.EPPDomainAddRemove.equals(Ljava.lang.Object;)Z" >> >> ("org.apache.log4j.Logger") >> >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in >> >> "com.verisign.epp.c >> >> odec.rccdomain.EPPDomainAddRemove.<clinit>()V" >> >> ("org.apache.log4j.Logger") >> >> >> >> And when i add DLL file as refecence to .NET,it seems >> working well,i m >> >> reaching and methods in dll and also i can view inside of DLL with >> >> Reflector.So everything look nice but when i run project in >> >> .NET it fails; >> >> >> >> java.lang.NoClassDefFoundError: >> >> com.verisign.epp.util.EPPCatFactory$DefaultFactory >> >> >> >> Could you pls help me on that converting that JAR file to DLL >> >> >> >> Regards. >> >> Fatih CEVIK >> >> fatihcewik[at]g m a i l[dot]c o m >> >> -- >> >> View this message in context: >> >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on >> >> -running-tp24767124p24767124.html >> >> Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. >> >> >> >> >> >> -------------------------------------------------------------- >> >> ---------------- >> >> Let Crystal Reports handle the reporting - Free Crystal >> >> Reports 2008 30-Day >> >> trial. Simplify your report design, integration and >> >> deployment - and focus on >> >> what you do best, core application coding. Discover what's >> new with >> >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> >> _______________________________________________ >> >> Ikvm-developers mailing list >> >> Ikv...@li... >> >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> >> >> > >> > >> > >> -------------------------------------------------------------- >> ---------------- >> > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> > 30-Day >> > trial. Simplify your report design, integration and >> deployment - and focus >> > on >> > what you do best, core application coding. Discover what's new with >> > Crystal Reports now. http://p.sf.net/sfu/bobj-july >> > _______________________________________________ >> > Ikvm-developers mailing list >> > Ikv...@li... >> > https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> > >> > >> >> -- >> View this message in context: >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on >> -running-tp24767124p24767384.html >> Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. >> >> >> -------------------------------------------------------------- >> ---------------- >> Let Crystal Reports handle the reporting - Free Crystal >> Reports 2008 30-Day >> trial. Simplify your report design, integration and >> deployment - and focus on >> what you do best, core application coding. Discover what's new with >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> _______________________________________________ >> Ikvm-developers mailing list >> Ikv...@li... >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Ikvm-developers mailing list > Ikv...@li... > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > > -- View this message in context: http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on-running-tp24767124p24771428.html Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. |
From: Volker B. <vol...@go...> - 2009-08-01 18:28:29
|
Hi, I think recurse does not accept a relative path. That you need to set an absolute path like: C:\ikvm\bin>ikvmc -target:library -recurse:C:\ikvm\bin\*.jar -out:verisign.dll Volker > -----Ursprungliche Nachricht----- > Von: onelastbreath [mailto:fat...@gm...] > Gesendet: Samstag, 1. August 2009 20:21 > An: ikv...@li... > Betreff: Re: [Ikvm-developers] Fails while creating DLL, and > error on running > > > Ok i placed all my jar files in BIN directory of IKVM and also placed > log4j.jar file that directory > and then runned; > > C:\ikvm\bin>ikvmc -target:library -recurse:*.jar -out:verisign.dll > > But failed > Error: invalid path: *.jar > > Fatih CEVIK > > > > Volker Berlin wrote: > > > > Hi, > > > > log4j is well known open source Java library for logging. > If you google > > then you find the download. But if it required > > for your project then it should already in the download of > your project. > > > > If you have all needed jar files in one folder then you can call: > > ikvmc -target:library -recurse:*.jar -out:mylib.dll > > > > This will create one large dll of it. > > > > Volker > > > >> -----Ursprungliche Nachricht----- > >> Von: onelastbreath [mailto:fat...@gm...] > >> Gesendet: Samstag, 1. August 2009 10:58 > >> An: ikv...@li... > >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and > >> error on running > >> > >> > >> First thanks for your answer Volker. > >> But i am new on java things and also dont know much about > >> IKVM just trying. > >> So i didnt understand log4j > >> also dont know how to compile both to one DLL > >> > >> i dont know how to do these steps. > >> > >> * compile both to one dll > >> * compile first log4j and add it as reference > >> * or compile both in one step to 2 different dlls > >> > >> Could you please explain me a little. > >> > >> Regards > >> Fatih CEVIK > >> > >> > >> > >> Volker Berlin wrote: > >> > > >> > Hi, > >> > > >> > It look like that your jar file need also log4j. You can > >> > * compile both to one dll > >> > * compile first log4j and add it as reference > >> > * or compile both in one step to 2 different dlls > >> > > >> > Volker > >> > > >> >> -----Ursprungliche Nachricht----- > >> >> Von: onelastbreath [mailto:fat...@gm...] > >> >> Gesendet: Samstag, 1. August 2009 10:15 > >> >> An: ikv...@li... > >> >> Betreff: [Ikvm-developers] Fails while creating DLL, and > >> >> error on running > >> >> > >> >> > >> >> I m trying to convert a JAR file to DLL file to use it in .NET. > >> >> So downloaded IKVM project and used IKVMC.EXE to convert Jar > >> >> file to DLL; > >> >> > >> >> ikvmc -target:library mylib.jar > >> >> > >> >> While converting it failled; > >> >> > >> >> But it created DLL even give errors. > >> >> > >> >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in > >> >> "com.verisign.epp.c > >> >> odec.rcccontact.EPPContactAddRemove.equals(Ljava.lang.Object;)Z" > >> >> ("org.apache.log4j.Logger") > >> >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in > >> >> "com.verisign.epp.c > >> >> odec.rcccontact.EPPContactAddRemove.<clinit>()V" > >> >> ("org.apache.log4j.Logger") > >> >> Warning IKVMC0105: unable to compile class > >> >> "com.verisign.epp.codec.rcccontact.EP > >> >> PContactTst" > >> >> (missing class "junit.framework.TestCase") > >> >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in > >> >> "com.verisign.epp.c > >> >> odec.rccdomain.EPPDomainAddRemove.equals(Ljava.lang.Object;)Z" > >> >> ("org.apache.log4j.Logger") > >> >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in > >> >> "com.verisign.epp.c > >> >> odec.rccdomain.EPPDomainAddRemove.<clinit>()V" > >> >> ("org.apache.log4j.Logger") > >> >> > >> >> And when i add DLL file as refecence to .NET,it seems > >> working well,i m > >> >> reaching and methods in dll and also i can view inside > of DLL with > >> >> Reflector.So everything look nice but when i run project in > >> >> .NET it fails; > >> >> > >> >> java.lang.NoClassDefFoundError: > >> >> com.verisign.epp.util.EPPCatFactory$DefaultFactory > >> >> > >> >> Could you pls help me on that converting that JAR file to DLL > >> >> > >> >> Regards. > >> >> Fatih CEVIK > >> >> fatihcewik[at]g m a i l[dot]c o m > >> >> -- > >> >> View this message in context: > >> >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on > >> >> -running-tp24767124p24767124.html > >> >> Sent from the IKVM .NET - Dev mailing list archive at > Nabble.com. > >> >> > >> >> > >> >> -------------------------------------------------------------- > >> >> ---------------- > >> >> Let Crystal Reports handle the reporting - Free Crystal > >> >> Reports 2008 30-Day > >> >> trial. Simplify your report design, integration and > >> >> deployment - and focus on > >> >> what you do best, core application coding. Discover what's > >> new with > >> >> Crystal Reports now. http://p.sf.net/sfu/bobj-july > >> >> _______________________________________________ > >> >> Ikvm-developers mailing list > >> >> Ikv...@li... > >> >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers > >> >> > >> > > >> > > >> > > >> -------------------------------------------------------------- > >> ---------------- > >> > Let Crystal Reports handle the reporting - Free Crystal > Reports 2008 > >> > 30-Day > >> > trial. Simplify your report design, integration and > >> deployment - and focus > >> > on > >> > what you do best, core application coding. Discover > what's new with > >> > Crystal Reports now. http://p.sf.net/sfu/bobj-july > >> > _______________________________________________ > >> > Ikvm-developers mailing list > >> > Ikv...@li... > >> > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > >> > > >> > > >> > >> -- > >> View this message in context: > >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on > >> -running-tp24767124p24767384.html > >> Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. > >> > >> > >> -------------------------------------------------------------- > >> ---------------- > >> Let Crystal Reports handle the reporting - Free Crystal > >> Reports 2008 30-Day > >> trial. Simplify your report design, integration and > >> deployment - and focus on > >> what you do best, core application coding. Discover what's > new with > >> Crystal Reports now. http://p.sf.net/sfu/bobj-july > >> _______________________________________________ > >> Ikvm-developers mailing list > >> Ikv...@li... > >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers > >> > > > > > > > -------------------------------------------------------------- > ---------------- > > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > > 30-Day > > trial. Simplify your report design, integration and > deployment - and focus > > on > > what you do best, core application coding. Discover what's new with > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > _______________________________________________ > > Ikvm-developers mailing list > > Ikv...@li... > > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > > > > > > -- > View this message in context: > http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on > -running-tp24767124p24771428.html > Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. > > > -------------------------------------------------------------- > ---------------- > Let Crystal Reports handle the reporting - Free Crystal > Reports 2008 30-Day > trial. Simplify your report design, integration and > deployment - and focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Ikvm-developers mailing list > Ikv...@li... > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > |
From: onelastbreath <fat...@gm...> - 2009-08-01 19:17:32
|
Thanks for your fast answers Volker, I am trying to convert VERISIGN EPPSDK jar files to a DLL file. What you think about it? I trid what you said and again it gave lots of warnings while creating DLL. And after caretion i added it as reference to .NET again failed EPPSession() Unable to get connection instance from factory: com.verisign.epp.transport.EPPConException: EnvException : EPP Environment Exception : Unable to Extract Environmental variable EPP.ClientSocketName Volker Berlin wrote: > > Hi, > > I think recurse does not accept a relative path. That you need to set an > absolute path like: > > C:\ikvm\bin>ikvmc -target:library -recurse:C:\ikvm\bin\*.jar > -out:verisign.dll > > Volker > >> -----Ursprungliche Nachricht----- >> Von: onelastbreath [mailto:fat...@gm...] >> Gesendet: Samstag, 1. August 2009 20:21 >> An: ikv...@li... >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and >> error on running >> >> >> Ok i placed all my jar files in BIN directory of IKVM and also placed >> log4j.jar file that directory >> and then runned; >> >> C:\ikvm\bin>ikvmc -target:library -recurse:*.jar -out:verisign.dll >> >> But failed >> Error: invalid path: *.jar >> >> Fatih CEVIK >> >> >> >> Volker Berlin wrote: >> > >> > Hi, >> > >> > log4j is well known open source Java library for logging. >> If you google >> > then you find the download. But if it required >> > for your project then it should already in the download of >> your project. >> > >> > If you have all needed jar files in one folder then you can call: >> > ikvmc -target:library -recurse:*.jar -out:mylib.dll >> > >> > This will create one large dll of it. >> > >> > Volker >> > >> >> -----Ursprungliche Nachricht----- >> >> Von: onelastbreath [mailto:fat...@gm...] >> >> Gesendet: Samstag, 1. August 2009 10:58 >> >> An: ikv...@li... >> >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and >> >> error on running >> >> >> >> >> >> First thanks for your answer Volker. >> >> But i am new on java things and also dont know much about >> >> IKVM just trying. >> >> So i didnt understand log4j >> >> also dont know how to compile both to one DLL >> >> >> >> i dont know how to do these steps. >> >> >> >> * compile both to one dll >> >> * compile first log4j and add it as reference >> >> * or compile both in one step to 2 different dlls >> >> >> >> Could you please explain me a little. >> >> >> >> Regards >> >> Fatih CEVIK >> >> >> >> >> >> >> >> Volker Berlin wrote: >> >> > >> >> > Hi, >> >> > >> >> > It look like that your jar file need also log4j. You can >> >> > * compile both to one dll >> >> > * compile first log4j and add it as reference >> >> > * or compile both in one step to 2 different dlls >> >> > >> >> > Volker >> >> > >> >> >> -----Ursprungliche Nachricht----- >> >> >> Von: onelastbreath [mailto:fat...@gm...] >> >> >> Gesendet: Samstag, 1. August 2009 10:15 >> >> >> An: ikv...@li... >> >> >> Betreff: [Ikvm-developers] Fails while creating DLL, and >> >> >> error on running >> >> >> >> >> >> >> >> >> I m trying to convert a JAR file to DLL file to use it in .NET. >> >> >> So downloaded IKVM project and used IKVMC.EXE to convert Jar >> >> >> file to DLL; >> >> >> >> >> >> ikvmc -target:library mylib.jar >> >> >> >> >> >> While converting it failled; >> >> >> >> >> >> But it created DLL even give errors. >> >> >> >> >> >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in >> >> >> "com.verisign.epp.c >> >> >> odec.rcccontact.EPPContactAddRemove.equals(Ljava.lang.Object;)Z" >> >> >> ("org.apache.log4j.Logger") >> >> >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in >> >> >> "com.verisign.epp.c >> >> >> odec.rcccontact.EPPContactAddRemove.<clinit>()V" >> >> >> ("org.apache.log4j.Logger") >> >> >> Warning IKVMC0105: unable to compile class >> >> >> "com.verisign.epp.codec.rcccontact.EP >> >> >> PContactTst" >> >> >> (missing class "junit.framework.TestCase") >> >> >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in >> >> >> "com.verisign.epp.c >> >> >> odec.rccdomain.EPPDomainAddRemove.equals(Ljava.lang.Object;)Z" >> >> >> ("org.apache.log4j.Logger") >> >> >> Warning IKVMC0111: emitted java.lang.NoClassDefFoundError in >> >> >> "com.verisign.epp.c >> >> >> odec.rccdomain.EPPDomainAddRemove.<clinit>()V" >> >> >> ("org.apache.log4j.Logger") >> >> >> >> >> >> And when i add DLL file as refecence to .NET,it seems >> >> working well,i m >> >> >> reaching and methods in dll and also i can view inside >> of DLL with >> >> >> Reflector.So everything look nice but when i run project in >> >> >> .NET it fails; >> >> >> >> >> >> java.lang.NoClassDefFoundError: >> >> >> com.verisign.epp.util.EPPCatFactory$DefaultFactory >> >> >> >> >> >> Could you pls help me on that converting that JAR file to DLL >> >> >> >> >> >> Regards. >> >> >> Fatih CEVIK >> >> >> fatihcewik[at]g m a i l[dot]c o m >> >> >> -- >> >> >> View this message in context: >> >> >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on >> >> >> -running-tp24767124p24767124.html >> >> >> Sent from the IKVM .NET - Dev mailing list archive at >> Nabble.com. >> >> >> >> >> >> >> >> >> -------------------------------------------------------------- >> >> >> ---------------- >> >> >> Let Crystal Reports handle the reporting - Free Crystal >> >> >> Reports 2008 30-Day >> >> >> trial. Simplify your report design, integration and >> >> >> deployment - and focus on >> >> >> what you do best, core application coding. Discover what's >> >> new with >> >> >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> >> >> _______________________________________________ >> >> >> Ikvm-developers mailing list >> >> >> Ikv...@li... >> >> >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> >> >> >> >> > >> >> > >> >> > >> >> -------------------------------------------------------------- >> >> ---------------- >> >> > Let Crystal Reports handle the reporting - Free Crystal >> Reports 2008 >> >> > 30-Day >> >> > trial. Simplify your report design, integration and >> >> deployment - and focus >> >> > on >> >> > what you do best, core application coding. Discover >> what's new with >> >> > Crystal Reports now. http://p.sf.net/sfu/bobj-july >> >> > _______________________________________________ >> >> > Ikvm-developers mailing list >> >> > Ikv...@li... >> >> > https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> >> > >> >> > >> >> >> >> -- >> >> View this message in context: >> >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on >> >> -running-tp24767124p24767384.html >> >> Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. >> >> >> >> >> >> -------------------------------------------------------------- >> >> ---------------- >> >> Let Crystal Reports handle the reporting - Free Crystal >> >> Reports 2008 30-Day >> >> trial. Simplify your report design, integration and >> >> deployment - and focus on >> >> what you do best, core application coding. Discover what's >> new with >> >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> >> _______________________________________________ >> >> Ikvm-developers mailing list >> >> Ikv...@li... >> >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> >> >> > >> > >> > >> -------------------------------------------------------------- >> ---------------- >> > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> > 30-Day >> > trial. Simplify your report design, integration and >> deployment - and focus >> > on >> > what you do best, core application coding. Discover what's new with >> > Crystal Reports now. http://p.sf.net/sfu/bobj-july >> > _______________________________________________ >> > Ikvm-developers mailing list >> > Ikv...@li... >> > https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> > >> > >> >> -- >> View this message in context: >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on >> -running-tp24767124p24771428.html >> Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. >> >> >> -------------------------------------------------------------- >> ---------------- >> Let Crystal Reports handle the reporting - Free Crystal >> Reports 2008 30-Day >> trial. Simplify your report design, integration and >> deployment - and focus on >> what you do best, core application coding. Discover what's new with >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> _______________________________________________ >> Ikvm-developers mailing list >> Ikv...@li... >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Ikvm-developers mailing list > Ikv...@li... > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > > -- View this message in context: http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on-running-tp24767124p24771877.html Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. |
From: Volker B. <vol...@go...> - 2009-08-01 19:34:31
|
Hi, I does not know VERISIGN EPPSDK. That I think nothing about it. Can you send a link? Has this project native parts? It is platform dependent? Warnings does'nt a general problem. Can you send the warnings of IKVMC? It can be a reference to optional components. Another cause of the problem can be double resource files in the jars. In this case you need to compile every in a single dll. The follow syntax work only with the latest version of IKVM. C:\ikvm\bin>ikvmc -target:library -sharedclassloader { first.jar } { second.jar } {third.jar } Volker > -----Ursprungliche Nachricht----- > Von: onelastbreath [mailto:fat...@gm...] > Gesendet: Samstag, 1. August 2009 21:17 > An: ikv...@li... > Betreff: Re: [Ikvm-developers] Fails while creating DLL, and > error on running > > > Thanks for your fast answers Volker, > I am trying to convert VERISIGN EPPSDK jar files to a DLL file. > What you think about it? > > I trid what you said and again it gave lots of warnings while > creating DLL. > And after caretion i added it as reference to .NET again failed > > EPPSession() Unable to get connection instance from factory: > com.verisign.epp.transport.EPPConException: EnvException : > EPP Environment > Exception : Unable to Extract Environmental variable > EPP.ClientSocketName > > > > Volker Berlin wrote: > > > > Hi, > > > > I think recurse does not accept a relative path. That you > need to set an > > absolute path like: > > > > C:\ikvm\bin>ikvmc -target:library -recurse:C:\ikvm\bin\*.jar > > -out:verisign.dll > > > > Volker |
From: onelastbreath <fat...@gm...> - 2009-08-01 19:53:21
|
Volker, Here i am sending link for EPPSDK.You can download here; www.hepsihediye.com/images/epp-namestore-3.8.0.2-src.zip Could you please take a look.I am sure you know more than me about Java Projects. I am just planning to convert that project's jar files to a DLL file. Dont know if it s really possible. And also here is some warnnig mesasges from my last converting; Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLElement" (class is already available in referenced assembly "IKVM.OpenJDK.XML, Versio n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLFieldSetElement" (class is already available in referenced assembly "IKVM.OpenJDK.XML, Versio n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLFontElement" (class is already available in referenced assembly "IKVM.OpenJDK.XML, Versio n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLFormElement" (class is already available in referenced assembly "IKVM.OpenJDK.XML, Versio n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLFrameElement" (class is already available in referenced assembly "IKVM.OpenJDK.XML, Versio n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLFrameSetElement" (class is already available in referenced assembly "IKVM.OpenJDK.XML, Versio n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") Thanks from now. Regards. Fatih CEVIK Volker Berlin wrote: > > Hi, > > I does not know VERISIGN EPPSDK. That I think nothing about it. Can you > send a link? > > Has this project native parts? It is platform dependent? > > Warnings does'nt a general problem. Can you send the warnings of IKVMC? It > can be a reference to optional components. > Another cause of the problem can be double resource files in the jars. In > this case you need to compile every in a > single dll. The follow syntax work only with the latest version of IKVM. > > C:\ikvm\bin>ikvmc -target:library -sharedclassloader { first.jar } { > second.jar } {third.jar } > > Volker > > >> -----Ursprungliche Nachricht----- >> Von: onelastbreath [mailto:fat...@gm...] >> Gesendet: Samstag, 1. August 2009 21:17 >> An: ikv...@li... >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and >> error on running >> >> >> Thanks for your fast answers Volker, >> I am trying to convert VERISIGN EPPSDK jar files to a DLL file. >> What you think about it? >> >> I trid what you said and again it gave lots of warnings while >> creating DLL. >> And after caretion i added it as reference to .NET again failed >> >> EPPSession() Unable to get connection instance from factory: >> com.verisign.epp.transport.EPPConException: EnvException : >> EPP Environment >> Exception : Unable to Extract Environmental variable >> EPP.ClientSocketName >> >> >> >> Volker Berlin wrote: >> > >> > Hi, >> > >> > I think recurse does not accept a relative path. That you >> need to set an >> > absolute path like: >> > >> > C:\ikvm\bin>ikvmc -target:library -recurse:C:\ikvm\bin\*.jar >> > -out:verisign.dll >> > >> > Volker > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Ikvm-developers mailing list > Ikv...@li... > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > > -- View this message in context: http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on-running-tp24767124p24772146.html Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. |
From: Volker B. <vol...@go...> - 2009-08-01 21:54:26
|
Hi, Do you have a link with a description of the project? It look like a large project with it own web server. Which part of the project do you want use? I think you should first run it in Java. If this work then you can port it with IKVM. The duplicate class warnings should be no problem. This classes would also ignored if you run it in Java. Volker > -----Ursprungliche Nachricht----- > Von: onelastbreath [mailto:fat...@gm...] > Gesendet: Samstag, 1. August 2009 21:53 > An: ikv...@li... > Betreff: Re: [Ikvm-developers] Fails while creating DLL, and > error on running > > > Volker, > Here i am sending link for EPPSDK.You can download here; > > www.hepsihediye.com/images/epp-namestore-3.8.0.2-src.zip > > Could you please take a look.I am sure you know more than me > about Java > Projects. > I am just planning to convert that project's jar files to a DLL file. > Dont know if it s really possible. > > And also here is some warnnig mesasges from my last converting; > > Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLElement" > (class is already available in referenced assembly > "IKVM.OpenJDK.XML, > Versio > n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > Warning IKVMC0109: skipping class: > "org.w3c.dom.html.HTMLFieldSetElement" > (class is already available in referenced assembly > "IKVM.OpenJDK.XML, > Versio > n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLFontElement" > (class is already available in referenced assembly > "IKVM.OpenJDK.XML, > Versio > n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLFormElement" > (class is already available in referenced assembly > "IKVM.OpenJDK.XML, > Versio > n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLFrameElement" > (class is already available in referenced assembly > "IKVM.OpenJDK.XML, > Versio > n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > Warning IKVMC0109: skipping class: > "org.w3c.dom.html.HTMLFrameSetElement" > (class is already available in referenced assembly > "IKVM.OpenJDK.XML, > Versio > n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > > Thanks from now. > > Regards. > Fatih CEVIK > > > > Volker Berlin wrote: > > > > Hi, > > > > I does not know VERISIGN EPPSDK. That I think nothing about > it. Can you > > send a link? > > > > Has this project native parts? It is platform dependent? > > > > Warnings does'nt a general problem. Can you send the > warnings of IKVMC? It > > can be a reference to optional components. > > Another cause of the problem can be double resource files > in the jars. In > > this case you need to compile every in a > > single dll. The follow syntax work only with the latest > version of IKVM. > > > > C:\ikvm\bin>ikvmc -target:library -sharedclassloader { first.jar } { > > second.jar } {third.jar } > > > > Volker > > > > > >> -----Ursprungliche Nachricht----- > >> Von: onelastbreath [mailto:fat...@gm...] > >> Gesendet: Samstag, 1. August 2009 21:17 > >> An: ikv...@li... > >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and > >> error on running > >> > >> > >> Thanks for your fast answers Volker, > >> I am trying to convert VERISIGN EPPSDK jar files to a DLL file. > >> What you think about it? > >> > >> I trid what you said and again it gave lots of warnings while > >> creating DLL. > >> And after caretion i added it as reference to .NET again failed > >> > >> EPPSession() Unable to get connection instance from factory: > >> com.verisign.epp.transport.EPPConException: EnvException : > >> EPP Environment > >> Exception : Unable to Extract Environmental variable > >> EPP.ClientSocketName > >> > >> > >> > >> Volker Berlin wrote: > >> > > >> > Hi, > >> > > >> > I think recurse does not accept a relative path. That you > >> need to set an > >> > absolute path like: > >> > > >> > C:\ikvm\bin>ikvmc -target:library -recurse:C:\ikvm\bin\*.jar > >> > -out:verisign.dll > >> > > >> > Volker > > > > > > > -------------------------------------------------------------- > ---------------- > > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > > 30-Day > > trial. Simplify your report design, integration and > deployment - and focus > > on > > what you do best, core application coding. Discover what's new with > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > _______________________________________________ > > Ikvm-developers mailing list > > Ikv...@li... > > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > > > > > > -- > View this message in context: > http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on > -running-tp24767124p24772146.html > Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. > > > -------------------------------------------------------------- > ---------------- > Let Crystal Reports handle the reporting - Free Crystal > Reports 2008 30-Day > trial. Simplify your report design, integration and > deployment - and focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Ikvm-developers mailing list > Ikv...@li... > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > |
From: onelastbreath <fat...@gm...> - 2009-08-01 22:04:51
|
Project is working. Actually i have conversations with guy from Verisign; Also he said main jar file is epp-namestore.jar which is in "lib" folder. All methods is in this file. and there is a pdf file in Doc folder has description about project. You can tae a look in "lib" foldur.Jar files in there. I am working on this project last 2 weeks and feel bad about it. Need help:( Thanks Fatih Volker Berlin wrote: > > Hi, > > Do you have a link with a description of the project? It look like a large > project with it own web server. > > Which part of the project do you want use? I think you should first run it > in Java. If this work then you can port it > with IKVM. > > The duplicate class warnings should be no problem. This classes would also > ignored if you run it in Java. > > Volker > >> -----Ursprungliche Nachricht----- >> Von: onelastbreath [mailto:fat...@gm...] >> Gesendet: Samstag, 1. August 2009 21:53 >> An: ikv...@li... >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and >> error on running >> >> >> Volker, >> Here i am sending link for EPPSDK.You can download here; >> >> www.hepsihediye.com/images/epp-namestore-3.8.0.2-src.zip >> >> Could you please take a look.I am sure you know more than me >> about Java >> Projects. >> I am just planning to convert that project's jar files to a DLL file. >> Dont know if it s really possible. >> >> And also here is some warnnig mesasges from my last converting; >> >> Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLElement" >> (class is already available in referenced assembly >> "IKVM.OpenJDK.XML, >> Versio >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >> Warning IKVMC0109: skipping class: >> "org.w3c.dom.html.HTMLFieldSetElement" >> (class is already available in referenced assembly >> "IKVM.OpenJDK.XML, >> Versio >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >> Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLFontElement" >> (class is already available in referenced assembly >> "IKVM.OpenJDK.XML, >> Versio >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >> Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLFormElement" >> (class is already available in referenced assembly >> "IKVM.OpenJDK.XML, >> Versio >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >> Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLFrameElement" >> (class is already available in referenced assembly >> "IKVM.OpenJDK.XML, >> Versio >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >> Warning IKVMC0109: skipping class: >> "org.w3c.dom.html.HTMLFrameSetElement" >> (class is already available in referenced assembly >> "IKVM.OpenJDK.XML, >> Versio >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >> >> Thanks from now. >> >> Regards. >> Fatih CEVIK >> >> >> >> Volker Berlin wrote: >> > >> > Hi, >> > >> > I does not know VERISIGN EPPSDK. That I think nothing about >> it. Can you >> > send a link? >> > >> > Has this project native parts? It is platform dependent? >> > >> > Warnings does'nt a general problem. Can you send the >> warnings of IKVMC? It >> > can be a reference to optional components. >> > Another cause of the problem can be double resource files >> in the jars. In >> > this case you need to compile every in a >> > single dll. The follow syntax work only with the latest >> version of IKVM. >> > >> > C:\ikvm\bin>ikvmc -target:library -sharedclassloader { first.jar } { >> > second.jar } {third.jar } >> > >> > Volker >> > >> > >> >> -----Ursprungliche Nachricht----- >> >> Von: onelastbreath [mailto:fat...@gm...] >> >> Gesendet: Samstag, 1. August 2009 21:17 >> >> An: ikv...@li... >> >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and >> >> error on running >> >> >> >> >> >> Thanks for your fast answers Volker, >> >> I am trying to convert VERISIGN EPPSDK jar files to a DLL file. >> >> What you think about it? >> >> >> >> I trid what you said and again it gave lots of warnings while >> >> creating DLL. >> >> And after caretion i added it as reference to .NET again failed >> >> >> >> EPPSession() Unable to get connection instance from factory: >> >> com.verisign.epp.transport.EPPConException: EnvException : >> >> EPP Environment >> >> Exception : Unable to Extract Environmental variable >> >> EPP.ClientSocketName >> >> >> >> >> >> >> >> Volker Berlin wrote: >> >> > >> >> > Hi, >> >> > >> >> > I think recurse does not accept a relative path. That you >> >> need to set an >> >> > absolute path like: >> >> > >> >> > C:\ikvm\bin>ikvmc -target:library -recurse:C:\ikvm\bin\*.jar >> >> > -out:verisign.dll >> >> > >> >> > Volker >> > >> > >> > >> -------------------------------------------------------------- >> ---------------- >> > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> > 30-Day >> > trial. Simplify your report design, integration and >> deployment - and focus >> > on >> > what you do best, core application coding. Discover what's new with >> > Crystal Reports now. http://p.sf.net/sfu/bobj-july >> > _______________________________________________ >> > Ikvm-developers mailing list >> > Ikv...@li... >> > https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> > >> > >> >> -- >> View this message in context: >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on >> -running-tp24767124p24772146.html >> Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. >> >> >> -------------------------------------------------------------- >> ---------------- >> Let Crystal Reports handle the reporting - Free Crystal >> Reports 2008 30-Day >> trial. Simplify your report design, integration and >> deployment - and focus on >> what you do best, core application coding. Discover what's new with >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> _______________________________________________ >> Ikvm-developers mailing list >> Ikv...@li... >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Ikvm-developers mailing list > Ikv...@li... > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > > -- View this message in context: http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on-running-tp24767124p24773103.html Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. |
From: Volker B. <vol...@go...> - 2009-08-02 07:31:30
|
Hi, I have not the time to read und test the completly project. In the short time I have not understand what it is doing. What you can do: * First you should run the Java test program. * then replace the command "java" with "ikvm". If this not run then it is not compatiple with IKVM. * Then convert the java test program and all required jar files in one step. This should also run. * The next step it to port Java source code of the sample to C# source code and run again. At the point on the list where starting problem you can enable the full logging of log4j. See the documentation of log4j for details. Compare the log files of the working Java program and of the not working .NET program. This should help to find the cause of the problem. Volker > -----Ursprungliche Nachricht----- > Von: onelastbreath [mailto:fat...@gm...] > Gesendet: Sonntag, 2. August 2009 00:05 > An: ikv...@li... > Betreff: Re: [Ikvm-developers] Fails while creating DLL, and > error on running > > > Project is working. > Actually i have conversations with guy from Verisign; > Also he said main jar file is epp-namestore.jar which is in > "lib" folder. > All methods is in this file. > > and there is a pdf file in Doc folder has description about project. > You can tae a look in "lib" foldur.Jar files in there. > > I am working on this project last 2 weeks and feel bad about it. > Need help:( > > Thanks > Fatih > > > > Volker Berlin wrote: > > > > Hi, > > > > Do you have a link with a description of the project? It > look like a large > > project with it own web server. > > > > Which part of the project do you want use? I think you > should first run it > > in Java. If this work then you can port it > > with IKVM. > > > > The duplicate class warnings should be no problem. This > classes would also > > ignored if you run it in Java. > > > > Volker > > > >> -----Ursprungliche Nachricht----- > >> Von: onelastbreath [mailto:fat...@gm...] > >> Gesendet: Samstag, 1. August 2009 21:53 > >> An: ikv...@li... > >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and > >> error on running > >> > >> > >> Volker, > >> Here i am sending link for EPPSDK.You can download here; > >> > >> www.hepsihediye.com/images/epp-namestore-3.8.0.2-src.zip > >> > >> Could you please take a look.I am sure you know more than me > >> about Java > >> Projects. > >> I am just planning to convert that project's jar files to > a DLL file. > >> Dont know if it s really possible. > >> > >> And also here is some warnnig mesasges from my last converting; > >> > >> Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLElement" > >> (class is already available in referenced assembly > >> "IKVM.OpenJDK.XML, > >> Versio > >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > >> Warning IKVMC0109: skipping class: > >> "org.w3c.dom.html.HTMLFieldSetElement" > >> (class is already available in referenced assembly > >> "IKVM.OpenJDK.XML, > >> Versio > >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > >> Warning IKVMC0109: skipping class: > "org.w3c.dom.html.HTMLFontElement" > >> (class is already available in referenced assembly > >> "IKVM.OpenJDK.XML, > >> Versio > >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > >> Warning IKVMC0109: skipping class: > "org.w3c.dom.html.HTMLFormElement" > >> (class is already available in referenced assembly > >> "IKVM.OpenJDK.XML, > >> Versio > >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > >> Warning IKVMC0109: skipping class: > "org.w3c.dom.html.HTMLFrameElement" > >> (class is already available in referenced assembly > >> "IKVM.OpenJDK.XML, > >> Versio > >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > >> Warning IKVMC0109: skipping class: > >> "org.w3c.dom.html.HTMLFrameSetElement" > >> (class is already available in referenced assembly > >> "IKVM.OpenJDK.XML, > >> Versio > >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > >> > >> Thanks from now. > >> > >> Regards. > >> Fatih CEVIK > >> > >> > >> > >> Volker Berlin wrote: > >> > > >> > Hi, > >> > > >> > I does not know VERISIGN EPPSDK. That I think nothing about > >> it. Can you > >> > send a link? > >> > > >> > Has this project native parts? It is platform dependent? > >> > > >> > Warnings does'nt a general problem. Can you send the > >> warnings of IKVMC? It > >> > can be a reference to optional components. > >> > Another cause of the problem can be double resource files > >> in the jars. In > >> > this case you need to compile every in a > >> > single dll. The follow syntax work only with the latest > >> version of IKVM. > >> > > >> > C:\ikvm\bin>ikvmc -target:library -sharedclassloader { > first.jar } { > >> > second.jar } {third.jar } > >> > > >> > Volker > >> > > >> > > >> >> -----Ursprungliche Nachricht----- > >> >> Von: onelastbreath [mailto:fat...@gm...] > >> >> Gesendet: Samstag, 1. August 2009 21:17 > >> >> An: ikv...@li... > >> >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and > >> >> error on running > >> >> > >> >> > >> >> Thanks for your fast answers Volker, > >> >> I am trying to convert VERISIGN EPPSDK jar files to a DLL file. > >> >> What you think about it? > >> >> > >> >> I trid what you said and again it gave lots of warnings while > >> >> creating DLL. > >> >> And after caretion i added it as reference to .NET again failed > >> >> > >> >> EPPSession() Unable to get connection instance from factory: > >> >> com.verisign.epp.transport.EPPConException: EnvException : > >> >> EPP Environment > >> >> Exception : Unable to Extract Environmental variable > >> >> EPP.ClientSocketName > >> >> > >> >> > >> >> > >> >> Volker Berlin wrote: > >> >> > > >> >> > Hi, > >> >> > > >> >> > I think recurse does not accept a relative path. That you > >> >> need to set an > >> >> > absolute path like: > >> >> > > >> >> > C:\ikvm\bin>ikvmc -target:library -recurse:C:\ikvm\bin\*.jar > >> >> > -out:verisign.dll > >> >> > > >> >> > Volker > >> > > >> > > >> > > >> -------------------------------------------------------------- > >> ---------------- > >> > Let Crystal Reports handle the reporting - Free Crystal > Reports 2008 > >> > 30-Day > >> > trial. Simplify your report design, integration and > >> deployment - and focus > >> > on > >> > what you do best, core application coding. Discover > what's new with > >> > Crystal Reports now. http://p.sf.net/sfu/bobj-july > >> > _______________________________________________ > >> > Ikvm-developers mailing list > >> > Ikv...@li... > >> > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > >> > > >> > > >> > >> -- > >> View this message in context: > >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on > >> -running-tp24767124p24772146.html > >> Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. > >> > >> > >> -------------------------------------------------------------- > >> ---------------- > >> Let Crystal Reports handle the reporting - Free Crystal > >> Reports 2008 30-Day > >> trial. Simplify your report design, integration and > >> deployment - and focus on > >> what you do best, core application coding. Discover what's > new with > >> Crystal Reports now. http://p.sf.net/sfu/bobj-july > >> _______________________________________________ > >> Ikvm-developers mailing list > >> Ikv...@li... > >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers > >> > > > > > > > -------------------------------------------------------------- > ---------------- > > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > > 30-Day > > trial. Simplify your report design, integration and > deployment - and focus > > on > > what you do best, core application coding. Discover what's new with > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > _______________________________________________ > > Ikvm-developers mailing list > > Ikv...@li... > > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > > > > > > -- > View this message in context: > http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on > -running-tp24767124p24773103.html > Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. > > > -------------------------------------------------------------- > ---------------- > Let Crystal Reports handle the reporting - Free Crystal > Reports 2008 30-Day > trial. Simplify your report design, integration and > deployment - and focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Ikvm-developers mailing list > Ikv...@li... > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > |
From: onelastbreath <fat...@gm...> - 2009-08-02 07:49:43
|
I see, Please send me where is log4j locating generally. Will try to look to it for problem. Thanks Regards Fatih Volker Berlin wrote: > > Hi, > > I have not the time to read und test the completly project. In the short > time I have not understand what it is doing. > > What you can do: > * First you should run the Java test program. > * then replace the command "java" with "ikvm". If this not run then it is > not compatiple with IKVM. > * Then convert the java test program and all required jar files in one > step. This should also run. > * The next step it to port Java source code of the sample to C# source > code and run again. > > At the point on the list where starting problem you can enable the full > logging of log4j. See the documentation of log4j > for details. Compare the log files of the working Java program and of the > not working .NET program. This should help to > find the cause of the problem. > > Volker > > >> -----Ursprungliche Nachricht----- >> Von: onelastbreath [mailto:fat...@gm...] >> Gesendet: Sonntag, 2. August 2009 00:05 >> An: ikv...@li... >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and >> error on running >> >> >> Project is working. >> Actually i have conversations with guy from Verisign; >> Also he said main jar file is epp-namestore.jar which is in >> "lib" folder. >> All methods is in this file. >> >> and there is a pdf file in Doc folder has description about project. >> You can tae a look in "lib" foldur.Jar files in there. >> >> I am working on this project last 2 weeks and feel bad about it. >> Need help:( >> >> Thanks >> Fatih >> >> >> >> Volker Berlin wrote: >> > >> > Hi, >> > >> > Do you have a link with a description of the project? It >> look like a large >> > project with it own web server. >> > >> > Which part of the project do you want use? I think you >> should first run it >> > in Java. If this work then you can port it >> > with IKVM. >> > >> > The duplicate class warnings should be no problem. This >> classes would also >> > ignored if you run it in Java. >> > >> > Volker >> > >> >> -----Ursprungliche Nachricht----- >> >> Von: onelastbreath [mailto:fat...@gm...] >> >> Gesendet: Samstag, 1. August 2009 21:53 >> >> An: ikv...@li... >> >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and >> >> error on running >> >> >> >> >> >> Volker, >> >> Here i am sending link for EPPSDK.You can download here; >> >> >> >> www.hepsihediye.com/images/epp-namestore-3.8.0.2-src.zip >> >> >> >> Could you please take a look.I am sure you know more than me >> >> about Java >> >> Projects. >> >> I am just planning to convert that project's jar files to >> a DLL file. >> >> Dont know if it s really possible. >> >> >> >> And also here is some warnnig mesasges from my last converting; >> >> >> >> Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLElement" >> >> (class is already available in referenced assembly >> >> "IKVM.OpenJDK.XML, >> >> Versio >> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >> >> Warning IKVMC0109: skipping class: >> >> "org.w3c.dom.html.HTMLFieldSetElement" >> >> (class is already available in referenced assembly >> >> "IKVM.OpenJDK.XML, >> >> Versio >> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >> >> Warning IKVMC0109: skipping class: >> "org.w3c.dom.html.HTMLFontElement" >> >> (class is already available in referenced assembly >> >> "IKVM.OpenJDK.XML, >> >> Versio >> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >> >> Warning IKVMC0109: skipping class: >> "org.w3c.dom.html.HTMLFormElement" >> >> (class is already available in referenced assembly >> >> "IKVM.OpenJDK.XML, >> >> Versio >> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >> >> Warning IKVMC0109: skipping class: >> "org.w3c.dom.html.HTMLFrameElement" >> >> (class is already available in referenced assembly >> >> "IKVM.OpenJDK.XML, >> >> Versio >> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >> >> Warning IKVMC0109: skipping class: >> >> "org.w3c.dom.html.HTMLFrameSetElement" >> >> (class is already available in referenced assembly >> >> "IKVM.OpenJDK.XML, >> >> Versio >> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >> >> >> >> Thanks from now. >> >> >> >> Regards. >> >> Fatih CEVIK >> >> >> >> >> >> >> >> Volker Berlin wrote: >> >> > >> >> > Hi, >> >> > >> >> > I does not know VERISIGN EPPSDK. That I think nothing about >> >> it. Can you >> >> > send a link? >> >> > >> >> > Has this project native parts? It is platform dependent? >> >> > >> >> > Warnings does'nt a general problem. Can you send the >> >> warnings of IKVMC? It >> >> > can be a reference to optional components. >> >> > Another cause of the problem can be double resource files >> >> in the jars. In >> >> > this case you need to compile every in a >> >> > single dll. The follow syntax work only with the latest >> >> version of IKVM. >> >> > >> >> > C:\ikvm\bin>ikvmc -target:library -sharedclassloader { >> first.jar } { >> >> > second.jar } {third.jar } >> >> > >> >> > Volker >> >> > >> >> > >> >> >> -----Ursprungliche Nachricht----- >> >> >> Von: onelastbreath [mailto:fat...@gm...] >> >> >> Gesendet: Samstag, 1. August 2009 21:17 >> >> >> An: ikv...@li... >> >> >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and >> >> >> error on running >> >> >> >> >> >> >> >> >> Thanks for your fast answers Volker, >> >> >> I am trying to convert VERISIGN EPPSDK jar files to a DLL file. >> >> >> What you think about it? >> >> >> >> >> >> I trid what you said and again it gave lots of warnings while >> >> >> creating DLL. >> >> >> And after caretion i added it as reference to .NET again failed >> >> >> >> >> >> EPPSession() Unable to get connection instance from factory: >> >> >> com.verisign.epp.transport.EPPConException: EnvException : >> >> >> EPP Environment >> >> >> Exception : Unable to Extract Environmental variable >> >> >> EPP.ClientSocketName >> >> >> >> >> >> >> >> >> >> >> >> Volker Berlin wrote: >> >> >> > >> >> >> > Hi, >> >> >> > >> >> >> > I think recurse does not accept a relative path. That you >> >> >> need to set an >> >> >> > absolute path like: >> >> >> > >> >> >> > C:\ikvm\bin>ikvmc -target:library -recurse:C:\ikvm\bin\*.jar >> >> >> > -out:verisign.dll >> >> >> > >> >> >> > Volker >> >> > >> >> > >> >> > >> >> -------------------------------------------------------------- >> >> ---------------- >> >> > Let Crystal Reports handle the reporting - Free Crystal >> Reports 2008 >> >> > 30-Day >> >> > trial. Simplify your report design, integration and >> >> deployment - and focus >> >> > on >> >> > what you do best, core application coding. Discover >> what's new with >> >> > Crystal Reports now. http://p.sf.net/sfu/bobj-july >> >> > _______________________________________________ >> >> > Ikvm-developers mailing list >> >> > Ikv...@li... >> >> > https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> >> > >> >> > >> >> >> >> -- >> >> View this message in context: >> >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on >> >> -running-tp24767124p24772146.html >> >> Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. >> >> >> >> >> >> -------------------------------------------------------------- >> >> ---------------- >> >> Let Crystal Reports handle the reporting - Free Crystal >> >> Reports 2008 30-Day >> >> trial. Simplify your report design, integration and >> >> deployment - and focus on >> >> what you do best, core application coding. Discover what's >> new with >> >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> >> _______________________________________________ >> >> Ikvm-developers mailing list >> >> Ikv...@li... >> >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> >> >> > >> > >> > >> -------------------------------------------------------------- >> ---------------- >> > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> > 30-Day >> > trial. Simplify your report design, integration and >> deployment - and focus >> > on >> > what you do best, core application coding. Discover what's new with >> > Crystal Reports now. http://p.sf.net/sfu/bobj-july >> > _______________________________________________ >> > Ikvm-developers mailing list >> > Ikv...@li... >> > https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> > >> > >> >> -- >> View this message in context: >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on >> -running-tp24767124p24773103.html >> Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. >> >> >> -------------------------------------------------------------- >> ---------------- >> Let Crystal Reports handle the reporting - Free Crystal >> Reports 2008 30-Day >> trial. Simplify your report design, integration and >> deployment - and focus on >> what you do best, core application coding. Discover what's new with >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> _______________________________________________ >> Ikvm-developers mailing list >> Ikv...@li... >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Ikvm-developers mailing list > Ikv...@li... > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > > -- View this message in context: http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on-running-tp24767124p24775613.html Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. |
From: onelastbreath <fat...@gm...> - 2009-08-03 06:41:41
|
Hi, Atually i dont know how to view logs you said; At the point on the list where starting problem you can enable the full logging of log4j. See the documentation of log4j for details. Compare the log files of the working Java program and of the not working .NET program. This should help to find the cause of the problem. Could you pls explain how to look logs? Regards. Fatih CEVIK FBS onelastbreath wrote: > > I see, > > Please send me where is log4j locating generally. > Will try to look to it for problem. > > Thanks > Regards > Fatih > > > Volker Berlin wrote: >> >> Hi, >> >> I have not the time to read und test the completly project. In the short >> time I have not understand what it is doing. >> >> What you can do: >> * First you should run the Java test program. >> * then replace the command "java" with "ikvm". If this not run then it is >> not compatiple with IKVM. >> * Then convert the java test program and all required jar files in one >> step. This should also run. >> * The next step it to port Java source code of the sample to C# source >> code and run again. >> >> At the point on the list where starting problem you can enable the full >> logging of log4j. See the documentation of log4j >> for details. Compare the log files of the working Java program and of the >> not working .NET program. This should help to >> find the cause of the problem. >> >> Volker >> >> >>> -----Ursprungliche Nachricht----- >>> Von: onelastbreath [mailto:fat...@gm...] >>> Gesendet: Sonntag, 2. August 2009 00:05 >>> An: ikv...@li... >>> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and >>> error on running >>> >>> >>> Project is working. >>> Actually i have conversations with guy from Verisign; >>> Also he said main jar file is epp-namestore.jar which is in >>> "lib" folder. >>> All methods is in this file. >>> >>> and there is a pdf file in Doc folder has description about project. >>> You can tae a look in "lib" foldur.Jar files in there. >>> >>> I am working on this project last 2 weeks and feel bad about it. >>> Need help:( >>> >>> Thanks >>> Fatih >>> >>> >>> >>> Volker Berlin wrote: >>> > >>> > Hi, >>> > >>> > Do you have a link with a description of the project? It >>> look like a large >>> > project with it own web server. >>> > >>> > Which part of the project do you want use? I think you >>> should first run it >>> > in Java. If this work then you can port it >>> > with IKVM. >>> > >>> > The duplicate class warnings should be no problem. This >>> classes would also >>> > ignored if you run it in Java. >>> > >>> > Volker >>> > >>> >> -----Ursprungliche Nachricht----- >>> >> Von: onelastbreath [mailto:fat...@gm...] >>> >> Gesendet: Samstag, 1. August 2009 21:53 >>> >> An: ikv...@li... >>> >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and >>> >> error on running >>> >> >>> >> >>> >> Volker, >>> >> Here i am sending link for EPPSDK.You can download here; >>> >> >>> >> www.hepsihediye.com/images/epp-namestore-3.8.0.2-src.zip >>> >> >>> >> Could you please take a look.I am sure you know more than me >>> >> about Java >>> >> Projects. >>> >> I am just planning to convert that project's jar files to >>> a DLL file. >>> >> Dont know if it s really possible. >>> >> >>> >> And also here is some warnnig mesasges from my last converting; >>> >> >>> >> Warning IKVMC0109: skipping class: "org.w3c.dom.html.HTMLElement" >>> >> (class is already available in referenced assembly >>> >> "IKVM.OpenJDK.XML, >>> >> Versio >>> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >>> >> Warning IKVMC0109: skipping class: >>> >> "org.w3c.dom.html.HTMLFieldSetElement" >>> >> (class is already available in referenced assembly >>> >> "IKVM.OpenJDK.XML, >>> >> Versio >>> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >>> >> Warning IKVMC0109: skipping class: >>> "org.w3c.dom.html.HTMLFontElement" >>> >> (class is already available in referenced assembly >>> >> "IKVM.OpenJDK.XML, >>> >> Versio >>> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >>> >> Warning IKVMC0109: skipping class: >>> "org.w3c.dom.html.HTMLFormElement" >>> >> (class is already available in referenced assembly >>> >> "IKVM.OpenJDK.XML, >>> >> Versio >>> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >>> >> Warning IKVMC0109: skipping class: >>> "org.w3c.dom.html.HTMLFrameElement" >>> >> (class is already available in referenced assembly >>> >> "IKVM.OpenJDK.XML, >>> >> Versio >>> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >>> >> Warning IKVMC0109: skipping class: >>> >> "org.w3c.dom.html.HTMLFrameSetElement" >>> >> (class is already available in referenced assembly >>> >> "IKVM.OpenJDK.XML, >>> >> Versio >>> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") >>> >> >>> >> Thanks from now. >>> >> >>> >> Regards. >>> >> Fatih CEVIK >>> >> >>> >> >>> >> >>> >> Volker Berlin wrote: >>> >> > >>> >> > Hi, >>> >> > >>> >> > I does not know VERISIGN EPPSDK. That I think nothing about >>> >> it. Can you >>> >> > send a link? >>> >> > >>> >> > Has this project native parts? It is platform dependent? >>> >> > >>> >> > Warnings does'nt a general problem. Can you send the >>> >> warnings of IKVMC? It >>> >> > can be a reference to optional components. >>> >> > Another cause of the problem can be double resource files >>> >> in the jars. In >>> >> > this case you need to compile every in a >>> >> > single dll. The follow syntax work only with the latest >>> >> version of IKVM. >>> >> > >>> >> > C:\ikvm\bin>ikvmc -target:library -sharedclassloader { >>> first.jar } { >>> >> > second.jar } {third.jar } >>> >> > >>> >> > Volker >>> >> > >>> >> > >>> >> >> -----Ursprungliche Nachricht----- >>> >> >> Von: onelastbreath [mailto:fat...@gm...] >>> >> >> Gesendet: Samstag, 1. August 2009 21:17 >>> >> >> An: ikv...@li... >>> >> >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and >>> >> >> error on running >>> >> >> >>> >> >> >>> >> >> Thanks for your fast answers Volker, >>> >> >> I am trying to convert VERISIGN EPPSDK jar files to a DLL file. >>> >> >> What you think about it? >>> >> >> >>> >> >> I trid what you said and again it gave lots of warnings while >>> >> >> creating DLL. >>> >> >> And after caretion i added it as reference to .NET again failed >>> >> >> >>> >> >> EPPSession() Unable to get connection instance from factory: >>> >> >> com.verisign.epp.transport.EPPConException: EnvException : >>> >> >> EPP Environment >>> >> >> Exception : Unable to Extract Environmental variable >>> >> >> EPP.ClientSocketName >>> >> >> >>> >> >> >>> >> >> >>> >> >> Volker Berlin wrote: >>> >> >> > >>> >> >> > Hi, >>> >> >> > >>> >> >> > I think recurse does not accept a relative path. That you >>> >> >> need to set an >>> >> >> > absolute path like: >>> >> >> > >>> >> >> > C:\ikvm\bin>ikvmc -target:library -recurse:C:\ikvm\bin\*.jar >>> >> >> > -out:verisign.dll >>> >> >> > >>> >> >> > Volker >>> >> > >>> >> > >>> >> > >>> >> -------------------------------------------------------------- >>> >> ---------------- >>> >> > Let Crystal Reports handle the reporting - Free Crystal >>> Reports 2008 >>> >> > 30-Day >>> >> > trial. Simplify your report design, integration and >>> >> deployment - and focus >>> >> > on >>> >> > what you do best, core application coding. Discover >>> what's new with >>> >> > Crystal Reports now. http://p.sf.net/sfu/bobj-july >>> >> > _______________________________________________ >>> >> > Ikvm-developers mailing list >>> >> > Ikv...@li... >>> >> > https://lists.sourceforge.net/lists/listinfo/ikvm-developers >>> >> > >>> >> > >>> >> >>> >> -- >>> >> View this message in context: >>> >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on >>> >> -running-tp24767124p24772146.html >>> >> Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. >>> >> >>> >> >>> >> -------------------------------------------------------------- >>> >> ---------------- >>> >> Let Crystal Reports handle the reporting - Free Crystal >>> >> Reports 2008 30-Day >>> >> trial. Simplify your report design, integration and >>> >> deployment - and focus on >>> >> what you do best, core application coding. Discover what's >>> new with >>> >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >>> >> _______________________________________________ >>> >> Ikvm-developers mailing list >>> >> Ikv...@li... >>> >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers >>> >> >>> > >>> > >>> > >>> -------------------------------------------------------------- >>> ---------------- >>> > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >>> > 30-Day >>> > trial. Simplify your report design, integration and >>> deployment - and focus >>> > on >>> > what you do best, core application coding. Discover what's new with >>> > Crystal Reports now. http://p.sf.net/sfu/bobj-july >>> > _______________________________________________ >>> > Ikvm-developers mailing list >>> > Ikv...@li... >>> > https://lists.sourceforge.net/lists/listinfo/ikvm-developers >>> > >>> > >>> >>> -- >>> View this message in context: >>> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on >>> -running-tp24767124p24773103.html >>> Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. >>> >>> >>> -------------------------------------------------------------- >>> ---------------- >>> Let Crystal Reports handle the reporting - Free Crystal >>> Reports 2008 30-Day >>> trial. Simplify your report design, integration and >>> deployment - and focus on >>> what you do best, core application coding. Discover what's new with >>> Crystal Reports now. http://p.sf.net/sfu/bobj-july >>> _______________________________________________ >>> Ikvm-developers mailing list >>> Ikv...@li... >>> https://lists.sourceforge.net/lists/listinfo/ikvm-developers >>> >> >> >> ------------------------------------------------------------------------------ >> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> 30-Day >> trial. Simplify your report design, integration and deployment - and >> focus on >> what you do best, core application coding. Discover what's new with >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> _______________________________________________ >> Ikvm-developers mailing list >> Ikv...@li... >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers >> >> > > -- View this message in context: http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on-running-tp24767124p24786090.html Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. |
From: Volker B. <vol...@go...> - 2009-08-03 15:50:19
|
Hi, The using of log4j is of topic for this mailing list. With google you can find millions of hits. For example you can start here http://en.wikipedia.org/wiki/Log4j Sorry but I have not the time to search on google for you and then do a copy and paste and mail you how you should use log4j. Volker > -----Ursprungliche Nachricht----- > Von: onelastbreath [mailto:fat...@gm...] > Gesendet: Montag, 3. August 2009 08:42 > An: ikv...@li... > Betreff: Re: [Ikvm-developers] Fails while creating DLL, and > error on running > > > Hi, > > Atually i dont know how to view logs you said; > > At the point on the list where starting problem you can > enable the full > logging of log4j. See the documentation of log4j > for details. Compare the log files of the working Java > program and of the > not working .NET program. This should help to > find the cause of the problem. > > Could you pls explain how to look logs? > > Regards. > Fatih CEVIK > FBS > > > onelastbreath wrote: > > > > I see, > > > > Please send me where is log4j locating generally. > > Will try to look to it for problem. > > > > Thanks > > Regards > > Fatih > > > > > > Volker Berlin wrote: > >> > >> Hi, > >> > >> I have not the time to read und test the completly > project. In the short > >> time I have not understand what it is doing. > >> > >> What you can do: > >> * First you should run the Java test program. > >> * then replace the command "java" with "ikvm". If this not > run then it is > >> not compatiple with IKVM. > >> * Then convert the java test program and all required jar > files in one > >> step. This should also run. > >> * The next step it to port Java source code of the sample > to C# source > >> code and run again. > >> > >> At the point on the list where starting problem you can > enable the full > >> logging of log4j. See the documentation of log4j > >> for details. Compare the log files of the working Java > program and of the > >> not working .NET program. This should help to > >> find the cause of the problem. > >> > >> Volker > >> > >> > >>> -----Ursprungliche Nachricht----- > >>> Von: onelastbreath [mailto:fat...@gm...] > >>> Gesendet: Sonntag, 2. August 2009 00:05 > >>> An: ikv...@li... > >>> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and > >>> error on running > >>> > >>> > >>> Project is working. > >>> Actually i have conversations with guy from Verisign; > >>> Also he said main jar file is epp-namestore.jar which is in > >>> "lib" folder. > >>> All methods is in this file. > >>> > >>> and there is a pdf file in Doc folder has description > about project. > >>> You can tae a look in "lib" foldur.Jar files in there. > >>> > >>> I am working on this project last 2 weeks and feel bad about it. > >>> Need help:( > >>> > >>> Thanks > >>> Fatih > >>> > >>> > >>> > >>> Volker Berlin wrote: > >>> > > >>> > Hi, > >>> > > >>> > Do you have a link with a description of the project? It > >>> look like a large > >>> > project with it own web server. > >>> > > >>> > Which part of the project do you want use? I think you > >>> should first run it > >>> > in Java. If this work then you can port it > >>> > with IKVM. > >>> > > >>> > The duplicate class warnings should be no problem. This > >>> classes would also > >>> > ignored if you run it in Java. > >>> > > >>> > Volker > >>> > > >>> >> -----Ursprungliche Nachricht----- > >>> >> Von: onelastbreath [mailto:fat...@gm...] > >>> >> Gesendet: Samstag, 1. August 2009 21:53 > >>> >> An: ikv...@li... > >>> >> Betreff: Re: [Ikvm-developers] Fails while creating DLL, and > >>> >> error on running > >>> >> > >>> >> > >>> >> Volker, > >>> >> Here i am sending link for EPPSDK.You can download here; > >>> >> > >>> >> www.hepsihediye.com/images/epp-namestore-3.8.0.2-src.zip > >>> >> > >>> >> Could you please take a look.I am sure you know more than me > >>> >> about Java > >>> >> Projects. > >>> >> I am just planning to convert that project's jar files to > >>> a DLL file. > >>> >> Dont know if it s really possible. > >>> >> > >>> >> And also here is some warnnig mesasges from my last converting; > >>> >> > >>> >> Warning IKVMC0109: skipping class: > "org.w3c.dom.html.HTMLElement" > >>> >> (class is already available in referenced assembly > >>> >> "IKVM.OpenJDK.XML, > >>> >> Versio > >>> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > >>> >> Warning IKVMC0109: skipping class: > >>> >> "org.w3c.dom.html.HTMLFieldSetElement" > >>> >> (class is already available in referenced assembly > >>> >> "IKVM.OpenJDK.XML, > >>> >> Versio > >>> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > >>> >> Warning IKVMC0109: skipping class: > >>> "org.w3c.dom.html.HTMLFontElement" > >>> >> (class is already available in referenced assembly > >>> >> "IKVM.OpenJDK.XML, > >>> >> Versio > >>> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > >>> >> Warning IKVMC0109: skipping class: > >>> "org.w3c.dom.html.HTMLFormElement" > >>> >> (class is already available in referenced assembly > >>> >> "IKVM.OpenJDK.XML, > >>> >> Versio > >>> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > >>> >> Warning IKVMC0109: skipping class: > >>> "org.w3c.dom.html.HTMLFrameElement" > >>> >> (class is already available in referenced assembly > >>> >> "IKVM.OpenJDK.XML, > >>> >> Versio > >>> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > >>> >> Warning IKVMC0109: skipping class: > >>> >> "org.w3c.dom.html.HTMLFrameSetElement" > >>> >> (class is already available in referenced assembly > >>> >> "IKVM.OpenJDK.XML, > >>> >> Versio > >>> >> n=0.40.0.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58") > >>> >> > >>> >> Thanks from now. > >>> >> > >>> >> Regards. > >>> >> Fatih CEVIK > >>> >> > >>> >> > >>> >> > >>> >> Volker Berlin wrote: > >>> >> > > >>> >> > Hi, > >>> >> > > >>> >> > I does not know VERISIGN EPPSDK. That I think nothing about > >>> >> it. Can you > >>> >> > send a link? > >>> >> > > >>> >> > Has this project native parts? It is platform dependent? > >>> >> > > >>> >> > Warnings does'nt a general problem. Can you send the > >>> >> warnings of IKVMC? It > >>> >> > can be a reference to optional components. > >>> >> > Another cause of the problem can be double resource files > >>> >> in the jars. In > >>> >> > this case you need to compile every in a > >>> >> > single dll. The follow syntax work only with the latest > >>> >> version of IKVM. > >>> >> > > >>> >> > C:\ikvm\bin>ikvmc -target:library -sharedclassloader { > >>> first.jar } { > >>> >> > second.jar } {third.jar } > >>> >> > > >>> >> > Volker > >>> >> > > >>> >> > > >>> >> >> -----Ursprungliche Nachricht----- > >>> >> >> Von: onelastbreath [mailto:fat...@gm...] > >>> >> >> Gesendet: Samstag, 1. August 2009 21:17 > >>> >> >> An: ikv...@li... > >>> >> >> Betreff: Re: [Ikvm-developers] Fails while creating > DLL, and > >>> >> >> error on running > >>> >> >> > >>> >> >> > >>> >> >> Thanks for your fast answers Volker, > >>> >> >> I am trying to convert VERISIGN EPPSDK jar files to > a DLL file. > >>> >> >> What you think about it? > >>> >> >> > >>> >> >> I trid what you said and again it gave lots of > warnings while > >>> >> >> creating DLL. > >>> >> >> And after caretion i added it as reference to .NET > again failed > >>> >> >> > >>> >> >> EPPSession() Unable to get connection instance from factory: > >>> >> >> com.verisign.epp.transport.EPPConException: EnvException : > >>> >> >> EPP Environment > >>> >> >> Exception : Unable to Extract Environmental variable > >>> >> >> EPP.ClientSocketName > >>> >> >> > >>> >> >> > >>> >> >> > >>> >> >> Volker Berlin wrote: > >>> >> >> > > >>> >> >> > Hi, > >>> >> >> > > >>> >> >> > I think recurse does not accept a relative path. That you > >>> >> >> need to set an > >>> >> >> > absolute path like: > >>> >> >> > > >>> >> >> > C:\ikvm\bin>ikvmc -target:library > -recurse:C:\ikvm\bin\*.jar > >>> >> >> > -out:verisign.dll > >>> >> >> > > >>> >> >> > Volker > >>> >> > > >>> >> > > >>> >> > > >>> >> -------------------------------------------------------------- > >>> >> ---------------- > >>> >> > Let Crystal Reports handle the reporting - Free Crystal > >>> Reports 2008 > >>> >> > 30-Day > >>> >> > trial. Simplify your report design, integration and > >>> >> deployment - and focus > >>> >> > on > >>> >> > what you do best, core application coding. Discover > >>> what's new with > >>> >> > Crystal Reports now. http://p.sf.net/sfu/bobj-july > >>> >> > _______________________________________________ > >>> >> > Ikvm-developers mailing list > >>> >> > Ikv...@li... > >>> >> > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > >>> >> > > >>> >> > > >>> >> > >>> >> -- > >>> >> View this message in context: > >>> >> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on > >>> >> -running-tp24767124p24772146.html > >>> >> Sent from the IKVM .NET - Dev mailing list archive at > Nabble.com. > >>> >> > >>> >> > >>> >> -------------------------------------------------------------- > >>> >> ---------------- > >>> >> Let Crystal Reports handle the reporting - Free Crystal > >>> >> Reports 2008 30-Day > >>> >> trial. Simplify your report design, integration and > >>> >> deployment - and focus on > >>> >> what you do best, core application coding. Discover what's > >>> new with > >>> >> Crystal Reports now. http://p.sf.net/sfu/bobj-july > >>> >> _______________________________________________ > >>> >> Ikvm-developers mailing list > >>> >> Ikv...@li... > >>> >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers > >>> >> > >>> > > >>> > > >>> > > >>> -------------------------------------------------------------- > >>> ---------------- > >>> > Let Crystal Reports handle the reporting - Free Crystal > Reports 2008 > >>> > 30-Day > >>> > trial. Simplify your report design, integration and > >>> deployment - and focus > >>> > on > >>> > what you do best, core application coding. Discover > what's new with > >>> > Crystal Reports now. http://p.sf.net/sfu/bobj-july > >>> > _______________________________________________ > >>> > Ikvm-developers mailing list > >>> > Ikv...@li... > >>> > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > >>> > > >>> > > >>> > >>> -- > >>> View this message in context: > >>> http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on > >>> -running-tp24767124p24773103.html > >>> Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. > >>> > >>> > >>> -------------------------------------------------------------- > >>> ---------------- > >>> Let Crystal Reports handle the reporting - Free Crystal > >>> Reports 2008 30-Day > >>> trial. Simplify your report design, integration and > >>> deployment - and focus on > >>> what you do best, core application coding. Discover > what's new with > >>> Crystal Reports now. http://p.sf.net/sfu/bobj-july > >>> _______________________________________________ > >>> Ikvm-developers mailing list > >>> Ikv...@li... > >>> https://lists.sourceforge.net/lists/listinfo/ikvm-developers > >>> > >> > >> > >> > -------------------------------------------------------------- > ---------------- > >> Let Crystal Reports handle the reporting - Free Crystal > Reports 2008 > >> 30-Day > >> trial. Simplify your report design, integration and > deployment - and > >> focus on > >> what you do best, core application coding. Discover what's > new with > >> Crystal Reports now. http://p.sf.net/sfu/bobj-july > >> _______________________________________________ > >> Ikvm-developers mailing list > >> Ikv...@li... > >> https://lists.sourceforge.net/lists/listinfo/ikvm-developers > >> > >> > > > > > > -- > View this message in context: > http://www.nabble.com/Fails-while-creating-DLL%2C-and-error-on > -running-tp24767124p24786090.html > Sent from the IKVM .NET - Dev mailing list archive at Nabble.com. > > > -------------------------------------------------------------- > ---------------- > Let Crystal Reports handle the reporting - Free Crystal > Reports 2008 30-Day > trial. Simplify your report design, integration and > deployment - and focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Ikvm-developers mailing list > Ikv...@li... > https://lists.sourceforge.net/lists/listinfo/ikvm-developers > |