[Fwd: Re: [udk-dev] Problems on Clear Separation of C and C++ Uno]

2007-10-30 Thread Kay Ramme
Resending, as it seems that it has not gone through ... ---BeginMessage--- Hi Cynthia, Canghua Qu wrote: Hi, all, It is very nice to join this mailist. :-) A warm welcome and I hope you enjoy it :-) I am Canghua Qu. My English name is Cynthia. Nice to meet you. I am a developer of Open

Re: [udk-dev] (tid=3) Unexpected connection closure

2009-11-15 Thread Kay Ramme
of them are listening anymore...netstat -atpen | grep soffice As far as pipe, i see its closing right now but I would need few days to see if the process closes when using cron? Ideas? Thanks, Lucas Regards, -Etienne Lukasz Szybalski wrote: On Mon, Nov 9, 2009 at 2:29 AM, Kay Ramme kay.ra

Re: [udk-dev] headless package closes connection - was Re: [udk-dev] (tid=3) Unexpected connection closure

2009-11-15 Thread Kay Ramme
Ahhh, I missed this mail ;-) As Stephan said, it is probably better to ask on the go-oo lists or to switch to vanilla (http://download.openoffice.org). Regards Kay Stephan Bergmann wrote: On 11/12/09 18:49, Lukasz Szybalski wrote: I did not see my application fail or get disconnected

Re: [udk-dev] Requirements for UNO-CLI in OOo 2.0 and .NET

2005-02-10 Thread Kay Ramme - Sun Germany - Hamburg
Hi, Joachim Lingner wrote: Hi, Martin Kretzschmar wrote: Hi, [snip] If I read the code correctly, a pure C# version of UNO-CLI is not possible, because the bridge has to have C linkage. The binary UNO interface is defined in C. That means, that a CLI runtime must be accessable through a C

Re: [udk-dev] URP and the Current Context

2005-03-31 Thread Kay Ramme - Sun Germany - Hamburg
Stephan Bergmann wrote: Joerg Budischewski wrote: Hi, Stephan Bergmann wrote: [...] BTW, do you know whether PyUNO and the bridge between PyUNO and binary UNO already support the current context? It seems, that I have overlooked this. How about other scripting languages (ole, basic) ? I can add

Re: [udk-dev] URE and C++ vs. C on Linux

2005-06-13 Thread Kay Ramme - Sun Germany - Hamburg
Hi Dan, Dan Kegel wrote: Christian Junker [EMAIL PROTECTED] wrote: [Apologies if I'm treading old ground, or anyone's toes, or spouding nonsense. I have hardly looked at the UDK before. I do have some experience supporting multiple versions of g++, though.] Is that practical? If it

Re: [udk-dev] details about urp release call

2005-07-12 Thread Kay Ramme - Sun Germany - Hamburg
Stephan Bergmann wrote: The overall validity of turning off MUSTREPLY and SYNCHRONOUS for a normal (not one-way) UNO interface method invocation is at least questionable. One basic property of UNO is that a sequence of method invocations (of not--one-way methods) is executed sequentially,

Re: [udk-dev] Question concerning urp protocoll

2005-09-02 Thread Kay Ramme - Sun Germany - Hamburg
Hi Arnulf, AFAIR a Sequence is marshaled as compressed number n # the size of the sequence value * n # the sequences elements, where the type of value depends on the sequences type an Any is marshaled as Type # the type of the Any value # the value of

Re: [udk-dev] Thoughts on String Construction / Destruction Performance

2005-09-14 Thread Kay Ramme - Sun Germany - Hamburg
Hi Niklas, Niklas Nebel wrote: Taking an attribute name as an example, with the SAX interface inbetween, the via callbacks part looks (roughly) like this: The name is copied into a vector for the XAttributeList implementation, copied again for two getNameByIndex calls (one to look for

Re: [udk-dev] Thoughts on String Construction / Destruction Performance

2005-09-15 Thread Kay Ramme - Sun Germany - Hamburg
Hi Niklas, Niklas Nebel wrote: Kay Ramme - Sun Germany - Hamburg wrote: The calculation just gives, what the optimum (minimum) looks like. If the implementation does more string instantiations than calculated, than it is obviously not optimal (in this aspect) and the impact of string con

Re: [udk-dev] applicat.rdb ?

2005-09-21 Thread Kay Ramme - Sun Germany - Hamburg
Adriano, Adriano Colaianni wrote: sound like you may obtain a new Developer's Guide ;-). The current Developer's Guide talks still about /applicat.rdb/. Please file an issue to Juergen Schmidt for this. The services.rdb is for UNO service registration. The types.rdb is the UNO type

Re: [udk-dev] Segmentation fault

2005-09-21 Thread Kay Ramme - Sun Germany - Hamburg
Adriano, Adriano Colaianni wrote: I've tried to compile a register for a new component implementation in UnoExeMain.jar. The result is segmentation Fault. What is the reason? [EMAIL PROTECTED] eclipsews]$ regcomp -register -br /sp/home/acolaianni/OpenOffice.org1.1.5/program/types.rdb -br

Re: [udk-dev] xpcom_uno module

2005-09-21 Thread Kay Ramme - Sun Germany - Hamburg
Hi Darragh, Daniel is on vacation for quite a while. So, answering this is going to be delayed. Kay Darragh Sherwin wrote: Daniel, I have had some success building the xpcom_uno bridge using my own mozilla build (xulrunner). The earlier issue about XPT_NewArena is solved by linking to

Re: [udk-dev] xpcom_uno module

2005-09-21 Thread Kay Ramme - Sun Germany - Hamburg
I was first :-) Stephan Bergmann wrote: Darragh Sherwin wrote: Daniel, I have had some success building the xpcom_uno bridge using my own mozilla build (xulrunner). The earlier issue about XPT_NewArena is solved by linking to xul rather than xpcom_core. Seems mozilla have done away with

Re: [udk-dev] error while instantiate com.sun.star.awt.Toolkit service.

2005-09-22 Thread Kay Ramme - Sun Germany - Hamburg
Stephan Bergmann wrote: Unfortunately, many UNO services implemented by OOo only work reliably within the soffice process. Without having actually checked it, I assume that com.sun.star.awt.Toolkit is such a problematic service (its internal use of VCL is a pretty sure sign of that). As a

Re: [udk-dev] Thoughts on String Construction / Destruction Performance

2005-09-26 Thread Kay Ramme - Sun Germany - Hamburg
Hi guys, Thorsten Behrens wrote: Eike Rathke [EMAIL PROTECTED] writes: A specialized parser could almost certainly be faster than the general SAX parser passing strings back and forth. I wouldn't do it with lex/yacc though, they're a nightmare to maintain, and in case wrong code was

Re: [udk-dev] Re: [api-dev] Python equivalent to com.sun.star.comp.helper.Bootstrap.bootstrap()?

2005-09-26 Thread Kay Ramme - Sun Germany - Hamburg
scenario. (Unfortunately we named the bootstrap() stuff wrong, as it is _not_ about bootstrapping, but _getting_ a ComponentContext.) Bye, Joerg Kay Kay Ramme - Sun Germany - Hamburg wrote: Hi Joerg, Joerg Budischewski wrote: I am actually also not sure, whether this belongs in a core

Re: [udk-dev] Merits of spirit yacc

2005-09-26 Thread Kay Ramme - Sun Germany - Hamburg
Thorsten Behrens wrote: According to other people, spirit _is_ a DSEL (domain-specific embedded language) - when given the choice, I prefer embedded DSLs over external ones. :-) Ohhh, from what I understood from others, I thought you 'd have to construct a parser by C++ statements (using a

