WDDX rocks with DW extensions

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default WDDX rocks with DW extensions

    This isn't really a question, more of a comment. I've been working on some
    extensions that heavy use of WDDX [url]http://www.openwddx.org[/url] to transfer complex
    data between dreamweaver and my server. It works great. If you haven't played
    with WDDX yet, try it out. Steve

    Steve Guest

  2. Similar Questions and Discussions

    1. 2m`cp The Arcade Room Rocks ! 2m`cp
      This site has tons of games for fun! Visit the arcade room for excitement at http://www.gabbyinc.net ! Also has plenty of free games to enjoy! So...
    2. WDDX and '&'
      I have a Query record that has a '&' in it. The record loads fine into a WDDX variable and then displays into a field on the screen however when I...
    3. WDDX issue
      How are you sending it once you have it packaged? I'm guessing either through a 'get' mehtod via a form or a url. In either case the server will cut...
    4. OT- Dell Customer service just friggin' ROCKS
      So you guys knew I was having some problems with my Dell D600 laptop. I won't get into all the menutia but they are essentially sending me a new...
    5. php wddx
      I have a webserver machine with linux apache 2.0 php 4.2.2 with wddx support and a windows machine with iis server wich have a .Net system wich i...
  3. #2

    Default Re: WDDX rocks with DW extensions

    Steve wrote:
    > This isn't really a question, more of a comment. I've been working on some
    > extensions that heavy use of WDDX [url]http://www.openwddx.org[/url] to transfer complex
    > data between dreamweaver and my server. It works great. If you haven't played
    > with WDDX yet, try it out. Steve
    Hey Steve,

    How are you performing the data transfer to the server? Using the built in FTP, the MMHttp object, or some other method?


    --
    Enjoy,
    Danilo Celic

    | Extending Knowledge, Daily
    | [url]http://www.CommunityMX.com/[/url]

    Those who aren't looking often have their eyes open widest.
    danilocelic *TMM* Guest

  4. #3

    Default Re: WDDX rocks with DW extensions

    I've been using MMhttp. That works pretty well. Basically I get the wddx data
    with a MMHttp.getText() then, populate a form in my extension with the data.
    Then use the setField() WDDX function to manipulate the WDDX, then when i'm
    done I serialize the data and use MMHttp.postText() to send the updated packet
    back to the server. I have had some issues with urlencoding the data. But I
    think that might actually be on the ColdFusion side, not DW. I don't remember
    having this problem with CF4 and CF 5 it might be a bug in CF6, i'm not sure.
    For example if I have a WDDX packet that contains HTML data in it, when i send
    the packet back to the server it barfs on me. This happens even if i encode the
    data with the JS escape() function. It seems to urldecode it too soon. Anyway i
    got around that by just replacing the &'s in the data with %% then doing
    the same thing when the packet comes to the server. Ugly, but it works. Steve
    Nelson

    Steve Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139