Subscriber apperars as Publisher and Subscriber in Cluster Nodes

Hello,
A CUCM 5 cluster has two nodes. One node Publisher and one Subscriber.
3 weeks ago Subscriber server went off due to a power supply issue.
We purchased a new power supply and when this server became alive, the following appeared in OS ADMINISTRATION -> SHOW CLUSTER
If i remove server 10.10.200.21 as Publisher Type of Node, will i face any problems?
Thank you.

Hi Aman.
@ PUBLISHER 
admin:utils service list
Requesting service status, please wait...
System NTP [STARTED]
System SSH [STARTED]
Service Manager is running
Getting list of all services
>> Return code = 0
A Cisco DB[STARTED]
A Cisco DB Replicator[STARTED]
Cisco AMC Service[STARTED]
Cisco AXL Web Service[STARTED]
Cisco Bulk Provisioning Service[STARTED]
Cisco CAR Scheduler[STARTED]
Cisco CAR Web Service[STARTED]
Cisco CDP[STARTED]
Cisco CDP Agent[STARTED]
Cisco CDR Agent[STARTED]
Cisco CDR Repository Manager[STARTED]
Cisco CTIManager[STARTED]
Cisco CallManager[STARTED]
Cisco CallManager Admin[STARTED]
Cisco CallManager Attendant Console Server[STARTED]
Cisco CallManager Cisco IP Phone Services[STARTED]
Cisco CallManager Personal Directory[STARTED]
Cisco CallManager Serviceability[STARTED]
Cisco CallManager Serviceability RTMT[STARTED]
Cisco Certificate Expiry Monitor[STARTED]
Cisco DHCP Monitor Service[STARTED]
Cisco DRF Local[STARTED]
Cisco DRF Master[STARTED]
Cisco Database Layer Monitor[STARTED]
Cisco Dialed Number Analyzer[STARTED]
Cisco Electronic Notification[STARTED]
Cisco Extended Functions[STARTED]
Cisco Extension Mobility[STARTED]
Cisco Extension Mobility Application[STARTED]
Cisco IP Manager Assistant[STARTED]
Cisco IP Voice Media Streaming App[STARTED]
Cisco License Manager[STARTED]
Cisco Log Partition Monitoring Tool[STARTED]
Cisco RIS Data Collector[STARTED]
Cisco RTMT Reporter Servlet[STARTED]
Cisco SOAP - CDRonDemand Service[STARTED]
Cisco Syslog Agent[STARTED]
Cisco TAPS Service[STARTED]
Cisco Tftp[STARTED]
Cisco Tomcat[STARTED]
Cisco Tomcat Stats Servlet[STARTED]
Cisco Trace Collection Service[STARTED]
Cisco Trace Collection Servlet[STARTED]
Cisco WebDialer Web Service[STARTED]
Host Resources Agent[STARTED]
MIB2 Agent[STARTED]
Native Agent Adapter[STARTED]
SNMP Master Agent[STARTED]
SOAP -Log Collection APIs[STARTED]
SOAP -Performance Monitoring APIs[STARTED]
SOAP -Real-Time Service APIs[STARTED]
System Application Agent[STARTED]
Cisco CTL Provider[STOPPED]  Service Not Activated 
Cisco CallManager SNMP Service[STOPPED]  Service Not Activated 
Cisco Certificate Authority Proxy Function[STOPPED]  Service Not Activated 
Cisco DirSync[STOPPED]  Service Not Activated 
Cisco Messaging Interface[STOPPED]  Service Not Activated 
Cisco Serviceability Reporter[STOPPED]  Service Not Activated 
Primary Node =true
@ SUBSCRIBER
admin:utils service list
Requesting service status, please wait...
System NTP [STARTED]
System SSH [STARTED]
Service Manager is running
Getting list of all services
>> Return code = 0
A Cisco DB[STARTED]
A Cisco DB Replicator[STARTED]
Cisco AMC Service[STARTED]
Cisco AXL Web Service[STARTED]
Cisco CDP[STARTED]
Cisco CDP Agent[STARTED]
Cisco CDR Agent[STARTED]
Cisco CDR Repository Manager[STARTED]
Cisco CTIManager[STARTED]
Cisco CallManager[STARTED]
Cisco CallManager Admin[STARTED]
Cisco CallManager Attendant Console Server[STARTED]
Cisco CallManager Cisco IP Phone Services[STARTED]
Cisco CallManager Personal Directory[STARTED]
Cisco CallManager Serviceability[STARTED]
Cisco CallManager Serviceability RTMT[STARTED]
Cisco Certificate Expiry Monitor[STARTED]
Cisco DHCP Monitor Service[STARTED]
Cisco DRF Local[STARTED]
Cisco DRF Master[STARTED]
Cisco Database Layer Monitor[STARTED]
Cisco Dialed Number Analyzer[STARTED]
Cisco Electronic Notification[STARTED]
Cisco Extended Functions[STARTED]
Cisco Extension Mobility[STARTED]
Cisco Extension Mobility Application[STARTED]
Cisco IP Manager Assistant[STARTED]
Cisco IP Voice Media Streaming App[STARTED]
Cisco License Manager[STARTED]
Cisco Log Partition Monitoring Tool[STARTED]
Cisco RIS Data Collector[STARTED]
Cisco RTMT Reporter Servlet[STARTED]
Cisco Syslog Agent[STARTED]
Cisco Tftp[STARTED]
Cisco Tomcat[STARTED]
Cisco Tomcat Stats Servlet[STARTED]
Cisco Trace Collection Service[STARTED]
Cisco Trace Collection Servlet[STARTED]
Cisco WebDialer Web Service[STARTED]
Host Resources Agent[STARTED]
MIB2 Agent[STARTED]
Native Agent Adapter[STARTED]
SNMP Master Agent[STARTED]
SOAP -Log Collection APIs[STARTED]
SOAP -Performance Monitoring APIs[STARTED]
SOAP -Real-Time Service APIs[STARTED]
System Application Agent[STARTED]
Cisco Bulk Provisioning Service[STOPPED]  Service Not Activated 
Cisco CAR Scheduler[STOPPED]  Service Not Activated 
Cisco CAR Web Service[STOPPED]  Service Not Activated 
Cisco CTL Provider[STOPPED]  Service Not Activated 
Cisco CallManager SNMP Service[STOPPED]  Service Not Activated 
Cisco Certificate Authority Proxy Function[STOPPED]  Service Not Activated 
Cisco DirSync[STOPPED]  Service Not Activated 
Cisco Messaging Interface[STOPPED]  Service Not Activated 
Cisco SOAP - CDRonDemand Service[STOPPED]  Service Not Activated 
Cisco Serviceability Reporter[STOPPED]  Service Not Activated 
Cisco TAPS Service[STOPPED]  Service Not Activated 
Primary Node =false
Thanks in advance.