Re: [udk-dev] Thoughts on String Construction / Destruction Performance

2005-10-04 Thread Kay Ramme - Sun Germany - Hamburg
Stephan Bergmann wrote: Kay Ramme - Sun Germany - Hamburg wrote: Hi guys, Thorsten Behrens wrote: Eike Rathke [EMAIL PROTECTED] writes: A specialized parser could almost certainly be faster than the general SAX parser passing strings back and forth. I wouldn't do it with lex/yacc though

Re: [udk-dev] Merits of spirit yacc

2005-10-04 Thread Kay Ramme - Sun Germany - Hamburg
Thorsten Behrens wrote: Kay Ramme - Sun Germany - Hamburg [EMAIL PROTECTED] writes: Thorsten Behrens wrote: According to other people, spirit _is_ a DSEL (domain-specific embedded language) - when given the choice, I prefer embedded DSLs over external ones. :-) Ohhh, from what I

[udk-dev] State of OOo Multi Threading

2005-11-08 Thread Kay Ramme - Sun Germany - Hamburg
Hi guys, some of you might be interested in OOo multi threading. We prepared a first document, mainly listing what we think the issues are. You can find it here: http://udk.openoffice.org/files/documents/23/3029/OOo_multi_threading__status_0_3.odt Agreeing on these issues is just the first

[udk-dev] State of OOo Multi Threading

