+ Reply to Thread
Page 3 of 6 FirstFirst 1 2 3 4 5 ... LastLast
Results 21 to 30 of 51

Thread: modified Desktop Connector 1.2beta of HTTPS(SSL) enabled available

  1. #21
    Join Date
    Feb 2008
    Location
    London upon Thames
    Posts
    2,792

    Default

    IMO, the better thing to do is bypass the Mono part altogether, and just get the source and do the patching on your Windows machine.
    If my post helped you, please click the icon below this post to my reputation. Thanks!

  2. #22
    Join Date
    Feb 2007
    Location
    Paris, France
    Posts
    165

    Default French version available

    Thank you guys!
    I finally succeeded in obtaining the french version of Desktop Connector
    All is on this page.
    Some content will be added later (already done, but stupidly erased by this wiki when saving...)
    To yasuaki : 3 very little corrections added to initial source
    - in SettingsDialog.cs defaultButton_Click and deleteButton_Click now test if a line is selected before clicking
    - in DekiCommunicator.cs (line 483) DreamMessage now use TEXT_UTF8 to have correct french accentuated characters
    Last edited by Bizzz; 12-20-2009 at 11:27 PM.

  3. #23
    Join Date
    Jan 2009
    Location
    Seoul, Korea
    Posts
    59

    Default Build error

    I'm trying to re-build the CDC w/ the source which Bizzz has posted on his user page.
    The sources have been unzipped to a directory to which SglReaderDll.dll, log4net.dll, and mindtouch.dream.dll have been copied. When I try to rebuild, I get the following errors.

    Error 1 Inconsistent accessibility: parameter type 'DesktopConnector.NavigateEventArgs' is less accessible than delegate 'DesktopConnector.NavigateEventHandler' C:\Users\jeanpkim\Downloads\DesktopConnector_sourc es_fr\DesktopConnector\DirectoryTreeView.cs 43 26 mindtouch.deki.desktop

    Erroir 2 Inconsistent accessibility: parameter type 'DesktopConnector.LoginSettingsEventArgs' is less accessible than delegate 'DesktopConnector.LoginSettingsEventHandler' C:\Users\jeanpkim\Downloads\DesktopConnector_sourc es_fr\DesktopConnector\DirectoryTreeView.cs 44 26 mindtouch.deki.desktop

    What am I doing wrong here?
    OS: Win7
    Compiler: Visual C# Express 2008 (Eng)

  4. #24
    Join Date
    Feb 2008
    Location
    London upon Thames
    Posts
    2,792

    Default

    This is a problem with compiling with the free Express Edition.

    Try changing line 1090 (or nearby):

    Code:
        internal class LoginSettingsEventArgs : EventArgs {
    to

    Code:
        public class LoginSettingsEventArgs : EventArgs {
    and the same with NavigateEventArgs on 1139.

    Then. join with me in celebrating, as this is my 2000th post.
    If my post helped you, please click the icon below this post to my reputation. Thanks!

  5. #25
    Join Date
    Dec 2007
    Location
    Kawasaki, Japan
    Posts
    52

    Default

    Quote Originally Posted by Bizzz View Post
    Thank you guys!
    I finally succeeded in obtaining the french version of Desktop Connector
    All is on this page.
    Bizzz,

    Great work! I am convinced of the selection of your correct road because I read your hardship story. I saw your careful work and believe that MindTouch user in francophonie is very happy by your work.

    I will port your correction to original code, and I will update build procedure of the "Community Desktop Connector(CDC)".

    By the way, I noticed there was a problem in the CDC from a recent event. It is as follows.

    1) We want to separate the code and the message, and to prevent the volunteer's effort from getting scattered and lost.
    2) We want to integrate the release pages for user's convenience.

    However, I am not developer as well as Bizzz but we have not concrete solution.
    What idea does everyone have ? Or, is it my imaginary fears?
    YasuakiHasegawa

  6. #26
    Join Date
    Dec 2007
    Location
    Kawasaki, Japan
    Posts
    52

    Default

    Quote Originally Posted by crb View Post
    Then. join with me in celebrating, as this is my 2000th post.
    Congrats ! I admire for your work.
    YasuakiHasegawa

  7. #27
    Join Date
    Feb 2008
    Location
    London upon Thames
    Posts
    2,792

    Default

    We could host it somewhere like Google Code?
    If my post helped you, please click the icon below this post to my reputation. Thanks!

  8. #28
    Join Date
    Jul 2006
    Location
    San Diego, CA
    Posts
    5,450

    Default

    Or we can provide SVN access to a community area. Personally, I'd rather not see this fragmented all over the web. The CDC is hopefully the first of many components that will flourish on their own. Making it easy to discover and participate is as crucial as is good management of contributions. I'll be happy to assist to make this happen.

    CRB if you have time to attend our next community task force meeting, please make sure to bring this up.
    Steve G. Bjorg - Chief Architect
    Did you check the MindTouch FAQ?
    Found a bug? Report it.
    Follow me on Twitter
    Find us on IRC: irc.freenode.net #mindtouch

  9. #29
    Join Date
    Jul 2009
    Posts
    62

    Default Issue with "non-standard" API path

    Yasuaki,

    First of all, a big THANK YOU for starting a community version of the Desktop Connector, I think the tool sounds great and I can't wait to use it.

    I am having a problem getting the CDC working. The issue I am seeing is once I am connected, I get a blank window (see the attached image for a screenshot). I cannot browse the Wiki or see any pages.

    I have monitored the application using Fiddler, and can see that the API path that is being used by the application is "http://wiki_site/@api/..." etc, whereas my install uses a different API path "http://wiki_site/api/..." (minus the "@" symbol). I believe that this may be the cause of the issue as to why I am getting an empty screen on the CDC - the application cannot authenticate me (please see the attached Fiddler screenshot).

    I have 2 questions I was hoping you might be able to answer:

    1. Do you think this is what could be causing the issue?
    2. Do you know if there would be any way to fix this if it is the case?

    Many thanks in advance and really hope I can get this application working for me.

    Kind regards,

    AJ
    Attached Thumbnails Attached Thumbnails Click image for larger version

Name:	CDC.jpg‎
Views:	20
Size:	18.8 KB
ID:	998  
    Attached Images  

  10. #30
    Join Date
    Dec 2007
    Location
    Kawasaki, Japan
    Posts
    52

    Default

    Hey arandall,

    Thanks for your feedback for the CDC. I'm glad your charming compliment.

    Quote Originally Posted by arandall View Post
    1. Do you think this is what could be causing the issue?
    2. Do you know if there would be any way to fix this if it is the case?

    I guess the cause of the issue are that the API path was hard-coded in source code named "DekiCommunicator.cs"[1] quoted as below.

    Code:
    private const String API_SUBPATH = "/@api/deki";
    So I believe you need re-build the CDC before correct above definition to resolve the issue. However we need enough verification. Can you do this ?

    Perhaps there's the same requirement fix the issue. I'm hoping to take a moment to do this work.

    [1] DekiCommunicator.cs https://svn.mindtouch.com/source/pub...ommunicator.cs
    YasuakiHasegawa

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts