Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread Stephan Bergmann
On 04/11/2012 02:04 PM, Tor Lillqvist wrote: The one problem is that UNO "named pipe" (i.e., --accept=pipe,name=foo;urp) communication, even from within a pure Java environment, needs some native code (jpipe JNI library) which obviously needs to be available in the format of the JVM process's arc

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread Tor Lillqvist
> The one problem is that UNO "named pipe" (i.e., --accept=pipe,name=foo;urp) > communication, even from within a pure Java environment, needs some native > code (jpipe JNI library) which obviously needs to be available in the format > of the JVM process's architecture. OK. So would it be feasible

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread Stephan Bergmann
On 04/11/2012 12:10 PM, Tor Lillqvist wrote: I.e. does he want to develop a (64-bit) Java "extension" that would be run in a JVM instantiated in the (32-bit, on Windows) LO process, or use UNO to invoke interfaces in LO from a (64-bit) Java process? I thought that in the latter case the normal t

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread Michael Stahl
On 11/04/12 12:10, Tor Lillqvist wrote: > I.e. does he want to develop a (64-bit) Java "extension" that would be > run in a JVM instantiated in the (32-bit, on Windows) LO process, or > use UNO to invoke interfaces in LO from a (64-bit) Java process? > > I thought that in the latter case the norma

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread Tor Lillqvist
> It looks like someone started work on this > http://libreofficeaustralia.org/bg/community/blog/planet/20110328/porting-libreoffice-x64-windows Yeah, that was me, here is the real URL for the blog post: http://tml-blog.blogspot.com/2011/03/porting-libreoffice-to-x64-windows.html , dunno what that

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread Noel Grandin
On 2012-04-11 12:05, libreoffice...@gmail.com wrote: On 4/11/2012 1:55 PM, Noel Grandin wrote: Are you using LibreOffice x86-32 or LibreOffice x86-64, because I would only expect x86-64 to work What does LibreOffice x86-64 mean ? On download page I can found only 1 version for Windows. (Gues

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread Tor Lillqvist
> What does LibreOffice x86-64  mean ? "x86-64" means the same as "x64" or "amd64". > On download page I can found only 1 version for Windows. (Guess x86) Noel was talking about Linux, I guess. You didn't mention Windows in your initial messages... --tml

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread Tor Lillqvist
> Note that both OOo and LO instantiate the JVM in-process, Yes, but it's unclear to me whether that is what the OP wants. I.e. does he want to develop a (64-bit) Java "extension" that would be run in a JVM instantiated in the (32-bit, on Windows) LO process, or use UNO to invoke interfaces in LO

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread libreoffice...@gmail.com
On 4/11/2012 1:55 PM, Noel Grandin wrote: Are you using LibreOffice x86-32 or LibreOffice x86-64, because I would only expect x86-64 to work What does LibreOffice x86-64 mean ? On download page I can found only 1 version for Windows. (Guess x86) ___

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread libreoffice...@gmail.com
On 4/11/2012 1:09 PM, Michael Stahl wrote: On 11/04/12 10:54, libreoffice...@gmail.com wrote: Dear Community, OpenOffice.org was not supporting x64 Java and it was impossible to connect to OOO Calc using x64 Java through UNO. really? what exactly didn't work in OOo? Please note that problem

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread Noel Grandin
On 2012-04-11 11:49, libreoffice...@gmail.com wrote: It works on any Windows with Java x86 and does not work on Windows X64 + Java X64 + OOO Calc ( which is always x86). Are you using LibreOffice x86-32 or LibreOffice x86-64, because I would only expect x86-64 to work. Disclaimer: http:

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread Jonathan Aquilina
Basically that is to help you get started setting up a build environment for LO so you can build it as well as start contributing patches etc for the issue you are experiencing. On 11/04/2012 11:53, libreoffice...@gmail.com wrote: Dear Noel, I and my company are planning to contribute on LO (

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread libreoffice...@gmail.com
Dear Noel, I and my company are planning to contribute on LO ( funds and/or time) but it is not clear for me how the link you send me help me to connect JAVA x64 with LO Calc using UNO on Windows x64?! Thanks Nick On 4/11/2012 1:00 PM, Noel Grandin wrote: I don't think there are any obje

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread libreoffice...@gmail.com
Dear Michael, Thank you very much for your response. We are having problem with Windows x64 (Server and/or 7) . Please accept my apologies for missing this information. Particularly Java can not be connected with OOO calc through UNO. See : http://fina.cvs.sourceforge.net/viewvc/fina/com

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread Stephan Bergmann
On 04/11/2012 11:09 AM, Michael Stahl wrote: On 11/04/12 10:54, libreoffice...@gmail.com wrote: OpenOffice.org was not supporting x64 Java and it was impossible to connect to OOO Calc using x64 Java through UNO. really? what exactly didn't work in OOo? Note that both OOo and LO instantiate

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread Michael Stahl
On 11/04/12 10:54, libreoffice...@gmail.com wrote: > Dear Community, > > OpenOffice.org was not supporting x64 Java and it was impossible to > connect to OOO Calc using x64 Java through UNO. really? what exactly didn't work in OOo? > How about LibreOffice? Is it possible to use with Java x64?

Re: Libreoffice Java x64 connection through UNO

2012-04-11 Thread Noel Grandin
I don't think there are any objections to supporting it, it's more a case of somebody testing and debugging. Are you volunteering to help out? :-) People here are very happy to help get someone up and running with building and testing. Start here: http://wiki.documentfoundation.org/Developmen