2005-11-08 Thread Kay Ramme - Sun Germany - Hamburg
Hi guys, some of you might be interested in OOo multi threading. We prepared a first document, mainly listing what we think the issues are. You can find it here: http://udk.openoffice.org/files/documents/23/3029/OOo_multi_threading__status_0_3.odt Agreeing on these issues is just the first

Re: [udk-dev] Java filter batch job

2005-11-14 Thread Kay Ramme - Sun Germany - Hamburg
Hi Martin, just two points: - If the hanging finalizer really is the problem, than one dedicated thread for releasing/finalizing mapped UNO objects should do the trick, no thread pool needed. The Java finalizer just needs to pass these objects to the releaser thread. - How does you ensure

Re: [udk-dev] Java filter batch job

2005-11-14 Thread Kay Ramme - Sun Germany - Hamburg
Stephan Bergmann wrote: Joerg Budischewski wrote: [...] The java uno bridge need to create also a fresh thread for each release (or at least for each concurrent release). It can't be a single thread doing the releases, because this would end in the same problem. A single additonal thread

Re: [udk-dev] State of OOo Multi Threading

2005-11-27 Thread Kay Ramme - Sun Germany - Hamburg
threading clean-up effort. Kay Kay Ramme - Sun Germany - Hamburg wrote: Hi, I updated the document to v0.4. http://udk.openoffice.org/files/documents/23/3029/OOo_multi_threading__status_0_4.odt Changes: - Added multi threaded office crasher example. - Changed some wording. - Added list

Re: [udk-dev] State of OOo Multi Threading

2005-12-08 Thread Kay Ramme - Sun Germany - Hamburg
Hi again, I created a web page for the OOo Multi Threading Clean up Effort at http://udk.openoffice.org/projects/threading/index.html This page is certainly also reachable from the UDK http://udk.openoffice.org/ project. Regards Kay Kay Ramme - Sun Germany - Hamburg wrote: Hi

Re: [udk-dev] ANNOUNCE: tcluno release 0.2

2006-01-31 Thread Kay Ramme - Sun Germany - Hamburg
Arnulf, that is great news! I probably have the time next week to give it a try :-) Regards Kay Arnulf Wiedemann wrote: The tcluno team is pleased to announce release 0.2 of tcluno. Tcluno is a set of Tcl packages, which provide acccess to OpenOffice.org using the urp socket interface.

Re: [udk-dev] A request for com.sun.star.lang.XEventListener

2006-02-17 Thread Kay Ramme - Sun Germany - Hamburg
Rony, Rony G. Flatscher wrote: Hi there, according to the documentation com.sun.star.lang.XEventListener does not report to implement the Java interface java.util.EventListener. It seems that java.beans.Introspector is not able to identify/locate the OOo EventListeners breaking generic

Re: [udk-dev] User-Question: Are TableColumnSeparators working properly?

2006-05-02 Thread Kay Ramme - Sun Germany - Hamburg
Thomas, I suggest to resend your mail to dev@api.openoffice.org, which seems to be more appropriate regarding your questions. Kay Thomas Runge wrote: Hello, I have got some problems using the TableColumnSeparators-property of a SwXTextTableRow-instance. I'm not sure if this could be a bug,

Re: [udk-dev] CoreReflection - and what can not be queried ...

2006-05-05 Thread Kay Ramme - Sun Germany - Hamburg
Marten, Marten Feldtmann wrote: Thanks for all answer ... I'll post my results on this list - if this is interested for you all. this is certainly interesting :-) And, if you are going to contribute it, I suggest to provide pages on the wiki http://wiki.services.openoffice.org/wiki/Uno

Re: [udk-dev] Getting URE types from Java

2006-05-22 Thread Kay Ramme - Sun Germany - Hamburg
Hi, Stephan Bergmann wrote: You are probably using com.sun.star.comp.helper.Bootstrap.bootstrap. Despite being included in a URE jar, this is OOo-specific functionality, This is wrong. so it is by design that it fails for you. Poor design indeed, I agree... This is not by design, but by

Re: [udk-dev] JVM crash after connection to OpenOffice

2006-09-22 Thread Kay Ramme - Sun Germany - Hamburg
Morten, could you try to use TCP/IP instead of Unix sockets (AKA pipes)? The problem may be related to the Unix sockets support library (libjpipe.so) respectively the platform abstraction (libuno_sal). Regards Kay - To

Re: [udk-dev] Removed dead stuff from URP

