To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84045
                 Issue #|84045
                 Summary|Second instance of OOo does not send params to the fir
                        |st one
               Component|framework
                 Version|OOo 2.3.1 RC1
                Platform|All
                     URL|
              OS/Version|All
                  Status|NEW
       Status whiteboard|
                Keywords|
              Resolution|
              Issue type|DEFECT
                Priority|P3
            Subcomponent|code
             Assigned to|tm
             Reported by|kendy





------- Additional comments from [EMAIL PROTECTED] Wed Nov 28 11:30:40 +0000 
2007 -------
Probably a showstopper...

On Linux, ./soffice -writer in one shell, and let it open.  In the second 
shell, do ./soffice -calc - and it does nothing.

The reason is that when you send something to the OSL pipe, it is ignored.  
Simple test script:

----- send.pl -----
#!/usr/bin/perl -w

use Socket;

my $pipe_name = shift;
my $data = shift;

socket( Socket_Handle, PF_UNIX, SOCK_STREAM, 0 );
$sun = sockaddr_un( $pipe_name );
connect( Socket_Handle, $sun );

print Socket_Handle "$data|\0";
----- 8< -----

used to work with m5, but does not with m9.

Usage of the script:
- start OOo
- ./send.pl /tmp/OSL_PIPE_$UID_* "file to open"

(the 'file to open' can be even -calc).

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to