Publisher to subscriber

Hi guys,
how can i degrade a ccm publisher to be a subscriber?
Mike

I dont know why you want to degrade the publisher to subscriber...
But one time, I replace my publisher because I need more memory and CPU power upgrade from 3.3 to 4.13. Then i reinstall the old publisher to become a subsciber...
Add more redundancy power to the cluster....
Ken

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.

  • How i add audio publisher/audio subscriber in my chat applcation

    hello,
    I try add audio publisher/audio subscriber  in chat applcation im using flash bulider 4 however i watch the example in smp applcations
    that have in sdk but what i need i include inside chat applcation button to start and stop audio in chat applcation i treid many times
    to do it but always give me error so what is the way to add audio publisher/audio subscriber  with button for user hit button run audio hit again stop audio, also need to add other button "logout" to user can logout from applaction when finish but after i add button is dosent work too.
    Need help
    Thanks

    Oh nigel sorry i really forget say what is th error however i gonna paste the code to see where is the error buttons "logout" and "start my audio" dosent work
    I dont know why here is the code,
    thanks nigel
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="500" minHeight="500" xmlns:rtc="http://ns.adobe.com/rtc" width="590" height="590" backgroundColor="#3D3B3B" preloaderChromeColor="#999393">
        <fx:Style source="client.css"/>
        <fx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                protected function txtUsername_enterHandler(event:FlexEvent):void
                    // TODO Auto-generated method stub
                    connectRoom.login();
                    labelUsername.visible = false;
                    txtUsername.visible = false;
                protected function btnZoomScreen_clickHandler(event:MouseEvent):void
                    // move screenShare
                    if(btnZoomScreen.label == "zoom in"){
                        moveEffect.targets = [scrShare,labelScreen];
                        moveEffect.xTo = 10;
                        moveEffect.yTo = 10;
                        moveEffect.play();
                        resizeEffect.target = scrShare;
                        resizeEffect.widthTo = 520;
                        resizeEffect.heightTo = 479;
                        resizeEffect.play();
                        btnZoomScreen.label = "zoom out";
                        btnZoomScreen.y = 5;
                    }else{
                        moveEffect.targets = [scrShare,labelScreen];
                        moveEffect.xTo = 294;
                        moveEffect.yTo = 296;
                        moveEffect.play();
                        resizeEffect.target = scrShare;
                        resizeEffect.widthTo = 250;
                        resizeEffect.heightTo = 293;
                        resizeEffect.play();
                        btnZoomScreen.label = "zoom in";
                        btnZoomScreen.y = 296;
            ]]>
        </fx:Script>
        <fx:Declarations>
            <s:Move duration="500" id="moveEffect"/>
            <s:Resize duration="500" id="resizeEffect"/>
        </fx:Declarations>
        <rtc:ConnectSessionContainer horizontalScrollPolicy="off" verticalScrollPolicy="off" id="connectRoom" autoLogin="false"
                                     roomURL="http://connectnow.acrobat.com/jannaali/mymeeting"
                                     x="0" y="55" width="590" height="535" backgroundColor="#323131" contentBackgroundColor="#FFFFFF">
            <rtc:authenticator>
                <rtc:AdobeHSAuthenticator userName="{txtUsername.text}"/>
            </rtc:authenticator>
            <rtc:SimpleChat  x="10" y="10"  width="274" height="479" chromeColor="#CCCCCC"/>
            <rtc:WebcamSubscriber x="292" y="23" displayUserBars="true"  width="250" height="250"/>
            <rtc:AudioPublisher id="audioPub" height="0" />
            <rtc:AudioSubscriber id="audioSub" height="0" />
            <s:Label x="292" y="10" text="Ahmed's webcam" fontFamily="Verdana" fontSize="9" color="#040404" chromeColor="#CCCCCC"/>
            <rtc:ScreenShareSubscriber id="scrShare" width="250" height="193" x="294" y="296"/>       
            <s:Label id="labelScreen" x="295" y="285" text="Ahmed's screen" fontFamily="Verdana" fontSize="9" color="#060606"/>
            <mx:LinkButton x="474" y="296" label="zoom in" fontFamily="Verdana" color="#0712A9" id="btnZoomScreen" click="btnZoomScreen_clickHandler(event)"/>
            <s:Button x="19" y="497" label="start my audio" height="28" width="106"/>
            <s:Button x="133" y="497" label="logout" width="106" height="28"/>
        </rtc:ConnectSessionContainer>
        <s:Label id="labelUsername" x="165" y="191" text="Enter a username and press Enter:" color="#4A0606" fontSize="13" fontWeight="bold" fontStyle="italic"/>
        <s:TextInput x="165" y="205" width="221" textAlign="center" id="txtUsername" enter="txtUsername_enterHandler(event)"/>
    </s:Application>

  • 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

  • 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.

  • 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.

  • 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

  • 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.

  • AQ publish - DB subscribe: Error ORA-00942 when starting DB Adapter

    I am using AQ adapter to publish and DB adapter to subscribe.
    When starting the DB adapter i am receiving the following error:
    Fri Sep 09 13:22:50 MDT 2005: ** Error: Unknown error while db_bridge_reader_1 was trying to read messages from the database. Please save log files and contact the integration team.
    java.sql.SQLException: ORA-00942: table or view does not exist
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:189)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:242)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:554)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1478)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteDescribe(TTC7Protocol.java:677)
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2371)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2660)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:457)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:387)
         at oracle.oai.agent.adapter.database.DBMessageReader.getNextMessageHeader(DBMessageReader.java:352)
         at oracle.oai.agent.adapter.database.DBMessageReader.run(DBMessageReader.java:232)
         at java.lang.Thread.run(Thread.java:534)
    The table i am inserting into using the DB adapter does exist in the subscribing DB. The only thing i can think of is some table/view is missing within the hub repository itself.
    Please help.
    Thanks!
    -MB

    Initially I would try calling the subscribe package standalone in SQL*plus or TOAD just to check its not somekind of config problem...
    The subscribing adapter trys calling the subscribing package passing in the message as an oracle data type.
    I would write a small pl/sql wrapper that calls you subscribing package outside of the runtime Interconnect environment. If this all works and you can insert data into the table then it maybe something to do with the metadata in the repository and then i'd go along with Ian's suggestion.
    But usually if you can successfully use iStudio to edi things then usually the repository is OK.
    Also from your log you can see that it has picked up the message and is trying to call the packaged/procedure so it looks like the adapter is working OK.
    Cheers Stuart.

  • 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

  • Mini Display Port to HDMI sound problem

    I have an iMac 11, 2 (MacOS X, 10.6.8).  The Mini Display Port is supposed to be able to carry sound, (using a Monoprice Mini DisplayPort to HDMI Converter with Audio, and HDMI cord supporting 3D, and Audio Return.)  I am playing downloaded movies wi

  • Error while retrieving data in VC model Portal Request Failed

    Hello, I'm trying to use a ES workplace Webservice but not getting any results. The error message is Portal Request Failed ( Index: 0 , Size: 0). I tested calling the service from  the esworkplace and it worked. Although I hade to use some NULL value

  • Oracle BPM 10.3.1 on Websphere 6.1.01.19

    We configured the BPM 10.3.1 as per the documentation and deployed the sample application. All the applications came up. After logging into workspace, we got the following error. The Process '/SampleProcess#Default-1.0' is not available. The Process

  • How to put a select all option in a dropdown list

    i have a dropdown list i have to select all options from the list by putting one check box,i mean by clicking that checkbox i have to select all options. If any body knows give answer its urgent

  • Single instance of a BPEL process

    Hi, We are using BPEL 10.1.3.3.0 for integration between a vendor product and Oracle E-Business Suite. Is there a way of ensuring that only one instance of the BPEL process is active at any one time? The reason behind this is because the process take