2006-11-14 Thread Kay Ramme - Sun Germany - Hamburg
Stephan Bergmann wrote: As part of CWS sb23, I removed some dead stuff from the UNO Remote Protocol (URP): - The special messages acquire and getProperties. - The properties BridgeId, SupportedVersions, SupportsMultipleSynchronous, TypeCacheSize, OidCacheSize, TidCacheSize, Version,

Re: [udk-dev] Java Add-on and Swing UI.....

2007-01-18 Thread Kay Ramme - Sun Germany - Hamburg
Ashok, ashok _ wrote: Hello there: Is it possible to invoke Swing JFrame windows from within a java addon? I Yes. have been unable to do this successfully as the Swing dialog launches, but if i close it and try to launch it again it crashes openoffice do you have a stack trace? Thanks

Re: [udk-dev] CH2000 volunteer to do sth. for the UDK project

2007-01-25 Thread Kay Ramme - Sun Germany - Hamburg
Hi Stephan, Stephan Bergmann wrote: Thanks for taking interest. Anyway, not directly related to your request, I have some troubles with that todo. Quoting from that wiki page: There are various obstacles in the way to cleanly separate C Uno (AKA Binary Uno) from C++ Uno. Some of these

Re: [udk-dev] Changing GUI chrome - Unlisted entries

2007-02-14 Thread Kay Ramme - Sun Germany - Hamburg
Terry, did you already ask on the API list? If no one listens their, I would try the framework project ... Just feel free to send me another mail, in case nobody could help. Regards Kay Terry Alexis Lurie wrote: Hi! This may require a redirect to the correct project mailing list which

Re: [udk-dev] About the task Effort/Clean Up Anachronistic Threading Constructs

2007-03-07 Thread Kay Ramme - Sun Germany - Hamburg
Kay -- Sun Microsystems GmbH Kay Ramme Sachsenfeld 4 Senior Technical Architect 20097 Hamburg Phone: (+49 40) 23646 982 Germany Fax: (+49 40) 23646 550 http://www.sun.com/staroffice mailto:[EMAIL PROTECTED] http

Re: [udk-dev] Creating UNO-Ruby bridge?

2007-05-29 Thread Kay Ramme - Sun Germany - Hamburg
Hi Girish, Girish Chandran wrote: Hi All, I am analyzing the effort required for implementing a UNO Bridge for Ruby. I am happy to hear that :-) As part of this exercise I am going through the documentation available at the following urls: - http://udk.openoffice.org/common/man/bridge.html

Re: [udk-dev] Re: [udk-cvs] CVS update [cws_src680_os2port02]: /udk/cppuhelper/source/

2007-10-04 Thread Kay Ramme - Sun Germany - Hamburg
Yuri, Stephan Bergmann wrote: Yuri Dario wrote: Hi Stephan, The generic gcc3.map contains wildcarded entries like _ZN4cppu13ClassDataBaseC1E?; I saw them, but I don't know how to handle wildcards with os2 tools. e.g. I cannot export a symbol using a wildcard, I need an exact match. The

Re: [udk-dev] OLE, UNO, Memory Management - some hints ?

2007-10-30 Thread Kay Ramme - Sun Germany - Hamburg
Marten, Marten Feldtmann wrote: Ok, my code generator for Smalltalk is working pretty well (structs and exceptions are missing), but I have now one problem - I have very large memory leaks (200 MB) on both sides: Smalltalk and OpenOffice .. :-( Perhaps this is more or less an OLE

Re: [udk-dev] Are you going to discuss about to do it or not?

2007-12-11 Thread Kay Ramme - Sun Germany - Hamburg
the Clear Separation of C and Cpp and Core Components thing is nothing we should waste our time with. (I know, Kay Ramme thinks differently, hence he put that on the todo list.) Too much potential to break existing client code, with only very little (IMO) to gain. Yes? I thought anything put

Re: [udk-dev] Simple Bootstrap

2008-04-18 Thread Kay Ramme - Sun Germany - Hamburg
Stephan, Stephan Bergmann wrote: Unfortunately, with the advent of the Three-Layer Office (http://wiki.services.openoffice.org/wiki/ODF_Toolkit/Efforts/Three-Layer_OOo, starting DEV300m4) both the C++ and Java simple bootstrap mechanisms

Re: [udk-dev] create/modify writer docs without running OO

2009-04-17 Thread Kay Ramme - Sun Germany - Hamburg
Hi Dan, there is the ODFToolkit project, you may want to have a look at that ... http://odftoolkit.org/ Regards Kay Daniel Elliott wrote: Hello, Thank you to all for this very cool library! I am a bit new and need some guidance. Using the tutorials in the wiki, I now know how to