Similar Messages

  • What is Best Practice for Publishing and Subscribing to Multicast Video P2P

    Please, could someone help with an issue I am having in developing a peer to peer video chatting application?  My application uses  multicast to publish and subscribe to video streams of NetGroup members.  I'm listening for the  NetGroup.Neighbor.Connect event, and I'm calling the following function: 
    protected function onPeerConnect(event:NetStatusEvent):void{
                    var peerID:String = event.info.peerID;
                    // create user vo here
                    // user Value Object for incoming stream
                    userVO = new User();
                    userVO.peerID = peerID;
                    netGroup.addNeighbor(peerID);
                    receiveStream(userVO);
    protected function receiveStream(userVO:User):void{
                    // init netstream
                    var stream:NetStream = new NetStream(nc,groupspec.groupspecWithAuthorizations());
                    stream.receiveVideo(true);
                    stream.addEventListener(NetStatusEvent.NET_STATUS,netStatus);
                    // init panel
                    // alter to use custom component instead
                    var panel:Panel = new Panel();
                    panel.id = "panel" + panel_seq;
                    panel.title = "Panel" + panel_seq;
                    panel.width=322;
                    panel.height=281;
                    panel.x = 50 * panel_seq + 200;
                    panel.y = 25 * panel_seq + 200;
                    var cpanelContent:Array = new Array();
                    panel.controlBarContent=cpanelContent;
                    panel.controlBarVisible=true;
                    // init video
                    var video:Video = new Video();
                    video.width=320;
                    video.height=240;
                    video.attachNetStream(stream);
                    stream.play("media");
                    // init videoWrapper
                    var videoWrapper:UIComponent = new UIComponent();
                    videoWrapper.id = "wrapper" + panel_seq;
                    videoWrapper.addChild(video);
                    // add to display list
                    addElement(panel);
                    panel.addElement(videoWrapper);
                    // drag and drop panel
                    panel.addEventListener(MouseEvent.MOUSE_DOWN,function(event:MouseEvent):void{
                        panel.startDrag();
                        addElement(panel);
                    panel.addEventListener(MouseEvent.MOUSE_UP,function(event:MouseEvent):void{
                        panel.stopDrag();
                    panel_seq++;// used for unique panel id
                    userVO.panel = panel;// reference to the panel
                    userVO.stream = stream;
                    userVO.video = video;
                    peers.addItem(userVO);
    I am confused on this:
    var stream:NetStream = new NetStream(nc,groupspec.groupspecWithAuthorizations());
    What  should I pass as the second parameter to establish an incoming  NetStream with the publishing peer?  I've seen people put in the farID  but I haven't figured out how to access it.  What is the difference  between event.info.peerID and event.info.neighbor?  And since I'm  multicasting to the group do I need to pass in the groupspec or the  farID?  I would love some clarification on this.
    What is happening is this:
    When  I join the group, and there are two members in the group already, I'll  get three panels with videos.  However, duplicate video streams are  being attached.  When I inspect the peerStreams array I'm seeing a  length of 0, so does that mean that no one is subscribing to my  published netstream?  If so, how do I specifically subscribe to each  published stream in the group?  Sometimes if I step through in debug  mode, I get three separate camera feeds in their prospective panels, but  if I run it will have duplicates.  I thought at first that this was a  referencing error because all of the NetGroup.Neighbor.Connect events  where happening all at the same time and perhaps that is the reason for  the duplicates?
    My only other thought is that maybe I'm  multicasting one guys stream to the whole group, but I'm getting varying  results so I want to know what is the correct way to grab, in sequence,  a NetGroup members' published netstream and be sure that all other  members are subscribing to my NetStream as well?
    Also, I  am using Value Objects to keep track of who my group members are, is  that data shared with the group or is it not accessible to all members?   or should I use another method of keeping track of my group members?
    Please help!  Thank you in advance!

    it appears you posted an identical message in two threads.  i've responded in the other thread:
      http://forums.adobe.com/message/3701380#3701380

  • Data Socket Publish and Subscribe option

    I'm writing a server/ client application in wish the client needs to be updated by the server with information when its first started and then also be able to write back to the same controls thru data socket. The applications are on two different computers connected with ethernet. I try to use the "publish and subscribe" option on the datasocket set up but the client can not connect to write to the server when i do this. It says that a host is already connected to write so therefore the client can not write to the server.
    I've also tried creating a control and an indicator with separate publish and subscribe data socket features but this does not permit for automatic updating in my server. It must wait for the server's application to finish thru a loop that has a timer that varies around 30 seconds.
    Is there any other way to have a client update a server in real time with both read and write functions?
    Thanks in advance!

    One thing you can try to do is to enable the "Allow Multiple Writers" option on the DataSocket Server.
    In the DataSocket Server Manager, under Predefined Data Item, create the item that your server/client need to write on, and enable the "Allow Multiple Writers". This will allow both server and client to write to the same address line.
    Hope this helps,
    Dan

  • BTE for Publish and Subscribe Interface

    CAN anyone tell me BTE tell me an example of Publish and Subscribe Interface?
    What is that use for?
    How does it get triggred?

    Business Transaction Events (BTE) allow you to attach additional components, in the form of a function module, for example, to the R/3 system.
         Two types of interface are available for this purpose:
    Publish & Subscribe interfaces:
    
These interfaces inform external software that certain events have taken place in an SAP standard application and provide them with the data produced. The external software returns no data to the SAP Standard System.
    Process interfaces
:
    These interfaces are used to control a business process differently than the way in which it is handled in the standard R/3 System. They intervene in the standard process, and return data to the SAP application.
    Publish & Subscribe interfaces:
    Allow you to start one or more (multiple) additional operations when a particular event is triggered. They do not influence the standard R/3 program in any way.
    Multiple operations do not interfere with each other.
    Add on components can only import data.
    Additional checks (authorizations, existing duplicates, and so on)
    The program contains an enhancement in the form of a Business Transaction Event. A function module is called in the SAP program, which determines and processes the active implementations. The names of the event function modules begin with "OPEN_FI_PERFORM_" or "OUTBOUND_CALL_".
         The event function module OPEN_FI_PERFORM_<u2026> or OUTBOUND_CALL_<u2026>  determines the active implementations for each enhancement and stores them in an internal table. Function modules are implemented in the sequence defined by the internal table. At this point the system also considers the conditions under which the function module will be processed in the customer namespace. For example, a country or an application can be entered as a condition. These conditions are also referred to as filter values.
    In case of publish and subscribe interface :
    In this case, data only flows in one direction - from the SAP application to the additional component.
         SAP application developers make interfaces available to you at certain callup points in a transaction. You can define additional logic at these points.
         In a very basic scenario, SAP partners and customers can use the interfaces themselves. In this case business transaction events function in  much the same manner as customer exits (see the unit on  "Enhancements using Customer Exits").
    *Implementing a BTE*
         You can use transaction FIBF (called when you selected Use business transaction events from the financial accounting hierarchy) to carry out all necessary activities prior to using a business transaction event.
         First, choose an interface to which you would like to attach your function module. The Interface button displays the parameter structure for the interface you have selected. You can also use the documentation to determine what functions each interface allows you to perform.
         Use the ABAP Workbench to copy the sample function module sample_interface_<n> to the customer namespace (z_*) of a customer function group. You must not change the interface. You can fill the module with any source text except COMMIT WORK. Do not use a COMMIT WORK! Don't forget to activate the function module.
         Create a product in the administration screen.
         Assign a number to your function module and product.
         In contrast to customer exits, business transaction events are client-specific. This means that the same event can be used in different clients for different purposes.
         Business transaction events may also be used more than once

  • Can anyone tell me what is "publish and subscribe model"?

    hi experts:
    can anyone tell me what is "publish and subscribe model" in detail?
    many thanks

    Publish-Subscribe Model
    Purpose
    This model defines how you publish messages to and receive messages from a well-known node. Such nodes are referred to as topics. You can use the model for:
    ·        Creating Message Producer to a Topic
    ·        Creating Message Consumer to a Topic
    ·        Managing Durable Subscriptions
    Chk this for more.
    http://help.sap.com/saphelp_nw04/helpdata/en/aa/34518672fa44c79340c1f61556443e/frameset.htm

  • Is it good that publisher and subscriber share the same connection?

    Hi:
              Currently I use separate connection for a publisher and a subscriber in the client. In order to use noLocal attribute, I have to use the same connection for publisher and subscriber.
              Is there any disadvantage to have them to share the same connection?
              On the other hands, using separate connection for publisher and subscriber doubles the number of connections. We expect to have 2000 clients, so that there will be 4000 connections. Does JMS has the limitation of the numbers of the connections?
              Thanks,
              Tony

    WL Connections are light-weight. In practice, the only penalties of extra connections is that each connection consumes a bit of extra memory on the client and server (there is not a socket per connection), and that each connection takes a (relatively small) amount of CPU and time to create and close.

  • Is Publish and Subscribe part of MobileMe?

    I know I will be able to sync to other devices with my iPhone, iCal and MobileMe but I want other PEOPLE to see my calendars like I do right now with iCal using Publish and Subscribe.
    So my questions is; will I be still able to Publish and Subscribe with MobileMe?
    Oh, the calendars must be password protected as the notes will contain confidential company information.

    Publish-Subscribe Model
    Purpose
    This model defines how you publish messages to and receive messages from a well-known node. Such nodes are referred to as topics. You can use the model for:
    ·        Creating Message Producer to a Topic
    ·        Creating Message Consumer to a Topic
    ·        Managing Durable Subscriptions
    Chk this for more.
    http://help.sap.com/saphelp_nw04/helpdata/en/aa/34518672fa44c79340c1f61556443e/frameset.htm

  • CUCM Publisher and Subscriber unreachable

    I presently having issues with my Publisher and Subscriber Servers.
    I working with CUCM Version 7.1.5.20000-6 / Cisco MCS 7800 Series Media Convergence Server.
    Through Cisco Unified Reporting – Unified CM Database Status – I get this report
    For every server, shows if you can   read from the local and publisher databases.
    172.20.160.11 is down and cannot   be reached.
    The publisher database could not   be reached from 172.20.160.11 .
    The local database could not be   reached from 172.20.160.11 .
    https://172.20.160.10:8443/cucreports/showReport.do?isStandard=true&name=Unified%20CM%20Database%20Status&transform=truehttps://172.20.160.10:8443/cucreports/showReport.do?isStandard=true&name=Unified%20CM%20Database%20Status&transform=trueView Details
    Server
    Publisher   DB Reachable
    Local   DB Reachable
    172.20.160.10
    true
    true
    172.20.160.11
    172.20.160.11 is down and cannot   be reached.
    172.20.160.11 is down and cannot   be reached.
    I have also attached a Debug Script for review.
    Help,,,,,,,,,,,

    Hi Val,
    You can download the recovery ISO from the following location
    http://software.cisco.com/download/release.html?mdfid=282421166&flowid=5328&softwareid=282074294&release=7.1%285b%29&relind=AVAILABLE&rellifecycle=&reltype=latest
    Burn it on a DVD and boot up using the recovery iso, then select the options to automatically fix file system and manually fix file system if needed.
    Check for any DNS related issues if configured as the network connectiviry errors could be due to the same.
    However, looking at the errors and state of services, if the issue persists, i would recommend a reinstall of the subscriber as the Pub will replicate the data to the sub.
    HTH
    Manish

  • Replace Publisher and subscriber!!

    One of our customer have TWO MCS7825 CCM 4.13.
    They want to replace both server with better hardware and bigger harddrive.
    Any documentation I can read???
    Here is my thought, presintall at offline network, with same name, ip address, etc:
    1. Install CCM4.13 in new server which is publisher.
    2. Install CCM4.13 in second new server which is subscriber.
    3. Test the new cluster to make sure to have good data replications, for instance, add one IP Phone to test.
    4. Delete the IP Phone.
    5. Use BARS to backup existing CCM cluster.
    6. Use the same verison BARS at new Cluster and then restore it.
    7. Shut down the old existing CCM cluster.
    8. Power on the new CCM cluster.
    Thanks
    Ken

    Do you have any SRs on the old server ?
    I would do this.
    1. Install CM 4.13 on the new server (publisher) with same name, ip as old publisher. This should be on an isolated network. Dont apply any SRs yet.
    2. Install subscriber to the same version (same name, ip etc as old subscriber). Put this also in the isolated network. Make sure replication is good. Test with an ip phone.
    3. Now if you did have SRs (4.1.3SR3a) in old server, then apply SR on the new publisher and new subscriber.
    4. Use BARS to backup existing publisher
    5. Use same version bars to restore the database on the newly installed publisher.
    6. Replication should get all the database info in publisher to the subscriber if you tested replication good in step 2.
    7. Shutdown existing cluster
    8. Move new servers to the production network.

  • Can't access Subscriber services from Publisher and Vice Versa

    Hi ,
    I am using CUCM 8.5.1(10000-26)
    when connected to Publisher and go to Serviceability then service activation , Feature services or Network services of the subscriber , an error appears telling can't connect to remote node .
    same from Subscriber side .
    Database Replication is in "good" state
    onconfig.ccm reports an error "The onconfig.ccm file on x.x.x.x does not match the publisher."
    Any Advise ?

    Dear
    please cli command to check the relication , you  must check that each node should have a replication status of two (2).
    use this command   (Utils dpreplication runtimestate) and please check the output.I do not see this eror before , but if you did not get a solution , ithink t open a TAC with Cisco. I think the onconfig.ccm file on x.x.x.x does not match the publisher (it is a problemm in linux) , i think the  /opt/informix/etc directory.
    Thank you
    please rate if this help

  • Publish and Subscribe

    Back in May I installed and set up 10.4 (10.4.0) Server and published several (8 to be exact) calendars in iCal. They all published with no problems using WebDAV on the server, and 4 other machines were able to subscribe with no problems. Three of the machines were running Panther and the fourth runs Tiger. Last week I created a new calendar, published it, and am only able to subscribe on the machine running Tiger. The remaining three Panther machines sit with the status bar not moving (after clicking the Subscribe button) and do not subscribe. At one point I had let it try to subscribe for over an hour. I am forced to hit abort, which then just sits there, or cancel which does stop the process. I can only assume that a software update in either Panther (a security update or maybe iCal 1.5.5) or an update in Tiger has broken correct functionality. Has anyone else experienced what I'm describing?

    After further troubleshooting, I discovered that one of my calendars had been corrupted. I discovered this when, on a Panther machine that I used to subscribe to this particular calendar, my alarms stopped functioning. In looking at the console log, I was seeing "2005-10-26 09:24:04.445 iCal[548] * -[NSCFString setTimeZone:]: selector not recognized
    2005-10-26 09:24:04.445 iCal[548] Exception raised during posting of notification. Ignored. exception: * -[NSCFString setTimeZone:]: selector not recognized", and this would show up immediately upon subscribing to the corrupted calendar. When I deleted this calendar from the remote iCal, my alarms began functioning again, and subscribe worked on the balance of the calendars. I looked at all events in the corrupted calendar on the server, and discovered that some of the events had multiple alarms on them. I deleted the alarms for those events and added a new alarm, and republished. Everything began to work correctly including the alarms. Somehow, Tiger iCal seemed to be able to deal with the corrupted events, whereas Panther iCal could not.

  • Publishing and subscribing to iCal's on same computer

    Hi,
    Is it possible for two different users (profiles in fast user switching) to publish/subscribe to each other's ical's? If so, what do I put in the "SERVER" line on the subscribe to window?
    Thanks!

    No, it's not the only way, but it is the easiest.
    You could start webdav on your machine's Apache server and both subscribe to it locally (instructions - http://www.shawnwall.com/teach/webdav-ical.php ), or some people have got making symbolic links work. Both involve playing around in the Terminal.
    John M

  • Latency between CallManager Publisher and Subscriber

    I'm in a small debate on whether you can split a cluster over a WAN connection. I have a cluster at Site A. I want to add another Sub at Site B because the site is going to have 250 IP phones. I can utilize this site with the Subscriber at Site B as my failover site for Site A.
    I'm getting push back on this design. If the latency is too large (over 40ms)between the sub at site b and Pub at Site A, this could cause some issues. Does Cisco have any best practices for this if you want to split a cluster over a WAN link?
    Thanks

    subscribers across a WAN are fairly common i've seen.
    40ms is not to bad for RTP streams especially if good QoS in place. (priority intracluster communication signalling states maximum 40ms RTT; all other ICCS traffic can be 'reasonable')
    the jitter, if any, will be something you'll want to watch for in higher latency cases. this will cause undesirable voice even if latency overall is not too high.
    how many BCHA do you expect across the WAN?
    how much bandwidth across the WAN do you have?
    are you going to create separate gateways for remote-site, off prim calls? (recommended)
    see the following link for 'Clustering Over an WAN':
    http://www.cisco.com/en/US/products/sw/voicesw/ps556/products_implementation_design_guide_chapter09186a00806e8c27.html#wp1045846

  • Publishing and subscribing to ICS calendars

    Is there a way to publish calendars that others can subscribe to? The only thing I know how to do with the iCal server even a little bit is CalDAV, but that doesn't seem to allow subscriptions.
    Also, I can't find a place where it just says the user (like a folder that stores the data). It's just these weird combinations of characters. Is there a way to make it simpler?
    Thanks,
    vidg

    You could perhaps setup the WebDAV stuff in the web server settings like before which doesn't require/use iCal server?
    With iCal server you instead delegate access to your calendar(s) with either only read or read and write priviledges to others. You do this in iCal (3.0/Leopard).
    You need OD and preferably bind your client machines to it.

  • Problem Directing P2P Webcam Publisher and Subscriber Streams!

    Hello all,
    I am making a video chat application that is strictly one-to-one and that has 2 separate WebcamSubscriber components, one for the host publisher to view himself and the other to view the person he/she is chatting with (exactly like is done on Skype).  However, whenever I test it with 2 people, it adds 2 screens in both WebcamSubscribers.  How can I tell the top WebcamSubscriber to ONLY show the other person, and the bottom one to ONLY show me?
    I have looked over the documentation and it says that in order to subscribe to the stream being published by the current user`s computer I would have to use the following:
    myWebcamSubscriber.webcamPublisher = myWebcamPublisher;
    I am not doing this in Actionscript, but rather I am assigning the WebcamPublisher to the WebcamSurbscriber inside of the MXML tag which creates the bottom WebcamSubscriber component:
    <rtc:WebcamPublisher width="0" height="0" id="webcamPub" />
    <s:VGroup width="240" height="100%">
         <rtc:WebcamSubscriber width="240" height="240" />
         <s:HGroup width="100%">
              <rtc:WebcamSubscriber width="120" height="120" webcamPublisher="{webcamPub}" />
         </s:HGroup>
    </s:VGroup>
    What am I doing wrong?  This seems like it should be a no-brainer, but unfortunately there are no clear examples which show how to do this.
    Thanks in advance for any help!
    Matt

    Hironmay,
    I`ve been studying the WebCamera example and a lot of this is making sense.  However, I just tested the code suggestions you made to get the bottom camera to only show the publisher (i.e. me) and now the webcameraSubscriber displays nothing after the video stream is published.  Here is my code:
    <rtc:WebcamPublisher width="0" height="0" id="webcamPub" />
    <rtc:WebcamSubscriber width="120" height="120" webcamPublisher="{webcamPub}" publisherIDs="cSession.userManager.myUserID"/>
    I didn`t get any errors, but since publisherIDs is expecting an array I imagine I should create one and populate it with myUserID?  There must be a more straighforward way to do this that I`m missing.  Can I set the publisherIDs inline, or must it be done in a function up in the [CDATA] section?
    As far as setting up only the other user`s stream to play in my other webCamSubscriber, should I be using something like the following code (found in an earlier thread):
                private function onStreamEnters(evt:StreamEvent):void
                   // on STREAM_RECEIVE event
                    startVisio();
                private function startVisio():void{
                        var userStreams:Array = _streamManager.getStreamDescriptors();
                        var i:int;
                        var found:Boolean = false;                   
                        if (userStreams.length == 0) trace("Found no streams");
                        for (i=0; i<userStreams.length; i++){
                            if (userStreams[i].streamPublisherID != _userManager.myUserID){
                                if (userStreams[i].type == StreamManager.CAMERA_STREAM ) {
                                    currentSubscriber = new WebcamSubscriber();
                                    currentSubscriber.height = this.height;
                                    currentSubscriber.width = this.width;
                                    currentSubscriber.displayUserBars=false;
                                    currentSubscriber.connectSession = cSession ;
                                    currentSubscriber.subscribe();
                                    //currentSubscriber.webcamPublisher = webCamPub ;
                                    currentSubscriber.publisherIDs = [userStreams[i].streamPublisherID];
                                    videoContainer.addChild(currentSubscriber);
                                    vs.selectedIndex=1;
                                    found = true;
                        if (!found) message.text="En attente...";
    I just want to make sure that all possible scenarios are handled.
    Thank you so much for the help Hironmay!  I don`t want to come across as an idiot, but I just want to make sure I`m doing this correctly and am following best practices while doing so.
    Matt

Maybe you are looking for

  • How can I get to DFU mode with a broken power button?

    How can I get to DFU mode with a broken power button?

  • Lost my itunes

    The other day I logged on my mac and i saw that my itunes icon had a question mark in it.  I went to log in and nothing. I quit the app and tried to open it but to my surprise it's gone. What happened? Half of my music left with it.

  • Exports from eyeTV at AppleTV quality no longer play on iPhone?

    Before getting an iPhone 3G, I exported recordings from EyeTV 3 in AppleTV quality (720 x 480) and watched them on my iPod touch. The iPhone, however, doesn't seem able to play these, and, iTunes won't even sync them to the iPHone. What happened? Doe

  • Can't hear usb keyboard

    Hi, i can't hear my m-audio keystation49e keyboard when i press the notes on it. I have only opened the tutorial song at the moment, as i have only just got logic pro7.2 and am still using the tutorial song to experiment and learn. I went to audio mi

  • Db link between machines problem?

    hi, I'm trying to create a link from machine to machine and keep getting a TNS error after the link is created and I try and query the linked database? SQL> create database link A 2 connect to A identified by A 3 using 'db_name.dbdomain'; Database li