FMS Origin-Only Clustering.

Hi,
      I was successfully able to setup FMS edge-origin cluster but Origin-only clustering is the one we wanted for our live applications.
Can someone please provide any material / pointer about setting up Multiple Origin clustering. The only place I found was 'Large Scale Deployment with FMIS'.
    I guess for Origin Only Clustering, we need to have our own caching system. Can someone what does get cached in a Live AV Chat? How do I propagate it to other Origins?
   What kind of plugins would I need for cache managing? What should the plugin do ?
   In the attached Origin Only Architecture,  what does the Primary Origin do and Secondary Origin do ?   I thought Origin is the place where the application is actually running and Edges do proxy. Is it the same here in Origin-only clustering also?
   Are there any tools which can measure the lag in AV ? (like performance measuring tools or load testing tools for FMS).
   What kind of software Load Balancer can we use for FMS clustering? ( like Nginx, Zeus or something ?) ?
   Kindly help on this FMS Origin-only clustering.
Thanks
Karthik.

Hi,
     Thanks for responding,
      I ve setup this way,
                           _____  Origin1  ___  -----------  ( Application runs only here )
                          /              |               \            \
                         `               |               |               \
                    edge1           edge2          edge3     edge4 ....     ( Applications dont run here, they ll route the traffic to Origin1 )
                          |               |                 |            /
                          \               |               ./           /
                               Load Balancer.    -------------'                    Load balancer sends the traffic to edg1, edg2 and so on.
           ,`````````````````````` /                \
User1                User2                     User3           .....
I am using FMIS 4. Our application is Live AV chat.
For setting up the Origin-Only cluster should we write our our c++ plugin to implement the caching system?? How do I start ?
Can you please explain a small workflow of the  Origin-Only Clustering please like how does clustering happen and how failovers work and how to use Primary and Secondary Origins and  how Edges, Intermediate nodes work please ?

Similar Messages

  • Urgent .. FMS origin & edge licence needed

    we've developed some Flash video applications that will have
    1000
    (avg.) to 5000 (at peak time) connections for a very large
    scaled
    project in Turkey. We have all tested our applications with
    Developer
    Edition and when we made sure that everything is ok, we
    decided to
    start the project. I have checked this adobe website for
    contact about
    FMS licences. I could not found any office or reseller number
    in
    turkiye. so i tried the numbers from the beginning. all of
    the
    contacts that i ve talked took my name my office number my
    company
    name etc. but again none of them helped me about the
    situation. they
    all redirected me to other support numbers. (both in US,UK
    and
    Amsterdam) i wasted 2 weeks (both day and night because of
    the time
    zone issues). of course none of the contacts helped me about
    my
    questions. most of them were unaware of Origin Edge licences.
    After
    calling about 100 contacts (which is also not quite cheap if
    you are
    calling abroad) they told me that maybe "insight" could help
    me. Then
    i wasted another 2 days with insight contacts then they told
    me that
    they are not allowed to sell products because of their tax
    issues.
    Anyway i have found an adobe distributor in istanbul by
    google search
    (also none of US or UK adobe offices had knew any contact in
    Turkey).
    They also send me to a reseller. And i have wasted another
    week with
    them. What they told about FMS Origin&Edge licences was
    in conflict
    with the ones that had told me by a US department. (And also
    a
    department told me that Edge and Origin licences are
    different. Edge
    is for +1000 connections and Origin is for +5000 connections.
    Adobe
    should try to teach them some =) ) Anyway we had also
    confused about
    licence needs. Ali Halac (medyasoft-istanbul) really helped
    us a lot
    about all the issues but there was still some that they also
    have to
    learn by Bilkom (adobe partner). But we (and they) couldnt
    reach any
    contact in Bilkom because they were in vacation. So it has
    been nearly
    1 month and i cant still get enough information about the
    licence that
    i need. i 've checked all the whitepapers blogs vs. about
    Origin&Edge
    licences but couldnt find enough information though. Now i
    need some
    one that can directly help me about this issue? Any email or
    telephone
    number?

    i also dont think that this would be really helpful but i
    tried almost Everything. I really dont know what to do now. we are
    thinking to start an opensource project to stream over rtmp with C.
    Coding what we need in C would not take more than a month. I have
    no one to help me in USA. And as you know there is not much
    information about Origin&Edge licences. They only say that it
    starts from 45.000$. so i also dont know the price. i think that
    maybe ones that had similar problems before can help me.

  • How do I tell FMS to only serve a section of a file using server-side ActionScript?

    We have a bunch of mp3 files on our server and we'd like to serve only particular sections of particular files to users.  For example, hello.mp3 might be four minutes long, but when user 1 tries to play it, he should only be able to play the section from 0:30 to 1:00, whereas user 2 should be able to play the whole thing.
    I'm coming from a background using Wowza Media Server, where this is fairly easy to achieve: http://fmsguru.com/showtutorial.cfm?tutorialID=78.
    Wowza doesn't require any change to the player (it doesn't call any special methods), so I'm looking for the same here.
    I've been fiddling around with the main.asc file and the "Server-Side ActionScript" API to try and achieve something similar.  In particular I've found the Stream.play method, which seems relevant.  But I can't figure out how to attach a handler to a "play" event; all the examples I've seen only attach to Application.onConnect, which doesn't seem to include a connection to a particular file, which I need in order to determine the section that can be played.
    So I'd like to do something along the lines of this (this is completely made up and doesn't follow any of the APIs; it's just an illustration of what I'm trying to achieve):
    application.onConnect = function(client) {
       client.onPlay = function(stream) { // Client.onPlay doesn't exist; what should I do here?
           var section = getStreamSection(client, stream);
           stream.play(section.start, section.end);
    var getStreamSection = function(client, stream) {
       return { start: 30, end: 60 }; // Return value is based on the user's credentials and the file they're trying to stream

    You can find the documentation for Plug-ins here:
    http://help.adobe.com/en_US/flashmediaserver/plugin_apiref/index.html
    http://help.adobe.com/en_US/flashmediaserver/devguide/WS5b3ccc516d4fbf351e63e3d11a0d662434 -7ff6PluginAPI.html
    Basically you need to concentrate on E_PLAY event and two fields F_STREAM_LENGTH & F_STREAM_POSITION. I am pasting below some code which you need to paste in your sample Auth Plug-in which you can find in : <installdir>/samples/plug-ins. You would have paste below code in case E_PLAY section in MyFmsAuthorizeEvent::authorize() function and compile it. You would basically get AuthModule.dll which you need to place in modules/auth and restart FMS.
    // Set the Stream to be played back only for 10 seconds starting from 10 th second
                                  // Stream will play from 10th Second to 20th Second
                                     float fValue;
                                  char buf[1024];
                                  if (getFloatField(m_pAev, IFmsAuthEvent::F_STREAM_LENGTH, fValue))
                                            float fLength = fValue; // in seconds
                                            sprintf(buf,"Original Stream length value passed from player %f\n",fLength);
                    m_pFmsAuthServerContext->log(buf, IFmsServerContext::kInformation, false);
                                            fLength=10.0;
                                            sprintf(buf,"Modifying Stream length value passed from player %f\n",fLength);
                    m_pFmsAuthServerContext->log(buf, IFmsServerContext::kInformation, false);
                                            setFloatField(m_pAev,IFmsAuthEvent::F_STREAM_LENGTH,fLength);
                                  if (getFloatField(m_pAev, IFmsAuthEvent::F_STREAM_POSITION, fValue))
                                            float iPosition = fValue; // in seconds
                                            sprintf(buf,"Original Stream Position value passed from player %f\n",iPosition);
                    m_pFmsAuthServerContext->log(buf, IFmsServerContext::kInformation, false);
                                            iPosition=10.0;
                                            sprintf(buf,"Modifying Stream length value passed from player %f\n",iPosition);
                    m_pFmsAuthServerContext->log(buf, IFmsServerContext::kInformation, false);
                                            setFloatField(m_pAev,IFmsAuthEvent::F_STREAM_POSITION,iPosition);

  • Delete original ONLY IF not used in a non-reject version

    * I use only referenced masters *
    Sometimes I'll shoot maybe 30 photos of a virtually identical scene with different settings and slightly different timing or lighting or focus.
    Then I'll go back to the computer and edit a few of them into maybe 20 preliminary versions that may only use 12 of the original files.
    This means I end up with a gig of superflous raw files, eating up space on my precious cramped SSD.
    I can't tell them apart by sight and I want to get rid of originals that are used in only in a rejected version.
    If I switch to just view rejects and delete originals and versions I lose the originals for versions I do want to keep.

    What I need is a way to get Aperture to delete the raw files for which there are only rejected versions, or no versions at all (although then I don't know how Aperture would know about that raw file.)
    Aperture has no smart rule to count the number of versions of an image . Try the following work-around:
    Consolidate your rejected versions with "File > Consolidate" before you delete them. Now you can delete all rejected versions with "File > Delete Version ⌘⌫". When you delete the last remaining version the original raw file will be deleted as well. But as long as there is another version of the image the original file will be saved. When you are done with deleting rejected versions, you can use a smart search to find any remaining managed image and relocate it back to the folder outside.
    Deleting images and getting rid of orphaned original image files is easier for managed images.
    If you do not want to use the work-around to make the image managed before deleting versions, delete your versions only while browsing them in the project, sorted by filename. That will keep all versions side-by-side and you can see, if you are about to delete the last version. Or drag each version you want to delete to a new, empty project: When you move a version to a new project, all other versions will go along. You now will have a project containing only one image with all its versions. You should be able to see by the "rejected" badge, if you should delete using "delete version" or "all versions and the original".

  • BlackBerry Curve 8900 Locked - Not Accepting Password - I'm Original/Only Owner of Device

    Hello - I'm brand new to this Forum.  I've had my Blackberry Curve 8900 since September of 2009 (original owner) and this is only my second problem with the phone. (My trackball gave out last July, but I had it fixed and it is good as new).
    Anyway, I received an email this morning to update the password for my email account (Hotmail) and I updated via my settings on the phone. Then 10 minutes later my phone locked and asked for a password. I recently updated my Blackberry ID password and received a confirmation. Now when I enter this password into my phone to unlock it...I keep getting the message that it is "incorrect" and how many tries I have left out of 10 (it says information will be erased if one more wrong attempt). I already have done this 9 times and it keeps getting rejected.  I only have one attempt left and I'm extremely frustrated. Isn't this password the same as the BlackBerry ID password? What else can I do? Help!  Now all I can do is make call & receive calls. I'm unable to check email or text messages since phone is locked.  Please help!

    Hello FlowerChick, 
    Welcome to the forums and sorry to hear about your issue. 
    Before you made any changes did you use a password to lock your device? If so then this would be the password you need to enter. Hope this helps. Let us know if we can help out in any other way. 
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • [HELP] Originally only edited with 2 channels of audio on files now I need 4?!?

    premiere pro cs6, already edited a film and need to add the sound. I have them synced with the 4 channel audio attached but the original edit the files only had 2 channels, how can import the new ones with the 4 channels back into the program and get the 4 channels in the timeline? The problem I'm having is that it was set up with only 2.
    [Text formatting corrected.]
    Message was edited by: Jim Simon

    maybe this does a better job of explaining:
    I edited a film without syncing the sound first, and the video files only had 2 audio channels.  After syncing they have 4, but when I import them back into premiere it only allows me to use to of the audio channels, is there anyway to get them back in to premiere with all 4 channels attached.

  • FMS Origin and Edge license questions

    Hello!
    We want to start audio/video-service transferring live stream
    (cam-2-cam, video/audio/text chat) for an acquaintance site basis
    on Flash Media Server technology. For uninterrupted work of this
    service we have calculated that it is necessary to introduce the
    server scheme consisting of 1 Origin and 2 Edge servers. The number
    of simultaneous user connections is about 1000. The users have the
    bandwidth at least 256/256 Kbit per second (download/upload).
    Our questions:
    1. Is our calculations true?
    2. What requirements are necessary to bandwidth to each
    server in this case?
    3. What is the price of license in this case?
    4. How and where it is possible to get Flash Media Server in
    territory of Russia or it probably to carry out through head
    office?
    Thank you!

    Assuming video is being broadcast at 256kbps, each 2 way
    video chat will consume about 1mbps of bandwidth (2 publishers 2
    subscribers). With 1000 users, you're talking about 500mbps of
    throughput.
    When I last read about it, the Origin license was somewhere
    around $50,000, but I didn't get that number straight from Adobe,
    so don't take my word as absolute fact.
    If I were planning this project, I might opt to go with 7
    professional licenses (1050 connections) instead of an origin and
    an edge. My reasoning is this... you can spread the load across
    more servers without having to buy additional licenses, and since
    the streams are unique and not viewed by a large audience, you
    don't need the stream caching feaures of the origin/edge license.
    About sales in Russia, I don't know about that. You might
    want to contact Adobe directly.

  • FlashPlayer 11 (non-debug only) + LCCS v2.1.0 targeting FP 10.0 not loading content

    Is anyone still compiling apps with LCCS 2.1.0 targeting FlashPlayer 10.0 and running the app in a FlashPlayer 11 ( non-debug ) ?
    * Not an issue when I target LCCS 2.1.0 to FP 10.3 but I can't upgrade just yet because of some of our customers
    Most of my UI elements ( mx:boxes, video, audio...etc  doesn't show up) just trying to see how wide spread is this problem ( it's hard to debug when the issue only occurs in a non-debug version of FlashPlayer 11 )
    I was able to collect LCCS info and seems like I'm connecting to a room and all is good, the camera input starts but I don't see any of the UI components:
    "Thu Oct 6 14:06:06 GMT-0400 2011 LCCS SDK Version : 2.1.0 Player Version : MAC 11,0,1,152
    14:06:06 GMT-0400 requestInfo https://connect.acrobat.com/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx?mode=xml&glt=g :&x=0.2601146502420306
    14:06:07 GMT-0400 authentication status: 200
    14:06:07 GMT-0400 authentication request complete
    14:06:07 GMT-0400 requestInfo https://connect.acrobat.com/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx?gak=cmVuZ2EqbmE xcioxMzJkYTY4YjE3YypNUDNGMDFUNlBONzVRN002RlpRVzgzVkhTOA==&mode=xml&x=0.316164287738502
    14:06:07 GMT-0400 #TicketService# ticket received: 1x3ewlxtsvupx
    14:06:07 GMT-0400 Getting FMS at https://na2.collaboration.adobelivecycle.com/fms?ticket=1x3ewlxtsvupx&proto=rtmfp, attempt #1/3
    14:06:08 GMT-0400 result: <fms> <origin>fms8.acrobat.com</origin> <proto_ports>rtmfp:1935,rtmps:443</proto_ports> <retry_attempts>2</retry_attempts> </fms>
    14:06:08 GMT-0400 protocols: [object ProtocolPortPair],[object ProtocolPortPair]
    14:06:08 GMT-0400 [attempt 1 of 2] Connecting to 0/1: rtmfp://fms8.acrobat.com/cocomo/xxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxx #startProtosConnect#
    14:06:08 GMT-0400 tempNetStatusHandler 0/2,NetConnection.Connect.Success
    14:06:08 GMT-0400 isTunneling? false
    14:06:08 GMT-0400 is using RTMPS? false
    14:06:08 GMT-0400 RECEIVED LOGIN AT SESSION
    14:06:08 GMT-0400 .user descriptor from server [object]
    14:06:08 GMT-0400 \
    14:06:08 GMT-0400 .affiliation [number]= 100
    14:06:08 GMT-0400 .role [number]= 100
    14:06:08 GMT-0400 .displayName [string]= Eschool Dev
    14:06:08 GMT-0400 .userID [string]= WCD-34624D004898515B99201587
    14:06:08 GMT-0400 RECEIVENODES UserManager
    14:06:08 GMT-0400 receiveAllSynchData UserManager
    14:06:08 GMT-0400 RECEIVENODES FileManager
    14:06:08 GMT-0400 receiveAllSynchData FileManager
    14:06:08 GMT-0400 checkManagerSync:[object FileManager]
    14:06:08 GMT-0400 RECEIVENODES AVManager
    14:06:08 GMT-0400 receiveAllSynchData AVManager
    14:06:08 GMT-0400 checkManagerSync:[object StreamManager]
    14:06:08 GMT-0400 RECEIVENODES RoomManager
    14:06:08 GMT-0400 receiveAllSynchData RoomManager
    14:06:08 GMT-0400 checkManagerSync:[object RoomManager]
    14:06:08 GMT-0400 checkManagerSync:[object UserManager]
    14:06:09 GMT-0400 RECEIVENODES SupportRoomReassignmentModel
    14:06:09 GMT-0400 receiveAllSynchData SupportRoomReassignmentModel
    14:06:09 GMT-0400 RECEIVENODES Classroom
    14:06:09 GMT-0400 receiveAllSynchData Classroom
    14:06:09 GMT-0400 RECEIVENODES RSUserManager
    14:06:09 GMT-0400 receiveAllSynchData RSUserManager
    14:06:09 GMT-0400 RECEIVENODES default_SimpleChat
    14:06:10 GMT-0400 receiveAllSynchData default_SimpleChat
    Any ideas / clues / similar experiences ?
    Thanks
    Alex G.

    1) -swf-version is not set when targeting 10.0; -swf-version=12 was set for FP 10.3 integration
    2) Correct, LCCS v2.0.0/2.1.0 for Player10.0
    3) Flex 4.1 SDK
    4) No, non-LCCS elements do not show up
    5) Both, Mac and Windows. Yes, Chrome, Firefox ( 3.6 and 7 ), IE 8/9
    We found out where the problem lies; fyi our init process is 3 steps:
    1) init data
    2) connect to room - lets call it lobby view / intermediate room that has no significant UI to indicate we are connectingto LCCS room
    3) and finally the full UI that a teacher / student sees
    When we get the room URL we also destroy the 'lobby view' room right before rendering the video/audio/full UI to the user. At this point we set the instance to null "_lobbyView = null". Somewhere later in the code _lobbyView is referenced but it's null even though we have null checks around all of _lobbyView instances :/
    This line of code causes a Flash RTE but ONLY in a non-debug version of FlashPlayer 11 and I think we are now finding evidence that this issue has been happening in FlashPlayer 10.3 but much rearer. So after our users started upgrading to Flash Player 11 we started seeing the problem show up very frequently. Without code changes on our end, it's odd that upgrade to either the LCCS lib (to Player10.3 lib) or FlashPlayer itself we start seeing this problem come up.
    Thanks for the quick response
    Alex G.

  • FMS 3.5 on Windows Server cluster?

    Is FMS 3.5 supported on a Windows 2003 (or better yet Windows 2008) server fail-over cluster?
    Thinking it would be nice to have an origin server clustered so no single point of failure can occur. Any thoughts?

    yes =) windows and linux
    http://www.adobe.com/devnet/flashmediaserver/articles/scaling_securing_fms3.html
    http://help.adobe.com/en_US/FlashMediaServer/3.5_AdminGuide/WS5b3ccc516d4fbf351e63e3d119f2 925d1a-7ffc.html
    regards
    Leonardo França
    Adobe Certified Expert Flex 3 with AIR
    Adobe Certified Expert Rich Internet Application Specialist v1.0
    Adobe Certified Expert Flash CS3 Professional
    Certified Professional Adobe Flex 2 Developer
    Adobe Certified Professional Flash MX 2004 Developer
    http://www.leonardofranca.com
    http://twitter/leofederal
    Manager AUGDF - Adobe User Group do Distrito Federal
    http://www.augdf.com.br
    http://twitter/augdf
    jwa10 escreveu:
    Is FMS 3.5 supported on a Windows 2003 (or better yet Windows 2008) server fail-over cluster?
    Thinking it would be nice to have an origin server clustered so no single point of failure can occur. Any thoughts?
    >

  • FMS 3 deployment

    Hi I am a newbie to FMS, just wanted to know that can you
    develop the FMS application using the WINDOWS XP BASED FMS free
    development server & then deploy that application on a LINUX
    BASED paid production/live FMS version 4...(like in case of J2EE
    apps)....thankx alot for the help...

    yes =) windows and linux
    http://www.adobe.com/devnet/flashmediaserver/articles/scaling_securing_fms3.html
    http://help.adobe.com/en_US/FlashMediaServer/3.5_AdminGuide/WS5b3ccc516d4fbf351e63e3d119f2 925d1a-7ffc.html
    regards
    Leonardo França
    Adobe Certified Expert Flex 3 with AIR
    Adobe Certified Expert Rich Internet Application Specialist v1.0
    Adobe Certified Expert Flash CS3 Professional
    Certified Professional Adobe Flex 2 Developer
    Adobe Certified Professional Flash MX 2004 Developer
    http://www.leonardofranca.com
    http://twitter/leofederal
    Manager AUGDF - Adobe User Group do Distrito Federal
    http://www.augdf.com.br
    http://twitter/augdf
    jwa10 escreveu:
    Is FMS 3.5 supported on a Windows 2003 (or better yet Windows 2008) server fail-over cluster?
    Thinking it would be nice to have an origin server clustered so no single point of failure can occur. Any thoughts?
    >

  • Connection to FMS

    Hi
    I have been testing recording beta and have successfully managed to get things playing back after realising that it can take up to 1min 30secs to get a response from FMS at https://na2.collaboration.adobelivecycle.com/...  I am not sure whether this is normal but I ended up spending 2 days checking, writing, reading, trying to fix issues that were not aparent, it was just the server responding slowly.
    Seeing as my archive files for the reading are only small, 3.5mb, how can this take so long?  Below are a couple of examples...
    Tue May 24 20:35:36 GMT+0100 2011    LCCS SDK Version : 1.4.0    Player Version : WIN 10,3,181,14
    20:35:36 GMT+0100    requestInfo http://collaboration.adobelivecycle.com/pmrmedia/48543053e6c8b85?glt=g:playback&mode=xml&x =0.25961616123095155
    20:35:39 GMT+0100    #TicketService# ticket received: 1ppxlzajcugx6
    20:35:39 GMT+0100    Getting FMS at https://na2.collaboration.adobelivecycle.com/fms?ticket=1ppxlzajcugx6&playback=__defaultAr chive__&proto=rtmfp, attempt #1/3
    20:36:50 GMT+0100    result: <fms>
      <origin>fms5.acrobat.com</origin>
      <proto_ports>rtmfp:1935,rtmps:443</proto_ports>
      <retry_attempts>2</retry_attempts>
    </fms>
    20:21:40 GMT+0100    Getting FMS at https://na2.collaboration.adobelivecycle.com/fms?ticket=q3wh65tabq7h&playback=__defaultArc hive__&proto=rtmfp, attempt #1/3
    20:22:51 GMT+0100    result: <fms>
      <origin>fms5.acrobat.com</origin>
      <proto_ports>rtmfp:1935,rtmps:443</proto_ports>
      <retry_attempts>2</retry_attempts>
    </fms>
    Can anyone shed any light on this duration or is this the "norm" for playback?
    Thanks
    Marc

    I'm seeing the same thing right now. Response ranges from 1minute to 1 min 30 seconds from Adobe server:
    Here's Firebug:

  • How to play a FLV file located in a second FMS?

    How to play a FLV file located in a second FMS not directly accessible by the flash client?
    - I am publishing an audio stream from the flash client to a FMS;
    - This FMS then publishes the stream to a second FMS, which records the stream to a FLV;
    How can I play in the client the FLV audio file that I recorded in the second FMS?
    - The first FMS is accessible by the flash client, but the second FMS is only accessible by the first FMS.
    thanks in advance
    fabio

    Answer in http://www.flashcomguru.com/forum/forum_posts.asp?TID=4276&PN=1&TPN=1

  • How to restore original message after forwarding it?

    I forward an email and am now unable to find the original message and attachment. It's like it never existed on my computer or in Mail except for a little line on the bottom of my forwarded email stating who the original message was from, date sent, and pdf name.
    When I search the original sender or keywords for the original, only my forwarded message shows up. Also can't find it when I search by date. It is not in my sent or trash folder. The "start" of the conversation is with my forwarded message.
    HELP?!??
    Is this a security feature? Is there any way to recover the original email's contents??
    Much appreciated!!

    Not sure how to help with this, but wanted to chime in about the search! It IS gone...!! What a time for Apple to remove an important feature........:(

  • How to connect directly to FMS server

    Hi,
    Is it possible to connect directly to FMS server with NetConnection
    and connect to video with NetStream ?
    I see that in debug mode can see the RTMPS connection of FMS server,
    So I try successfully connect to this RTMPS connection,
    But I don't know what is the STREAM NAME of the video (WebcamPublisher).
    Thanks,
    Eyal.

    Hi Nigel,
    I developed the ChatVideo (http://www.chatvideo.co.il) that use the Adobe LiveCycle Collaboration Service.
    Now I want to develop a version to iPhone.
    To do this I used WOWZA servers - I set up the WOWZA server to edge and he take the stream from the Adobe FMS origin server,
    And on the fly the WOWZA server produce M3U8 link that can view in the iPhone.
    Are you know a other way to do this?
    Thanks,
    Eyal.

  • FMS using values in row items of form

    Hi Experts,
    I have a situation where i provide a list of values to the user using a format search to get the required serial number. the format search appears in the following manner
    Find |_<text to be found>___|
    <Search Results from the query>
    *Manufac, Serial
    Serial Number
    Batch ID*
    AAAA1
    BBBB1
    CCC/1
    Now in my form i need to enter all three data items listed in my format search but when i select the entire row from my FMS I only get the value to the row item that i defined the FMS. Can any one let me know if there is a way to get the relevant values filled to the relevant columns. i don't want to define the same FMS to three columns.
    One way that i found is to use the following command in the manufacturer Serial and Batch ID columns and set the format search to refresh every time the serial number changes  --- but it didn't work -
    or i did it wrong --- please help
    SELECT T0.[SuppSerial] AS 'Manufacturer Serial No.' FROM  [dbo].[OSRI] T0 WHERE T0.IntrSerial = '$http://$21.54.1'
    21 = formID, 54 = Column , 1 = row.

    The basic steps would be something like this:
    1. Put the FMS that gets the Manufacturer Serial No. into the first column. Its variable comes from $[21.54.1] or a user choice or something?
    2. Put the FMS that gets the Serial Number into the second column. Its variable is the value in the first column, and it refreshes when that value changes.
    2. Put the FMS that gets the Batch Number into the third column. Its variable is the value in the second column, and it refreshes when that value changes.
    After that I would need to see the FMS's that you tried.

Maybe you are looking for