To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=68891
                 Issue #|68891
                 Summary|Plugin ActiveX cannot open https url
               Component|utilities
                 Version|OOo 2.0.3
                Platform|All
                     URL|
              OS/Version|Windows, all
                  Status|UNCONFIRMED
       Status whiteboard|
                Keywords|
              Resolution|
              Issue type|DEFECT
                Priority|P3
            Subcomponent|code
             Assigned to|hro
             Reported by|mloiseleur





------- Additional comments from [EMAIL PROTECTED] Wed Aug 23 07:05:00 -0700 
2006 -------
Hello,

   I was investigating the source code of activeX plugin about a cookie problem,
when I found something like this, in
extensions/source/activex/main/SODispatchInterceptor.cpp:174  :


    CComBSTR aPattern( OLESTR( "ftp://*"; ) );
        SafeArrayPutElement( *pVal, &ix, aPattern );

        ix = 1;
    aPattern = CComBSTR( OLESTR( "http://*"; ) );
        SafeArrayPutElement( *pVal, &ix, aPattern );

        ix = 2;
    aPattern = CComBSTR( OLESTR( "file://*" ) );
        SafeArrayPutElement( *pVal, &ix, aPattern );


   It seems to me obvious that it won't work against https & ftps site. I don't
have under the hand a PC linked permanently to the internet so I can't provide a
link to you.

there is also this code, in the same file (line 51), which needs to be changed :
        if( !strncmp( OLE2T( aTargetUrl.bstrVal ), "ftp://";, 6 )
         || !strncmp( OLE2T( aTargetUrl.bstrVal ), "http://";, 7 )
         || !strncmp( OLE2T( aTargetUrl.bstrVal ), "file://", 7 ) )
 
   I can provide a small patch to you if someone here can confirm that this is a
problem. I am not really confident in myself when I see code about
ActiveX/COM/OLE stuff.

---------------------------------------------------------------------
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