Stop and restart screen sharing

When I call stop() on the ScreenSharePublisher it seems like it's not stopped in the right way or something. If I try to start it again I get this trace:
ERROR:The Connection wasn't closed properly by abrupt killing of sharing instance.
You need to call stop screen sharing, close the client browser and addin and relaunch screen sharing again
and nothing happens. Am I missing something essential here?
private function startDesktopSharing():void {
     if (screenShare != null && !screenShare.isPublishing) {
          trace("startDesktopSharing")
          screenShare.publish();
private function stopDesktopSharing():void {
     if (screenShare != null && screenShare.isPublishing) {
          trace("stopDesktopSharing");
           screenShare.stop();
I get my traces so I know that it's not publishing when I try to publish it again at least. Can't I stop and start it again right away?

Can you enable log tracing and send us the client and addin logs when the problem occurs ? The instructions are here: http://forums.adobe.com/thread/786297?tstart=0

Similar Messages

  • When using the "Books" app on my ipod touch, if I open one of my books there is no way to return to the library without stopping and restarting the app. What am I doing wrong?

    Once I open a book in my library there is no option to close it and return to the library. I must leave the app, stop the app and then restart it. How do I exit an opened book to return to my library without having to exit, stop, and restart the app?

    Assuming you are talking about "iBooks", then just
    tap the center of the screen
    and you should see a "Library" in the upper left corner of the screen.
    tap the center of the screen again,
    and you should return to full screen mode.
    if this is NOT iBooks, then I do not know what controls that app

  • What is the procedure to stop and restart the Hyerion Environment

    Hi All,
    Can you kindly let me know whether the procedure that i am following below is correct to stop and restart the Hyperion Environment.
    To Stop:
    1) Essbase.
    2) Shared Services.
    3) BI+ (Financial Reporting)
    4) Planning.
    5) DB2
    To Start:
    1) DB2
    2) Shared Services.
    3) BI+ (Financial Reporting)
    4) Hyperion Planning.
    5) Essbase.
    Is the above procedure correct or do i need to do any changes to it.
    Regards,
    Krishna.

    Hi,
    I guess restarting database is not required during the process of restarting Hyperion Environment. Below order is preferable.
    Stop:
    1) Essbase Administration Services
    2) Planning
    3) BI Plus Web Apps (Workspace, Web Analysis,..)
    4) BI Plus (core)
    5) Foundation Services (License services, shared services)
    Start:
    1) Foundation Services (License services, shared services)
    2) BI Plus (core)
    3) BI Plus Web Apps (Workspace, Web Analysis,..)
    4) Essbase Administration Services
    5) Planning
    Regards,
    Sreemani

  • Why do I need to stop and restart web server?????

    I am developing servlets on sun's standard web server as well as with Netscape's web server.
    The problem is every time I make any changes to servlet and recompile my code, changes are not visible until I stop and restart web server. I guess web server uses cached version of servlet.
    Can any body help me to solve this problem? It is matter of some setting issues in web server. But since I am novice, I don't know.........

    Some app servers have a "reloadable" attribute that can automatically detect changes in your servlet and reload your application for you. Not sure if all do though... but check through the docs on your app server and see if there's something similar. If not, you're probably stuck manually restarting.

  • Start, stop and restart while loops

    Hi, my qustion is i have 2 example a and example b. Example b lets u start counting up in seconds when u want to. as long as the toggle switchs are in correct position. it also lets u start, stop and restart if need be. i want to be able to that with example a, but for some reason the while loop always sets of running independent of what position the the toggle switch. Any help greatly appreciated.
    Thanks Stuart
    Attachments:
    examplealib.llb ‏202 KB
    exampleb.vi ‏25 KB

    An example as the attachment.
    Attachments:
    switch.vi ‏23 KB

  • I have tried to download a movie via iTunes. Every time the download nears the end, it stops and restarts from the beginning. This has happened 5 times. Any solutions?

    I have tried to download a movie via iTunes. Every time the download nears the end, it stops and restarts from the beginning. This has happened 5 times. How can I clear the download or solve this?

    If it is a HD movie, it may not be enough. The iPad also need working space.
    Try download to iTune (computer) and "Move" to iPad.

  • Can a subVI tell when the application it is part of has been stopped and restarted?

    Can a subVI tell when the application it is part of has been stopped and restarted?
    It is easy enough for a subVI to tell when it has been run for the first time after having been loaded into memory. But is there a way for a subVI to tell when the application it is part of has been stopped and restarted? Is there some property or application-invocation-specific refnum that when queried multiple times during the same run of the application would return the same value yet when queried during different runs of the application would return different values?
    I don�t want to depend on anything that happens when a run is exited.
    I don�t want to require code to be included in the main V
    I to accomplish the solution.
    (Otherwise I could, in the main VI create an un-named semaphore tied to a global; the subVI could then check the global to see if the value changed, which it would between runs of the application.)
    Any ideas?

    Have you tried the First Call? function? It's on the Advanced>Synchronization palette.

  • Video podcast stops and restarts

    with one of my podcasts (Bush League TV), it will download completely, but after i sync it to my iPod, whenever it reaches a certain point it will stop and restart. Whenever i play it in iTunes it plays alright but is sorta slow and skippy. i have tried deleting it and then redownloading it. any ideas?

    Nobody?

  • Shell script to start, stop and restart a JAR

    Hi everyone,
    Does anyone have idea to write a shell script to start, stop and restart a JAR under linux? it can indicate a method or parameter? Thanks!
    this JAR inculdes a class with main method like this:
    public class Client(){
      public Client(String name){
      public void stopClient(){
      public static void main(String[] args){
         new Client("/tmp/text.log");
    }

    Does anyone have idea to write a shell script to
    start, stop and restart a JAR under linux? That part isn't really clear.
    Start would be java -jar myjar.jar.
    Stop could either be kill, which kills the whole process; kill -TSTP, which suspends the process, or some application-specific communication such as sending something over a port; or putting something into a file or something.
    Restart could just be the same as start (if stop is just kill); kill -CONT, if stop was kill -TSTP; or some other app-specific communication.

  • Shell script to start, stop and restart a JAR under linux

    Hi everyone,
    Does anyone have idea to write a shell script to start, stop and restart a JAR under linux? it can also indicate a method or parameter? Thanks!
    this JAR inculdes a class with main method like this:
    public class Client(){
    public Client(String name){
    public void stopClient(){
    public static void main(String[] args){
    new Client("/tmp/text.log");
    }

    Does anyone have idea to write a shell script to
    start, stop and restart a JAR under linux? That part isn't really clear.
    Start would be java -jar myjar.jar.
    Stop could either be kill, which kills the whole process; kill -TSTP, which suspends the process, or some application-specific communication such as sending something over a port; or putting something into a file or something.
    Restart could just be the same as start (if stop is just kill); kill -CONT, if stop was kill -TSTP; or some other app-specific communication.

  • Using cron to stop and restart password protected instance (App Server 7)

    I have been asked by a customer to create a cron job to stop and restart their web application running under Applications server 7.
    I have created the script and can stop the instance, but I am unable to start it as it is asking for a password.
    I have included this in the script but it doesn't seem to like having a password supplied this way.
    Am I doing something wrong or Are there any alternative ways of stopping and restarting an application, using Cron?

    Have you looked at using password.conf file as described in --
    http://docs.sun.com/source/816-7155-10/crcfgfil.html#1075615
    You might also want to look at --
    http://docs.sun.com/source/816-7156-10/agsvrprf.html#1019453

  • How to Stop and restart the midtier?

    Hello All,
    I have installed Oracle AS (Infraturcture & middle tier , BI & Forms) on same Linux box.i.e: Oracle As 10.1.2.0.2 (Rel 2, x86 for Linux), SLES 9
    Here is my question:
    How to Stop and restart the midtier?
    Regards,
    DN

    biforms.sh
    export ORACLE_HOME=/opt/oracle/biforms
    export OH=$ORACLE_HOME
    export PATH=$OH/bin:$OH/opmn/bin:/bin:/usr/local/bin:/usr/bin:/usr/X11R6/bin:/bin:/opt/gnome/bin:/opt/kde3/bin:/usr/lib/java/bin
    export ORACLE_SID=ORCL
    export LD_LIBRARY_PATH=$OH/lib:/usr/openwin/lib:/usr/dt/lib:/usr/lib:/tools/lib
    infra.sh
    export ORACLE_HOME=/opt/oracle/infra  <-- or correct one!
    export OH=$ORACLE_HOME
    export PATH=$OH/bin:$OH/opmn/bin:/bin:/usr/local/bin:/usr/bin:/usr/X11R6/bin:/bin:/opt/gnome/bin:/opt/kde3/bin:/usr/lib/java/bin
    export ORACLE_SID=ORCL
    export LD_LIBRARY_PATH=$OH/lib:/usr/openwin/lib:/usr/dt/lib:/usr/lib:/tools/libAs you see, only the first row differs from these two scrips. Because I'm lazy, I usualy set export OH. Under certain circumstances you might want to add DISPLAY to biforms.sh. Set it to localhost:0 or whatever is correct.
    Martin

  • How to Stop and restart the OC4J_BI_FORMS?

    I have Oracle AS 10.1.2.0.2 (Rel 2) installed. (Infratsructure & BI & Forms) on same computer.
    my question is :
    How to Stop and restart the OC4J_BI_FORMS?
    Regards,
    DN

    Just as any other OC4J:
    opmnctl stopproc -process-type=OC4J_BI_FORMS
    opmnctl startproc -process-type=OC4J_BI_FORMS
    or
    opmnctl restartproc -process-type=OC4J_BI_FORMS
    cu
    Andreas

  • Have to stop and restart Q-Master for it to show up in Compressor 3.5.1 SL

    I am having a problem with Q-Master in Snow Leopard, running compressor 3.5.1, where every time I restart, when I go into compressor, it does not show up my Q-Master cluster. Instead I must go into the control panel (which has to restart into 32 bit mode, COME ON APPLE LETS MAKE Q-MASTER 64 BIT!) and stop and restart Q-Master and then it shows up in Compressor.
    Is this because the control panel has to be in 32 bit mode for it to work? Is anyone else having a similar problem?

    I have the exact same thing happening!!! Funny how you haven't got a response to fix the issue. I called Apple and the guys said I needed to reformat my drive and install FCS from scratch to get rid of any files from FCS 2, only because I used some FCP utility to remove the previous version.< </div>
    Sorry you got that advice from Apple. Reinstalling Apple software is rarely effective and a scorched earth approach rarely solves anything. It simply takes everything back to a default state.
    I've had this same issue with Qmaster on my system and I'm still running 10.5+ so it's not a Snow Leopard issue. I solved it, at least for now, by simply deleting Qmaster only and reinstalling just Qmaster. However, I deleted and installed Qmaster to solve a problem with FCP; it was crashing immediately upon launch.
    This is important: I have no way of knowing if there is a direct or causal relationship between any of these events.
    bogiesan

  • After upgrading, videos randomly stop and restart.

    Since upgrading to iTunes 10 purchased videos of TV shows randomly stop and restart. I've had these videos for years and never had a problem, but now every time I watch an episode it sill get around 5 minutes in and spontaneously start the episode over. Anyone else having these problems?

    Hi Fabrizio,
    why do you want to reboot your server every sunday?????
    If you reboot your SAP this often, you'll have performance problems every Monday. All
    of your SAP internal Buffers must be filled again after an reboot. If your DB is on the
    same Host, also your DB Buffer is empty.
    If this is an productive System, i highly recommend you that you not reboot your SAP System this often....
    (By side, thats the difference between an *nix and an Windows System.).
    What is the reason for doing that?
    confused
    Regards Manuel

Maybe you are looking for

  • Can't print messages located in the bundle defined in faces-config.xml

    In faces-config I have defined the following <faces-config> <application>      <message-bundle id="appbundle">org.apache.struts.webapp.example.ApplicationResources</message-bundle>                <locale-config>                <default-locale>en</def

  • Need help with Missing Sync

    Hi Guys I have a Treo 650 and I use missing sync. It was working fine when I was syncing with address book and iCal. I wanted to use Entourage and I followed some instructions and then I moved the Entourage conduit to Conduit folder and now it syncs

  • Dequeue a text message

    Hello everyone, DB version : 11.2.0.1.0 I'm able to add a text message on an AQ queue, but I'm not able to dequeue it from java. When I run the dequeue method, it waits ... it doesn't get any message in, even if new messages are being put on the queu

  • Using cron with exp

    Hi, I want to schedule some backups for certain tables at night... any idea about use cron with exp.... i tried as follows: crontab -ei made the next line: 00 20 * * * exp userid=system/manager file=tt00.dmp tables=product when i confirm the schedule

  • Cannot distribute OS installers which have been added with 'New-CMOperatingSystemInstaller'

    After adding an OS installer with PowerShell, you cannot distribute the GUI option 'Distribute Content' is greyed out: New-CMOperatingSystemInstaller -Name W8 -Path "\\cm01\e$\Source\OS\W8" The issue occurs with ConfigMgr 2012 SP1 and ConfigMgr R2. T