Access Plug-in doesn't work in Development Server

Ask a Question related to Macromedia Flash Flashcom, Design and Development.

  1. #1

    Default Access Plug-in doesn't work in Development Server

    I have downloaded the Linux development version of the flash media server
    version 3.0. Video streaming works fine.

    I want to write a C/C++ access plugin to control accessing the video streams.
    I changed adaptor.cpp that comes in the samples directory. I modified the
    onAccess method to always execute pAccess->reject(). After compiling
    libconnect.so, I put this file in /opt/adobe/fms/modules/access. I stop and
    restart the server.

    I would expect I cannot stream the videos. However, I can still stream them
    with the access plugin enabled. There is no error in the log.

    What have I done wrong?


    firedragon852 Guest

  2. Similar Questions and Discussions

    1. Access Plug-in Function using GetInterface
      Hi, I am new to Interapplication Communication in Acrobat SDK 9, Here in the document i found that using "GetInterface" we can access the...
    2. Does Acrobat Plug-In for Safari work on Intel Macs?
      Even though my preferences are set to use Acrobat Standard in the browser, every PDF page uses Preview. Do I need to re-install Acrobat? OS X...
    3. Server control development
      Dear Folks, I am developing a Header server control. as we know the header control is always going to be at the top of the web page. is there any...
    4. WS Interoperablity: plug-and-play, plug-and-pray, or plug-and-pry?
      Hi- Are web services interoperable? The debate continues. The answer is yes and no. The real question is when, where, and how much. Here's a set...
    5. unable to access web page on development machine
      I am trying to run a simple asp.net page using Visual Studio Net Pro 2002 and getting an error 403.1 Forbidden: Execute Access Forbidden. It...
  3. #2

    Default Re: Access Plug-in doesn't work in Development Server

    Make your changes
    Then clean the plugin if any previous samples were built using the command
    "make -f Makefile.access access_clean"
    Build the sample using command "make -f Makefile.access"
    Copy the libconnect.so file to /opt/adobe/fms/modules/access
    and restart the server

    For more details on reject() method read flashmediaserver_plugin_dev.pdf and
    flashmediaserver_plug_in_API manual present below documentation folder.


    vgokhale 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